graphql-compose-mongoose icon indicating copy to clipboard operation
graphql-compose-mongoose copied to clipboard

Mongoose model converter to GraphQL types with resolvers for graphql-compose https://github.com/nodkz/graphql-compose

Results 118 graphql-compose-mongoose issues
Sort by recently updated
recently updated
newest added

First off, thank you so much for this awesome library. Support for discriminators is great for standalone documents, however, it doesn't work for subdocuments (as in embedded subdocuments). Could I...

enhancement
help wanted

As of right now, the base interface returned creates types rather than interfaces for nested objects. Due to this, there is no way to do things like https://graphql.github.io/graphql-spec/June2018/#example-5cc55 Was this...

How should I handle models with custom types such as [`mongoose-long`]? Currently I get the following error when creating a `TypeComposer` with `composeWithMongoose` if the model has a field using...

First off, thank you so much for the awesome work done here. So much cool stuff! My issue is around creating a findOrCreate Graphql-compose custom resolver. The goal is basically...

Hi, I need to implement an after-doc-saved callback or to chain a promise after a mutation resolver in order to add later subscriptions. How can I implement that? Using .wrapResolve()...

refer to this issue https://github.com/graphql-compose/graphql-compose-mongoose/issues/147#issuecomment-455115861 when using mergeSchemas from graphql-tools with graphql-tools defined schema and graphql-compose-mongoose generated schema, there will get Variable "$_v1_sort" got invalid value {role: 1}; Expected type...

Mongoose (actually mongo driver underlying i think) has depricated many fields in the most recent versions. I believe this package is triggering lots of warnings about this. ## Example Warnings...

I just discovered this project and I am so glad I did! However, I am having a problem with version 4.6.0. I am using typescript 3.0.1. I have a very...

hello~ Do we have plan to add createMany, and recordIds returns the array of ObjectIDs, records returns the updated objects. ```javascript //createMany var array = [{ name: 'Star Wars' },...

I have been exploring various libraries for mongoose and graphql and this really looks promising.Great work guys . I have a scenario where i need to switch database on the...