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

I've added a small random generator query to star-wars-api example: ```fsharp let randoms = let inputs = [ Define.Input ("count", IntType) Define.Input ("range", Nullable (Define.InputObject("RandomRange", [ Define.Input ("min", IntType) Define.Input...

### Description It would be extremely nice to be able to define a list of mapping between custom scalar types and real domain types. Like when you define coercion functions...

### Description See as the sample https://github.com/fsprojects/FAKE/pull/2837/files ### Expected behavior Build results are published to the PR discussion

### Description I have a structure ``` type InputAssignRoleToUser = { UserId : ConsoleUserId PropertyId : PropertyId RoleId : ConsoleUserRoleId } ``` and here's its description for graphql ``` Define.InputObject("InputAssignRoleToUser",...

### Description It appears that the `LongType` included with the SchemaDefinition implementation is not actually supported. If I define a mutation field in my schema with input type `LongType`, like...

### Description If you construct a query that only contains a spread fragment, it appears that the resolver's root argument becomes null. This only happens whenever there are no other...