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

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: ![image](https://user-images.githubusercontent.com/3539984/47607611-0bfdfe00-da1a-11e8-950e-3177681c1ca4.png)

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...

enhancement

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...

enhancement
low-priority