manicmaniac/ApolloDeveloperKit

View on GitHub
Sources/ApolloDeveloperKit/JSON/Reference+JSONEncodable.swift

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
//
//  Reference+JSONEncodable.swift
//  ApolloDeveloperKit
//
//  Created by Ryosuke Ito on 6/29/19.
//  Copyright © 2019 Ryosuke Ito. All rights reserved.
//

import Apollo

extension Reference: JSONEncodable {
    public var jsonValue: JSONValue {
        return [
            "generated": true,
            "id": key,
            "type": "id"
        ]
    }
}