swift-graphql icon indicating copy to clipboard operation
swift-graphql copied to clipboard

A GraphQL client that lets you forget about GraphQL.

Results 23 swift-graphql issues
Sort by recently updated
recently updated
newest added

Support for Swift 5.5's new async/await would be amazing.

enhancement
good first issue

**Is your feature request related to a problem? Please describe.** It would be nice to have the library available on Linux too, e.g. to use the GraphQL client in server-sided...

enhancement

As I was trying to implement a schema generation to a swift package, I was running into the access control of the generated code. I essentially just went thorough and...

**Describe the bug** A clear and concise description of what the bug is. **To Reproduce** Steps to reproduce the behavior: 1. Go to [installation](https://www.swift-graphql.com/docs/installation) 2. Run through the generator installation...

**Describe the bug** The latest version of SwiftGraphql seems to introduce a dependency compilation bug with the SwiftSyntax package. Both the main branch as well as version 4.0.0 cause the...

Fix for the https://github.com/maticzav/swift-graphql/issues/89 I've found that value of AnyCodable is Optional - some : in that cases. It's not nil. So, instead of void, we receive a "value" while...

Hi, Upgraded to version 4.0.0 and having issues with one of my queries now. Query code: ``` struct Recording { struct Analysis { let success: Bool } let id: String...

**Describe the bug** I've downloaded the Github schema by link https://docs.github.com/en/graphql/overview/public-schema and then have tried to run the generator `% swift-graphql schema.docs.graphql` and it has failed **To Reproduce** Steps to...

**Describe the bug** I am trying to fetch the multiple levels of CategoryTree with this approach ` struct CategoryResult { var items: [Category] var totalCount: Int static let selection =...

**Describe the bug** I'm not sure if it's a bug or I just don't get the types yet. I have a shop with optional categories and a M2M relation. ```swift...