SwiftGraphQL – A GraphQL client that lets you forget about GraphQL
1–10 of 90 posts
Re: SwiftGraphQL – A GraphQL client that lets you forget about GraphQL
#2Re: SwiftGraphQL – A GraphQL client that lets you forget about GraphQL
#3Re: SwiftGraphQL – A GraphQL client that lets you forget about GraphQL
#4- Relay-swift: A port of Relay to Swift - https://relay-tools.github.io/Relay.swift/docs/
- Graphaello: Inspired by Relay, but deviates a bit more from the patterns than Relay-swift - https://github.com/nerdsupremacist/Graphaello
Re: SwiftGraphQL – A GraphQL client that lets you forget about GraphQL
#5Re: SwiftGraphQL – A GraphQL client that lets you forget about GraphQL
#6Wouldn't it be better to generate those structs from API schema?
that module: https://github.com/captain-refactor/graphql-compose-typescri...
Re: SwiftGraphQL – A GraphQL client that lets you forget about GraphQL
#7Re: SwiftGraphQL – A GraphQL client that lets you forget about GraphQL
#8Wouldn't it be better to generate those structs from API schema?
Re: SwiftGraphQL – A GraphQL client that lets you forget about GraphQL
#9I love code generation from GraphQL. Elm-graphql is a great example of this and works incredibly well, to the point where it sold me on GraphQL entirely.
Re: SwiftGraphQL – A GraphQL client that lets you forget about GraphQL
#10Wouldn't it be better to generate those structs from API schema?
Maybe you are referring to generating the model from the queries. The problem we had with that approach was that it's hard to reuse the generated structures in your application model. You can read more about the idea here:
https://github.com/maticzav/swift-graphql#what-are-the-pitfa...