FSharp.Data.GraphQL
FSharp.Data.GraphQL copied to clipboard
FSharp implementation of Facebook GraphQL query language.
With this Pull Request, I'm proposing an operation planning middleware that changes the current operation based on directives present in the query. The user can choose directives with a chooser...
Hi, How about schema stitching support like for example Apollo server/tools does. https://www.apollographql.com/docs/graphql-tools/schema-stitching.html https://github.com/hasura/schema-stitching-examples/blob/master/multiple-remote-graphql-apis/index.js Interesting if we want to make a GraphQL Gateway, I mean something like this: 
Hi, Any tips on how to handle the file upload?
### Description The example code on the project homepage (https://fsprojects.github.io/FSharp.Data.GraphQL/) doesn't work. For example, you cannot call `AsyncExecute` on a Schema.
### Description An error occurs when trying to get a non-existent value: `Object reference not set to an instance of an object.` ### Repro steps 1. Run the query for...
@TOTBWF as a reminder. Right now defining a connection produces something like this: `communities(first: Int, after: String): CommunityConnection!` but it supposed to be like this according to Relay (if you...
In one of [my blog posts](http://bartoszsypytkowski.com/c-a-different-look-at-service-design/) I've shown a way - inspired by Twitter's Finagle - of applying additional logic to service calls. I think we could apply something similar...
The [original starter kit](https://github.com/fsprojects/FSharp.Data.GraphQL/tree/dev/samples/relay-starter-kit) example was adopted to the [Relay Modern](https://facebook.github.io/relay/docs/relay-modern.html) API version. Now it also provides an example of pagination using [PaginationContainer](https://facebook.github.io/relay/docs/PaginationContainer.html). The Relay Modern requires an additional compilation...
Currently property tracker has 2 cases: - `Direct` (for tracker leaf nodes) - `Compose` (for nodes with children). The problem here may be how to deal with conditionally tracked properties...