graffiti-mongoose icon indicating copy to clipboard operation
graffiti-mongoose copied to clipboard

⚠️ DEVELOPMENT DISCONTINUED - Mongoose (MongoDB) adapter for graffiti (Node.js GraphQL ORM)

Results 32 graffiti-mongoose issues
Sort by recently updated
recently updated
newest added

Hi All, Has anyone successfully performed queries using full text search (MongoDB $text)? Looks like this is currently not supported. Something like: ``` query{ viewer{ products(first:5,text:"chocolate cream"){ edges{ node{ name...

Hi! Can I somehow use object refs in plural model query parameters? For example, I have two schemas, `User` and `Friend.` `Friend` has a field called `user` which is a...

Not sure if this is possible right now (or good practice). When I build the schema everything goes fine, but when I try and use GraphiQL to query `page {...

Support for graphql subscriptions ,since it has been released in version 0.4.8

When I upgraded from 4.3.3 to 5.0.8 I'm getting an error (RangeError: Maximum call stack size exceeded) in lodash that seems to be related to recursive schemas. Here is a...

Support [sub-documents](http://mongoosejs.com/docs/subdocs.html): ``` javascript var childSchema = new Schema({ name: 'string' }); var parentSchema = new Schema({ children: [childSchema] }) ```

type: feat

Is there any way to add custom types to the schema? For example... we're using Auth0.com, so our User types should resolve via the Auth0 API, whereas most other types...

Not sure if this is irrelevant b/c future plans to support mongoose objects https://github.com/RisingStack/graffiti-mongoose/issues/4. But currently the string type returned is invalid json. It appears the json returned has single...

If I have two schemas like this: ``` var personSchema = Schema({ name : String, age : Number, }); var storySchema = Schema({ _creator : { type: Schema.Types.ObjectId, ref: 'Person'...