FSharp.Data.GraphQL icon indicating copy to clipboard operation
FSharp.Data.GraphQL copied to clipboard

FSharp implementation of Facebook GraphQL query language.

Results 138 FSharp.Data.GraphQL issues
Sort by recently updated
recently updated
newest added

### Description I have rewritten sample server to use System.Text.Json including `JsonStringEnumConverter` ``` F# let serializerOptions = let options = JsonSerializerOptions(PropertyNamingPolicy = JsonNamingPolicy.CamelCase) let converters = options.Converters converters.Add (JsonStringEnumConverter ())...

### Description We use [Chessie](https://github.com/fsprojects/Chessie/) and resolver function returns a result. Then I want to unwrap that result and return value or errors as GraphQL response like this: ``` F#...

Idea here is to change signature of the existing scalar coerce function to return `Choice` insteaf of `option`. Reason for that is that we want to use custom scalars to...

enhancement
low-priority

### Description Getting a response into a string and then parsing it is not the most efficient way of decoding a response. I think that it would be better to...

enhancement

It is possible that a Get Request is successful but does not contain a proper schema. With this commit if a Get Requests succeds it will be checked if a...

### Description One of the biggest issues with GraphQL is that queries are very difficult to optimize, and may result in 1) Fetching the same data repeatedly 2) Inefficient fetches...

Hi, I'm wondering if there's [dataloaders](https://graphql-dotnet.github.io/docs/guides/dataloader) or something similar is available.

### Description If you declare Different GraphQLProvider instances with the same query name then type provider compiles the first found query to all type provider generated code where query with...

Deserialization of ID types caused an exception if the field was nullable. This corrects https://github.com/fsprojects/FSharp.Data.GraphQL/issues/244 and adds a test-case for it.