A GraphQL client that lets you forget about GraphQL.
- β¨ Intuitive: You'll forget about the GraphQL layer altogether.
- π Time Saving: I've built it so you don't have to waste your precious time.
- βοΈ Generate once: Only when your schema changes.
- βοΈ Subscriptions: Listen to subscriptions using webhooks.
- π High Level: You don't have to worry about naming collisions, variables, anything. Just Swift.
SwiftGraphQL is a GraphQL Client that ships with a type-safe query builder. It lets you perform queries, mutations and listen for subscriptions. The query builder guarantees that every query you can create is valid and complies with the GraphQL spec.
The library is centered around three core principles:
- π If your project compiles, your queries work.
- π¦ Use Swift in favour of GraphQL wherever possible.
- π Packages shouldn't lock you in to the "framework".
You can use only parts of SwiftGraphQL that are useful to you (e.g. use GraphQLWebSocket implementation but not the query builder, or WebSocket but not the client).
You can find detailed documentation on the SwiftGraphQL page at www.swift-graphql.com.
You can find examples of how to use a local GraphQL API or remote one in the /examples
directory.
- thesocialnetwork - a simple chat app that shows how to
swift-graphql
with queries and subscriptions, - GitHubStars - shows how to use GitHub API with
swift-graphql
.
SwiftGraphQL solves a set of specific problems but it doesn't solve every problem. Depending on your needs, you may also want to check out
- https://github.com/relay-tools/Relay.swift
- https://github.com/apollographql/apollo-ios
- https://github.com/nerdsupremacist/Graphaello
I would like to dedicate this last section to everyone who helped develop this library.
- First, I would like to thank Dillon Kearns, the author of elm-graphql, who inspired me to write the library, and helped me understand the core principles behind his Elm version.
- Second, I would like to thank Peter Albert for giving me a chance to build this library, having faith that it's possible, and all the conversations that helped me push through the difficult parts of it.
- Thirdly, special thanks to Phil Pluckthun who explained all the bits of how
urql
andwonka
work, - Fourthly, thanks to Orta Therox for helping me navigate Combine.
- Lastly, I'd like to thank every contributor to the project. SwiftGraphQL is better because of you. Thank you!
Thank you! π
MIT @ Matic Zavadlal