├── .devcontainer └── devcontainer.json ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── publish.yml │ └── test.yml ├── .gitignore ├── .nvmrc ├── .swiftformat ├── .vscode ├── launch.json └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Formula └── SwiftGraphQL.rb ├── LICENSE ├── Makefile ├── Package.swift ├── README.md ├── Sources ├── GraphQL │ ├── AnyCodable │ │ ├── AnyCodable.swift │ │ ├── AnyDecodable.swift │ │ └── AnyEncodable.swift │ ├── Error.swift │ └── Execution.swift ├── GraphQLAST │ ├── Errors.swift │ ├── Introspection.swift │ ├── InvertedTypeRef.swift │ ├── Schema.swift │ ├── Type.swift │ ├── TypeRef.swift │ └── Value.swift ├── GraphQLWebSocket │ ├── Client.swift │ ├── Config.swift │ ├── Extensions │ │ └── WebSocket+Extensions.swift │ ├── README.md │ └── Spec.swift ├── SwiftGraphQL │ ├── Document │ │ ├── Argument.swift │ │ ├── Field.swift │ │ └── Scalar.swift │ ├── Extensions │ │ ├── CodingKey+Typename.swift │ │ ├── Collection+UniqueBy.swift │ │ ├── Int+Hash.swift │ │ └── String+Indent.swift │ ├── HTTP.swift │ ├── Selection │ │ ├── Operation.swift │ │ ├── Selection+Codable.swift │ │ ├── Selection+Transform.swift │ │ ├── Selection+Utils.swift │ │ └── Selection.swift │ ├── Serialization │ │ ├── Document.swift │ │ └── OptionalArgument.swift │ └── WS.swift ├── SwiftGraphQLCLI │ └── main.swift ├── SwiftGraphQLClient │ ├── Client │ │ ├── Config.swift │ │ ├── Core.swift │ │ ├── Operation.swift │ │ ├── Selection.swift │ │ └── Spec.swift │ ├── Exchange.swift │ ├── Exchanges │ │ ├── AuthExchange.swift │ │ ├── CacheExchange.swift │ │ ├── ComposeExchange.swift │ │ ├── DebugExchange.swift │ │ ├── DedupExchange.swift │ │ ├── ErrorExchange.swift │ │ ├── ExtensionsExchange.swift │ │ ├── FallbackExchange.swift │ │ ├── FetchExchange.swift │ │ └── WebSocketExchange.swift │ └── Extensions │ │ ├── Publishers+Extensions.swift │ │ └── Selection+Extensions.swift ├── SwiftGraphQLCodegen │ ├── Context.swift │ ├── Error.swift │ ├── Extensions │ │ ├── Collection+Extensions.swift │ │ ├── Schema+Extensions.swift │ │ └── String+Extensions.swift │ ├── Generator.swift │ └── Generator │ │ ├── Codable.swift │ │ ├── Enum.swift │ │ ├── Field.swift │ │ ├── Fragments.swift │ │ ├── InputObject.swift │ │ ├── Interface.swift │ │ ├── Object.swift │ │ ├── Operation.swift │ │ ├── Scalar.swift │ │ └── Union.swift └── SwiftGraphQLUtils │ └── Extensions │ └── String+Case.swift ├── SwiftGraphQL.podspec ├── Tests ├── GraphQLASTTests │ ├── ASTIntrospectionTests.swift │ ├── ASTTests.swift │ ├── ASTTypeRef+InvertedTests.swift │ ├── ASTTypeRefTests.swift │ ├── ASTTypeTests.swift │ └── ASTValueTests.swift ├── GraphQLTests │ ├── AnyCodable │ │ ├── AnyCodableTests.swift │ │ ├── AnyDecodableTests.swift │ │ └── AnyEncodableTests.swift │ └── ExecutionTests.swift ├── GraphQLWebSocketTests │ └── ClientTests.swift ├── SwiftGraphQLClientTests │ ├── AsyncClientTests.swift.swift │ ├── Exchanges │ │ ├── CacheExchangeTests.swift │ │ ├── ComposeExchangeTests.swift │ │ ├── DedupExchangeTests.swift │ │ ├── FallbackExchangeTests.swift │ │ ├── FetchExchangeTests.swift │ │ └── WebSocketExchangeTests.swift │ ├── Extensions │ │ └── Publishers+ExtensionsTests.swift │ ├── Utils │ │ └── MockClient.swift │ └── XCTest+Helpers.swift ├── SwiftGraphQLCodegenTests │ ├── Extensions │ │ └── Context+Extensions.swift │ ├── Generator │ │ ├── EnumTests.swift │ │ ├── FieldTests.swift │ │ └── InputObjectTests.swift │ ├── Integration │ │ ├── API.swift │ │ ├── Scalars.swift │ │ ├── Selection.swift │ │ ├── schema.json │ │ └── swiftgraphql.yml │ └── Utils │ │ └── TestSnapshot.swift ├── SwiftGraphQLTests │ ├── Integration │ │ └── HTTPTests.swift │ ├── Selection │ │ ├── SelectionDecodingTests.swift │ │ └── SelectionEncodingTests.swift │ └── Serialization │ │ ├── DocumentTests.swift │ │ └── OptionalArgumentTest.swift └── SwiftGraphQLUtilsTests │ └── Extensions │ └── String+CaseTests.swift ├── docs ├── README.md ├── _snippets │ └── snippet-example.mdx ├── advanced │ ├── cache.mdx │ ├── exchanges.mdx │ ├── how.mdx │ ├── scalars.mdx │ └── selection.mdx ├── errors.mdx ├── faq.mdx ├── favicon.svg ├── guides │ ├── auth.mdx │ ├── filestructure.mdx │ └── uploads.mdx ├── images │ ├── client.png │ ├── collisions.png │ ├── compile.png │ ├── hero.png │ ├── swift.png │ └── thumbnail.png ├── installation.mdx ├── introduction.mdx ├── logo │ └── swift.svg ├── mint.json ├── network.mdx ├── querying.mdx ├── subscriptions.mdx └── why.mdx ├── examples ├── GitHubStars │ ├── GitHubStars.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── GitHubStars │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Components │ │ │ ├── AvatarView.swift │ │ │ ├── RepositoryView.swift │ │ │ ├── Shimmer.swift │ │ │ └── UserView.swift │ │ ├── GitHubStarsApp.swift │ │ ├── GraphQL │ │ │ ├── API.swift │ │ │ ├── Queries │ │ │ │ ├── RepositoryQuery.swift │ │ │ │ └── UserQuery.swift │ │ │ └── Scalars │ │ │ │ ├── DateTimeScalar.swift │ │ │ │ └── URIScalar.swift │ │ ├── Model │ │ │ ├── Repository.swift │ │ │ └── User.swift │ │ ├── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── Services │ │ │ ├── AuthService.swift │ │ │ └── NetworkService.swift │ │ ├── ViewModels │ │ │ ├── FeedViewModel.swift │ │ │ └── GitHubStarsViewModel.swift │ │ └── Views │ │ │ ├── AuthView.swift │ │ │ └── FeedView.swift │ ├── GitHubStarsTests │ │ └── GitHubStarsTests.swift │ ├── GitHubStarsUITests │ │ ├── GitHubStarsUITests.swift │ │ └── GitHubStarsUITestsLaunchTests.swift │ ├── README.md │ └── swiftgraphql.yml └── thesocialnetwork │ ├── README.md │ ├── ios │ └── TheSocialNetwork │ │ ├── Shared │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Components │ │ │ ├── AvatarView.swift │ │ │ ├── ChatBubbleView.swift │ │ │ ├── ImagePicker.swift │ │ │ ├── PostView.swift │ │ │ ├── Shimmer.swift │ │ │ └── ToastView.swift │ │ ├── Extensions │ │ │ └── Button+Extensions.swift │ │ ├── GraphQL │ │ │ ├── API.swift │ │ │ ├── Mutations │ │ │ │ ├── AuthMutation.swift │ │ │ │ ├── MessageMutation.swift │ │ │ │ └── SignedURLMutation.swift │ │ │ ├── Queries │ │ │ │ ├── MessageQuery.swift │ │ │ │ ├── SignedURLQuery.swift │ │ │ │ └── UserQuery.swift │ │ │ ├── Scalars │ │ │ │ └── DateTimeScalar.swift │ │ │ └── Subscriptions │ │ │ │ ├── DateSubscription.swift │ │ │ │ └── MessageSubscription.swift │ │ ├── Model │ │ │ ├── File.swift │ │ │ ├── Message.swift │ │ │ ├── SignedURL.swift │ │ │ └── User.swift │ │ ├── Services │ │ │ ├── AuthClient.swift │ │ │ ├── CDNClient.swift │ │ │ ├── FeedClient.swift │ │ │ └── NetworkClient.swift │ │ ├── TheSocialNetworkApp.swift │ │ ├── ViewModels │ │ │ ├── AccountViewModel.swift │ │ │ ├── AuthViewModel.swift │ │ │ ├── FeedViewModel.swift │ │ │ └── TheSocialNetworkAppViewModel.swift │ │ └── Views │ │ │ ├── AccountView.swift │ │ │ ├── AuthView.swift │ │ │ └── FeedView.swift │ │ ├── Tests iOS │ │ ├── Tests_iOS.swift │ │ └── Tests_iOSLaunchTests.swift │ │ ├── Tests macOS │ │ ├── Tests_macOS.swift │ │ └── Tests_macOSLaunchTests.swift │ │ ├── TheSocialNetwork.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── macOS │ │ └── macOS.entitlements │ │ └── swiftgraphql.yml │ └── server │ ├── .env.example │ ├── codegen.yml │ ├── docker-compose.yml │ ├── package.json │ ├── prisma │ ├── migrations │ │ ├── 20220723190323_setup_initial_database │ │ │ └── migration.sql │ │ └── migration_lock.toml │ └── schema.prisma │ ├── src │ ├── index.ts │ ├── lib │ │ ├── auth.ts │ │ ├── cdn.ts │ │ ├── config.ts │ │ ├── context.ts │ │ ├── mailbox.ts │ │ ├── pubsub.ts │ │ └── random.ts │ ├── resolvers.ts │ ├── schema.graphql │ └── types.ts │ └── tsconfig.json ├── media ├── logo.png ├── logo@2x.png ├── logo@3x.png ├── medium.png ├── thumbnail.png └── twitter.png ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── prettier.config.js ├── scripts └── test.sh ├── server ├── README.md ├── codegen.yml ├── package.json ├── src │ ├── index.ts │ ├── lib │ │ ├── auth.ts │ │ └── context.ts │ ├── resolvers.ts │ ├── schema.graphql │ └── types.ts └── tsconfig.json └── tsconfig.json /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20.5.0 2 | -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/.swiftformat -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Formula/SwiftGraphQL.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Formula/SwiftGraphQL.rb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Makefile -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/README.md -------------------------------------------------------------------------------- /Sources/GraphQL/AnyCodable/AnyCodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/GraphQL/AnyCodable/AnyCodable.swift -------------------------------------------------------------------------------- /Sources/GraphQL/AnyCodable/AnyDecodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/GraphQL/AnyCodable/AnyDecodable.swift -------------------------------------------------------------------------------- /Sources/GraphQL/AnyCodable/AnyEncodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/GraphQL/AnyCodable/AnyEncodable.swift -------------------------------------------------------------------------------- /Sources/GraphQL/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/GraphQL/Error.swift -------------------------------------------------------------------------------- /Sources/GraphQL/Execution.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/GraphQL/Execution.swift -------------------------------------------------------------------------------- /Sources/GraphQLAST/Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/GraphQLAST/Errors.swift -------------------------------------------------------------------------------- /Sources/GraphQLAST/Introspection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/GraphQLAST/Introspection.swift -------------------------------------------------------------------------------- /Sources/GraphQLAST/InvertedTypeRef.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/GraphQLAST/InvertedTypeRef.swift -------------------------------------------------------------------------------- /Sources/GraphQLAST/Schema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/GraphQLAST/Schema.swift -------------------------------------------------------------------------------- /Sources/GraphQLAST/Type.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/GraphQLAST/Type.swift -------------------------------------------------------------------------------- /Sources/GraphQLAST/TypeRef.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/GraphQLAST/TypeRef.swift -------------------------------------------------------------------------------- /Sources/GraphQLAST/Value.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/GraphQLAST/Value.swift -------------------------------------------------------------------------------- /Sources/GraphQLWebSocket/Client.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/GraphQLWebSocket/Client.swift -------------------------------------------------------------------------------- /Sources/GraphQLWebSocket/Config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/GraphQLWebSocket/Config.swift -------------------------------------------------------------------------------- /Sources/GraphQLWebSocket/Extensions/WebSocket+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/GraphQLWebSocket/Extensions/WebSocket+Extensions.swift -------------------------------------------------------------------------------- /Sources/GraphQLWebSocket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/GraphQLWebSocket/README.md -------------------------------------------------------------------------------- /Sources/GraphQLWebSocket/Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/GraphQLWebSocket/Spec.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQL/Document/Argument.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQL/Document/Argument.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQL/Document/Field.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQL/Document/Field.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQL/Document/Scalar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQL/Document/Scalar.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQL/Extensions/CodingKey+Typename.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQL/Extensions/CodingKey+Typename.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQL/Extensions/Collection+UniqueBy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQL/Extensions/Collection+UniqueBy.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQL/Extensions/Int+Hash.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQL/Extensions/Int+Hash.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQL/Extensions/String+Indent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQL/Extensions/String+Indent.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQL/HTTP.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQL/HTTP.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQL/Selection/Operation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQL/Selection/Operation.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQL/Selection/Selection+Codable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQL/Selection/Selection+Codable.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQL/Selection/Selection+Transform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQL/Selection/Selection+Transform.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQL/Selection/Selection+Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQL/Selection/Selection+Utils.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQL/Selection/Selection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQL/Selection/Selection.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQL/Serialization/Document.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQL/Serialization/Document.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQL/Serialization/OptionalArgument.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQL/Serialization/OptionalArgument.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQL/WS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQL/WS.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQLCLI/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQLCLI/main.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQLClient/Client/Config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQLClient/Client/Config.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQLClient/Client/Core.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQLClient/Client/Core.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQLClient/Client/Operation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQLClient/Client/Operation.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQLClient/Client/Selection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQLClient/Client/Selection.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQLClient/Client/Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQLClient/Client/Spec.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQLClient/Exchange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQLClient/Exchange.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQLClient/Exchanges/AuthExchange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQLClient/Exchanges/AuthExchange.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQLClient/Exchanges/CacheExchange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQLClient/Exchanges/CacheExchange.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQLClient/Exchanges/ComposeExchange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQLClient/Exchanges/ComposeExchange.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQLClient/Exchanges/DebugExchange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQLClient/Exchanges/DebugExchange.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQLClient/Exchanges/DedupExchange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQLClient/Exchanges/DedupExchange.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQLClient/Exchanges/ErrorExchange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQLClient/Exchanges/ErrorExchange.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQLClient/Exchanges/ExtensionsExchange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQLClient/Exchanges/ExtensionsExchange.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQLClient/Exchanges/FallbackExchange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQLClient/Exchanges/FallbackExchange.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQLClient/Exchanges/FetchExchange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQLClient/Exchanges/FetchExchange.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQLClient/Exchanges/WebSocketExchange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQLClient/Exchanges/WebSocketExchange.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQLClient/Extensions/Publishers+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQLClient/Extensions/Publishers+Extensions.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQLClient/Extensions/Selection+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQLClient/Extensions/Selection+Extensions.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQLCodegen/Context.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQLCodegen/Context.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQLCodegen/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQLCodegen/Error.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQLCodegen/Extensions/Collection+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQLCodegen/Extensions/Collection+Extensions.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQLCodegen/Extensions/Schema+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQLCodegen/Extensions/Schema+Extensions.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQLCodegen/Extensions/String+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQLCodegen/Extensions/String+Extensions.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQLCodegen/Generator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQLCodegen/Generator.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQLCodegen/Generator/Codable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQLCodegen/Generator/Codable.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQLCodegen/Generator/Enum.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQLCodegen/Generator/Enum.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQLCodegen/Generator/Field.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQLCodegen/Generator/Field.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQLCodegen/Generator/Fragments.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQLCodegen/Generator/Fragments.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQLCodegen/Generator/InputObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQLCodegen/Generator/InputObject.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQLCodegen/Generator/Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQLCodegen/Generator/Interface.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQLCodegen/Generator/Object.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQLCodegen/Generator/Object.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQLCodegen/Generator/Operation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQLCodegen/Generator/Operation.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQLCodegen/Generator/Scalar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQLCodegen/Generator/Scalar.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQLCodegen/Generator/Union.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQLCodegen/Generator/Union.swift -------------------------------------------------------------------------------- /Sources/SwiftGraphQLUtils/Extensions/String+Case.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Sources/SwiftGraphQLUtils/Extensions/String+Case.swift -------------------------------------------------------------------------------- /SwiftGraphQL.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/SwiftGraphQL.podspec -------------------------------------------------------------------------------- /Tests/GraphQLASTTests/ASTIntrospectionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Tests/GraphQLASTTests/ASTIntrospectionTests.swift -------------------------------------------------------------------------------- /Tests/GraphQLASTTests/ASTTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Tests/GraphQLASTTests/ASTTests.swift -------------------------------------------------------------------------------- /Tests/GraphQLASTTests/ASTTypeRef+InvertedTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Tests/GraphQLASTTests/ASTTypeRef+InvertedTests.swift -------------------------------------------------------------------------------- /Tests/GraphQLASTTests/ASTTypeRefTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Tests/GraphQLASTTests/ASTTypeRefTests.swift -------------------------------------------------------------------------------- /Tests/GraphQLASTTests/ASTTypeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Tests/GraphQLASTTests/ASTTypeTests.swift -------------------------------------------------------------------------------- /Tests/GraphQLASTTests/ASTValueTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Tests/GraphQLASTTests/ASTValueTests.swift -------------------------------------------------------------------------------- /Tests/GraphQLTests/AnyCodable/AnyCodableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Tests/GraphQLTests/AnyCodable/AnyCodableTests.swift -------------------------------------------------------------------------------- /Tests/GraphQLTests/AnyCodable/AnyDecodableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Tests/GraphQLTests/AnyCodable/AnyDecodableTests.swift -------------------------------------------------------------------------------- /Tests/GraphQLTests/AnyCodable/AnyEncodableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Tests/GraphQLTests/AnyCodable/AnyEncodableTests.swift -------------------------------------------------------------------------------- /Tests/GraphQLTests/ExecutionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Tests/GraphQLTests/ExecutionTests.swift -------------------------------------------------------------------------------- /Tests/GraphQLWebSocketTests/ClientTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Tests/GraphQLWebSocketTests/ClientTests.swift -------------------------------------------------------------------------------- /Tests/SwiftGraphQLClientTests/AsyncClientTests.swift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Tests/SwiftGraphQLClientTests/AsyncClientTests.swift.swift -------------------------------------------------------------------------------- /Tests/SwiftGraphQLClientTests/Exchanges/CacheExchangeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Tests/SwiftGraphQLClientTests/Exchanges/CacheExchangeTests.swift -------------------------------------------------------------------------------- /Tests/SwiftGraphQLClientTests/Exchanges/ComposeExchangeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Tests/SwiftGraphQLClientTests/Exchanges/ComposeExchangeTests.swift -------------------------------------------------------------------------------- /Tests/SwiftGraphQLClientTests/Exchanges/DedupExchangeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Tests/SwiftGraphQLClientTests/Exchanges/DedupExchangeTests.swift -------------------------------------------------------------------------------- /Tests/SwiftGraphQLClientTests/Exchanges/FallbackExchangeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Tests/SwiftGraphQLClientTests/Exchanges/FallbackExchangeTests.swift -------------------------------------------------------------------------------- /Tests/SwiftGraphQLClientTests/Exchanges/FetchExchangeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Tests/SwiftGraphQLClientTests/Exchanges/FetchExchangeTests.swift -------------------------------------------------------------------------------- /Tests/SwiftGraphQLClientTests/Exchanges/WebSocketExchangeTests.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | -------------------------------------------------------------------------------- /Tests/SwiftGraphQLClientTests/Extensions/Publishers+ExtensionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Tests/SwiftGraphQLClientTests/Extensions/Publishers+ExtensionsTests.swift -------------------------------------------------------------------------------- /Tests/SwiftGraphQLClientTests/Utils/MockClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Tests/SwiftGraphQLClientTests/Utils/MockClient.swift -------------------------------------------------------------------------------- /Tests/SwiftGraphQLClientTests/XCTest+Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Tests/SwiftGraphQLClientTests/XCTest+Helpers.swift -------------------------------------------------------------------------------- /Tests/SwiftGraphQLCodegenTests/Extensions/Context+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Tests/SwiftGraphQLCodegenTests/Extensions/Context+Extensions.swift -------------------------------------------------------------------------------- /Tests/SwiftGraphQLCodegenTests/Generator/EnumTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Tests/SwiftGraphQLCodegenTests/Generator/EnumTests.swift -------------------------------------------------------------------------------- /Tests/SwiftGraphQLCodegenTests/Generator/FieldTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Tests/SwiftGraphQLCodegenTests/Generator/FieldTests.swift -------------------------------------------------------------------------------- /Tests/SwiftGraphQLCodegenTests/Generator/InputObjectTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Tests/SwiftGraphQLCodegenTests/Generator/InputObjectTests.swift -------------------------------------------------------------------------------- /Tests/SwiftGraphQLCodegenTests/Integration/API.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Tests/SwiftGraphQLCodegenTests/Integration/API.swift -------------------------------------------------------------------------------- /Tests/SwiftGraphQLCodegenTests/Integration/Scalars.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Tests/SwiftGraphQLCodegenTests/Integration/Scalars.swift -------------------------------------------------------------------------------- /Tests/SwiftGraphQLCodegenTests/Integration/Selection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Tests/SwiftGraphQLCodegenTests/Integration/Selection.swift -------------------------------------------------------------------------------- /Tests/SwiftGraphQLCodegenTests/Integration/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Tests/SwiftGraphQLCodegenTests/Integration/schema.json -------------------------------------------------------------------------------- /Tests/SwiftGraphQLCodegenTests/Integration/swiftgraphql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Tests/SwiftGraphQLCodegenTests/Integration/swiftgraphql.yml -------------------------------------------------------------------------------- /Tests/SwiftGraphQLCodegenTests/Utils/TestSnapshot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Tests/SwiftGraphQLCodegenTests/Utils/TestSnapshot.swift -------------------------------------------------------------------------------- /Tests/SwiftGraphQLTests/Integration/HTTPTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Tests/SwiftGraphQLTests/Integration/HTTPTests.swift -------------------------------------------------------------------------------- /Tests/SwiftGraphQLTests/Selection/SelectionDecodingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Tests/SwiftGraphQLTests/Selection/SelectionDecodingTests.swift -------------------------------------------------------------------------------- /Tests/SwiftGraphQLTests/Selection/SelectionEncodingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Tests/SwiftGraphQLTests/Selection/SelectionEncodingTests.swift -------------------------------------------------------------------------------- /Tests/SwiftGraphQLTests/Serialization/DocumentTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Tests/SwiftGraphQLTests/Serialization/DocumentTests.swift -------------------------------------------------------------------------------- /Tests/SwiftGraphQLTests/Serialization/OptionalArgumentTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Tests/SwiftGraphQLTests/Serialization/OptionalArgumentTest.swift -------------------------------------------------------------------------------- /Tests/SwiftGraphQLUtilsTests/Extensions/String+CaseTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/Tests/SwiftGraphQLUtilsTests/Extensions/String+CaseTests.swift -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_snippets/snippet-example.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/docs/_snippets/snippet-example.mdx -------------------------------------------------------------------------------- /docs/advanced/cache.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/docs/advanced/cache.mdx -------------------------------------------------------------------------------- /docs/advanced/exchanges.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/docs/advanced/exchanges.mdx -------------------------------------------------------------------------------- /docs/advanced/how.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/docs/advanced/how.mdx -------------------------------------------------------------------------------- /docs/advanced/scalars.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/docs/advanced/scalars.mdx -------------------------------------------------------------------------------- /docs/advanced/selection.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/docs/advanced/selection.mdx -------------------------------------------------------------------------------- /docs/errors.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/docs/errors.mdx -------------------------------------------------------------------------------- /docs/faq.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/docs/faq.mdx -------------------------------------------------------------------------------- /docs/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/docs/favicon.svg -------------------------------------------------------------------------------- /docs/guides/auth.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/docs/guides/auth.mdx -------------------------------------------------------------------------------- /docs/guides/filestructure.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/docs/guides/filestructure.mdx -------------------------------------------------------------------------------- /docs/guides/uploads.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/docs/guides/uploads.mdx -------------------------------------------------------------------------------- /docs/images/client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/docs/images/client.png -------------------------------------------------------------------------------- /docs/images/collisions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/docs/images/collisions.png -------------------------------------------------------------------------------- /docs/images/compile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/docs/images/compile.png -------------------------------------------------------------------------------- /docs/images/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/docs/images/hero.png -------------------------------------------------------------------------------- /docs/images/swift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/docs/images/swift.png -------------------------------------------------------------------------------- /docs/images/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/docs/images/thumbnail.png -------------------------------------------------------------------------------- /docs/installation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/docs/installation.mdx -------------------------------------------------------------------------------- /docs/introduction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/docs/introduction.mdx -------------------------------------------------------------------------------- /docs/logo/swift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/docs/logo/swift.svg -------------------------------------------------------------------------------- /docs/mint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/docs/mint.json -------------------------------------------------------------------------------- /docs/network.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/docs/network.mdx -------------------------------------------------------------------------------- /docs/querying.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/docs/querying.mdx -------------------------------------------------------------------------------- /docs/subscriptions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/docs/subscriptions.mdx -------------------------------------------------------------------------------- /docs/why.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/docs/why.mdx -------------------------------------------------------------------------------- /examples/GitHubStars/GitHubStars.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/GitHubStars/GitHubStars.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/GitHubStars/GitHubStars.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/GitHubStars/GitHubStars.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /examples/GitHubStars/GitHubStars.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/GitHubStars/GitHubStars.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /examples/GitHubStars/GitHubStars/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/GitHubStars/GitHubStars/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /examples/GitHubStars/GitHubStars/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/GitHubStars/GitHubStars/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /examples/GitHubStars/GitHubStars/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/GitHubStars/GitHubStars/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /examples/GitHubStars/GitHubStars/Components/AvatarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/GitHubStars/GitHubStars/Components/AvatarView.swift -------------------------------------------------------------------------------- /examples/GitHubStars/GitHubStars/Components/RepositoryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/GitHubStars/GitHubStars/Components/RepositoryView.swift -------------------------------------------------------------------------------- /examples/GitHubStars/GitHubStars/Components/Shimmer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/GitHubStars/GitHubStars/Components/Shimmer.swift -------------------------------------------------------------------------------- /examples/GitHubStars/GitHubStars/Components/UserView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/GitHubStars/GitHubStars/Components/UserView.swift -------------------------------------------------------------------------------- /examples/GitHubStars/GitHubStars/GitHubStarsApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/GitHubStars/GitHubStars/GitHubStarsApp.swift -------------------------------------------------------------------------------- /examples/GitHubStars/GitHubStars/GraphQL/API.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/GitHubStars/GitHubStars/GraphQL/API.swift -------------------------------------------------------------------------------- /examples/GitHubStars/GitHubStars/GraphQL/Queries/RepositoryQuery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/GitHubStars/GitHubStars/GraphQL/Queries/RepositoryQuery.swift -------------------------------------------------------------------------------- /examples/GitHubStars/GitHubStars/GraphQL/Queries/UserQuery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/GitHubStars/GitHubStars/GraphQL/Queries/UserQuery.swift -------------------------------------------------------------------------------- /examples/GitHubStars/GitHubStars/GraphQL/Scalars/DateTimeScalar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/GitHubStars/GitHubStars/GraphQL/Scalars/DateTimeScalar.swift -------------------------------------------------------------------------------- /examples/GitHubStars/GitHubStars/GraphQL/Scalars/URIScalar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/GitHubStars/GitHubStars/GraphQL/Scalars/URIScalar.swift -------------------------------------------------------------------------------- /examples/GitHubStars/GitHubStars/Model/Repository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/GitHubStars/GitHubStars/Model/Repository.swift -------------------------------------------------------------------------------- /examples/GitHubStars/GitHubStars/Model/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/GitHubStars/GitHubStars/Model/User.swift -------------------------------------------------------------------------------- /examples/GitHubStars/GitHubStars/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/GitHubStars/GitHubStars/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /examples/GitHubStars/GitHubStars/Services/AuthService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/GitHubStars/GitHubStars/Services/AuthService.swift -------------------------------------------------------------------------------- /examples/GitHubStars/GitHubStars/Services/NetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/GitHubStars/GitHubStars/Services/NetworkService.swift -------------------------------------------------------------------------------- /examples/GitHubStars/GitHubStars/ViewModels/FeedViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/GitHubStars/GitHubStars/ViewModels/FeedViewModel.swift -------------------------------------------------------------------------------- /examples/GitHubStars/GitHubStars/ViewModels/GitHubStarsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/GitHubStars/GitHubStars/ViewModels/GitHubStarsViewModel.swift -------------------------------------------------------------------------------- /examples/GitHubStars/GitHubStars/Views/AuthView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/GitHubStars/GitHubStars/Views/AuthView.swift -------------------------------------------------------------------------------- /examples/GitHubStars/GitHubStars/Views/FeedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/GitHubStars/GitHubStars/Views/FeedView.swift -------------------------------------------------------------------------------- /examples/GitHubStars/GitHubStarsTests/GitHubStarsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/GitHubStars/GitHubStarsTests/GitHubStarsTests.swift -------------------------------------------------------------------------------- /examples/GitHubStars/GitHubStarsUITests/GitHubStarsUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/GitHubStars/GitHubStarsUITests/GitHubStarsUITests.swift -------------------------------------------------------------------------------- /examples/GitHubStars/GitHubStarsUITests/GitHubStarsUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/GitHubStars/GitHubStarsUITests/GitHubStarsUITestsLaunchTests.swift -------------------------------------------------------------------------------- /examples/GitHubStars/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/GitHubStars/README.md -------------------------------------------------------------------------------- /examples/GitHubStars/swiftgraphql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/GitHubStars/swiftgraphql.yml -------------------------------------------------------------------------------- /examples/thesocialnetwork/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/README.md -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Components/AvatarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Components/AvatarView.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Components/ChatBubbleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Components/ChatBubbleView.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Components/ImagePicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Components/ImagePicker.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Components/PostView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Components/PostView.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Components/Shimmer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Components/Shimmer.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Components/ToastView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Components/ToastView.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Extensions/Button+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Extensions/Button+Extensions.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Shared/GraphQL/API.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Shared/GraphQL/API.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Shared/GraphQL/Mutations/AuthMutation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Shared/GraphQL/Mutations/AuthMutation.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Shared/GraphQL/Mutations/MessageMutation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Shared/GraphQL/Mutations/MessageMutation.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Shared/GraphQL/Mutations/SignedURLMutation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Shared/GraphQL/Mutations/SignedURLMutation.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Shared/GraphQL/Queries/MessageQuery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Shared/GraphQL/Queries/MessageQuery.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Shared/GraphQL/Queries/SignedURLQuery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Shared/GraphQL/Queries/SignedURLQuery.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Shared/GraphQL/Queries/UserQuery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Shared/GraphQL/Queries/UserQuery.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Shared/GraphQL/Scalars/DateTimeScalar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Shared/GraphQL/Scalars/DateTimeScalar.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Shared/GraphQL/Subscriptions/DateSubscription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Shared/GraphQL/Subscriptions/DateSubscription.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Shared/GraphQL/Subscriptions/MessageSubscription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Shared/GraphQL/Subscriptions/MessageSubscription.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Model/File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Model/File.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Model/Message.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Model/Message.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Model/SignedURL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Model/SignedURL.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Model/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Model/User.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Services/AuthClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Services/AuthClient.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Services/CDNClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Services/CDNClient.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Services/FeedClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Services/FeedClient.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Services/NetworkClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Services/NetworkClient.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Shared/TheSocialNetworkApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Shared/TheSocialNetworkApp.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Shared/ViewModels/AccountViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Shared/ViewModels/AccountViewModel.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Shared/ViewModels/AuthViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Shared/ViewModels/AuthViewModel.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Shared/ViewModels/FeedViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Shared/ViewModels/FeedViewModel.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Shared/ViewModels/TheSocialNetworkAppViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Shared/ViewModels/TheSocialNetworkAppViewModel.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Views/AccountView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Views/AccountView.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Views/AuthView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Views/AuthView.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Views/FeedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Shared/Views/FeedView.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Tests iOS/Tests_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Tests iOS/Tests_iOS.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Tests iOS/Tests_iOSLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Tests iOS/Tests_iOSLaunchTests.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Tests macOS/Tests_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Tests macOS/Tests_macOS.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/Tests macOS/Tests_macOSLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/Tests macOS/Tests_macOSLaunchTests.swift -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/TheSocialNetwork.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/TheSocialNetwork.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/TheSocialNetwork.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/TheSocialNetwork.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/TheSocialNetwork.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/TheSocialNetwork.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/macOS/macOS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/macOS/macOS.entitlements -------------------------------------------------------------------------------- /examples/thesocialnetwork/ios/TheSocialNetwork/swiftgraphql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/ios/TheSocialNetwork/swiftgraphql.yml -------------------------------------------------------------------------------- /examples/thesocialnetwork/server/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/server/.env.example -------------------------------------------------------------------------------- /examples/thesocialnetwork/server/codegen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/server/codegen.yml -------------------------------------------------------------------------------- /examples/thesocialnetwork/server/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/server/docker-compose.yml -------------------------------------------------------------------------------- /examples/thesocialnetwork/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/server/package.json -------------------------------------------------------------------------------- /examples/thesocialnetwork/server/prisma/migrations/20220723190323_setup_initial_database/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/server/prisma/migrations/20220723190323_setup_initial_database/migration.sql -------------------------------------------------------------------------------- /examples/thesocialnetwork/server/prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/server/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /examples/thesocialnetwork/server/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/server/prisma/schema.prisma -------------------------------------------------------------------------------- /examples/thesocialnetwork/server/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/server/src/index.ts -------------------------------------------------------------------------------- /examples/thesocialnetwork/server/src/lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/server/src/lib/auth.ts -------------------------------------------------------------------------------- /examples/thesocialnetwork/server/src/lib/cdn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/server/src/lib/cdn.ts -------------------------------------------------------------------------------- /examples/thesocialnetwork/server/src/lib/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/server/src/lib/config.ts -------------------------------------------------------------------------------- /examples/thesocialnetwork/server/src/lib/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/server/src/lib/context.ts -------------------------------------------------------------------------------- /examples/thesocialnetwork/server/src/lib/mailbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/server/src/lib/mailbox.ts -------------------------------------------------------------------------------- /examples/thesocialnetwork/server/src/lib/pubsub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/server/src/lib/pubsub.ts -------------------------------------------------------------------------------- /examples/thesocialnetwork/server/src/lib/random.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/server/src/lib/random.ts -------------------------------------------------------------------------------- /examples/thesocialnetwork/server/src/resolvers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/server/src/resolvers.ts -------------------------------------------------------------------------------- /examples/thesocialnetwork/server/src/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/server/src/schema.graphql -------------------------------------------------------------------------------- /examples/thesocialnetwork/server/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/server/src/types.ts -------------------------------------------------------------------------------- /examples/thesocialnetwork/server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/examples/thesocialnetwork/server/tsconfig.json -------------------------------------------------------------------------------- /media/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/media/logo.png -------------------------------------------------------------------------------- /media/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/media/logo@2x.png -------------------------------------------------------------------------------- /media/logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/media/logo@3x.png -------------------------------------------------------------------------------- /media/medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/media/medium.png -------------------------------------------------------------------------------- /media/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/media/thumbnail.png -------------------------------------------------------------------------------- /media/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/media/twitter.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/prettier.config.js -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/server/README.md -------------------------------------------------------------------------------- /server/codegen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/server/codegen.yml -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/server/package.json -------------------------------------------------------------------------------- /server/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/server/src/index.ts -------------------------------------------------------------------------------- /server/src/lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/server/src/lib/auth.ts -------------------------------------------------------------------------------- /server/src/lib/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/server/src/lib/context.ts -------------------------------------------------------------------------------- /server/src/resolvers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/server/src/resolvers.ts -------------------------------------------------------------------------------- /server/src/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/server/src/schema.graphql -------------------------------------------------------------------------------- /server/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/server/src/types.ts -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/server/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maticzav/swift-graphql/HEAD/tsconfig.json --------------------------------------------------------------------------------