├── README.md ├── GraphQLExample ├── Cartfile ├── Cartfile.resolved ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── Main.storyboard │ └── LaunchScreen.storyboard ├── Info.plist └── ViewController.swift ├── Cartfile.private ├── Cartfile.resolved ├── .build └── debug │ ├── GraphQL.a │ ├── GraphQL.swiftdoc │ ├── GraphQL.o │ ├── build.db │ ├── Sources │ │ ├── Field.swift.o │ │ ├── Document.swift.o │ │ ├── Fragment.swift.o │ │ ├── GraphQL.swift.o │ │ ├── Directive.swift.o │ │ ├── Operation.swift.o │ │ ├── InlineFragment.swift.o │ │ └── StringRendering.swift.o │ ├── GraphQL │ │ ├── Field~partial.swiftdoc │ │ ├── GraphQL~partial.swiftdoc │ │ ├── Directive~partial.swiftdoc │ │ ├── Document~partial.swiftdoc │ │ ├── Field~partial.swiftmodule │ │ ├── Fragment~partial.swiftdoc │ │ ├── Operation~partial.swiftdoc │ │ ├── Directive~partial.swiftmodule │ │ ├── Document~partial.swiftmodule │ │ ├── Fragment~partial.swiftmodule │ │ ├── GraphQL~partial.swiftmodule │ │ ├── Operation~partial.swiftmodule │ │ ├── InlineFragment~partial.swiftdoc │ │ ├── InlineFragment~partial.swiftmodule │ │ ├── StringRendering~partial.swiftdoc │ │ ├── StringRendering~partial.swiftmodule │ │ ├── master.swiftdeps │ │ ├── Field.d │ │ ├── GraphQL.d │ │ ├── Directive.d │ │ ├── Document.d │ │ ├── Fragment.d │ │ ├── Operation.d │ │ ├── InlineFragment.d │ │ ├── StringRendering.d │ │ ├── output-file-map.json │ │ ├── Directive.swiftdeps │ │ ├── Document.swiftdeps │ │ ├── InlineFragment.swiftdeps │ │ ├── Fragment.swiftdeps │ │ ├── Operation.swiftdeps │ │ ├── Field.swiftdeps │ │ └── GraphQL.swiftdeps │ └── llbuild.yaml │ ├── GraphQL.swiftmodule │ └── Swift-GraphQL.o │ ├── build.db │ ├── Types │ ├── master.swiftdeps │ ├── Field.swiftdeps │ ├── Directive.swiftdeps │ ├── Document.swiftdeps │ ├── Operation.swiftdeps │ ├── InlineFragment.swiftdeps │ ├── Fragment.swiftdeps │ ├── Field.d │ ├── Directive.d │ ├── Document.d │ ├── Fragment.d │ ├── Operation.d │ ├── output-file-map.json │ └── InlineFragment.d │ └── llbuild.yaml ├── GraphQL.xcodeproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── GraphQLTests.xcscheme │ └── GraphQL.xcscheme ├── GraphQLPlayground.playground ├── playground.xcworkspace │ └── contents.xcworkspacedata ├── contents.xcplayground └── Contents.swift ├── GraphQL.xcworkspace └── contents.xcworkspacedata ├── GraphQL ├── Types │ ├── Directive.swift │ ├── Fragment.swift │ ├── InlineFragment.swift │ ├── Document.swift │ ├── Operation.swift │ └── Field.swift ├── GraphQL.h ├── Info.plist ├── StringRendering.swift └── GraphQL.swift ├── .gitignore ├── GraphQLTests ├── Info.plist └── GraphQLTests.swift ├── .travis.yml └── LICENSE /README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /GraphQLExample/Cartfile: -------------------------------------------------------------------------------- 1 | github "Moya/Moya" 2 | -------------------------------------------------------------------------------- /Cartfile.private: -------------------------------------------------------------------------------- 1 | github "Quick/Quick" 2 | github "Quick/Nimble" 3 | -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- 1 | github "Quick/Nimble" "v7.0.1" 2 | github "Quick/Quick" "v1.1.0" 3 | -------------------------------------------------------------------------------- /.build/debug/GraphQL.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmakaila/Swift-GraphQL/HEAD/.build/debug/GraphQL.a -------------------------------------------------------------------------------- /.build/debug/GraphQL.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmakaila/Swift-GraphQL/HEAD/.build/debug/GraphQL.swiftdoc -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/build.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmakaila/Swift-GraphQL/HEAD/.build/debug/GraphQL.o/build.db -------------------------------------------------------------------------------- /.build/debug/GraphQL.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmakaila/Swift-GraphQL/HEAD/.build/debug/GraphQL.swiftmodule -------------------------------------------------------------------------------- /.build/debug/Swift-GraphQL.o/build.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmakaila/Swift-GraphQL/HEAD/.build/debug/Swift-GraphQL.o/build.db -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/Sources/Field.swift.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmakaila/Swift-GraphQL/HEAD/.build/debug/GraphQL.o/Sources/Field.swift.o -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/Sources/Document.swift.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmakaila/Swift-GraphQL/HEAD/.build/debug/GraphQL.o/Sources/Document.swift.o -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/Sources/Fragment.swift.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmakaila/Swift-GraphQL/HEAD/.build/debug/GraphQL.o/Sources/Fragment.swift.o -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/Sources/GraphQL.swift.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmakaila/Swift-GraphQL/HEAD/.build/debug/GraphQL.o/Sources/GraphQL.swift.o -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/Sources/Directive.swift.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmakaila/Swift-GraphQL/HEAD/.build/debug/GraphQL.o/Sources/Directive.swift.o -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/Sources/Operation.swift.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmakaila/Swift-GraphQL/HEAD/.build/debug/GraphQL.o/Sources/Operation.swift.o -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/GraphQL/Field~partial.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmakaila/Swift-GraphQL/HEAD/.build/debug/GraphQL.o/GraphQL/Field~partial.swiftdoc -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/GraphQL/GraphQL~partial.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmakaila/Swift-GraphQL/HEAD/.build/debug/GraphQL.o/GraphQL/GraphQL~partial.swiftdoc -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/Sources/InlineFragment.swift.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmakaila/Swift-GraphQL/HEAD/.build/debug/GraphQL.o/Sources/InlineFragment.swift.o -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/Sources/StringRendering.swift.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmakaila/Swift-GraphQL/HEAD/.build/debug/GraphQL.o/Sources/StringRendering.swift.o -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/GraphQL/Directive~partial.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmakaila/Swift-GraphQL/HEAD/.build/debug/GraphQL.o/GraphQL/Directive~partial.swiftdoc -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/GraphQL/Document~partial.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmakaila/Swift-GraphQL/HEAD/.build/debug/GraphQL.o/GraphQL/Document~partial.swiftdoc -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/GraphQL/Field~partial.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmakaila/Swift-GraphQL/HEAD/.build/debug/GraphQL.o/GraphQL/Field~partial.swiftmodule -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/GraphQL/Fragment~partial.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmakaila/Swift-GraphQL/HEAD/.build/debug/GraphQL.o/GraphQL/Fragment~partial.swiftdoc -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/GraphQL/Operation~partial.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmakaila/Swift-GraphQL/HEAD/.build/debug/GraphQL.o/GraphQL/Operation~partial.swiftdoc -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/GraphQL/Directive~partial.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmakaila/Swift-GraphQL/HEAD/.build/debug/GraphQL.o/GraphQL/Directive~partial.swiftmodule -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/GraphQL/Document~partial.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmakaila/Swift-GraphQL/HEAD/.build/debug/GraphQL.o/GraphQL/Document~partial.swiftmodule -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/GraphQL/Fragment~partial.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmakaila/Swift-GraphQL/HEAD/.build/debug/GraphQL.o/GraphQL/Fragment~partial.swiftmodule -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/GraphQL/GraphQL~partial.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmakaila/Swift-GraphQL/HEAD/.build/debug/GraphQL.o/GraphQL/GraphQL~partial.swiftmodule -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/GraphQL/Operation~partial.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmakaila/Swift-GraphQL/HEAD/.build/debug/GraphQL.o/GraphQL/Operation~partial.swiftmodule -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/GraphQL/InlineFragment~partial.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmakaila/Swift-GraphQL/HEAD/.build/debug/GraphQL.o/GraphQL/InlineFragment~partial.swiftdoc -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/GraphQL/InlineFragment~partial.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmakaila/Swift-GraphQL/HEAD/.build/debug/GraphQL.o/GraphQL/InlineFragment~partial.swiftmodule -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/GraphQL/StringRendering~partial.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmakaila/Swift-GraphQL/HEAD/.build/debug/GraphQL.o/GraphQL/StringRendering~partial.swiftdoc -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/GraphQL/StringRendering~partial.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinmakaila/Swift-GraphQL/HEAD/.build/debug/GraphQL.o/GraphQL/StringRendering~partial.swiftmodule -------------------------------------------------------------------------------- /GraphQLExample/Cartfile.resolved: -------------------------------------------------------------------------------- 1 | github "Alamofire/Alamofire" "3.1.5" 2 | github "antitypical/Result" "1.0.1" 3 | github "ReactiveX/RxSwift" "2.0.0" 4 | github "ReactiveCocoa/ReactiveCocoa" "v4.0.0-RC.1" 5 | github "Moya/Moya" "6.0.0" 6 | -------------------------------------------------------------------------------- /GraphQL.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /GraphQLPlayground.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /GraphQLPlayground.playground/contents.xcplayground: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /GraphQL.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /GraphQL/Types/Directive.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | // MARK: - GraphQL.Directive Extensions 4 | 5 | extension GraphQL.Directive: CustomStringConvertible, CustomDebugStringConvertible { 6 | public var description: String { 7 | return "@\(name)\(renderArgumentsList(arguments))" 8 | } 9 | 10 | public var debugDescription: String { 11 | return "GraphQL.Directive(\(description))" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /GraphQL/Types/Fragment.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | // MARK: - GraphQL.InlineFragment Extensions 4 | 5 | extension GraphQL.Fragment: CustomStringConvertible, CustomDebugStringConvertible { 6 | public var description: String { 7 | return "fragment \(name) on \(self.typeCondition) \(renderSelectionSet(selectionSet))" 8 | } 9 | 10 | public var debugDescription: String { 11 | return "GraphQL.InlineFragment(\(description))" 12 | } 13 | } -------------------------------------------------------------------------------- /GraphQLExample/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // GraphQLExample 4 | // 5 | // Created by Justin Makaila on 11/9/15. 6 | // Copyright © 2015 justinmakaila. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | var window: UIWindow? 14 | 15 | func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { 16 | return true 17 | } 18 | } 19 | 20 | -------------------------------------------------------------------------------- /GraphQL/GraphQL.h: -------------------------------------------------------------------------------- 1 | // 2 | // GraphQL.h 3 | // GraphQL 4 | // 5 | // Created by Justin Makaila on 11/6/15. 6 | // Copyright © 2015 justinmakaila. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | //! Project version number for GraphQL. 12 | FOUNDATION_EXPORT double GraphQLVersionNumber; 13 | 14 | //! Project version string for GraphQL. 15 | FOUNDATION_EXPORT const unsigned char GraphQLVersionString[]; 16 | 17 | // In this header, you should import all the public headers of your framework using statements like #import 18 | 19 | 20 | -------------------------------------------------------------------------------- /GraphQL/Types/InlineFragment.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | // MARK: - GraphQL.InlineFragment Extensions 4 | 5 | extension GraphQL.InlineFragment: CustomStringConvertible, CustomDebugStringConvertible { 6 | public var description: String { 7 | let typeCondition = (self.typeCondition != nil) ? "on \(self.typeCondition!)" : "" 8 | let directive = (self.directive != nil) ? " \(self.directive!.description)" : "" 9 | 10 | return "... \(typeCondition)\(directive)\(renderSelectionSet(selectionSet))" 11 | } 12 | 13 | public var debugDescription: String { 14 | return "GraphQL.InlineFragment(\(description))" 15 | } 16 | } -------------------------------------------------------------------------------- /GraphQL/Types/Document.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | // MARK: - GraphQL.Document Extensions 4 | 5 | extension GraphQL.Document: ExpressibleByArrayLiteral { 6 | public init(arrayLiteral elements: GraphQLType...) { 7 | self.init(operations: elements) 8 | } 9 | } 10 | 11 | extension GraphQL.Document: CustomStringConvertible, CustomDebugStringConvertible { 12 | public var queryString: String { 13 | return description 14 | } 15 | 16 | public var description: String { 17 | return renderDocument(operations) 18 | } 19 | 20 | public var debugDescription: String { 21 | return "GraphQL.Document(\(description))" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /GraphQL/Types/Operation.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | // MARK: - GraphQL.Operation Extensions 4 | 5 | extension GraphQLOperation { 6 | public var queryString: String { 7 | return description 8 | } 9 | 10 | public var description: String { 11 | let operationName = name.isEmpty ? "" : " \(name)" 12 | 13 | return "\(type)\(operationName)\(renderOperationArgumentsList(arguments))\(renderSelectionSet(selectionSet))" 14 | } 15 | 16 | public var debugDescription: String { 17 | switch type { 18 | case .mutation: 19 | return "GraphQL.Mutation(\(description))" 20 | case .query: 21 | return "GraphQL.Query(\(description))" 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | # Xcode 4 | # 5 | build/ 6 | *.pbxuser 7 | !default.pbxuser 8 | *.mode1v3 9 | !default.mode1v3 10 | *.mode2v3 11 | !default.mode2v3 12 | *.perspectivev3 13 | !default.perspectivev3 14 | xcuserdata 15 | *.xccheckout 16 | *.moved-aside 17 | DerivedData 18 | *.hmap 19 | *.ipa 20 | *.xcuserstate 21 | 22 | # CocoaPods 23 | # 24 | # We recommend against adding the Pods directory to your .gitignore. However 25 | # you should judge for yourself, the pros and cons are mentioned at: 26 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 27 | # 28 | # Pods/ 29 | 30 | # Carthage 31 | # 32 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 33 | 34 | Carthage/ 35 | -------------------------------------------------------------------------------- /GraphQLTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /.build/debug/Swift-GraphQL.o/Types/master.swiftdeps: -------------------------------------------------------------------------------- 1 | version: "Apple Swift version 2.2-dev (LLVM 46be9ff861, Clang 4deb154edc, Swift 778f82939c)" 2 | options: "c71f906c4fb7af45c7c3fc077c794a81" 3 | build_time: [502820076, 510827000] 4 | inputs: 5 | "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Directive.swift": !dirty [502236961, 0] 6 | "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Document.swift": !dirty [502231737, 0] 7 | "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Field.swift": !dirty [502235290, 0] 8 | "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Fragment.swift": !dirty [502256233, 0] 9 | "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/InlineFragment.swift": !dirty [502231834, 0] 10 | "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Operation.swift": !dirty [502254592, 0] 11 | -------------------------------------------------------------------------------- /GraphQL/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | $(CURRENT_PROJECT_VERSION) 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/GraphQL/master.swiftdeps: -------------------------------------------------------------------------------- 1 | version: "Apple Swift version 2.2-dev (LLVM 46be9ff861, Clang 4deb154edc, Swift 778f82939c)" 2 | options: "1dc9a85c017d1f3f1b401c9aba5bf4a2" 3 | build_time: [502820459, 167540000] 4 | inputs: 5 | "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Directive.swift": [502820111, 0] 6 | "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Document.swift": [502231737, 0] 7 | "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Field.swift": [502235290, 0] 8 | "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Fragment.swift": [502256233, 0] 9 | "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/GraphQL.swift": [502819916, 0] 10 | "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/InlineFragment.swift": [502231834, 0] 11 | "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Operation.swift": [502254592, 0] 12 | "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/StringRendering.swift": [502299617, 0] 13 | -------------------------------------------------------------------------------- /.build/debug/Swift-GraphQL.o/Types/Field.swiftdeps: -------------------------------------------------------------------------------- 1 | ### Swift dependencies file v0 ### 2 | provides-top-level: 3 | provides-nominal: 4 | provides-member: 5 | provides-dynamic-lookup: 6 | depends-top-level: 7 | - "GraphQL" 8 | depends-member: 9 | depends-nominal: 10 | depends-dynamic-lookup: 11 | depends-external: 12 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule" 13 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule" 14 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule" 15 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule" 16 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule" 17 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule" 18 | interface-hash: "032595e4172374e3dfbef0d155c791c4" 19 | -------------------------------------------------------------------------------- /.build/debug/Swift-GraphQL.o/Types/Directive.swiftdeps: -------------------------------------------------------------------------------- 1 | ### Swift dependencies file v0 ### 2 | provides-top-level: 3 | provides-nominal: 4 | provides-member: 5 | provides-dynamic-lookup: 6 | depends-top-level: 7 | - "GraphQL" 8 | depends-member: 9 | depends-nominal: 10 | depends-dynamic-lookup: 11 | depends-external: 12 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule" 13 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule" 14 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule" 15 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule" 16 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule" 17 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule" 18 | interface-hash: "d06a0bcafcfd68ee1725941dbbbc7a02" 19 | -------------------------------------------------------------------------------- /.build/debug/Swift-GraphQL.o/Types/Document.swiftdeps: -------------------------------------------------------------------------------- 1 | ### Swift dependencies file v0 ### 2 | provides-top-level: 3 | provides-nominal: 4 | provides-member: 5 | provides-dynamic-lookup: 6 | depends-top-level: 7 | - "GraphQL" 8 | depends-member: 9 | depends-nominal: 10 | depends-dynamic-lookup: 11 | depends-external: 12 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule" 13 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule" 14 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule" 15 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule" 16 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule" 17 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule" 18 | interface-hash: "2275a34dfa65abc68fb500a8556b4400" 19 | -------------------------------------------------------------------------------- /.build/debug/Swift-GraphQL.o/Types/Operation.swiftdeps: -------------------------------------------------------------------------------- 1 | ### Swift dependencies file v0 ### 2 | provides-top-level: 3 | provides-nominal: 4 | provides-member: 5 | provides-dynamic-lookup: 6 | depends-top-level: 7 | - "GraphQL" 8 | depends-member: 9 | depends-nominal: 10 | depends-dynamic-lookup: 11 | depends-external: 12 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule" 13 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule" 14 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule" 15 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule" 16 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule" 17 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule" 18 | interface-hash: "14cb8d3ecdf6d3f05bbf4e1bb3e306de" 19 | -------------------------------------------------------------------------------- /.build/debug/Swift-GraphQL.o/Types/InlineFragment.swiftdeps: -------------------------------------------------------------------------------- 1 | ### Swift dependencies file v0 ### 2 | provides-top-level: 3 | provides-nominal: 4 | provides-member: 5 | provides-dynamic-lookup: 6 | depends-top-level: 7 | - "GraphQL" 8 | depends-member: 9 | depends-nominal: 10 | depends-dynamic-lookup: 11 | depends-external: 12 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule" 13 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule" 14 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule" 15 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule" 16 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule" 17 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule" 18 | interface-hash: "156f48bd8ab4be6544a935e73d0b1835" 19 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: objective-c 2 | osx_image: xcode7.3 3 | xcode_sdk: iphonesimulator9.3 4 | xcode_workspace: GraphQL.xcworkspace 5 | xcode_scheme: GraphQLTests 6 | env: 7 | global: 8 | - FRAMEWORK_NAME=GraphQL 9 | before_install: 10 | - brew update 11 | - brew install carthage 12 | before_script: 13 | - carthage bootstrap 14 | before_deploy: 15 | - carthage build --no-skip-current 16 | - carthage archive $FRAMEWORK_NAME 17 | notifications: 18 | slack: 19 | secure: hXoagLNzo2XvFmrgA/N9ftUbuc6FAfgc50CnZ29OHB1uzuLVLJt04XqtFsX8l2Dm7AXeehq97lQNZTXfScouhJyI580UWtqpVXRbhNt42XL/Qo826FwwLb3a/pIR0E7slDdoCJwO9fN5hOxDOo45HCGnHqwCm7jyecZryO27sTT9MKZcrZT7d6YGuqGR7OyLLePTeh5QmCNzHapbuthIHNWJNLV9DWGWrkqHad80w18A7e2s/f+3ROq8tC1SALC+BYp8Wb5prtE6DMM/BcmAJaV/zQzpos7m8A3dUI0IIBdSQNkHbHe+qfXf3UwI5mwAPP4GNGW7zIxODyhpnb3M5Za6iUiQMfP8+g6BpR1DJ/uEGI7K/wuDrDSdHshvXy+gJDZwbjcCovSVSe3h8Uo04fqhYWeXnBDhGGTtEiMSXjfE4uwr0H5fqOkKu8ymvIVVVPAeBzzOKc424gWQvb2a64kJjgRbBTIrojQMUap/pbs2tidh54FgT6u9SGpL6PWjUSe0FCRrEkuyIzxwPMSaX10XmoxJI7S/KfnzD5gyFVUaOG2mM9jaBFN5PUE8fhOKDgJEzo8rQq02k8rve57qcrTeNE62LjXVL1gMyKn2HBx7pO5lr0YM+pEQKwfPNnNC6JtHL0z93XppM+UC6Q8lVHHPhCQNy9SzFpMAAGylAug= 20 | email: false 21 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Justin Makaila 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /.build/debug/Swift-GraphQL.o/Types/Fragment.swiftdeps: -------------------------------------------------------------------------------- 1 | ### Swift dependencies file v0 ### 2 | provides-top-level: 3 | - "..." 4 | - "..." 5 | provides-nominal: 6 | provides-member: 7 | provides-dynamic-lookup: 8 | depends-top-level: 9 | - "GraphQL" 10 | depends-member: 11 | depends-nominal: 12 | depends-dynamic-lookup: 13 | depends-external: 14 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule" 15 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule" 16 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule" 17 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule" 18 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule" 19 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule" 20 | interface-hash: "d5d1e0476814726da5258ee35695d95b" 21 | -------------------------------------------------------------------------------- /GraphQLExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "ipad", 35 | "size" : "29x29", 36 | "scale" : "1x" 37 | }, 38 | { 39 | "idiom" : "ipad", 40 | "size" : "29x29", 41 | "scale" : "2x" 42 | }, 43 | { 44 | "idiom" : "ipad", 45 | "size" : "40x40", 46 | "scale" : "1x" 47 | }, 48 | { 49 | "idiom" : "ipad", 50 | "size" : "40x40", 51 | "scale" : "2x" 52 | }, 53 | { 54 | "idiom" : "ipad", 55 | "size" : "76x76", 56 | "scale" : "1x" 57 | }, 58 | { 59 | "idiom" : "ipad", 60 | "size" : "76x76", 61 | "scale" : "2x" 62 | }, 63 | { 64 | "idiom" : "ipad", 65 | "size" : "83.5x83.5", 66 | "scale" : "2x" 67 | } 68 | ], 69 | "info" : { 70 | "version" : 1, 71 | "author" : "xcode" 72 | } 73 | } -------------------------------------------------------------------------------- /GraphQLExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /GraphQLExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /GraphQLExample/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSAppTransportSecurity 6 | 7 | NSAllowsArbitraryLoads 8 | 9 | 10 | CFBundleDevelopmentRegion 11 | en 12 | CFBundleExecutable 13 | $(EXECUTABLE_NAME) 14 | CFBundleIdentifier 15 | $(PRODUCT_BUNDLE_IDENTIFIER) 16 | CFBundleInfoDictionaryVersion 17 | 6.0 18 | CFBundleName 19 | $(PRODUCT_NAME) 20 | CFBundlePackageType 21 | APPL 22 | CFBundleShortVersionString 23 | 1.0 24 | CFBundleSignature 25 | ???? 26 | CFBundleVersion 27 | 1 28 | LSRequiresIPhoneOS 29 | 30 | UILaunchStoryboardName 31 | LaunchScreen 32 | UIMainStoryboardFile 33 | Main 34 | UIRequiredDeviceCapabilities 35 | 36 | armv7 37 | 38 | UISupportedInterfaceOrientations 39 | 40 | UIInterfaceOrientationPortrait 41 | UIInterfaceOrientationLandscapeLeft 42 | UIInterfaceOrientationLandscapeRight 43 | 44 | UISupportedInterfaceOrientations~ipad 45 | 46 | UIInterfaceOrientationPortrait 47 | UIInterfaceOrientationPortraitUpsideDown 48 | UIInterfaceOrientationLandscapeLeft 49 | UIInterfaceOrientationLandscapeRight 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /GraphQL/Types/Field.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | // MARK: - GraphQL.Field Extensions 4 | 5 | extension GraphQL.Field { 6 | public init(alias: String, operation: GraphQLOperation) { 7 | self.init(alias: alias, name: operation.name, arguments: operation.arguments, selectionSet: operation.selectionSet) 8 | } 9 | 10 | public init(operation: GraphQLOperation) { 11 | self.init(name: operation.name, arguments: operation.arguments, selectionSet: operation.selectionSet) 12 | } 13 | } 14 | 15 | extension GraphQL.Field: ExpressibleByStringLiteral { 16 | public init(stringLiteral value: StringLiteralType) { 17 | self.init(name: value) 18 | } 19 | 20 | public init(extendedGraphemeClusterLiteral value: StringLiteralType) { 21 | self.init(name: value) 22 | } 23 | 24 | public init(unicodeScalarLiteral value: StringLiteralType) { 25 | self.init(name: value) 26 | } 27 | } 28 | 29 | extension GraphQL.Field: CustomStringConvertible, CustomDebugStringConvertible { 30 | public var queryString: String { 31 | return description 32 | } 33 | 34 | public var description: String { 35 | var alias = "" 36 | if let value = self.alias, !value.isEmpty { 37 | alias = "\(value): " 38 | } 39 | 40 | return "\(alias)\(name)\(renderArgumentsList(arguments))\(renderSelectionSet(selectionSet, fragments: fragments))" 41 | } 42 | 43 | public var debugDescription: String { 44 | return "GraphQL.Field(\(description))" 45 | } 46 | } 47 | 48 | extension GraphQL.Field: Hashable { 49 | public var hashValue: Int { 50 | return name.hashValue 51 | } 52 | } 53 | 54 | extension GraphQL.Field: Equatable { } 55 | public func == (lhs: GraphQL.Field, rhs: GraphQL.Field) -> Bool { 56 | return lhs.description == rhs.description 57 | 58 | } 59 | -------------------------------------------------------------------------------- /GraphQL.xcodeproj/xcshareddata/xcschemes/GraphQLTests.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 14 | 15 | 17 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 39 | 40 | 41 | 42 | 48 | 49 | 51 | 52 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /GraphQL/StringRendering.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | //private func arrayToGraphQLListString(array: NSArray) -> String { 4 | // let arrayContents = array.reduce([String](), combine: <#T##(T, AnyObject) throws -> T#>) 5 | //} 6 | // 7 | //private func dictionaryToGraphQLObjectString(dictionary: NSDictionary) -> String { 8 | // let keyValueStrings = dictionary.reduce([], combine: { (array, keyValue) in 9 | // return array 10 | // }) 11 | // 12 | // print(keyValueStrings) 13 | //} 14 | 15 | // MARK: - String Rendering Helpers 16 | 17 | internal func renderDocument(_ operations: [GraphQLType]) -> String { 18 | let operationsList = operations.reduce([]) { $0 + [$1.queryString] } 19 | 20 | if !operationsList.isEmpty { 21 | return "{ \(operationsList.joined(separator: "\n")) }" 22 | } 23 | 24 | return "" 25 | } 26 | 27 | internal func renderOperationArgumentsList(_ arguments: [String: Any]) -> String { 28 | let argumentsList = arguments.reduce([String]()) { $0 + ["\($1.0): \($1.1)"] } 29 | 30 | if !argumentsList.isEmpty { 31 | return "(\(argumentsList.joined(separator: ", ")))" 32 | } 33 | 34 | return "" 35 | } 36 | 37 | internal func renderArgumentsList(_ arguments: [String: Any] = [:]) -> String { 38 | // TODO: If `argument.1` is an array, wrap it in square brackets. 39 | // TODO: If `argument.1` is a dictionary, wrap it in curly brackets. 40 | let argumentsList = arguments.reduce([String]()) { value, argument in 41 | let argumentKey = argument.0 42 | var argumentValue = argument.1 43 | 44 | switch argumentValue { 45 | case is NSArray: 46 | print("Value is array. Convert to ListString") 47 | // argumentValue = arrayToGraphQLListString(argumentValue as! NSArray) 48 | case is NSDictionary: 49 | print("Value is dictionary. Convert to ObjectString") 50 | //argumentValue = dictionaryToGraphQLObjectString(argumentValue as! NSDictionary) 51 | case is NSString: 52 | // The argument value should only be set if it's not a variable. 53 | if (argumentValue as! NSString).substring(to: 1) != "$" { 54 | argumentValue = "\"\(argumentValue)\"" 55 | } 56 | default: 57 | break 58 | } 59 | 60 | return value + ["\(argumentKey): \(argumentValue)"] 61 | } 62 | 63 | if !argumentsList.isEmpty { 64 | return "(\(argumentsList.joined(separator: ", ")))" 65 | } 66 | 67 | return "" 68 | } 69 | 70 | internal func renderSelectionSet(_ selectionSet: GraphQL.SelectionSet = [], fragments: [GraphQL.InlineFragment] = []) -> String { 71 | let fieldsList = selectionSet.reduce([]) { $0 + [$1.description] } 72 | let fragmentsList = fragments.reduce([]) { $0 + [$1.description] } 73 | 74 | if !fieldsList.isEmpty || !fragmentsList.isEmpty { 75 | let selectionList = fieldsList + fragmentsList 76 | let selectionSet = selectionList.joined(separator: " ") 77 | return " { \(selectionSet) }" 78 | } 79 | 80 | return "" 81 | } 82 | -------------------------------------------------------------------------------- /GraphQL.xcodeproj/xcshareddata/xcschemes/GraphQL.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 34 | 35 | 45 | 46 | 52 | 53 | 54 | 55 | 56 | 57 | 63 | 64 | 70 | 71 | 72 | 73 | 75 | 76 | 79 | 80 | 81 | -------------------------------------------------------------------------------- /.build/debug/Swift-GraphQL.o/Types/Field.d: -------------------------------------------------------------------------------- 1 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Sources/Types/Field.swift.o : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Operation.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 2 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Types/Field~partial.swiftmodule : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Operation.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 3 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Types/Field~partial.swiftdoc : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Operation.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 4 | -------------------------------------------------------------------------------- /.build/debug/Swift-GraphQL.o/Types/Directive.d: -------------------------------------------------------------------------------- 1 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Sources/Types/Directive.swift.o : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Operation.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 2 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Types/Directive~partial.swiftmodule : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Operation.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 3 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Types/Directive~partial.swiftdoc : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Operation.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 4 | -------------------------------------------------------------------------------- /.build/debug/Swift-GraphQL.o/Types/Document.d: -------------------------------------------------------------------------------- 1 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Sources/Types/Document.swift.o : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Operation.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 2 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Types/Document~partial.swiftmodule : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Operation.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 3 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Types/Document~partial.swiftdoc : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Operation.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 4 | -------------------------------------------------------------------------------- /.build/debug/Swift-GraphQL.o/Types/Fragment.d: -------------------------------------------------------------------------------- 1 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Sources/Types/Fragment.swift.o : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Operation.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 2 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Types/Fragment~partial.swiftmodule : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Operation.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 3 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Types/Fragment~partial.swiftdoc : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Operation.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 4 | -------------------------------------------------------------------------------- /.build/debug/Swift-GraphQL.o/Types/Operation.d: -------------------------------------------------------------------------------- 1 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Sources/Types/Operation.swift.o : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Operation.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 2 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Types/Operation~partial.swiftmodule : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Operation.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 3 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Types/Operation~partial.swiftdoc : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Operation.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 4 | -------------------------------------------------------------------------------- /.build/debug/Swift-GraphQL.o/Types/output-file-map.json: -------------------------------------------------------------------------------- 1 | { 2 | "": { 3 | "swift-dependencies": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Types/master.swiftdeps" 4 | }, 5 | "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Directive.swift": { 6 | "dependencies": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Types/Directive.d", 7 | "object": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Sources/Types/Directive.swift.o", 8 | "swiftmodule": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Types/Directive~partial.swiftmodule", 9 | "swift-dependencies": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Types/Directive.swiftdeps" 10 | }, 11 | "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Document.swift": { 12 | "dependencies": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Types/Document.d", 13 | "object": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Sources/Types/Document.swift.o", 14 | "swiftmodule": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Types/Document~partial.swiftmodule", 15 | "swift-dependencies": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Types/Document.swiftdeps" 16 | }, 17 | "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Field.swift": { 18 | "dependencies": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Types/Field.d", 19 | "object": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Sources/Types/Field.swift.o", 20 | "swiftmodule": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Types/Field~partial.swiftmodule", 21 | "swift-dependencies": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Types/Field.swiftdeps" 22 | }, 23 | "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Fragment.swift": { 24 | "dependencies": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Types/Fragment.d", 25 | "object": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Sources/Types/Fragment.swift.o", 26 | "swiftmodule": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Types/Fragment~partial.swiftmodule", 27 | "swift-dependencies": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Types/Fragment.swiftdeps" 28 | }, 29 | "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/InlineFragment.swift": { 30 | "dependencies": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Types/InlineFragment.d", 31 | "object": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Sources/Types/InlineFragment.swift.o", 32 | "swiftmodule": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Types/InlineFragment~partial.swiftmodule", 33 | "swift-dependencies": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Types/InlineFragment.swiftdeps" 34 | }, 35 | "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Operation.swift": { 36 | "dependencies": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Types/Operation.d", 37 | "object": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Sources/Types/Operation.swift.o", 38 | "swiftmodule": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Types/Operation~partial.swiftmodule", 39 | "swift-dependencies": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Types/Operation.swiftdeps" 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /.build/debug/Swift-GraphQL.o/Types/InlineFragment.d: -------------------------------------------------------------------------------- 1 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Sources/Types/InlineFragment.swift.o : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Operation.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 2 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Types/InlineFragment~partial.swiftmodule : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Operation.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 3 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Types/InlineFragment~partial.swiftdoc : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Operation.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 4 | -------------------------------------------------------------------------------- /GraphQLTests/GraphQLTests.swift: -------------------------------------------------------------------------------- 1 | import Quick 2 | import Nimble 3 | 4 | @testable 5 | import GraphQL 6 | 7 | class GraphQLSpec: QuickSpec { 8 | override func spec() { 9 | describe("GraphQL") { 10 | describe("a field") { 11 | var userField: GraphQL.Field! 12 | var subField: GraphQL.Field! 13 | var literalStringField: GraphQL.Field! 14 | 15 | beforeEach { 16 | literalStringField = "width" 17 | 18 | subField = GraphQL.Field(name: "profilePicture", selectionSet: [ 19 | "width", 20 | "height" 21 | ]) 22 | 23 | userField = GraphQL.Field(name: "user", arguments: ["id": 12345], selectionSet: [ 24 | "firstName", 25 | "lastName", 26 | "username", 27 | subField 28 | ]) 29 | } 30 | 31 | it("can be named") { 32 | expect(subField.name).to(equal("profilePicture")) 33 | expect(literalStringField.name).to(equal("width")) 34 | } 35 | 36 | // A node is considered a "root" if it is not named 37 | it("can indicate if it's the root node") { 38 | expect(subField.isRootNode).to(equal(false)) 39 | expect(literalStringField.isRootNode).to(equal(false)) 40 | } 41 | 42 | it("can be serialized into a string suitable for submission to a GraphQL server") { 43 | let rootFieldDescriptionTrimmed = userField.description.stringByTrimmingCharactersInSet(NSCharacterSet.whitespaceAndNewlineCharacterSet()) 44 | let rootField = "user(id: 12345) { firstName lastName username profilePicture { width height } }" 45 | 46 | expect(rootFieldDescriptionTrimmed).to(equal(rootField)) 47 | } 48 | 49 | it("can tell if it's equal to another field") { 50 | let field = userField 51 | expect(field).to(equal(userField)) 52 | } 53 | } 54 | 55 | describe("a query") { 56 | var query: GraphQL.Query! 57 | 58 | beforeEach { 59 | let userFields: [GraphQL.Field] = [ 60 | "firstName", 61 | "lastName", 62 | "username" 63 | ] 64 | 65 | let friendsField = GraphQL.Field(name: "friends", arguments: ["first": 10], selectionSet: userFields) 66 | let mutualFriendsField = GraphQL.Field(name: "mutualFriends", arguments: ["first": 30], selectionSet: userFields) 67 | let userField = GraphQL.Field(name: "user", arguments: ["id": 12], selectionSet: [friendsField, mutualFriendsField]) 68 | 69 | query = GraphQL.Query(name: "findFriends", selectionSet: [userField]) 70 | } 71 | 72 | it("must be named") { 73 | expect(query.name).toNot(beNil()) 74 | } 75 | 76 | it("can be serialized into a string suitable for submission to a GraphQL server") { 77 | let queryDescriptionTrimmed = query.description.stringByTrimmingCharactersInSet(NSCharacterSet.whitespaceAndNewlineCharacterSet()) 78 | 79 | expect(queryDescriptionTrimmed).to(equal("query findFriends { user(id: 12) { friends(first: 10) { firstName lastName username } mutualFriends(first: 30) { firstName lastName username } } }")) 80 | } 81 | } 82 | } 83 | } 84 | } -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/GraphQL/Field.d: -------------------------------------------------------------------------------- 1 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/Field.swift.o : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/GraphQL.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Operation.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/StringRendering.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 2 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/Field~partial.swiftmodule : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/GraphQL.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Operation.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/StringRendering.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 3 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/Field~partial.swiftdoc : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/GraphQL.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Operation.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/StringRendering.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 4 | -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/GraphQL/GraphQL.d: -------------------------------------------------------------------------------- 1 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/GraphQL.swift.o : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/GraphQL.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Operation.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/StringRendering.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 2 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/GraphQL~partial.swiftmodule : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/GraphQL.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Operation.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/StringRendering.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 3 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/GraphQL~partial.swiftdoc : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/GraphQL.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Operation.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/StringRendering.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 4 | -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/GraphQL/Directive.d: -------------------------------------------------------------------------------- 1 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/Directive.swift.o : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/GraphQL.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Operation.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/StringRendering.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 2 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/Directive~partial.swiftmodule : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/GraphQL.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Operation.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/StringRendering.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 3 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/Directive~partial.swiftdoc : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/GraphQL.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Operation.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/StringRendering.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 4 | -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/GraphQL/Document.d: -------------------------------------------------------------------------------- 1 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/Document.swift.o : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/GraphQL.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Operation.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/StringRendering.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 2 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/Document~partial.swiftmodule : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/GraphQL.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Operation.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/StringRendering.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 3 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/Document~partial.swiftdoc : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/GraphQL.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Operation.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/StringRendering.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 4 | -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/GraphQL/Fragment.d: -------------------------------------------------------------------------------- 1 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/Fragment.swift.o : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/GraphQL.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Operation.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/StringRendering.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 2 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/Fragment~partial.swiftmodule : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/GraphQL.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Operation.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/StringRendering.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 3 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/Fragment~partial.swiftdoc : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/GraphQL.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Operation.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/StringRendering.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 4 | -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/GraphQL/Operation.d: -------------------------------------------------------------------------------- 1 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/Operation.swift.o : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/GraphQL.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Operation.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/StringRendering.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 2 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/Operation~partial.swiftmodule : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/GraphQL.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Operation.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/StringRendering.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 3 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/Operation~partial.swiftdoc : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/GraphQL.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Operation.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/StringRendering.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 4 | -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/GraphQL/InlineFragment.d: -------------------------------------------------------------------------------- 1 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/InlineFragment.swift.o : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/GraphQL.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Operation.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/StringRendering.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 2 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/InlineFragment~partial.swiftmodule : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/GraphQL.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Operation.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/StringRendering.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 3 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/InlineFragment~partial.swiftdoc : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/GraphQL.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Operation.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/StringRendering.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 4 | -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/GraphQL/StringRendering.d: -------------------------------------------------------------------------------- 1 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/StringRendering.swift.o : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/GraphQL.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Operation.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/StringRendering.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 2 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/StringRendering~partial.swiftmodule : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/GraphQL.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Operation.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/StringRendering.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 3 | /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/StringRendering~partial.swiftdoc : /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Directive.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Document.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Field.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Fragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/GraphQL.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/InlineFragment.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Operation.swift /Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/StringRendering.swift /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule 4 | -------------------------------------------------------------------------------- /GraphQLExample/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // GraphQLExample 4 | // 5 | // Created by Justin Makaila on 11/9/15. 6 | // Copyright © 2015 justinmakaila. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import GraphQL 11 | import Alamofire 12 | 13 | private let ExampleURL = NSURL(string: "http://localhost:3000/data")! 14 | private let LukeSkywalkerUserId = "559645cd1a38532d14349246" 15 | 16 | private let UserNameFragment: GraphQL.Fragment = GraphQL.Fragment(name: "UserNameFragment", typeCondition: "User", selectionSet: [ 17 | "name", 18 | ]) 19 | 20 | class ViewController: UIViewController { 21 | override func viewDidLoad() { 22 | super.viewDidLoad() 23 | 24 | getUser(LukeSkywalkerUserId) 25 | //getUserNamedQuery(LukeSkywalkerUserId) 26 | //createUser("Justin") 27 | } 28 | 29 | func getUser(id: String) { 30 | /** 31 | user(id: "\(id)") { 32 | name 33 | friends { 34 | name 35 | } 36 | } 37 | */ 38 | let userQuery = GraphQL.Field( 39 | name: "user", 40 | arguments: [ 41 | "id": id 42 | ], 43 | selectionSet: [ 44 | "...UserNameFragment", 45 | GraphQL.Field( 46 | name: "friends", 47 | selectionSet: [ 48 | "...UserNameFragment" 49 | ] 50 | ) 51 | ] 52 | ) 53 | 54 | let document = GraphQL.Document(operations: [userQuery, UserNameFragment]) 55 | let request = requestForQuery(document) 56 | executeRequest(request) 57 | } 58 | 59 | func getUserNamedQuery(id: String) { 60 | let userQuery = GraphQL.Query( 61 | name: "getUser", 62 | arguments: [ 63 | "id": id 64 | ], 65 | selectionSet: [ 66 | GraphQL.Field( 67 | name: "user", 68 | arguments: [ 69 | "id": id 70 | ], 71 | selectionSet: [ 72 | "name" 73 | ] 74 | ) 75 | ]) 76 | 77 | let request = requestForQuery(userQuery) 78 | executeRequest(request) 79 | } 80 | 81 | func createUser(name: String) { 82 | /* 83 | mutation createUser($name: String!) { 84 | createUser(name: $name) { 85 | name 86 | friends 87 | id 88 | } 89 | } 90 | */ 91 | let createUserMutation = GraphQL.Mutation( 92 | name: "createUser", 93 | arguments: [ 94 | "name": name 95 | ], 96 | selectionSet: [ 97 | "name", 98 | "id", 99 | ] 100 | ) 101 | 102 | print(createUserMutation) 103 | 104 | let request = requestForQuery(createUserMutation) 105 | executeRequest(request) 106 | } 107 | } 108 | 109 | private extension ViewController { 110 | func mutableURLRequest() -> NSMutableURLRequest { 111 | let request = NSMutableURLRequest(URL: ExampleURL, cachePolicy: NSURLRequestCachePolicy.ReloadIgnoringLocalCacheData, timeoutInterval: 30) 112 | request.setValue("application/json", forHTTPHeaderField: "Content-Type") 113 | 114 | return request 115 | } 116 | 117 | func requestForQuery(query: GraphQLType, arguments: [String: AnyObject]? = nil) -> NSURLRequest { 118 | let request = mutableURLRequest() 119 | 120 | var parameters: [String: AnyObject] = [ 121 | "query": query.queryString 122 | ] 123 | 124 | if let arguments = arguments { 125 | parameters["arguments"] = arguments 126 | } 127 | 128 | return Alamofire.ParameterEncoding.URL.encode(request, parameters: parameters).0 129 | } 130 | 131 | func executeRequest(request: NSURLRequest) { 132 | Alamofire.request(request) 133 | .responseJSON { response in 134 | if let json = response.result.value { 135 | print(json) 136 | } 137 | } 138 | } 139 | } 140 | -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/GraphQL/output-file-map.json: -------------------------------------------------------------------------------- 1 | { 2 | "": { 3 | "swift-dependencies": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/master.swiftdeps" 4 | }, 5 | "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Directive.swift": { 6 | "dependencies": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/Directive.d", 7 | "object": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/Directive.swift.o", 8 | "swiftmodule": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/Directive~partial.swiftmodule", 9 | "swift-dependencies": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/Directive.swiftdeps" 10 | }, 11 | "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Document.swift": { 12 | "dependencies": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/Document.d", 13 | "object": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/Document.swift.o", 14 | "swiftmodule": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/Document~partial.swiftmodule", 15 | "swift-dependencies": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/Document.swiftdeps" 16 | }, 17 | "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Field.swift": { 18 | "dependencies": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/Field.d", 19 | "object": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/Field.swift.o", 20 | "swiftmodule": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/Field~partial.swiftmodule", 21 | "swift-dependencies": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/Field.swiftdeps" 22 | }, 23 | "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Fragment.swift": { 24 | "dependencies": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/Fragment.d", 25 | "object": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/Fragment.swift.o", 26 | "swiftmodule": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/Fragment~partial.swiftmodule", 27 | "swift-dependencies": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/Fragment.swiftdeps" 28 | }, 29 | "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/GraphQL.swift": { 30 | "dependencies": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/GraphQL.d", 31 | "object": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/GraphQL.swift.o", 32 | "swiftmodule": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/GraphQL~partial.swiftmodule", 33 | "swift-dependencies": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/GraphQL.swiftdeps" 34 | }, 35 | "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/InlineFragment.swift": { 36 | "dependencies": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/InlineFragment.d", 37 | "object": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/InlineFragment.swift.o", 38 | "swiftmodule": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/InlineFragment~partial.swiftmodule", 39 | "swift-dependencies": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/InlineFragment.swiftdeps" 40 | }, 41 | "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Operation.swift": { 42 | "dependencies": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/Operation.d", 43 | "object": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/Operation.swift.o", 44 | "swiftmodule": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/Operation~partial.swiftmodule", 45 | "swift-dependencies": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/Operation.swiftdeps" 46 | }, 47 | "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/StringRendering.swift": { 48 | "dependencies": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/StringRendering.d", 49 | "object": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/StringRendering.swift.o", 50 | "swiftmodule": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/StringRendering~partial.swiftmodule", 51 | "swift-dependencies": "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL/StringRendering.swiftdeps" 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /.build/debug/Swift-GraphQL.o/llbuild.yaml: -------------------------------------------------------------------------------- 1 | client: 2 | name: swift-build 3 | 4 | tools: {} 5 | 6 | targets: 7 | "": [] 8 | Types: [] 9 | 10 | commands: 11 | : 12 | tool: swift-compiler 13 | executable: "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/bin/swiftc" 14 | inputs: ["/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Directive.swift","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Document.swift","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Field.swift","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Fragment.swift","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/InlineFragment.swift","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Operation.swift"] 15 | outputs: ["","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Types.swiftmodule","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Sources/Types/Directive.swift.o","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Sources/Types/Document.swift.o","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Sources/Types/Field.swift.o","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Sources/Types/Fragment.swift.o","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Sources/Types/InlineFragment.swift.o","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Sources/Types/Operation.swift.o"] 16 | module-name: "Types" 17 | module-output-path: "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Types.swiftmodule" 18 | is-library: true 19 | sources: ["/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Directive.swift","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Document.swift","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Field.swift","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Fragment.swift","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/InlineFragment.swift","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Types/Operation.swift"] 20 | objects: ["/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Sources/Types/Directive.swift.o","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Sources/Types/Document.swift.o","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Sources/Types/Field.swift.o","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Sources/Types/Fragment.swift.o","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Sources/Types/InlineFragment.swift.o","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Sources/Types/Operation.swift.o"] 21 | import-paths: ["/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug"] 22 | temps-path: "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Types" 23 | other-args: ["-j8","-Onone","-g","-target","x86_64-apple-macosx10.10","-enable-testing","-sdk","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk","-I","/usr/local/include"] 24 | : 25 | tool: shell 26 | inputs: ["","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Sources/Types/Directive.swift.o","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Sources/Types/Document.swift.o","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Sources/Types/Field.swift.o","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Sources/Types/Fragment.swift.o","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Sources/Types/InlineFragment.swift.o","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Sources/Types/Operation.swift.o"] 27 | outputs: ["","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Types.a"] 28 | args: ["/bin/sh","-c","rm -f '/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Types.a'; ar cr '/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Types.a' '/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Sources/Types/Directive.swift.o' '/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Sources/Types/Document.swift.o' '/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Sources/Types/Field.swift.o' '/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Sources/Types/Fragment.swift.o' '/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Sources/Types/InlineFragment.swift.o' '/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/Swift-GraphQL.o/Sources/Types/Operation.swift.o'"] 29 | description: "Linking Library: .build/debug/Types.a" 30 | -------------------------------------------------------------------------------- /GraphQLPlayground.playground/Contents.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import Foundation 3 | import GraphQL 4 | 5 | /** 6 | mutation M { 7 | likeStory(storyId: 1234) { 8 | story { 9 | likeCount 10 | } 11 | } 12 | } 13 | */ 14 | let likeStoryMutation = GraphQL.Mutation(name: "M", selectionSet: [ 15 | GraphQL.Field(name: "likeStory", arguments: ["storyId": 1234], selectionSet: [ 16 | GraphQL.Field(name: "story", selectionSet: [ 17 | "likeCount" 18 | ]) 19 | ]) 20 | ]) 21 | 22 | print(likeStoryMutation) 23 | 24 | /** 25 | query getParent($id: String!) { 26 | parent(id: $id) { 27 | id 28 | firstName 29 | lastName 30 | email 31 | students { 32 | edges { 33 | node { 34 | id 35 | firstName 36 | lastName 37 | class { 38 | name 39 | description 40 | } 41 | } 42 | } 43 | } 44 | } 45 | } 46 | */ 47 | let getParentQuery: GraphQL.Query = GraphQL.Query(name: "getParent", arguments: ["id": GraphQL.InputValueType.stringValue(true).description], selectionSet: [ 48 | GraphQL.Field(name: "parent", arguments: ["id": "$id"], selectionSet: [ 49 | "id", 50 | "firstName", 51 | "lastName", 52 | "email", 53 | GraphQL.Field(name: "students", selectionSet: [ 54 | GraphQL.Field(name: "edges", selectionSet: [ 55 | GraphQL.Field(name: "node", selectionSet: [ 56 | "id", 57 | "firstName", 58 | "lastName", 59 | GraphQL.Field(name: "class", selectionSet: [ 60 | "name", 61 | "description" 62 | ]) 63 | ]) 64 | ]) 65 | ]) 66 | ]) 67 | ]) 68 | 69 | print(getParentQuery) 70 | 71 | 72 | /** 73 | query inlineFragmentTyping { 74 | profiles(handles: ["zuck", "cocacola"]) { 75 | handle 76 | ... on User { 77 | friends { 78 | count 79 | } 80 | } 81 | ... on Page { 82 | likers { 83 | count 84 | } 85 | } 86 | } 87 | } 88 | */ 89 | let inlineFragmentTypingQuery: GraphQL.Query = GraphQL.Query(name: "inlineFragmentTyping", selectionSet: [ 90 | GraphQL.Field(name: "profiles", arguments: ["handles": ["zuck", "cococola"]], selectionSet: [ 91 | "handle" 92 | ], fragments: [ 93 | GraphQL.InlineFragment(typeCondition: "User", selectionSet: [ 94 | GraphQL.Field(name: "friends", selectionSet: [ 95 | "count" 96 | ]) 97 | ]), 98 | GraphQL.InlineFragment(typeCondition: "Page", selectionSet: [ 99 | GraphQL.Field(name: "likers", selectionSet: [ 100 | "count" 101 | ]) 102 | ]) 103 | ]) 104 | ]) 105 | 106 | print(inlineFragmentTypingQuery) 107 | 108 | 109 | /** 110 | query inlineFragmentNoType($expandedInfo: Boolean) { 111 | user(handle: "zuck") { 112 | id 113 | name 114 | ... @include(if: $expandedInfo) { 115 | firstName 116 | lastName 117 | birthday 118 | } 119 | } 120 | } 121 | */ 122 | let inlineFragmentNoTypeQuery: GraphQL.Query = GraphQL.Query(name: "inlineFragmentNoType", arguments: ["$expandedInfo": GraphQL.InputValueType.booleanValue(false).description], selectionSet: [ 123 | GraphQL.Field(name: "user", arguments: ["handle": "zuck"], selectionSet: [ 124 | "id", 125 | "name", 126 | ], fragments: [ 127 | GraphQL.InlineFragment(directive: GraphQL.Directive(name: "include", arguments: ["if": "$expandedInfo"]), selectionSet: [ 128 | "firstName", 129 | "lastName", 130 | "birthday" 131 | ]) 132 | ]) 133 | ]) 134 | 135 | print(inlineFragmentNoTypeQuery) 136 | 137 | /** 138 | query lifetimeActivity($studentId: String!) { 139 | student(id: $studentId) { 140 | lifetimeActivity: activity { 141 | totalDuration 142 | questionsAttempted 143 | correctQuestionsAttempted 144 | } 145 | } 146 | } 147 | */ 148 | let lifetimeActivityQuery: GraphQL.Query = GraphQL.Query(name: "lifetimeActivity", arguments: ["$studentId": GraphQL.InputValueType.stringValue(true).description], selectionSet: [ 149 | GraphQL.Field(name: "student", arguments: ["id": "$studentId"], selectionSet: [ 150 | GraphQL.Field(alias: "lifetimeActivity", name: "activity", selectionSet: [ 151 | "totalDuration", 152 | "questionsAttempted", 153 | "correctQuestionsAttempted" 154 | ]) 155 | ]) 156 | ]) 157 | 158 | print(lifetimeActivityQuery) 159 | 160 | /** 161 | node(id: "someIdString") { 162 | ... on Student { 163 | firstName 164 | lastName 165 | } 166 | } 167 | */ 168 | let nodeField = GraphQL.Field(name: "node", arguments: ["id": "someIdString"], fragments: [ 169 | GraphQL.InlineFragment(typeCondition: "Student", selectionSet: [ 170 | "firstName", 171 | "lastName" 172 | ]) 173 | ]) 174 | 175 | print(nodeField) 176 | -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/llbuild.yaml: -------------------------------------------------------------------------------- 1 | client: 2 | name: swift-build 3 | 4 | tools: {} 5 | 6 | targets: 7 | "": [] 8 | GraphQL: [] 9 | 10 | commands: 11 | : 12 | tool: swift-compiler 13 | executable: "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/bin/swiftc" 14 | inputs: ["/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Directive.swift","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Document.swift","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Field.swift","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Fragment.swift","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/GraphQL.swift","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/InlineFragment.swift","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Operation.swift","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/StringRendering.swift"] 15 | outputs: ["","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.swiftmodule","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/Directive.swift.o","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/Document.swift.o","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/Field.swift.o","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/Fragment.swift.o","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/GraphQL.swift.o","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/InlineFragment.swift.o","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/Operation.swift.o","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/StringRendering.swift.o"] 16 | module-name: "GraphQL" 17 | module-output-path: "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.swiftmodule" 18 | is-library: true 19 | sources: ["/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Directive.swift","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Document.swift","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Field.swift","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Fragment.swift","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/GraphQL.swift","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/InlineFragment.swift","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/Operation.swift","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/Sources/StringRendering.swift"] 20 | objects: ["/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/Directive.swift.o","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/Document.swift.o","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/Field.swift.o","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/Fragment.swift.o","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/GraphQL.swift.o","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/InlineFragment.swift.o","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/Operation.swift.o","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/StringRendering.swift.o"] 21 | import-paths: ["/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug"] 22 | temps-path: "/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/GraphQL" 23 | other-args: ["-j8","-Onone","-g","-target","x86_64-apple-macosx10.10","-enable-testing","-sdk","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk","-I","/usr/local/include"] 24 | : 25 | tool: shell 26 | inputs: ["","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/Directive.swift.o","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/Document.swift.o","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/Field.swift.o","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/Fragment.swift.o","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/GraphQL.swift.o","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/InlineFragment.swift.o","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/Operation.swift.o","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/StringRendering.swift.o"] 27 | outputs: ["","/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.a"] 28 | args: ["/bin/sh","-c","rm -f '/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.a'; ar cr '/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.a' '/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/Directive.swift.o' '/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/Document.swift.o' '/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/Field.swift.o' '/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/Fragment.swift.o' '/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/GraphQL.swift.o' '/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/InlineFragment.swift.o' '/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/Operation.swift.o' '/Users/justinmakaila/Workspace/Swift/Swift-GraphQL/.build/debug/GraphQL.o/Sources/StringRendering.swift.o'"] 29 | description: "Linking Library: .build/debug/GraphQL.a" 30 | -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/GraphQL/Directive.swiftdeps: -------------------------------------------------------------------------------- 1 | ### Swift dependencies file v0 ### 2 | provides-top-level: 3 | provides-nominal: 4 | - "VV7GraphQL7GraphQL9Directive" 5 | provides-member: 6 | - ["VV7GraphQL7GraphQL9Directive", ""] 7 | provides-dynamic-lookup: 8 | depends-top-level: 9 | - "CustomStringConvertible" 10 | - "CustomDebugStringConvertible" 11 | - !private "renderArgumentsList" 12 | - !private "StringLiteralType" 13 | - "String" 14 | - !private "UnicodeScalarType" 15 | - "GraphQL" 16 | depends-member: 17 | - !private ["Ps9AnyObject", "init"] 18 | - !private ["Sb", "deinit"] 19 | - !private ["Ps11CVarArgType", "init"] 20 | - !private ["Vs9Character", "deinit"] 21 | - !private ["Ps10Comparable", "init"] 22 | - !private ["Ps28CustomDebugStringConvertible", "arguments"] 23 | - ["Ps28CustomDebugStringConvertible", "debugDescription"] 24 | - ["Ps28CustomDebugStringConvertible", "description"] 25 | - !private ["Ps28CustomDebugStringConvertible", "init"] 26 | - !private ["Ps28CustomDebugStringConvertible", "name"] 27 | - !private ["Ps28CustomDebugStringConvertible", "renderArgumentsList"] 28 | - ["Ps28CustomDebugStringConvertible", ""] 29 | - !private ["Ps23CustomStringConvertible", "arguments"] 30 | - ["Ps23CustomStringConvertible", "debugDescription"] 31 | - ["Ps23CustomStringConvertible", "description"] 32 | - !private ["Ps23CustomStringConvertible", "init"] 33 | - !private ["Ps23CustomStringConvertible", "name"] 34 | - !private ["Ps23CustomStringConvertible", "renderArgumentsList"] 35 | - ["Ps23CustomStringConvertible", ""] 36 | - ["VV7GraphQL7GraphQL9Directive", "String"] 37 | - !private ["VV7GraphQL7GraphQL9Directive", "arguments"] 38 | - ["VV7GraphQL7GraphQL9Directive", "debugDescription"] 39 | - ["VV7GraphQL7GraphQL9Directive", "deinit"] 40 | - ["VV7GraphQL7GraphQL9Directive", "description"] 41 | - !private ["VV7GraphQL7GraphQL9Directive", "name"] 42 | - !private ["VV7GraphQL7GraphQL9Directive", "renderArgumentsList"] 43 | - !private ["Sd", "deinit"] 44 | - !private ["Ps9Equatable", "init"] 45 | - !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] 46 | - !private ["Sf", "deinit"] 47 | - ["V7GraphQL7GraphQL", "Directive"] 48 | - !private ["Ps8Hashable", "init"] 49 | - !private ["Si", "deinit"] 50 | - !private ["Vs5Int16", "deinit"] 51 | - !private ["Vs5Int32", "deinit"] 52 | - !private ["Vs5Int64", "deinit"] 53 | - !private ["Vs4Int8", "deinit"] 54 | - !private ["Ps14MirrorPathType", "init"] 55 | - !private ["PSo8NSCoding", "init"] 56 | - !private ["PSo9NSCopying", "init"] 57 | - !private ["PSo16NSMutableCopying", "init"] 58 | - !private ["CSo8NSObject", "init"] 59 | - !private ["PSo16NSObjectProtocol", "init"] 60 | - !private ["PSo14NSSecureCoding", "init"] 61 | - !private ["CSo8NSString", "init"] 62 | - !private ["Ps16OutputStreamType", "init"] 63 | - !private ["Ps10Streamable", "init"] 64 | - !private ["SS", "init"] 65 | - !private ["Ps30StringInterpolationConvertible", "init"] 66 | - !private ["Ps24StringLiteralConvertible", "init"] 67 | - !private ["Su", "deinit"] 68 | - !private ["Vs6UInt16", "deinit"] 69 | - !private ["Vs6UInt32", "deinit"] 70 | - !private ["Vs6UInt64", "deinit"] 71 | - !private ["Vs5UInt8", "deinit"] 72 | - !private ["Sc", "deinit"] 73 | - !private ["Ps31UnicodeScalarLiteralConvertible", "init"] 74 | - !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] 75 | - !private ["Ps32_BuiltinStringLiteralConvertible", "init"] 76 | - !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] 77 | - !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] 78 | - !private ["Ps21_ObjectiveCBridgeable", "init"] 79 | - !private ["Ps12_Reflectable", "init"] 80 | depends-nominal: 81 | - !private "Ps9AnyObject" 82 | - !private "Sb" 83 | - !private "Ps11CVarArgType" 84 | - !private "Vs9Character" 85 | - !private "Ps10Comparable" 86 | - "Ps28CustomDebugStringConvertible" 87 | - "Ps23CustomStringConvertible" 88 | - "VV7GraphQL7GraphQL9Directive" 89 | - !private "Sd" 90 | - !private "Ps9Equatable" 91 | - !private "Ps41ExtendedGraphemeClusterLiteralConvertible" 92 | - !private "Sf" 93 | - "V7GraphQL7GraphQL" 94 | - !private "Ps8Hashable" 95 | - !private "Si" 96 | - !private "Vs5Int16" 97 | - !private "Vs5Int32" 98 | - !private "Vs5Int64" 99 | - !private "Vs4Int8" 100 | - !private "Ps14MirrorPathType" 101 | - !private "PSo8NSCoding" 102 | - !private "PSo9NSCopying" 103 | - !private "PSo16NSMutableCopying" 104 | - !private "CSo8NSObject" 105 | - !private "PSo16NSObjectProtocol" 106 | - !private "PSo14NSSecureCoding" 107 | - !private "CSo8NSString" 108 | - !private "Ps16OutputStreamType" 109 | - !private "Ps10Streamable" 110 | - !private "SS" 111 | - !private "Ps30StringInterpolationConvertible" 112 | - !private "Ps24StringLiteralConvertible" 113 | - !private "Su" 114 | - !private "Vs6UInt16" 115 | - !private "Vs6UInt32" 116 | - !private "Vs6UInt64" 117 | - !private "Vs5UInt8" 118 | - !private "Sc" 119 | - !private "Ps31UnicodeScalarLiteralConvertible" 120 | - !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" 121 | - !private "Ps32_BuiltinStringLiteralConvertible" 122 | - !private "Ps37_BuiltinUTF16StringLiteralConvertible" 123 | - !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" 124 | - !private "Ps21_ObjectiveCBridgeable" 125 | - !private "Ps12_Reflectable" 126 | depends-dynamic-lookup: 127 | depends-external: 128 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule" 129 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule" 130 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule" 131 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule" 132 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule" 133 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule" 134 | interface-hash: "d06a0bcafcfd68ee1725941dbbbc7a02" 135 | -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/GraphQL/Document.swiftdeps: -------------------------------------------------------------------------------- 1 | ### Swift dependencies file v0 ### 2 | provides-top-level: 3 | provides-nominal: 4 | - "VV7GraphQL7GraphQL8Document" 5 | provides-member: 6 | - ["VV7GraphQL7GraphQL8Document", ""] 7 | provides-dynamic-lookup: 8 | depends-top-level: 9 | - "String" 10 | - !private "renderDocument" 11 | - !private "StringLiteralType" 12 | - "GraphQLQueryType" 13 | - "ArrayLiteralConvertible" 14 | - "CustomStringConvertible" 15 | - "CustomDebugStringConvertible" 16 | - "GraphQL" 17 | - !private "UnicodeScalarType" 18 | depends-member: 19 | - !private ["Ps9AnyObject", "init"] 20 | - ["Ps23ArrayLiteralConvertible", "debugDescription"] 21 | - ["Ps23ArrayLiteralConvertible", "description"] 22 | - ["Ps23ArrayLiteralConvertible", "init"] 23 | - !private ["Ps23ArrayLiteralConvertible", "operations"] 24 | - ["Ps23ArrayLiteralConvertible", "queryString"] 25 | - !private ["Ps23ArrayLiteralConvertible", "renderDocument"] 26 | - ["Ps23ArrayLiteralConvertible", ""] 27 | - !private ["Sb", "deinit"] 28 | - !private ["Ps11CVarArgType", "init"] 29 | - !private ["Vs9Character", "deinit"] 30 | - !private ["Ps10Comparable", "init"] 31 | - ["Ps28CustomDebugStringConvertible", "debugDescription"] 32 | - ["Ps28CustomDebugStringConvertible", "description"] 33 | - ["Ps28CustomDebugStringConvertible", "init"] 34 | - !private ["Ps28CustomDebugStringConvertible", "operations"] 35 | - ["Ps28CustomDebugStringConvertible", "queryString"] 36 | - !private ["Ps28CustomDebugStringConvertible", "renderDocument"] 37 | - ["Ps28CustomDebugStringConvertible", ""] 38 | - ["Ps23CustomStringConvertible", "debugDescription"] 39 | - ["Ps23CustomStringConvertible", "description"] 40 | - ["Ps23CustomStringConvertible", "init"] 41 | - !private ["Ps23CustomStringConvertible", "operations"] 42 | - ["Ps23CustomStringConvertible", "queryString"] 43 | - !private ["Ps23CustomStringConvertible", "renderDocument"] 44 | - ["Ps23CustomStringConvertible", ""] 45 | - ["VV7GraphQL7GraphQL8Document", "Element"] 46 | - ["VV7GraphQL7GraphQL8Document", "GraphQLQueryType"] 47 | - ["VV7GraphQL7GraphQL8Document", "String"] 48 | - ["VV7GraphQL7GraphQL8Document", "debugDescription"] 49 | - ["VV7GraphQL7GraphQL8Document", "deinit"] 50 | - ["VV7GraphQL7GraphQL8Document", "description"] 51 | - ["VV7GraphQL7GraphQL8Document", "init"] 52 | - !private ["VV7GraphQL7GraphQL8Document", "operations"] 53 | - ["VV7GraphQL7GraphQL8Document", "queryString"] 54 | - !private ["VV7GraphQL7GraphQL8Document", "renderDocument"] 55 | - !private ["Sd", "deinit"] 56 | - !private ["Ps9Equatable", "init"] 57 | - !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] 58 | - !private ["Sf", "deinit"] 59 | - ["V7GraphQL7GraphQL", "Document"] 60 | - ["P7GraphQL16GraphQLQueryType", "debugDescription"] 61 | - ["P7GraphQL16GraphQLQueryType", "description"] 62 | - ["P7GraphQL16GraphQLQueryType", "init"] 63 | - !private ["P7GraphQL16GraphQLQueryType", "operations"] 64 | - ["P7GraphQL16GraphQLQueryType", "queryString"] 65 | - !private ["P7GraphQL16GraphQLQueryType", "renderDocument"] 66 | - ["P7GraphQL16GraphQLQueryType", ""] 67 | - !private ["Ps8Hashable", "init"] 68 | - !private ["Si", "deinit"] 69 | - !private ["Vs5Int16", "deinit"] 70 | - !private ["Vs5Int32", "deinit"] 71 | - !private ["Vs5Int64", "deinit"] 72 | - !private ["Vs4Int8", "deinit"] 73 | - !private ["Ps14MirrorPathType", "init"] 74 | - !private ["PSo8NSCoding", "init"] 75 | - !private ["PSo9NSCopying", "init"] 76 | - !private ["PSo16NSMutableCopying", "init"] 77 | - !private ["CSo8NSObject", "init"] 78 | - !private ["PSo16NSObjectProtocol", "init"] 79 | - !private ["PSo14NSSecureCoding", "init"] 80 | - !private ["CSo8NSString", "init"] 81 | - !private ["Ps16OutputStreamType", "init"] 82 | - !private ["Ps10Streamable", "init"] 83 | - !private ["SS", "init"] 84 | - !private ["Ps30StringInterpolationConvertible", "init"] 85 | - !private ["Ps24StringLiteralConvertible", "init"] 86 | - !private ["Su", "deinit"] 87 | - !private ["Vs6UInt16", "deinit"] 88 | - !private ["Vs6UInt32", "deinit"] 89 | - !private ["Vs6UInt64", "deinit"] 90 | - !private ["Vs5UInt8", "deinit"] 91 | - !private ["Sc", "deinit"] 92 | - !private ["Ps31UnicodeScalarLiteralConvertible", "init"] 93 | - !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] 94 | - !private ["Ps32_BuiltinStringLiteralConvertible", "init"] 95 | - !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] 96 | - !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] 97 | - !private ["Ps21_ObjectiveCBridgeable", "init"] 98 | - !private ["Ps12_Reflectable", "init"] 99 | depends-nominal: 100 | - !private "Ps9AnyObject" 101 | - "Ps23ArrayLiteralConvertible" 102 | - !private "Sb" 103 | - !private "Ps11CVarArgType" 104 | - !private "Vs9Character" 105 | - !private "Ps10Comparable" 106 | - "Ps28CustomDebugStringConvertible" 107 | - "Ps23CustomStringConvertible" 108 | - "VV7GraphQL7GraphQL8Document" 109 | - !private "Sd" 110 | - !private "Ps9Equatable" 111 | - !private "Ps41ExtendedGraphemeClusterLiteralConvertible" 112 | - !private "Sf" 113 | - "V7GraphQL7GraphQL" 114 | - "P7GraphQL16GraphQLQueryType" 115 | - !private "Ps8Hashable" 116 | - !private "Si" 117 | - !private "Vs5Int16" 118 | - !private "Vs5Int32" 119 | - !private "Vs5Int64" 120 | - !private "Vs4Int8" 121 | - !private "Ps14MirrorPathType" 122 | - !private "PSo8NSCoding" 123 | - !private "PSo9NSCopying" 124 | - !private "PSo16NSMutableCopying" 125 | - !private "CSo8NSObject" 126 | - !private "PSo16NSObjectProtocol" 127 | - !private "PSo14NSSecureCoding" 128 | - !private "CSo8NSString" 129 | - !private "Ps16OutputStreamType" 130 | - !private "Ps10Streamable" 131 | - !private "SS" 132 | - !private "Ps30StringInterpolationConvertible" 133 | - !private "Ps24StringLiteralConvertible" 134 | - !private "Su" 135 | - !private "Vs6UInt16" 136 | - !private "Vs6UInt32" 137 | - !private "Vs6UInt64" 138 | - !private "Vs5UInt8" 139 | - !private "Sc" 140 | - !private "Ps31UnicodeScalarLiteralConvertible" 141 | - !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" 142 | - !private "Ps32_BuiltinStringLiteralConvertible" 143 | - !private "Ps37_BuiltinUTF16StringLiteralConvertible" 144 | - !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" 145 | - !private "Ps21_ObjectiveCBridgeable" 146 | - !private "Ps12_Reflectable" 147 | depends-dynamic-lookup: 148 | depends-external: 149 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule" 150 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule" 151 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule" 152 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule" 153 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule" 154 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule" 155 | interface-hash: "2275a34dfa65abc68fb500a8556b4400" 156 | -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/GraphQL/InlineFragment.swiftdeps: -------------------------------------------------------------------------------- 1 | ### Swift dependencies file v0 ### 2 | provides-top-level: 3 | provides-nominal: 4 | - "VV7GraphQL7GraphQL14InlineFragment" 5 | provides-member: 6 | - ["VV7GraphQL7GraphQL14InlineFragment", ""] 7 | provides-dynamic-lookup: 8 | depends-top-level: 9 | - !private "renderSelectionSet" 10 | - "CustomStringConvertible" 11 | - !private "StringLiteralType" 12 | - "CustomDebugStringConvertible" 13 | - "String" 14 | - !private "UnicodeScalarType" 15 | - "GraphQL" 16 | - !private "!=" 17 | depends-member: 18 | - !private ["Ps9AnyObject", "init"] 19 | - !private ["Sb", "_getBuiltinLogicValue"] 20 | - !private ["Sb", "deinit"] 21 | - !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] 22 | - !private ["Ps11BooleanType", "_getBuiltinLogicValue"] 23 | - !private ["Ps11CVarArgType", "init"] 24 | - !private ["Vs9Character", "deinit"] 25 | - !private ["Ps10Comparable", "init"] 26 | - ["Ps28CustomDebugStringConvertible", "debugDescription"] 27 | - ["Ps28CustomDebugStringConvertible", "description"] 28 | - !private ["Ps28CustomDebugStringConvertible", "directive"] 29 | - !private ["Ps28CustomDebugStringConvertible", "init"] 30 | - !private ["Ps28CustomDebugStringConvertible", "renderSelectionSet"] 31 | - !private ["Ps28CustomDebugStringConvertible", "selectionSet"] 32 | - !private ["Ps28CustomDebugStringConvertible", "typeCondition"] 33 | - ["Ps28CustomDebugStringConvertible", ""] 34 | - !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] 35 | - ["Ps23CustomStringConvertible", "debugDescription"] 36 | - ["Ps23CustomStringConvertible", "description"] 37 | - !private ["Ps23CustomStringConvertible", "directive"] 38 | - !private ["Ps23CustomStringConvertible", "init"] 39 | - !private ["Ps23CustomStringConvertible", "renderSelectionSet"] 40 | - !private ["Ps23CustomStringConvertible", "selectionSet"] 41 | - !private ["Ps23CustomStringConvertible", "typeCondition"] 42 | - ["Ps23CustomStringConvertible", ""] 43 | - !private ["VV7GraphQL7GraphQL9Directive", "deinit"] 44 | - !private ["VV7GraphQL7GraphQL9Directive", "description"] 45 | - !private ["Sd", "deinit"] 46 | - !private ["Ps9Equatable", "_getBuiltinLogicValue"] 47 | - !private ["Ps9Equatable", "init"] 48 | - !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] 49 | - !private ["Sf", "deinit"] 50 | - ["V7GraphQL7GraphQL", "InlineFragment"] 51 | - !private ["Ps8Hashable", "_getBuiltinLogicValue"] 52 | - !private ["Ps8Hashable", "init"] 53 | - ["VV7GraphQL7GraphQL14InlineFragment", "String"] 54 | - ["VV7GraphQL7GraphQL14InlineFragment", "debugDescription"] 55 | - ["VV7GraphQL7GraphQL14InlineFragment", "deinit"] 56 | - ["VV7GraphQL7GraphQL14InlineFragment", "description"] 57 | - !private ["VV7GraphQL7GraphQL14InlineFragment", "directive"] 58 | - !private ["VV7GraphQL7GraphQL14InlineFragment", "renderSelectionSet"] 59 | - !private ["VV7GraphQL7GraphQL14InlineFragment", "selectionSet"] 60 | - !private ["VV7GraphQL7GraphQL14InlineFragment", "typeCondition"] 61 | - !private ["Si", "deinit"] 62 | - !private ["Vs5Int16", "deinit"] 63 | - !private ["Vs5Int32", "deinit"] 64 | - !private ["Vs5Int64", "deinit"] 65 | - !private ["Vs4Int8", "deinit"] 66 | - !private ["Ps14MirrorPathType", "init"] 67 | - !private ["PSo8NSCoding", "init"] 68 | - !private ["PSo9NSCopying", "init"] 69 | - !private ["PSo16NSMutableCopying", "init"] 70 | - !private ["CSo8NSObject", "init"] 71 | - !private ["PSo16NSObjectProtocol", "init"] 72 | - !private ["PSo14NSSecureCoding", "init"] 73 | - !private ["CSo8NSString", "init"] 74 | - !private ["Sq", "deinit"] 75 | - !private ["Ps16OutputStreamType", "init"] 76 | - !private ["Ps10Streamable", "init"] 77 | - !private ["SS", "init"] 78 | - !private ["Ps30StringInterpolationConvertible", "init"] 79 | - !private ["Ps24StringLiteralConvertible", "init"] 80 | - !private ["Su", "deinit"] 81 | - !private ["Vs6UInt16", "deinit"] 82 | - !private ["Vs6UInt32", "deinit"] 83 | - !private ["Vs6UInt64", "deinit"] 84 | - !private ["Vs5UInt8", "deinit"] 85 | - !private ["Sc", "deinit"] 86 | - !private ["Ps31UnicodeScalarLiteralConvertible", "init"] 87 | - !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] 88 | - !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] 89 | - !private ["Ps32_BuiltinStringLiteralConvertible", "init"] 90 | - !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] 91 | - !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] 92 | - !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] 93 | - !private ["Ps21_ObjectiveCBridgeable", "init"] 94 | - !private ["Vs26_OptionalNilComparisonType", "deinit"] 95 | - !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] 96 | - !private ["Ps12_Reflectable", "init"] 97 | depends-nominal: 98 | - !private "Ps9AnyObject" 99 | - !private "Sb" 100 | - !private "Ps25BooleanLiteralConvertible" 101 | - !private "Ps11BooleanType" 102 | - !private "Ps11CVarArgType" 103 | - !private "Vs9Character" 104 | - !private "Ps10Comparable" 105 | - "Ps28CustomDebugStringConvertible" 106 | - "Ps23CustomStringConvertible" 107 | - !private "VV7GraphQL7GraphQL9Directive" 108 | - !private "Sd" 109 | - !private "Ps9Equatable" 110 | - !private "Ps41ExtendedGraphemeClusterLiteralConvertible" 111 | - !private "Sf" 112 | - "V7GraphQL7GraphQL" 113 | - !private "Ps8Hashable" 114 | - "VV7GraphQL7GraphQL14InlineFragment" 115 | - !private "Si" 116 | - !private "Vs5Int16" 117 | - !private "Vs5Int32" 118 | - !private "Vs5Int64" 119 | - !private "Vs4Int8" 120 | - !private "Ps14MirrorPathType" 121 | - !private "PSo8NSCoding" 122 | - !private "PSo9NSCopying" 123 | - !private "PSo16NSMutableCopying" 124 | - !private "CSo8NSObject" 125 | - !private "PSo16NSObjectProtocol" 126 | - !private "PSo14NSSecureCoding" 127 | - !private "CSo8NSString" 128 | - !private "Sq" 129 | - !private "Ps16OutputStreamType" 130 | - !private "Ps10Streamable" 131 | - !private "SS" 132 | - !private "Ps30StringInterpolationConvertible" 133 | - !private "Ps24StringLiteralConvertible" 134 | - !private "Su" 135 | - !private "Vs6UInt16" 136 | - !private "Vs6UInt32" 137 | - !private "Vs6UInt64" 138 | - !private "Vs5UInt8" 139 | - !private "Sc" 140 | - !private "Ps31UnicodeScalarLiteralConvertible" 141 | - !private "Ps33_BuiltinBooleanLiteralConvertible" 142 | - !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" 143 | - !private "Ps32_BuiltinStringLiteralConvertible" 144 | - !private "Ps37_BuiltinUTF16StringLiteralConvertible" 145 | - !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" 146 | - !private "Ps21_ObjectiveCBridgeable" 147 | - !private "Vs26_OptionalNilComparisonType" 148 | - !private "Ps12_Reflectable" 149 | depends-dynamic-lookup: 150 | depends-external: 151 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule" 152 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule" 153 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule" 154 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule" 155 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule" 156 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule" 157 | interface-hash: "156f48bd8ab4be6544a935e73d0b1835" 158 | -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/GraphQL/Fragment.swiftdeps: -------------------------------------------------------------------------------- 1 | ### Swift dependencies file v0 ### 2 | provides-top-level: 3 | - "..." 4 | - "..." 5 | provides-nominal: 6 | - "VV7GraphQL7GraphQL8Fragment" 7 | provides-member: 8 | - ["VV7GraphQL7GraphQL8Fragment", ""] 9 | provides-dynamic-lookup: 10 | depends-top-level: 11 | - "CustomDebugStringConvertible" 12 | - "CustomStringConvertible" 13 | - !private "!=" 14 | - !private "StringLiteralType" 15 | - "..." 16 | - !private "UnicodeScalarType" 17 | - "String" 18 | - !private "renderSelectionSet" 19 | - "GraphQL" 20 | depends-member: 21 | - !private ["Ps9AnyObject", "init"] 22 | - !private ["Sb", "_getBuiltinLogicValue"] 23 | - !private ["Sb", "deinit"] 24 | - !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] 25 | - !private ["Ps11BooleanType", "_getBuiltinLogicValue"] 26 | - !private ["Ps11CVarArgType", "init"] 27 | - !private ["Vs9Character", "deinit"] 28 | - !private ["Ps10Comparable", "init"] 29 | - ["Ps28CustomDebugStringConvertible", "debugDescription"] 30 | - ["Ps28CustomDebugStringConvertible", "description"] 31 | - !private ["Ps28CustomDebugStringConvertible", "directive"] 32 | - !private ["Ps28CustomDebugStringConvertible", "init"] 33 | - !private ["Ps28CustomDebugStringConvertible", "name"] 34 | - !private ["Ps28CustomDebugStringConvertible", "renderSelectionSet"] 35 | - !private ["Ps28CustomDebugStringConvertible", "selectionSet"] 36 | - !private ["Ps28CustomDebugStringConvertible", "typeCondition"] 37 | - ["Ps28CustomDebugStringConvertible", ""] 38 | - !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] 39 | - ["Ps23CustomStringConvertible", "debugDescription"] 40 | - ["Ps23CustomStringConvertible", "description"] 41 | - !private ["Ps23CustomStringConvertible", "directive"] 42 | - !private ["Ps23CustomStringConvertible", "init"] 43 | - !private ["Ps23CustomStringConvertible", "name"] 44 | - !private ["Ps23CustomStringConvertible", "renderSelectionSet"] 45 | - !private ["Ps23CustomStringConvertible", "selectionSet"] 46 | - !private ["Ps23CustomStringConvertible", "typeCondition"] 47 | - ["Ps23CustomStringConvertible", ""] 48 | - !private ["VV7GraphQL7GraphQL9Directive", "deinit"] 49 | - !private ["VV7GraphQL7GraphQL9Directive", "description"] 50 | - !private ["Sd", "deinit"] 51 | - !private ["Ps9Equatable", "_getBuiltinLogicValue"] 52 | - !private ["Ps9Equatable", "init"] 53 | - !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] 54 | - !private ["VV7GraphQL7GraphQL5Field", "deinit"] 55 | - !private ["VV7GraphQL7GraphQL5Field", "init"] 56 | - !private ["Sf", "deinit"] 57 | - ["VV7GraphQL7GraphQL8Fragment", "String"] 58 | - ["VV7GraphQL7GraphQL8Fragment", "debugDescription"] 59 | - ["VV7GraphQL7GraphQL8Fragment", "deinit"] 60 | - ["VV7GraphQL7GraphQL8Fragment", "description"] 61 | - !private ["VV7GraphQL7GraphQL8Fragment", "directive"] 62 | - !private ["VV7GraphQL7GraphQL8Fragment", "name"] 63 | - !private ["VV7GraphQL7GraphQL8Fragment", "renderSelectionSet"] 64 | - !private ["VV7GraphQL7GraphQL8Fragment", "selectionSet"] 65 | - !private ["VV7GraphQL7GraphQL8Fragment", "typeCondition"] 66 | - ["V7GraphQL7GraphQL", "Field"] 67 | - ["V7GraphQL7GraphQL", "Fragment"] 68 | - !private ["P7GraphQL16GraphQLQueryType", "init"] 69 | - !private ["Ps8Hashable", "_getBuiltinLogicValue"] 70 | - !private ["Ps8Hashable", "init"] 71 | - !private ["Si", "deinit"] 72 | - !private ["Vs5Int16", "deinit"] 73 | - !private ["Vs5Int32", "deinit"] 74 | - !private ["Vs5Int64", "deinit"] 75 | - !private ["Vs4Int8", "deinit"] 76 | - !private ["Ps14MirrorPathType", "init"] 77 | - !private ["PSo8NSCoding", "init"] 78 | - !private ["PSo9NSCopying", "init"] 79 | - !private ["PSo16NSMutableCopying", "init"] 80 | - !private ["CSo8NSObject", "init"] 81 | - !private ["PSo16NSObjectProtocol", "init"] 82 | - !private ["PSo14NSSecureCoding", "init"] 83 | - !private ["CSo8NSString", "init"] 84 | - !private ["Sq", "deinit"] 85 | - !private ["Ps16OutputStreamType", "init"] 86 | - !private ["Ps10Streamable", "init"] 87 | - !private ["SS", "init"] 88 | - !private ["Ps30StringInterpolationConvertible", "init"] 89 | - !private ["Ps24StringLiteralConvertible", "init"] 90 | - !private ["Su", "deinit"] 91 | - !private ["Vs6UInt16", "deinit"] 92 | - !private ["Vs6UInt32", "deinit"] 93 | - !private ["Vs6UInt64", "deinit"] 94 | - !private ["Vs5UInt8", "deinit"] 95 | - !private ["Sc", "deinit"] 96 | - !private ["Ps31UnicodeScalarLiteralConvertible", "init"] 97 | - !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] 98 | - !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] 99 | - !private ["Ps32_BuiltinStringLiteralConvertible", "init"] 100 | - !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] 101 | - !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] 102 | - !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] 103 | - !private ["Ps21_ObjectiveCBridgeable", "init"] 104 | - !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] 105 | - !private ["Ps12_Reflectable", "init"] 106 | depends-nominal: 107 | - !private "Ps9AnyObject" 108 | - !private "Sb" 109 | - !private "Ps25BooleanLiteralConvertible" 110 | - !private "Ps11BooleanType" 111 | - !private "Ps11CVarArgType" 112 | - !private "Vs9Character" 113 | - !private "Ps10Comparable" 114 | - "Ps28CustomDebugStringConvertible" 115 | - "Ps23CustomStringConvertible" 116 | - !private "VV7GraphQL7GraphQL9Directive" 117 | - !private "Sd" 118 | - !private "Ps9Equatable" 119 | - !private "Ps41ExtendedGraphemeClusterLiteralConvertible" 120 | - !private "VV7GraphQL7GraphQL5Field" 121 | - !private "Sf" 122 | - "VV7GraphQL7GraphQL8Fragment" 123 | - "V7GraphQL7GraphQL" 124 | - !private "P7GraphQL16GraphQLQueryType" 125 | - !private "Ps8Hashable" 126 | - !private "Si" 127 | - !private "Vs5Int16" 128 | - !private "Vs5Int32" 129 | - !private "Vs5Int64" 130 | - !private "Vs4Int8" 131 | - !private "Ps14MirrorPathType" 132 | - !private "PSo8NSCoding" 133 | - !private "PSo9NSCopying" 134 | - !private "PSo16NSMutableCopying" 135 | - !private "CSo8NSObject" 136 | - !private "PSo16NSObjectProtocol" 137 | - !private "PSo14NSSecureCoding" 138 | - !private "CSo8NSString" 139 | - !private "Sq" 140 | - !private "Ps16OutputStreamType" 141 | - !private "Ps10Streamable" 142 | - !private "SS" 143 | - !private "Ps30StringInterpolationConvertible" 144 | - !private "Ps24StringLiteralConvertible" 145 | - !private "Su" 146 | - !private "Vs6UInt16" 147 | - !private "Vs6UInt32" 148 | - !private "Vs6UInt64" 149 | - !private "Vs5UInt8" 150 | - !private "Sc" 151 | - !private "Ps31UnicodeScalarLiteralConvertible" 152 | - !private "Ps33_BuiltinBooleanLiteralConvertible" 153 | - !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" 154 | - !private "Ps32_BuiltinStringLiteralConvertible" 155 | - !private "Ps37_BuiltinUTF16StringLiteralConvertible" 156 | - !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" 157 | - !private "Ps21_ObjectiveCBridgeable" 158 | - !private "Ps12_Reflectable" 159 | depends-dynamic-lookup: 160 | depends-external: 161 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule" 162 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule" 163 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule" 164 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule" 165 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule" 166 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule" 167 | interface-hash: "d5d1e0476814726da5258ee35695d95b" 168 | -------------------------------------------------------------------------------- /GraphQL/GraphQL.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | public protocol GraphQLType: CustomStringConvertible, CustomDebugStringConvertible { 4 | var queryString: String { get } 5 | } 6 | 7 | extension GraphQLType { 8 | public var queryString: String { 9 | return description 10 | } 11 | } 12 | 13 | public protocol GraphQLOperation: GraphQLType { 14 | var type: GraphQL.OperationType { get } 15 | var name: String { get } 16 | var arguments: [String: Any] { get } 17 | var selectionSet: GraphQL.SelectionSet { get } 18 | } 19 | 20 | public struct GraphQL { 21 | public typealias SelectionSet = [GraphQL.Field] 22 | 23 | public enum InputValueType: CustomStringConvertible { 24 | case intValue(Bool) 25 | case floatValue(Bool) 26 | case stringValue(Bool) 27 | case booleanValue(Bool) 28 | case enumValue(Bool) 29 | case listValue(Bool) 30 | case objectValue(Bool) 31 | 32 | public var description: String { 33 | switch self { 34 | case .intValue(let required): 35 | return required ? "Int!" : "Int" 36 | case .floatValue(let required): 37 | return required ? "Float!" : "Float" 38 | case .stringValue(let required): 39 | return required ? "String!" : "String" 40 | case .booleanValue(let required): 41 | return required ? "Boolean!" : "Boolean" 42 | case .enumValue(let required): 43 | return required ? "Enum!" : "Enum" 44 | case .listValue(let required): 45 | return required ? "List!" : "List" 46 | case .objectValue(let required): 47 | return required ? "Object!": "Object" 48 | } 49 | } 50 | } 51 | 52 | public enum OperationType: String, CustomStringConvertible { 53 | // A write followed by a fetch 54 | case mutation = "mutation" 55 | 56 | // A ready-only fetch 57 | case query = "query" 58 | 59 | public var description: String { 60 | return rawValue 61 | } 62 | } 63 | 64 | /** 65 | Document Definition: 66 | Operation Definition 67 | Fragment Definition 68 | 69 | A GraphQL query document describes a complete file or request string received by a GraphQL service. A document contains multiple definitions of Operations and Fragments. GraphQL query documents are only executable by a server if they contain an operation. However documents which do not contain operations may still be parsed and validated to allow client to represent a single request across many documents. 70 | 71 | If a document contains only one operation, that operation may be unnamed or represented in the shorthand form, which omits both the query keyword and operation name. Otherwise, if a GraphQL query document contains multiple operations, each operation must be named. When submitting a query document with multiple operations to a GraphQL service, the name of the desired operation to be executed must also be provided. 72 | */ 73 | public struct Document: GraphQLType { 74 | public let operations: [GraphQLType] 75 | 76 | public init(operations: [GraphQLType]) { 77 | self.operations = operations 78 | } 79 | } 80 | 81 | public struct Query: GraphQLOperation { 82 | public let type: OperationType = .query 83 | public let name: String 84 | public let arguments: [String: Any] 85 | public let selectionSet: SelectionSet 86 | 87 | public init(name: String = "", arguments: [String: Any] = [:], selectionSet: SelectionSet) { 88 | self.name = name 89 | self.arguments = arguments 90 | self.selectionSet = selectionSet 91 | } 92 | } 93 | 94 | public struct Mutation: GraphQLOperation { 95 | public let type: OperationType = .mutation 96 | public let name: String 97 | public let arguments: [String: Any] 98 | public let selectionSet: SelectionSet 99 | 100 | public init(name: String = "", arguments: [String: Any] = [:], selectionSet: SelectionSet) { 101 | self.name = name 102 | self.arguments = arguments 103 | self.selectionSet = selectionSet 104 | } 105 | } 106 | 107 | /** 108 | Field Definition: 109 | Alias? Name Arguments? Directives? SelectionSet? 110 | 111 | Fields describe complex data or relationships to other data. In order to further explore this data, a field may itself contain a selection set, allowing for deeply nested requests. 112 | 113 | All GraphQL operations must specify their selections down to fields which return scalar values to ensure an unambiguously shaped response. 114 | */ 115 | public struct Field: GraphQLType { 116 | public let alias: String? 117 | public let name: String 118 | public let arguments: [String: Any] 119 | 120 | public let selectionSet: SelectionSet 121 | 122 | public let fragments: [InlineFragment] 123 | 124 | public var isRootNode: Bool { 125 | return name.isEmpty 126 | } 127 | 128 | public init(alias: String? = nil, name: String, arguments: [String: Any] = [:], selectionSet: SelectionSet = [], fragments: [InlineFragment] = []) { 129 | for field in selectionSet { 130 | assert(!field.isRootNode, "You cannot add a root field as a child of another field") 131 | } 132 | 133 | self.alias = alias 134 | self.name = name 135 | self.arguments = arguments 136 | self.selectionSet = selectionSet 137 | self.fragments = fragments 138 | } 139 | } 140 | 141 | /** 142 | Directive Definition: 143 | @ Name Arguments? 144 | 145 | Directives provide a way to describe alternate runtime execution and type validation behavior in a GraphQL document. 146 | 147 | Directives have a name along with a list of arguments which may accept values of any input type. 148 | 149 | Directives can be used to describe additional information for fields, fragments, and operations. 150 | */ 151 | public struct Directive { 152 | public let name: String 153 | public let arguments: [String: Any] 154 | 155 | public init(name: String, arguments: [String: Any] = [:]) { 156 | self.name = name 157 | self.arguments = arguments 158 | } 159 | } 160 | 161 | /** 162 | InlineFragment Definition: 163 | ... TypeCondition? Directives? SelectionSet 164 | 165 | Fragments can be defined inline with a selection set. This is done to conditionally include fields based on their runtime type. 166 | 167 | Inline fragments may also be used to apply a directive to a group of fields. If the TypeCondition is omitted, an inline fragment is considered to be of the same type as the enclosing context. 168 | */ 169 | public struct InlineFragment { 170 | public let typeCondition: String? 171 | public let directive: Directive? 172 | public let selectionSet: SelectionSet 173 | 174 | public init(typeCondition: String? = nil, directive: Directive? = nil, selectionSet: SelectionSet) { 175 | // TODO: Assert that `typeCondition` or `directive` is not nil 176 | 177 | self.typeCondition = typeCondition 178 | self.directive = directive 179 | self.selectionSet = selectionSet 180 | } 181 | } 182 | 183 | public struct Fragment: GraphQLType { 184 | public let name: String 185 | public let typeCondition: String 186 | public let selectionSet: SelectionSet 187 | 188 | public init(name: String, typeCondition: String, selectionSet: SelectionSet) { 189 | self.name = name 190 | self.typeCondition = typeCondition 191 | self.selectionSet = selectionSet 192 | } 193 | } 194 | } 195 | -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/GraphQL/Operation.swiftdeps: -------------------------------------------------------------------------------- 1 | ### Swift dependencies file v0 ### 2 | provides-top-level: 3 | provides-nominal: 4 | - "VV7GraphQL7GraphQL9Operation" 5 | provides-member: 6 | - ["VV7GraphQL7GraphQL9Operation", ""] 7 | provides-dynamic-lookup: 8 | depends-top-level: 9 | - !private "renderSelectionSet" 10 | - "String" 11 | - "GraphQL" 12 | - !private "UnicodeScalarType" 13 | - "CustomStringConvertible" 14 | - "CustomDebugStringConvertible" 15 | - !private "StringLiteralType" 16 | - !private "renderArgumentsList" 17 | - "GraphQLQueryType" 18 | depends-member: 19 | - !private ["Ps9AnyObject", "init"] 20 | - !private ["Ps9AnyObject", "isEmpty"] 21 | - !private ["Sb", "_getBuiltinLogicValue"] 22 | - !private ["Sb", "deinit"] 23 | - !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] 24 | - !private ["Ps11BooleanType", "_getBuiltinLogicValue"] 25 | - !private ["Ps11CVarArgType", "init"] 26 | - !private ["Ps11CVarArgType", "isEmpty"] 27 | - !private ["Vs9Character", "deinit"] 28 | - !private ["Ps10Comparable", "init"] 29 | - !private ["Ps10Comparable", "isEmpty"] 30 | - !private ["Ps28CustomDebugStringConvertible", "arguments"] 31 | - ["Ps28CustomDebugStringConvertible", "debugDescription"] 32 | - ["Ps28CustomDebugStringConvertible", "description"] 33 | - !private ["Ps28CustomDebugStringConvertible", "init"] 34 | - !private ["Ps28CustomDebugStringConvertible", "isEmpty"] 35 | - !private ["Ps28CustomDebugStringConvertible", "name"] 36 | - ["Ps28CustomDebugStringConvertible", "queryString"] 37 | - !private ["Ps28CustomDebugStringConvertible", "renderArgumentsList"] 38 | - !private ["Ps28CustomDebugStringConvertible", "renderSelectionSet"] 39 | - !private ["Ps28CustomDebugStringConvertible", "selectionSet"] 40 | - !private ["Ps28CustomDebugStringConvertible", "type"] 41 | - ["Ps28CustomDebugStringConvertible", ""] 42 | - !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] 43 | - !private ["Ps23CustomStringConvertible", "arguments"] 44 | - ["Ps23CustomStringConvertible", "debugDescription"] 45 | - ["Ps23CustomStringConvertible", "description"] 46 | - !private ["Ps23CustomStringConvertible", "init"] 47 | - !private ["Ps23CustomStringConvertible", "isEmpty"] 48 | - !private ["Ps23CustomStringConvertible", "name"] 49 | - ["Ps23CustomStringConvertible", "queryString"] 50 | - !private ["Ps23CustomStringConvertible", "renderArgumentsList"] 51 | - !private ["Ps23CustomStringConvertible", "renderSelectionSet"] 52 | - !private ["Ps23CustomStringConvertible", "selectionSet"] 53 | - !private ["Ps23CustomStringConvertible", "type"] 54 | - ["Ps23CustomStringConvertible", ""] 55 | - !private ["Sd", "deinit"] 56 | - !private ["Ps9Equatable", "_getBuiltinLogicValue"] 57 | - !private ["Ps9Equatable", "init"] 58 | - !private ["Ps9Equatable", "isEmpty"] 59 | - !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] 60 | - !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "isEmpty"] 61 | - !private ["Sf", "deinit"] 62 | - ["V7GraphQL7GraphQL", "Operation"] 63 | - !private ["P7GraphQL16GraphQLQueryType", "arguments"] 64 | - ["P7GraphQL16GraphQLQueryType", "debugDescription"] 65 | - ["P7GraphQL16GraphQLQueryType", "description"] 66 | - !private ["P7GraphQL16GraphQLQueryType", "name"] 67 | - ["P7GraphQL16GraphQLQueryType", "queryString"] 68 | - !private ["P7GraphQL16GraphQLQueryType", "renderArgumentsList"] 69 | - !private ["P7GraphQL16GraphQLQueryType", "renderSelectionSet"] 70 | - !private ["P7GraphQL16GraphQLQueryType", "selectionSet"] 71 | - !private ["P7GraphQL16GraphQLQueryType", "type"] 72 | - ["P7GraphQL16GraphQLQueryType", ""] 73 | - !private ["Ps8Hashable", "_getBuiltinLogicValue"] 74 | - !private ["Ps8Hashable", "init"] 75 | - !private ["Ps8Hashable", "isEmpty"] 76 | - !private ["Si", "deinit"] 77 | - !private ["Vs5Int16", "deinit"] 78 | - !private ["Vs5Int32", "deinit"] 79 | - !private ["Vs5Int64", "deinit"] 80 | - !private ["Vs4Int8", "deinit"] 81 | - !private ["Ps14MirrorPathType", "init"] 82 | - !private ["Ps14MirrorPathType", "isEmpty"] 83 | - !private ["PSo8NSCoding", "init"] 84 | - !private ["PSo8NSCoding", "isEmpty"] 85 | - !private ["PSo9NSCopying", "init"] 86 | - !private ["PSo9NSCopying", "isEmpty"] 87 | - !private ["PSo16NSMutableCopying", "init"] 88 | - !private ["PSo16NSMutableCopying", "isEmpty"] 89 | - !private ["CSo8NSObject", "init"] 90 | - !private ["CSo8NSObject", "isEmpty"] 91 | - !private ["PSo16NSObjectProtocol", "init"] 92 | - !private ["PSo16NSObjectProtocol", "isEmpty"] 93 | - !private ["PSo14NSSecureCoding", "init"] 94 | - !private ["PSo14NSSecureCoding", "isEmpty"] 95 | - !private ["CSo8NSString", "init"] 96 | - !private ["CSo8NSString", "isEmpty"] 97 | - ["VV7GraphQL7GraphQL9Operation", "String"] 98 | - !private ["VV7GraphQL7GraphQL9Operation", "arguments"] 99 | - ["VV7GraphQL7GraphQL9Operation", "debugDescription"] 100 | - ["VV7GraphQL7GraphQL9Operation", "deinit"] 101 | - ["VV7GraphQL7GraphQL9Operation", "description"] 102 | - !private ["VV7GraphQL7GraphQL9Operation", "name"] 103 | - ["VV7GraphQL7GraphQL9Operation", "queryString"] 104 | - !private ["VV7GraphQL7GraphQL9Operation", "renderArgumentsList"] 105 | - !private ["VV7GraphQL7GraphQL9Operation", "renderSelectionSet"] 106 | - !private ["VV7GraphQL7GraphQL9Operation", "selectionSet"] 107 | - !private ["VV7GraphQL7GraphQL9Operation", "type"] 108 | - !private ["Ps16OutputStreamType", "init"] 109 | - !private ["Ps16OutputStreamType", "isEmpty"] 110 | - !private ["Ps10Streamable", "init"] 111 | - !private ["Ps10Streamable", "isEmpty"] 112 | - !private ["SS", "init"] 113 | - !private ["SS", "isEmpty"] 114 | - !private ["Ps30StringInterpolationConvertible", "init"] 115 | - !private ["Ps30StringInterpolationConvertible", "isEmpty"] 116 | - !private ["Ps24StringLiteralConvertible", "init"] 117 | - !private ["Ps24StringLiteralConvertible", "isEmpty"] 118 | - !private ["Su", "deinit"] 119 | - !private ["Vs6UInt16", "deinit"] 120 | - !private ["Vs6UInt32", "deinit"] 121 | - !private ["Vs6UInt64", "deinit"] 122 | - !private ["Vs5UInt8", "deinit"] 123 | - !private ["Sc", "deinit"] 124 | - !private ["Ps31UnicodeScalarLiteralConvertible", "init"] 125 | - !private ["Ps31UnicodeScalarLiteralConvertible", "isEmpty"] 126 | - !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] 127 | - !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] 128 | - !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "isEmpty"] 129 | - !private ["Ps32_BuiltinStringLiteralConvertible", "init"] 130 | - !private ["Ps32_BuiltinStringLiteralConvertible", "isEmpty"] 131 | - !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] 132 | - !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "isEmpty"] 133 | - !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] 134 | - !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "isEmpty"] 135 | - !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] 136 | - !private ["Ps21_ObjectiveCBridgeable", "init"] 137 | - !private ["Ps21_ObjectiveCBridgeable", "isEmpty"] 138 | - !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] 139 | - !private ["Ps12_Reflectable", "init"] 140 | - !private ["Ps12_Reflectable", "isEmpty"] 141 | depends-nominal: 142 | - !private "Ps9AnyObject" 143 | - !private "Sb" 144 | - !private "Ps25BooleanLiteralConvertible" 145 | - !private "Ps11BooleanType" 146 | - !private "Ps11CVarArgType" 147 | - !private "Vs9Character" 148 | - !private "Ps10Comparable" 149 | - "Ps28CustomDebugStringConvertible" 150 | - "Ps23CustomStringConvertible" 151 | - !private "Sd" 152 | - !private "Ps9Equatable" 153 | - !private "Ps41ExtendedGraphemeClusterLiteralConvertible" 154 | - !private "Sf" 155 | - "V7GraphQL7GraphQL" 156 | - "P7GraphQL16GraphQLQueryType" 157 | - !private "Ps8Hashable" 158 | - !private "Si" 159 | - !private "Vs5Int16" 160 | - !private "Vs5Int32" 161 | - !private "Vs5Int64" 162 | - !private "Vs4Int8" 163 | - !private "Ps14MirrorPathType" 164 | - !private "PSo8NSCoding" 165 | - !private "PSo9NSCopying" 166 | - !private "PSo16NSMutableCopying" 167 | - !private "CSo8NSObject" 168 | - !private "PSo16NSObjectProtocol" 169 | - !private "PSo14NSSecureCoding" 170 | - !private "CSo8NSString" 171 | - "VV7GraphQL7GraphQL9Operation" 172 | - !private "Ps16OutputStreamType" 173 | - !private "Ps10Streamable" 174 | - !private "SS" 175 | - !private "Ps30StringInterpolationConvertible" 176 | - !private "Ps24StringLiteralConvertible" 177 | - !private "Su" 178 | - !private "Vs6UInt16" 179 | - !private "Vs6UInt32" 180 | - !private "Vs6UInt64" 181 | - !private "Vs5UInt8" 182 | - !private "Sc" 183 | - !private "Ps31UnicodeScalarLiteralConvertible" 184 | - !private "Ps33_BuiltinBooleanLiteralConvertible" 185 | - !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" 186 | - !private "Ps32_BuiltinStringLiteralConvertible" 187 | - !private "Ps37_BuiltinUTF16StringLiteralConvertible" 188 | - !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" 189 | - !private "Ps21_ObjectiveCBridgeable" 190 | - !private "Ps12_Reflectable" 191 | depends-dynamic-lookup: 192 | depends-external: 193 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule" 194 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule" 195 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule" 196 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule" 197 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule" 198 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule" 199 | interface-hash: "14cb8d3ecdf6d3f05bbf4e1bb3e306de" 200 | -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/GraphQL/Field.swiftdeps: -------------------------------------------------------------------------------- 1 | ### Swift dependencies file v0 ### 2 | provides-top-level: 3 | provides-nominal: 4 | - "VV7GraphQL7GraphQL5Field" 5 | provides-member: 6 | - ["VV7GraphQL7GraphQL5Field", ""] 7 | provides-dynamic-lookup: 8 | depends-top-level: 9 | - "StringLiteralType" 10 | - "String" 11 | - "StringLiteralConvertible" 12 | - !private "!" 13 | - !private "renderSelectionSet" 14 | - !private "renderArgumentsList" 15 | - "CustomDebugStringConvertible" 16 | - "GraphQLQueryType" 17 | - "CustomStringConvertible" 18 | - !private "UnicodeScalarType" 19 | - "GraphQL" 20 | depends-member: 21 | - !private ["Ps9AnyObject", "init"] 22 | - !private ["Ps9AnyObject", "isEmpty"] 23 | - !private ["Sb", "_getBuiltinLogicValue"] 24 | - !private ["Sb", "deinit"] 25 | - !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] 26 | - !private ["Ps11BooleanType", "_getBuiltinLogicValue"] 27 | - !private ["Ps11CVarArgType", "init"] 28 | - !private ["Ps11CVarArgType", "isEmpty"] 29 | - !private ["Vs9Character", "deinit"] 30 | - !private ["Ps10Comparable", "init"] 31 | - !private ["Ps10Comparable", "isEmpty"] 32 | - ["Ps28CustomDebugStringConvertible", "ExtendedGraphemeClusterLiteralType"] 33 | - ["Ps28CustomDebugStringConvertible", "Some"] 34 | - ["Ps28CustomDebugStringConvertible", "UnicodeScalarLiteralType"] 35 | - !private ["Ps28CustomDebugStringConvertible", "alias"] 36 | - !private ["Ps28CustomDebugStringConvertible", "arguments"] 37 | - ["Ps28CustomDebugStringConvertible", "debugDescription"] 38 | - ["Ps28CustomDebugStringConvertible", "description"] 39 | - !private ["Ps28CustomDebugStringConvertible", "fragments"] 40 | - ["Ps28CustomDebugStringConvertible", "init"] 41 | - !private ["Ps28CustomDebugStringConvertible", "isEmpty"] 42 | - !private ["Ps28CustomDebugStringConvertible", "name"] 43 | - ["Ps28CustomDebugStringConvertible", "queryString"] 44 | - !private ["Ps28CustomDebugStringConvertible", "renderArgumentsList"] 45 | - !private ["Ps28CustomDebugStringConvertible", "renderSelectionSet"] 46 | - !private ["Ps28CustomDebugStringConvertible", "selectionSet"] 47 | - ["Ps28CustomDebugStringConvertible", ""] 48 | - ["Ps23CustomStringConvertible", "ExtendedGraphemeClusterLiteralType"] 49 | - ["Ps23CustomStringConvertible", "UnicodeScalarLiteralType"] 50 | - !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] 51 | - !private ["Ps23CustomStringConvertible", "alias"] 52 | - !private ["Ps23CustomStringConvertible", "arguments"] 53 | - ["Ps23CustomStringConvertible", "debugDescription"] 54 | - ["Ps23CustomStringConvertible", "description"] 55 | - !private ["Ps23CustomStringConvertible", "fragments"] 56 | - ["Ps23CustomStringConvertible", "init"] 57 | - !private ["Ps23CustomStringConvertible", "isEmpty"] 58 | - !private ["Ps23CustomStringConvertible", "name"] 59 | - ["Ps23CustomStringConvertible", "queryString"] 60 | - !private ["Ps23CustomStringConvertible", "renderArgumentsList"] 61 | - !private ["Ps23CustomStringConvertible", "renderSelectionSet"] 62 | - !private ["Ps23CustomStringConvertible", "selectionSet"] 63 | - ["Ps23CustomStringConvertible", ""] 64 | - !private ["Sd", "deinit"] 65 | - !private ["Ps9Equatable", "_getBuiltinLogicValue"] 66 | - !private ["Ps9Equatable", "init"] 67 | - !private ["Ps9Equatable", "isEmpty"] 68 | - ["Ps41ExtendedGraphemeClusterLiteralConvertible", "ExtendedGraphemeClusterLiteralType"] 69 | - ["Ps41ExtendedGraphemeClusterLiteralConvertible", "UnicodeScalarLiteralType"] 70 | - !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "alias"] 71 | - !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "arguments"] 72 | - ["Ps41ExtendedGraphemeClusterLiteralConvertible", "debugDescription"] 73 | - ["Ps41ExtendedGraphemeClusterLiteralConvertible", "description"] 74 | - !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "fragments"] 75 | - ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] 76 | - !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "isEmpty"] 77 | - !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "name"] 78 | - ["Ps41ExtendedGraphemeClusterLiteralConvertible", "queryString"] 79 | - !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "renderArgumentsList"] 80 | - !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "renderSelectionSet"] 81 | - !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "selectionSet"] 82 | - ["Ps41ExtendedGraphemeClusterLiteralConvertible", ""] 83 | - ["VV7GraphQL7GraphQL5Field", "ExtendedGraphemeClusterLiteralType"] 84 | - ["VV7GraphQL7GraphQL5Field", "String"] 85 | - ["VV7GraphQL7GraphQL5Field", "StringLiteralType"] 86 | - ["VV7GraphQL7GraphQL5Field", "UnicodeScalarLiteralType"] 87 | - !private ["VV7GraphQL7GraphQL5Field", "alias"] 88 | - !private ["VV7GraphQL7GraphQL5Field", "arguments"] 89 | - ["VV7GraphQL7GraphQL5Field", "debugDescription"] 90 | - ["VV7GraphQL7GraphQL5Field", "deinit"] 91 | - ["VV7GraphQL7GraphQL5Field", "description"] 92 | - !private ["VV7GraphQL7GraphQL5Field", "fragments"] 93 | - ["VV7GraphQL7GraphQL5Field", "init"] 94 | - !private ["VV7GraphQL7GraphQL5Field", "name"] 95 | - ["VV7GraphQL7GraphQL5Field", "queryString"] 96 | - !private ["VV7GraphQL7GraphQL5Field", "renderArgumentsList"] 97 | - !private ["VV7GraphQL7GraphQL5Field", "renderSelectionSet"] 98 | - !private ["VV7GraphQL7GraphQL5Field", "selectionSet"] 99 | - !private ["Sf", "deinit"] 100 | - ["V7GraphQL7GraphQL", "Field"] 101 | - ["P7GraphQL16GraphQLQueryType", "ExtendedGraphemeClusterLiteralType"] 102 | - ["P7GraphQL16GraphQLQueryType", "UnicodeScalarLiteralType"] 103 | - !private ["P7GraphQL16GraphQLQueryType", "alias"] 104 | - !private ["P7GraphQL16GraphQLQueryType", "arguments"] 105 | - ["P7GraphQL16GraphQLQueryType", "debugDescription"] 106 | - ["P7GraphQL16GraphQLQueryType", "description"] 107 | - !private ["P7GraphQL16GraphQLQueryType", "fragments"] 108 | - ["P7GraphQL16GraphQLQueryType", "init"] 109 | - !private ["P7GraphQL16GraphQLQueryType", "name"] 110 | - ["P7GraphQL16GraphQLQueryType", "queryString"] 111 | - !private ["P7GraphQL16GraphQLQueryType", "renderArgumentsList"] 112 | - !private ["P7GraphQL16GraphQLQueryType", "renderSelectionSet"] 113 | - !private ["P7GraphQL16GraphQLQueryType", "selectionSet"] 114 | - ["P7GraphQL16GraphQLQueryType", ""] 115 | - !private ["Ps8Hashable", "_getBuiltinLogicValue"] 116 | - !private ["Ps8Hashable", "init"] 117 | - !private ["Ps8Hashable", "isEmpty"] 118 | - !private ["Si", "deinit"] 119 | - !private ["Vs5Int16", "deinit"] 120 | - !private ["Vs5Int32", "deinit"] 121 | - !private ["Vs5Int64", "deinit"] 122 | - !private ["Vs4Int8", "deinit"] 123 | - !private ["Ps14MirrorPathType", "init"] 124 | - !private ["Ps14MirrorPathType", "isEmpty"] 125 | - !private ["PSo8NSCoding", "init"] 126 | - !private ["PSo8NSCoding", "isEmpty"] 127 | - !private ["PSo9NSCopying", "init"] 128 | - !private ["PSo9NSCopying", "isEmpty"] 129 | - !private ["PSo16NSMutableCopying", "init"] 130 | - !private ["PSo16NSMutableCopying", "isEmpty"] 131 | - !private ["CSo8NSObject", "init"] 132 | - !private ["CSo8NSObject", "isEmpty"] 133 | - !private ["PSo16NSObjectProtocol", "init"] 134 | - !private ["PSo16NSObjectProtocol", "isEmpty"] 135 | - !private ["PSo14NSSecureCoding", "init"] 136 | - !private ["PSo14NSSecureCoding", "isEmpty"] 137 | - !private ["CSo8NSString", "init"] 138 | - !private ["CSo8NSString", "isEmpty"] 139 | - ["Ps21NilLiteralConvertible", "Some"] 140 | - ["Sq", "Some"] 141 | - !private ["Ps16OutputStreamType", "init"] 142 | - !private ["Ps16OutputStreamType", "isEmpty"] 143 | - !private ["Ps10Streamable", "init"] 144 | - !private ["Ps10Streamable", "isEmpty"] 145 | - !private ["SS", "init"] 146 | - !private ["SS", "isEmpty"] 147 | - !private ["Ps30StringInterpolationConvertible", "init"] 148 | - !private ["Ps30StringInterpolationConvertible", "isEmpty"] 149 | - ["Ps24StringLiteralConvertible", "ExtendedGraphemeClusterLiteralType"] 150 | - ["Ps24StringLiteralConvertible", "UnicodeScalarLiteralType"] 151 | - !private ["Ps24StringLiteralConvertible", "alias"] 152 | - !private ["Ps24StringLiteralConvertible", "arguments"] 153 | - ["Ps24StringLiteralConvertible", "debugDescription"] 154 | - ["Ps24StringLiteralConvertible", "description"] 155 | - !private ["Ps24StringLiteralConvertible", "fragments"] 156 | - ["Ps24StringLiteralConvertible", "init"] 157 | - !private ["Ps24StringLiteralConvertible", "isEmpty"] 158 | - !private ["Ps24StringLiteralConvertible", "name"] 159 | - ["Ps24StringLiteralConvertible", "queryString"] 160 | - !private ["Ps24StringLiteralConvertible", "renderArgumentsList"] 161 | - !private ["Ps24StringLiteralConvertible", "renderSelectionSet"] 162 | - !private ["Ps24StringLiteralConvertible", "selectionSet"] 163 | - ["Ps24StringLiteralConvertible", ""] 164 | - !private ["Su", "deinit"] 165 | - !private ["Vs6UInt16", "deinit"] 166 | - !private ["Vs6UInt32", "deinit"] 167 | - !private ["Vs6UInt64", "deinit"] 168 | - !private ["Vs5UInt8", "deinit"] 169 | - !private ["Sc", "deinit"] 170 | - ["Ps31UnicodeScalarLiteralConvertible", "ExtendedGraphemeClusterLiteralType"] 171 | - ["Ps31UnicodeScalarLiteralConvertible", "UnicodeScalarLiteralType"] 172 | - !private ["Ps31UnicodeScalarLiteralConvertible", "alias"] 173 | - !private ["Ps31UnicodeScalarLiteralConvertible", "arguments"] 174 | - ["Ps31UnicodeScalarLiteralConvertible", "debugDescription"] 175 | - ["Ps31UnicodeScalarLiteralConvertible", "description"] 176 | - !private ["Ps31UnicodeScalarLiteralConvertible", "fragments"] 177 | - ["Ps31UnicodeScalarLiteralConvertible", "init"] 178 | - !private ["Ps31UnicodeScalarLiteralConvertible", "isEmpty"] 179 | - !private ["Ps31UnicodeScalarLiteralConvertible", "name"] 180 | - ["Ps31UnicodeScalarLiteralConvertible", "queryString"] 181 | - !private ["Ps31UnicodeScalarLiteralConvertible", "renderArgumentsList"] 182 | - !private ["Ps31UnicodeScalarLiteralConvertible", "renderSelectionSet"] 183 | - !private ["Ps31UnicodeScalarLiteralConvertible", "selectionSet"] 184 | - ["Ps31UnicodeScalarLiteralConvertible", ""] 185 | - !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] 186 | - !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] 187 | - !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "isEmpty"] 188 | - !private ["Ps32_BuiltinStringLiteralConvertible", "init"] 189 | - !private ["Ps32_BuiltinStringLiteralConvertible", "isEmpty"] 190 | - !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] 191 | - !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "isEmpty"] 192 | - !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] 193 | - !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "isEmpty"] 194 | - !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] 195 | - !private ["Ps21_ObjectiveCBridgeable", "init"] 196 | - !private ["Ps21_ObjectiveCBridgeable", "isEmpty"] 197 | - ["Ps12_Reflectable", "Some"] 198 | - !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] 199 | - !private ["Ps12_Reflectable", "init"] 200 | - !private ["Ps12_Reflectable", "isEmpty"] 201 | depends-nominal: 202 | - !private "Ps9AnyObject" 203 | - !private "Sb" 204 | - !private "Ps25BooleanLiteralConvertible" 205 | - !private "Ps11BooleanType" 206 | - !private "Ps11CVarArgType" 207 | - !private "Vs9Character" 208 | - !private "Ps10Comparable" 209 | - "Ps28CustomDebugStringConvertible" 210 | - "Ps23CustomStringConvertible" 211 | - !private "Sd" 212 | - !private "Ps9Equatable" 213 | - "Ps41ExtendedGraphemeClusterLiteralConvertible" 214 | - "VV7GraphQL7GraphQL5Field" 215 | - !private "Sf" 216 | - "V7GraphQL7GraphQL" 217 | - "P7GraphQL16GraphQLQueryType" 218 | - !private "Ps8Hashable" 219 | - !private "Si" 220 | - !private "Vs5Int16" 221 | - !private "Vs5Int32" 222 | - !private "Vs5Int64" 223 | - !private "Vs4Int8" 224 | - !private "Ps14MirrorPathType" 225 | - !private "PSo8NSCoding" 226 | - !private "PSo9NSCopying" 227 | - !private "PSo16NSMutableCopying" 228 | - !private "CSo8NSObject" 229 | - !private "PSo16NSObjectProtocol" 230 | - !private "PSo14NSSecureCoding" 231 | - !private "CSo8NSString" 232 | - "Ps21NilLiteralConvertible" 233 | - "Sq" 234 | - !private "Ps16OutputStreamType" 235 | - !private "Ps10Streamable" 236 | - !private "SS" 237 | - !private "Ps30StringInterpolationConvertible" 238 | - "Ps24StringLiteralConvertible" 239 | - !private "Su" 240 | - !private "Vs6UInt16" 241 | - !private "Vs6UInt32" 242 | - !private "Vs6UInt64" 243 | - !private "Vs5UInt8" 244 | - !private "Sc" 245 | - "Ps31UnicodeScalarLiteralConvertible" 246 | - !private "Ps33_BuiltinBooleanLiteralConvertible" 247 | - !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" 248 | - !private "Ps32_BuiltinStringLiteralConvertible" 249 | - !private "Ps37_BuiltinUTF16StringLiteralConvertible" 250 | - !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" 251 | - !private "Ps21_ObjectiveCBridgeable" 252 | - "Ps12_Reflectable" 253 | depends-dynamic-lookup: 254 | depends-external: 255 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule" 256 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule" 257 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule" 258 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule" 259 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule" 260 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule" 261 | interface-hash: "032595e4172374e3dfbef0d155c791c4" 262 | -------------------------------------------------------------------------------- /.build/debug/GraphQL.o/GraphQL/GraphQL.swiftdeps: -------------------------------------------------------------------------------- 1 | ### Swift dependencies file v0 ### 2 | provides-top-level: 3 | - "GraphQLQueryType" 4 | - "GraphQL" 5 | provides-nominal: 6 | - "P7GraphQL16GraphQLQueryType" 7 | - "V7GraphQL7GraphQL" 8 | - "OV7GraphQL7GraphQL14InputValueType" 9 | - "OV7GraphQL7GraphQL13OperationType" 10 | - "VV7GraphQL7GraphQL8Document" 11 | - "VV7GraphQL7GraphQL9Operation" 12 | - "VV7GraphQL7GraphQL5Field" 13 | - "VV7GraphQL7GraphQL9Directive" 14 | - "VV7GraphQL7GraphQL8Fragment" 15 | - "VV7GraphQL7GraphQL14InlineFragment" 16 | provides-member: 17 | - ["P7GraphQL16GraphQLQueryType", ""] 18 | - ["V7GraphQL7GraphQL", ""] 19 | - ["OV7GraphQL7GraphQL14InputValueType", ""] 20 | - ["OV7GraphQL7GraphQL13OperationType", ""] 21 | - ["VV7GraphQL7GraphQL8Document", ""] 22 | - ["VV7GraphQL7GraphQL9Operation", ""] 23 | - ["VV7GraphQL7GraphQL5Field", ""] 24 | - ["VV7GraphQL7GraphQL9Directive", ""] 25 | - ["VV7GraphQL7GraphQL8Fragment", ""] 26 | - ["VV7GraphQL7GraphQL14InlineFragment", ""] 27 | provides-dynamic-lookup: 28 | depends-top-level: 29 | - !private "!" 30 | - "String" 31 | - !private "assert" 32 | - !private "FloatLiteralType" 33 | - "Bool" 34 | - "CustomStringConvertible" 35 | - "GraphQL" 36 | - "AnyObject" 37 | - !private "IntegerLiteralType" 38 | - !private "~=" 39 | - "==" 40 | - "StringLiteralType" 41 | - "GraphQLQueryType" 42 | depends-member: 43 | - !private ["Ps9AnyObject", "isEmpty"] 44 | - !private ["Sa", "Generator"] 45 | - !private ["Sa", "Index"] 46 | - !private ["Sa", "SubSequence"] 47 | - !private ["Sa", "_Element"] 48 | - !private ["Sa", "init"] 49 | - !private ["Ps23ArrayLiteralConvertible", "Generator"] 50 | - !private ["Ps23ArrayLiteralConvertible", "Index"] 51 | - !private ["Ps23ArrayLiteralConvertible", "SubSequence"] 52 | - !private ["Ps23ArrayLiteralConvertible", "_Element"] 53 | - !private ["Ps23ArrayLiteralConvertible", "init"] 54 | - !private ["Ps23ArrayLiteralConvertible", "operations"] 55 | - !private ["Vs10ArraySlice", "Generator"] 56 | - !private ["Vs10ArraySlice", "Index"] 57 | - !private ["Ps22BidirectionalIndexType", "Distance"] 58 | - !private ["Ps22BidirectionalIndexType", "IntegerLiteralType"] 59 | - !private ["Ps22BidirectionalIndexType", "hashValue"] 60 | - !private ["Ps21BitwiseOperationsType", "Distance"] 61 | - !private ["Ps21BitwiseOperationsType", "IntegerLiteralType"] 62 | - !private ["Ps21BitwiseOperationsType", "hashValue"] 63 | - !private ["Sb", "_getBuiltinLogicValue"] 64 | - !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] 65 | - !private ["Ps11BooleanType", "_getBuiltinLogicValue"] 66 | - !private ["Ps11CVarArgType", "Distance"] 67 | - !private ["Ps11CVarArgType", "IntegerLiteralType"] 68 | - !private ["Ps11CVarArgType", "hashValue"] 69 | - !private ["Ps11CVarArgType", "isEmpty"] 70 | - !private ["Ps14CollectionType", "Generator"] 71 | - !private ["Ps14CollectionType", "Index"] 72 | - !private ["Ps14CollectionType", "SubSequence"] 73 | - !private ["Ps14CollectionType", "_Element"] 74 | - !private ["Ps14CollectionType", "init"] 75 | - !private ["Ps10Comparable", "Distance"] 76 | - !private ["Ps10Comparable", "IntegerLiteralType"] 77 | - !private ["Ps10Comparable", "hashValue"] 78 | - !private ["Ps10Comparable", "isEmpty"] 79 | - !private ["Ps28CustomDebugStringConvertible", "Arguments"] 80 | - !private ["Ps28CustomDebugStringConvertible", "Generator"] 81 | - !private ["Ps28CustomDebugStringConvertible", "Index"] 82 | - !private ["Ps28CustomDebugStringConvertible", "SelectionSet"] 83 | - !private ["Ps28CustomDebugStringConvertible", "SubSequence"] 84 | - !private ["Ps28CustomDebugStringConvertible", "_Element"] 85 | - !private ["Ps28CustomDebugStringConvertible", "alias"] 86 | - !private ["Ps28CustomDebugStringConvertible", "arguments"] 87 | - !private ["Ps28CustomDebugStringConvertible", "assert"] 88 | - !private ["Ps28CustomDebugStringConvertible", "directive"] 89 | - !private ["Ps28CustomDebugStringConvertible", "fragments"] 90 | - !private ["Ps28CustomDebugStringConvertible", "init"] 91 | - !private ["Ps28CustomDebugStringConvertible", "isEmpty"] 92 | - !private ["Ps28CustomDebugStringConvertible", "isRootNode"] 93 | - !private ["Ps28CustomDebugStringConvertible", "name"] 94 | - !private ["Ps28CustomDebugStringConvertible", "operations"] 95 | - !private ["Ps28CustomDebugStringConvertible", "selectionSet"] 96 | - !private ["Ps28CustomDebugStringConvertible", "type"] 97 | - !private ["Ps28CustomDebugStringConvertible", "typeCondition"] 98 | - !private ["Ps23CustomStringConvertible", "Arguments"] 99 | - !private ["Ps23CustomStringConvertible", "BooleanValue"] 100 | - !private ["Ps23CustomStringConvertible", "Distance"] 101 | - !private ["Ps23CustomStringConvertible", "EnumValue"] 102 | - !private ["Ps23CustomStringConvertible", "FloatValue"] 103 | - !private ["Ps23CustomStringConvertible", "Generator"] 104 | - !private ["Ps23CustomStringConvertible", "Index"] 105 | - !private ["Ps23CustomStringConvertible", "IntValue"] 106 | - !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] 107 | - !private ["Ps23CustomStringConvertible", "ListValue"] 108 | - !private ["Ps23CustomStringConvertible", "ObjectValue"] 109 | - ["Ps23CustomStringConvertible", "RawValue"] 110 | - !private ["Ps23CustomStringConvertible", "SelectionSet"] 111 | - !private ["Ps23CustomStringConvertible", "StringValue"] 112 | - !private ["Ps23CustomStringConvertible", "SubSequence"] 113 | - !private ["Ps23CustomStringConvertible", "_Element"] 114 | - !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] 115 | - !private ["Ps23CustomStringConvertible", "alias"] 116 | - !private ["Ps23CustomStringConvertible", "arguments"] 117 | - !private ["Ps23CustomStringConvertible", "assert"] 118 | - ["Ps23CustomStringConvertible", "description"] 119 | - !private ["Ps23CustomStringConvertible", "directive"] 120 | - !private ["Ps23CustomStringConvertible", "fragments"] 121 | - ["Ps23CustomStringConvertible", "hashValue"] 122 | - ["Ps23CustomStringConvertible", "init"] 123 | - !private ["Ps23CustomStringConvertible", "isEmpty"] 124 | - !private ["Ps23CustomStringConvertible", "isRootNode"] 125 | - !private ["Ps23CustomStringConvertible", "name"] 126 | - !private ["Ps23CustomStringConvertible", "operations"] 127 | - ["Ps23CustomStringConvertible", "rawValue"] 128 | - !private ["Ps23CustomStringConvertible", "selectionSet"] 129 | - !private ["Ps23CustomStringConvertible", "type"] 130 | - !private ["Ps23CustomStringConvertible", "typeCondition"] 131 | - ["Ps23CustomStringConvertible", ""] 132 | - !private ["Vs10Dictionary", "init"] 133 | - !private ["Ps28DictionaryLiteralConvertible", "init"] 134 | - ["VV7GraphQL7GraphQL9Directive", "Arguments"] 135 | - ["VV7GraphQL7GraphQL9Directive", "String"] 136 | - ["VV7GraphQL7GraphQL9Directive", "arguments"] 137 | - ["VV7GraphQL7GraphQL9Directive", "init"] 138 | - ["VV7GraphQL7GraphQL9Directive", "name"] 139 | - ["VV7GraphQL7GraphQL8Document", "GraphQLQueryType"] 140 | - ["VV7GraphQL7GraphQL8Document", "init"] 141 | - ["VV7GraphQL7GraphQL8Document", "operations"] 142 | - !private ["Ps9Equatable", "Distance"] 143 | - !private ["Ps9Equatable", "IntegerLiteralType"] 144 | - ["Ps9Equatable", "RawValue"] 145 | - !private ["Ps9Equatable", "_getBuiltinLogicValue"] 146 | - ["Ps9Equatable", "description"] 147 | - ["Ps9Equatable", "hashValue"] 148 | - ["Ps9Equatable", "init"] 149 | - !private ["Ps9Equatable", "isEmpty"] 150 | - ["Ps9Equatable", "rawValue"] 151 | - ["Ps9Equatable", ""] 152 | - !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "Arguments"] 153 | - !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "SelectionSet"] 154 | - !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "alias"] 155 | - !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "arguments"] 156 | - !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "assert"] 157 | - !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "fragments"] 158 | - !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "isEmpty"] 159 | - !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "isRootNode"] 160 | - !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "name"] 161 | - !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "selectionSet"] 162 | - ["VV7GraphQL7GraphQL5Field", "AnyObject"] 163 | - ["VV7GraphQL7GraphQL5Field", "Arguments"] 164 | - ["VV7GraphQL7GraphQL5Field", "Bool"] 165 | - ["VV7GraphQL7GraphQL5Field", "InlineFragment"] 166 | - ["VV7GraphQL7GraphQL5Field", "SelectionSet"] 167 | - ["VV7GraphQL7GraphQL5Field", "String"] 168 | - ["VV7GraphQL7GraphQL5Field", "alias"] 169 | - ["VV7GraphQL7GraphQL5Field", "arguments"] 170 | - !private ["VV7GraphQL7GraphQL5Field", "assert"] 171 | - ["VV7GraphQL7GraphQL5Field", "fragments"] 172 | - ["VV7GraphQL7GraphQL5Field", "init"] 173 | - ["VV7GraphQL7GraphQL5Field", "isRootNode"] 174 | - ["VV7GraphQL7GraphQL5Field", "name"] 175 | - ["VV7GraphQL7GraphQL5Field", "selectionSet"] 176 | - !private ["Ps16ForwardIndexType", "Distance"] 177 | - !private ["Ps16ForwardIndexType", "IntegerLiteralType"] 178 | - !private ["Ps16ForwardIndexType", "hashValue"] 179 | - ["VV7GraphQL7GraphQL8Fragment", "Directive"] 180 | - ["VV7GraphQL7GraphQL8Fragment", "SelectionSet"] 181 | - ["VV7GraphQL7GraphQL8Fragment", "String"] 182 | - ["VV7GraphQL7GraphQL8Fragment", "directive"] 183 | - ["VV7GraphQL7GraphQL8Fragment", "init"] 184 | - ["VV7GraphQL7GraphQL8Fragment", "name"] 185 | - ["VV7GraphQL7GraphQL8Fragment", "selectionSet"] 186 | - ["VV7GraphQL7GraphQL8Fragment", "typeCondition"] 187 | - !private ["Ps13GeneratorType", "Element"] 188 | - ["V7GraphQL7GraphQL", "AnyObject"] 189 | - ["V7GraphQL7GraphQL", "Arguments"] 190 | - ["V7GraphQL7GraphQL", "Bool"] 191 | - ["V7GraphQL7GraphQL", "CustomStringConvertible"] 192 | - ["V7GraphQL7GraphQL", "Directive"] 193 | - ["V7GraphQL7GraphQL", "Document"] 194 | - ["V7GraphQL7GraphQL", "Field"] 195 | - ["V7GraphQL7GraphQL", "Fragment"] 196 | - ["V7GraphQL7GraphQL", "GraphQL"] 197 | - ["V7GraphQL7GraphQL", "GraphQLQueryType"] 198 | - ["V7GraphQL7GraphQL", "InlineFragment"] 199 | - ["V7GraphQL7GraphQL", "InputValueType"] 200 | - ["V7GraphQL7GraphQL", "Operation"] 201 | - ["V7GraphQL7GraphQL", "OperationType"] 202 | - ["V7GraphQL7GraphQL", "SelectionSet"] 203 | - ["V7GraphQL7GraphQL", "String"] 204 | - !private ["V7GraphQL7GraphQL", "assert"] 205 | - ["V7GraphQL7GraphQL", "init"] 206 | - !private ["P7GraphQL16GraphQLQueryType", "Arguments"] 207 | - !private ["P7GraphQL16GraphQLQueryType", "SelectionSet"] 208 | - ["P7GraphQL16GraphQLQueryType", "String"] 209 | - !private ["P7GraphQL16GraphQLQueryType", "alias"] 210 | - !private ["P7GraphQL16GraphQLQueryType", "arguments"] 211 | - !private ["P7GraphQL16GraphQLQueryType", "assert"] 212 | - !private ["P7GraphQL16GraphQLQueryType", "fragments"] 213 | - !private ["P7GraphQL16GraphQLQueryType", "isRootNode"] 214 | - !private ["P7GraphQL16GraphQLQueryType", "name"] 215 | - !private ["P7GraphQL16GraphQLQueryType", "operations"] 216 | - ["P7GraphQL16GraphQLQueryType", "queryString"] 217 | - !private ["P7GraphQL16GraphQLQueryType", "selectionSet"] 218 | - !private ["P7GraphQL16GraphQLQueryType", "type"] 219 | - !private ["Ps8Hashable", "Distance"] 220 | - !private ["Ps8Hashable", "IntegerLiteralType"] 221 | - ["Ps8Hashable", "RawValue"] 222 | - !private ["Ps8Hashable", "_getBuiltinLogicValue"] 223 | - ["Ps8Hashable", "description"] 224 | - ["Ps8Hashable", "hashValue"] 225 | - ["Ps8Hashable", "init"] 226 | - !private ["Ps8Hashable", "isEmpty"] 227 | - ["Ps8Hashable", "rawValue"] 228 | - ["Ps8Hashable", ""] 229 | - !private ["Ps9Indexable", "Generator"] 230 | - !private ["Ps9Indexable", "Index"] 231 | - !private ["Ps9Indexable", "SubSequence"] 232 | - !private ["Ps9Indexable", "_Element"] 233 | - !private ["Ps9Indexable", "init"] 234 | - !private ["Vs17IndexingGenerator", "Element"] 235 | - ["VV7GraphQL7GraphQL14InlineFragment", "Directive"] 236 | - ["VV7GraphQL7GraphQL14InlineFragment", "SelectionSet"] 237 | - ["VV7GraphQL7GraphQL14InlineFragment", "String"] 238 | - ["VV7GraphQL7GraphQL14InlineFragment", "directive"] 239 | - ["VV7GraphQL7GraphQL14InlineFragment", "init"] 240 | - ["VV7GraphQL7GraphQL14InlineFragment", "selectionSet"] 241 | - ["VV7GraphQL7GraphQL14InlineFragment", "typeCondition"] 242 | - ["OV7GraphQL7GraphQL14InputValueType", "Bool"] 243 | - ["OV7GraphQL7GraphQL14InputValueType", "BooleanValue"] 244 | - ["OV7GraphQL7GraphQL14InputValueType", "EnumValue"] 245 | - ["OV7GraphQL7GraphQL14InputValueType", "FloatValue"] 246 | - ["OV7GraphQL7GraphQL14InputValueType", "IntValue"] 247 | - ["OV7GraphQL7GraphQL14InputValueType", "ListValue"] 248 | - ["OV7GraphQL7GraphQL14InputValueType", "ObjectValue"] 249 | - ["OV7GraphQL7GraphQL14InputValueType", "String"] 250 | - ["OV7GraphQL7GraphQL14InputValueType", "StringValue"] 251 | - ["OV7GraphQL7GraphQL14InputValueType", "deinit"] 252 | - ["OV7GraphQL7GraphQL14InputValueType", "description"] 253 | - !private ["Si", "Distance"] 254 | - !private ["Si", "IntegerLiteralType"] 255 | - !private ["Si", "hashValue"] 256 | - !private ["Ps21IntegerArithmeticType", "Distance"] 257 | - !private ["Ps21IntegerArithmeticType", "IntegerLiteralType"] 258 | - !private ["Ps21IntegerArithmeticType", "hashValue"] 259 | - !private ["Ps25IntegerLiteralConvertible", "Distance"] 260 | - !private ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] 261 | - !private ["Ps25IntegerLiteralConvertible", "hashValue"] 262 | - !private ["Ps11IntegerType", "Distance"] 263 | - !private ["Ps11IntegerType", "IntegerLiteralType"] 264 | - !private ["Ps11IntegerType", "hashValue"] 265 | - !private ["Ps14MirrorPathType", "Distance"] 266 | - !private ["Ps14MirrorPathType", "IntegerLiteralType"] 267 | - !private ["Ps14MirrorPathType", "hashValue"] 268 | - !private ["Ps14MirrorPathType", "isEmpty"] 269 | - !private ["Ps21MutableCollectionType", "Generator"] 270 | - !private ["Ps21MutableCollectionType", "Index"] 271 | - !private ["Ps21MutableCollectionType", "SubSequence"] 272 | - !private ["Ps21MutableCollectionType", "_Element"] 273 | - !private ["Ps21MutableCollectionType", "init"] 274 | - !private ["Ps16MutableIndexable", "Generator"] 275 | - !private ["Ps16MutableIndexable", "Index"] 276 | - !private ["Ps16MutableIndexable", "SubSequence"] 277 | - !private ["Ps16MutableIndexable", "_Element"] 278 | - !private ["Ps16MutableIndexable", "init"] 279 | - !private ["Ps16MutableSliceable", "Generator"] 280 | - !private ["Ps16MutableSliceable", "Index"] 281 | - !private ["Ps16MutableSliceable", "SubSequence"] 282 | - !private ["Ps16MutableSliceable", "_Element"] 283 | - !private ["Ps16MutableSliceable", "init"] 284 | - !private ["PSo8NSCoding", "isEmpty"] 285 | - !private ["PSo9NSCopying", "isEmpty"] 286 | - !private ["PSo16NSMutableCopying", "isEmpty"] 287 | - !private ["CSo8NSObject", "deinit"] 288 | - !private ["CSo8NSObject", "isEmpty"] 289 | - !private ["PSo16NSObjectProtocol", "isEmpty"] 290 | - !private ["PSo14NSSecureCoding", "isEmpty"] 291 | - !private ["CSo8NSString", "deinit"] 292 | - !private ["CSo8NSString", "isEmpty"] 293 | - ["VV7GraphQL7GraphQL9Operation", "Arguments"] 294 | - ["VV7GraphQL7GraphQL9Operation", "OperationType"] 295 | - ["VV7GraphQL7GraphQL9Operation", "SelectionSet"] 296 | - ["VV7GraphQL7GraphQL9Operation", "String"] 297 | - ["VV7GraphQL7GraphQL9Operation", "arguments"] 298 | - ["VV7GraphQL7GraphQL9Operation", "init"] 299 | - ["VV7GraphQL7GraphQL9Operation", "name"] 300 | - ["VV7GraphQL7GraphQL9Operation", "selectionSet"] 301 | - ["VV7GraphQL7GraphQL9Operation", "type"] 302 | - ["OV7GraphQL7GraphQL13OperationType", "Mutation"] 303 | - ["OV7GraphQL7GraphQL13OperationType", "Query"] 304 | - ["OV7GraphQL7GraphQL13OperationType", "RawValue"] 305 | - ["OV7GraphQL7GraphQL13OperationType", "String"] 306 | - ["OV7GraphQL7GraphQL13OperationType", "deinit"] 307 | - ["OV7GraphQL7GraphQL13OperationType", "description"] 308 | - ["OV7GraphQL7GraphQL13OperationType", "hashValue"] 309 | - ["OV7GraphQL7GraphQL13OperationType", "init"] 310 | - ["OV7GraphQL7GraphQL13OperationType", "rawValue"] 311 | - !private ["Ps16OutputStreamType", "isEmpty"] 312 | - !private ["Ps21RandomAccessIndexType", "Distance"] 313 | - !private ["Ps21RandomAccessIndexType", "IntegerLiteralType"] 314 | - !private ["Ps21RandomAccessIndexType", "hashValue"] 315 | - !private ["Vs5Range", "deinit"] 316 | - !private ["Ps30RangeReplaceableCollectionType", "Generator"] 317 | - !private ["Ps30RangeReplaceableCollectionType", "Index"] 318 | - !private ["Ps30RangeReplaceableCollectionType", "SubSequence"] 319 | - !private ["Ps30RangeReplaceableCollectionType", "_Element"] 320 | - !private ["Ps30RangeReplaceableCollectionType", "init"] 321 | - ["Ps16RawRepresentable", "RawValue"] 322 | - ["Ps16RawRepresentable", "description"] 323 | - ["Ps16RawRepresentable", "hashValue"] 324 | - ["Ps16RawRepresentable", "init"] 325 | - ["Ps16RawRepresentable", "rawValue"] 326 | - ["Ps16RawRepresentable", ""] 327 | - !private ["Ps12SequenceType", "Element"] 328 | - !private ["Ps12SequenceType", "Generator"] 329 | - !private ["Ps12SequenceType", "Index"] 330 | - !private ["Ps12SequenceType", "SubSequence"] 331 | - !private ["Ps12SequenceType", "_Element"] 332 | - !private ["Ps12SequenceType", "init"] 333 | - !private ["Ps17SignedIntegerType", "Distance"] 334 | - !private ["Ps17SignedIntegerType", "IntegerLiteralType"] 335 | - !private ["Ps17SignedIntegerType", "hashValue"] 336 | - !private ["Ps16SignedNumberType", "Distance"] 337 | - !private ["Ps16SignedNumberType", "IntegerLiteralType"] 338 | - !private ["Ps16SignedNumberType", "hashValue"] 339 | - !private ["Vs12StaticString", "deinit"] 340 | - !private ["Ps10Streamable", "isEmpty"] 341 | - !private ["Ps10Strideable", "Distance"] 342 | - !private ["Ps10Strideable", "IntegerLiteralType"] 343 | - !private ["Ps10Strideable", "hashValue"] 344 | - ["SS", "deinit"] 345 | - !private ["SS", "isEmpty"] 346 | - !private ["Ps30StringInterpolationConvertible", "isEmpty"] 347 | - !private ["Ps24StringLiteralConvertible", "Arguments"] 348 | - !private ["Ps24StringLiteralConvertible", "SelectionSet"] 349 | - !private ["Ps24StringLiteralConvertible", "alias"] 350 | - !private ["Ps24StringLiteralConvertible", "arguments"] 351 | - !private ["Ps24StringLiteralConvertible", "assert"] 352 | - !private ["Ps24StringLiteralConvertible", "fragments"] 353 | - !private ["Ps24StringLiteralConvertible", "isEmpty"] 354 | - !private ["Ps24StringLiteralConvertible", "isRootNode"] 355 | - !private ["Ps24StringLiteralConvertible", "name"] 356 | - !private ["Ps24StringLiteralConvertible", "selectionSet"] 357 | - !private ["Ps31UnicodeScalarLiteralConvertible", "Arguments"] 358 | - !private ["Ps31UnicodeScalarLiteralConvertible", "SelectionSet"] 359 | - !private ["Ps31UnicodeScalarLiteralConvertible", "alias"] 360 | - !private ["Ps31UnicodeScalarLiteralConvertible", "arguments"] 361 | - !private ["Ps31UnicodeScalarLiteralConvertible", "assert"] 362 | - !private ["Ps31UnicodeScalarLiteralConvertible", "fragments"] 363 | - !private ["Ps31UnicodeScalarLiteralConvertible", "isEmpty"] 364 | - !private ["Ps31UnicodeScalarLiteralConvertible", "isRootNode"] 365 | - !private ["Ps31UnicodeScalarLiteralConvertible", "name"] 366 | - !private ["Ps31UnicodeScalarLiteralConvertible", "selectionSet"] 367 | - !private ["Ps10_ArrayType", "Generator"] 368 | - !private ["Ps10_ArrayType", "Index"] 369 | - !private ["Ps10_ArrayType", "SubSequence"] 370 | - !private ["Ps10_ArrayType", "_Element"] 371 | - !private ["Ps10_ArrayType", "init"] 372 | - !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] 373 | - !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "isEmpty"] 374 | - !private ["Ps33_BuiltinIntegerLiteralConvertible", "Distance"] 375 | - !private ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] 376 | - !private ["Ps33_BuiltinIntegerLiteralConvertible", "hashValue"] 377 | - !private ["Ps32_BuiltinStringLiteralConvertible", "isEmpty"] 378 | - !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "isEmpty"] 379 | - !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "isEmpty"] 380 | - !private ["Ps24_DestructorSafeContainer", "Generator"] 381 | - !private ["Ps24_DestructorSafeContainer", "Index"] 382 | - !private ["Ps24_DestructorSafeContainer", "SubSequence"] 383 | - !private ["Ps24_DestructorSafeContainer", "_Element"] 384 | - !private ["Ps24_DestructorSafeContainer", "init"] 385 | - !private ["Ps14_Incrementable", "Distance"] 386 | - !private ["Ps14_Incrementable", "IntegerLiteralType"] 387 | - !private ["Ps14_Incrementable", "hashValue"] 388 | - !private ["Ps22_IntegerArithmeticType", "Distance"] 389 | - !private ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] 390 | - !private ["Ps22_IntegerArithmeticType", "hashValue"] 391 | - !private ["Ps12_IntegerType", "Distance"] 392 | - !private ["Ps12_IntegerType", "IntegerLiteralType"] 393 | - !private ["Ps12_IntegerType", "hashValue"] 394 | - !private ["Ps21_ObjectiveCBridgeable", "Distance"] 395 | - !private ["Ps21_ObjectiveCBridgeable", "Generator"] 396 | - !private ["Ps21_ObjectiveCBridgeable", "Index"] 397 | - !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] 398 | - !private ["Ps21_ObjectiveCBridgeable", "SubSequence"] 399 | - !private ["Ps21_ObjectiveCBridgeable", "_Element"] 400 | - !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] 401 | - !private ["Ps21_ObjectiveCBridgeable", "hashValue"] 402 | - !private ["Ps21_ObjectiveCBridgeable", "init"] 403 | - !private ["Ps21_ObjectiveCBridgeable", "isEmpty"] 404 | - !private ["Vs26_OptionalNilComparisonType", "deinit"] 405 | - !private ["Ps22_RandomAccessAmbiguity", "Distance"] 406 | - !private ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] 407 | - !private ["Ps22_RandomAccessAmbiguity", "hashValue"] 408 | - !private ["Ps12_Reflectable", "Distance"] 409 | - !private ["Ps12_Reflectable", "Generator"] 410 | - !private ["Ps12_Reflectable", "Index"] 411 | - !private ["Ps12_Reflectable", "IntegerLiteralType"] 412 | - !private ["Ps12_Reflectable", "SubSequence"] 413 | - !private ["Ps12_Reflectable", "_Element"] 414 | - !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] 415 | - !private ["Ps12_Reflectable", "hashValue"] 416 | - !private ["Ps12_Reflectable", "init"] 417 | - !private ["Ps12_Reflectable", "isEmpty"] 418 | - !private ["Ps18_SignedIntegerType", "Distance"] 419 | - !private ["Ps18_SignedIntegerType", "IntegerLiteralType"] 420 | - !private ["Ps18_SignedIntegerType", "hashValue"] 421 | depends-nominal: 422 | - !private "Ps9AnyObject" 423 | - !private "Sa" 424 | - !private "Ps23ArrayLiteralConvertible" 425 | - !private "Vs10ArraySlice" 426 | - !private "Ps22BidirectionalIndexType" 427 | - !private "Ps21BitwiseOperationsType" 428 | - !private "Sb" 429 | - !private "Ps25BooleanLiteralConvertible" 430 | - !private "Ps11BooleanType" 431 | - !private "Ps11CVarArgType" 432 | - !private "Ps14CollectionType" 433 | - !private "Ps10Comparable" 434 | - !private "Ps28CustomDebugStringConvertible" 435 | - "Ps23CustomStringConvertible" 436 | - !private "Vs10Dictionary" 437 | - !private "Ps28DictionaryLiteralConvertible" 438 | - "VV7GraphQL7GraphQL9Directive" 439 | - "VV7GraphQL7GraphQL8Document" 440 | - "Ps9Equatable" 441 | - !private "Ps41ExtendedGraphemeClusterLiteralConvertible" 442 | - "VV7GraphQL7GraphQL5Field" 443 | - !private "Ps16ForwardIndexType" 444 | - "VV7GraphQL7GraphQL8Fragment" 445 | - !private "Ps13GeneratorType" 446 | - "V7GraphQL7GraphQL" 447 | - "P7GraphQL16GraphQLQueryType" 448 | - "Ps8Hashable" 449 | - !private "Ps9Indexable" 450 | - !private "Vs17IndexingGenerator" 451 | - "VV7GraphQL7GraphQL14InlineFragment" 452 | - "OV7GraphQL7GraphQL14InputValueType" 453 | - !private "Si" 454 | - !private "Ps21IntegerArithmeticType" 455 | - !private "Ps25IntegerLiteralConvertible" 456 | - !private "Ps11IntegerType" 457 | - !private "Ps14MirrorPathType" 458 | - !private "Ps21MutableCollectionType" 459 | - !private "Ps16MutableIndexable" 460 | - !private "Ps16MutableSliceable" 461 | - !private "PSo8NSCoding" 462 | - !private "PSo9NSCopying" 463 | - !private "PSo16NSMutableCopying" 464 | - !private "CSo8NSObject" 465 | - !private "PSo16NSObjectProtocol" 466 | - !private "PSo14NSSecureCoding" 467 | - !private "CSo8NSString" 468 | - "VV7GraphQL7GraphQL9Operation" 469 | - "OV7GraphQL7GraphQL13OperationType" 470 | - !private "Ps16OutputStreamType" 471 | - !private "Ps21RandomAccessIndexType" 472 | - !private "Vs5Range" 473 | - !private "Ps30RangeReplaceableCollectionType" 474 | - "Ps16RawRepresentable" 475 | - !private "Ps12SequenceType" 476 | - !private "Ps17SignedIntegerType" 477 | - !private "Ps16SignedNumberType" 478 | - !private "Vs12StaticString" 479 | - !private "Ps10Streamable" 480 | - !private "Ps10Strideable" 481 | - "SS" 482 | - !private "Ps30StringInterpolationConvertible" 483 | - !private "Ps24StringLiteralConvertible" 484 | - !private "Ps31UnicodeScalarLiteralConvertible" 485 | - !private "Ps10_ArrayType" 486 | - !private "Ps33_BuiltinBooleanLiteralConvertible" 487 | - !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" 488 | - !private "Ps33_BuiltinIntegerLiteralConvertible" 489 | - !private "Ps32_BuiltinStringLiteralConvertible" 490 | - !private "Ps37_BuiltinUTF16StringLiteralConvertible" 491 | - !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" 492 | - !private "Ps24_DestructorSafeContainer" 493 | - !private "Ps14_Incrementable" 494 | - !private "Ps22_IntegerArithmeticType" 495 | - !private "Ps12_IntegerType" 496 | - !private "Ps21_ObjectiveCBridgeable" 497 | - !private "Vs26_OptionalNilComparisonType" 498 | - !private "Ps22_RandomAccessAmbiguity" 499 | - !private "Ps12_Reflectable" 500 | - !private "Ps18_SignedIntegerType" 501 | depends-dynamic-lookup: 502 | depends-external: 503 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule" 504 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule" 505 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule" 506 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule" 507 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule" 508 | - "/Library/Developer/Toolchains/swift-2.2-SNAPSHOT-2015-12-01-a.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule" 509 | interface-hash: "130a1d5d2967911ad5bd1a2a2ada2e56" 510 | --------------------------------------------------------------------------------