apollo-connector-mongodb
apollo-connector-mongodb copied to clipboard
Apollo Connector for MongoDB with caching
I am just reading up on DataLoaders and in the readme (https://github.com/graphql/dataloader) it mentions: > Avoid multiple requests from different users using the DataLoader instance, which could result in cached...
Very interested in trying this library but I'm thinking that the current implementation doesn't match the readme. Do you have a working example hosted anywhere?
How does this play with mongoose. For example, consider we have a schema like this `const UserSchema = new mongoose.Schema({ username: { type: String, required: true }, mobileNumber: { type:...