graphql-compose-mongoose
graphql-compose-mongoose copied to clipboard
Mongoose model converter to GraphQL types with resolvers for graphql-compose https://github.com/nodkz/graphql-compose
Sorry if this is covered somewhere else, but I'm running into issues trying to compose a schema for a discriminator with an index. `graphql-compose-mongoose` wants to create sort types for...
Thank you so much ❤️ for all the great work and effort. I have found a potential bug: When you use `updateMany` resolver on array field it is executed on...
Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...
When updating a nested field with a updateOne resolver, all the other field in that same object field becomes null. let's say we have: ``` basic_info { size email }...
This one was obscure and hard to find. Locally everything worked great, just like our prior existing products that had used this amazing library. Production in our new AWS environment...
Is it possible to use MongoDB's [positional operator](https://docs.mongodb.com/manual/reference/operator/update/positional/) in a generated `updateOne`/`updateMany` resolver? For example, I would like to make an update like this (from Mongo's doc): ``` db.students.updateOne( {...
I have started a new project, when I added `graphql` it installed version `^16.0.1`. In my project I have a `mongoose.Schema` that validates an email string, the validation itself works,...
Hi, I am working on custom guards around resolvers including `findOne, findMany, etc.` I have hit a couple of problems: 1. The type of the arguments (`TArgs`) aren't exported, and...
As posted on issue #390 When using discriminators the prepareChildResolver process (copyResolverArgTypes) will treat _operators, AND and OR as fields and call extendField from the baseResolver args to the childResolver...
When using discriminators the prepareChildResolver process (copyResolverArgTypes) will treat _operators, AND and OR as fields and call extendField from the baseResolver args to the childResolver args. This will overwrite the...