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

FSharp implementation of Facebook GraphQL query language.

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

- Add some code-docs so that developers using the AST can read about what they are doing - Add TypeSystemDefinition and TypeSystemExtension to the Definition DU - Move DirectiveLocation from...

Hi, How on the Giraffe example, can I made authorization based on policies. I mean something like [this](https://github.com/graphql-dotnet/authorization) and this [Giraffe PR](https://github.com/giraffe-fsharp/Giraffe/pull/237)? Best regards, Rajiv.

Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 11.0.2 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...

dependencies
.NET

Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 11.0.2 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...

dependencies
.NET

I am having problems to create filter for root property, something like that: ``` query { markets (filter : { totalMatched_greater_than : 1000.0 }) { id name totalMatched status requestTime...

When writing resolver functions, my most common run-time errors are caused by unpacking the arguments incorrectly. This is because the API presents a `Map`, so it's easy to get the...

This my attempt at implementing an `ObjectRef` function in an effort to alleviate some of the pain-points of defining large schemas using this library. This approach was proposed by @johnberzy-bazinga...

With this PR, I am separating `FSharp.Data.GraphQL.Shared` to have it's own Nuget package, and setting `FSharp.Data.GraphQL.Server`, `FSharp.Data.GraphQL.Client` and `FSharp.Data.GraphQL.Server.Middlewares` to depend on it.

Using recursive definition of fields in the `InputObject` resulted in a null reference exception. The exception was triggered because the `ExecuteInput` on a field definition was not initialized. It was...