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
Hi there, I'm continually getting this error when I'm trying to use `Upload` scalar within my schema. I've followed and read a ton of posts and SO links but can't...
Hi! I'm having issues with the addRelation function. More specifically when projecting fields towards the graphql request. Worth noting is that this worked with the use of composeWithMongoose function previously....
I am trying to use "$in" to search for elements in array, but I noticed the schema is searching by position in the array and only match the first parameter...
Prior to using graphql-compose, my schema included types with an `id` field courtesy of the Mongoose models. However, the types now have `_id` fields instead and I'm faced with having...
I have struggled for a couple of days in how to make the operators to work with input fields as the syntax is a bit awkward compared to the typical...
First off, I'm going to apologize from the get go, I'm more of a front end guy than a DBA. That said I've taken it upon myself to convert our...
Hey, i am trying to integrate `graphql-compose-mongoose` with a serverless framework, in my case `nextjs`. I was getting the following error: ``` Error: You try to generate GraphQL Type with...
I'm trying to use *wrapResolverResolve* for an *ObjectTypeComposer* created using composeMongoose function, but I get the error: ``` Error: Type User does not have resolver with name 'createOne' ``` ```typescript...
I have a user model like this: ```js //shortened schema const UserSchema = new mongoose.Schema({ name: { type: String, }, email: { type: String, }, password: { //hashed type: String,...
hey there, i am having trouble defining a new `addResolver` with the right types. This is the user: ```js export interface IUser extends IBaseAttributes { email: string; password: string; passwordResetToken:...