graphql-resolve-batch
graphql-resolve-batch copied to clipboard
A GraphQL batching model which groups execution by GraphQL fields.
Hi, I'm seeing an issue when batching interface types. I have a query that returns an interface, that resolves to a few different types. Then, on each of those types,...
This looks to be the sort of solution we are looking for, but I'm struggling to think of how to make the resolver work while using a DB as the...
Example query: ```graphql query CrossBatchLoadingQuery { # QueryType me { # UserType plural=false friends(limit: 5) { # UserType plural=true id } } users(limit: 10) { # UserType plural=true id friends(limit:...
It seems that this is simply a function that you pass your resolver to. Is there any reason why this cannot be used together with dataloader?
Can I somehow make this work with Relay? Currently, it requires an array to be returned, but the Relay spec returns an Object like ``` { edges: [] } ```...