graphql-compose-dataloader
graphql-compose-dataloader copied to clipboard
Add DataLoader to graphql-composer resolvers.
After going through the [code](https://github.com/graphql-compose/graphql-compose-dataloader/blob/master/src/index.js) of the plugin it seems that the plugin only works with the default resolvers provided with `graphql-compose` (e.g. `findById` or `findByIds`). Am I correct? So...
Are there any setup mistakes that I could be making that would result in Dataloader causing a massive **performance hit** for queries? For the below query I am seeing average...
Suppose Teacher mongoose model has students list, but each student can be teacher of anyone, including the current teacher. If I use composeWithMongoose and composeWithDataLoader, and create one teacher and...