FSharp.Data.GraphQL
FSharp.Data.GraphQL copied to clipboard
FSharp implementation of Facebook GraphQL query language.
### Description I'm trying to use the type provider in a .NET Core 3.0 app and experience the following compiler error: `error FS3021: Unexpected exception from provided type 'FSharp.Data.GraphQL.GraphQLProvider,introspection="shopify_schema.json"' member...
### Description I am receiving an error when converting a response value. The error I receive is "Unable to cast object of type `FooResult` to type `Foo` where FooResult is...
We talked with @johnberzy-bazinga about idea of using cexprs for defining schemas, i.e instead of current: ``` fsharp let Person = Define.Object("Person", "description", [ Define.Field("firstName", String, "Person's first name", fun...
### Description Question: is it possible to print the AST to a string (latest master)? The `ToString()` impl primarily prints `x.name + "!"`. I'm trying to build a F# to...
### Description Client type provider does not work for e.g. `DateTimeOffset` deserialization. It knows to infer CLR Type in compile time but fails on runtime deserialization. I've checked the code...
Looking quickly at how to accept incoming params, is there a current way that allows defining something more global. Currently that's how it's done: ``` let createUserArgs: InputFieldDef list =...
### Description First would like to say awesome project. Thanks for the great work! Trying out 1.0.0-beta2 I see that `FSharp.Data.GraphQL.Types` has moved to `Shared` project. I don't see a...
I really like the simplicity of the builder approach used [here](https://github.com/GT-CHaRM/CHaRM.Backend/blob/master/src/CHaRM.Backend/Schema.fs)
With this PR, I am proposing a solution for delivering items as soon as they are computed on streaming - in this case, for when the input data from the...
This Pull request is meant to create benchmarks on queries running against a big dataset. The first version uses a public movie database, which is converted via script to a...