graphql-compose-mongoose
![Greenkeeper badge](https://badges.greenkeeper.io/nodkz/graphql-compose-mongoose.svg)
This is a plugin for graphql-compose, which derives GraphQLType from your mongoose model. Also derives bunch of internal GraphQL Types. Provide all CRUD resolvers, including graphql connection
, also provided basic search via operators ($lt, $gt and so on).
Installation
npm install graphql graphql-compose mongoose graphql-compose-mongoose --save
Modules graphql
, graphql-compose
, mongoose
are in peerDependencies
, so should be installed explicitly in your app. They have global objects and should not have ability to be installed as submodule.
If you want to add additional resolvers connection
and/or pagination
- just install following packages and graphql-compose-mongoose
will add them automatically.
npm install graphql-compose-connection graphql-compose-pagination --save
Example
Live demo: https://graphql-compose.herokuapp.com/
Source code: https://github.com/nodkz/graphql-compose-mongoose-example
import mongoose from 'mongoose';
import composeWithMongoose from 'graphql-compose-mongoose';
import { GQC } from 'graphql-compose';
const LanguagesSchema = new mongoose.Schema({
language: String,
skill: {
type: String,
enum: [ 'basic', 'fluent', 'native' ],
},
});
const UserSchema = new mongoose.Schema({
name: String,
age: {
type: Number,
index: true,
},
languages: {
type: [LanguagesSchema],
default: [],
},
contacts: {
email: String,
phones: [String],
},
gender: {
type: String,
enum: ['male', 'female', 'ladyboy'],
},
someMixed: {
type: mongoose.Schema.Types.Mixed,
description: 'Can be any mixed type, that will be treated as JSON GraphQL Scalar Type',
},
});
const UserModel = mongoose.model('UserModel', UserSchema);
const customizationOptions = {};
const UserTC = composeWithMongoose(UserModel, customizationOptions);
GQC.rootQuery().addFields({
userById: UserTC.getResolver('findById'),
userByIds: UserTC.getResolver('findByIds'),
userOne: UserTC.getResolver('findOne'),
userMany: UserTC.getResolver('findMany'),
userCount: UserTC.getResolver('count'),
userConnection: UserTC.getResolver('connection'),
userPagination: UserTC.getResolver('pagination'),
});
GQC.rootMutation().addFields({
userCreate: UserTC.getResolver('createOne'),
userUpdateById: UserTC.getResolver('updateById'),
userUpdateOne: UserTC.getResolver('updateOne'),
userUpdateMany: UserTC.getResolver('updateMany'),
userRemoveById: UserTC.getResolver('removeById'),
userRemoveOne: UserTC.getResolver('removeOne'),
userRemoveMany: UserTC.getResolver('removeMany'),
});
const graphqlSchema = GQC.buildSchema();
export default graphqlSchema;
That's all!
You think that is to much code?
I don't think so, because by default internally was created about 55 graphql types (for input, sorting, filtering). So you will need much much more lines of code to implement all these CRUD operations by hands.
FAQ
Can I get generated vanilla GraphQL types?
const UserTC = composeWithMongoose(UserModel);
UserTC.getType();
UserTC.getInputType();
UserTC.get('languages').getType();
UserTC.get('fieldWithNesting.subNesting').getType();
How to add custom fields?
UserTC.addFields({
lonLat: TypeComposer.create('type LonLat { lon: Float, lat: Float }'),
notice: 'String',
noticeList: {
type: '[String]',
description: 'Array of notices',
resolve: (source, args, context, info) => 'some value',
},
bio: {
type: GraphQLString,
description: 'Providing vanilla GraphQL type'
}
})
How to build nesting/relations?
Suppose you Model has friendsIds
field with array of user ids. So let build some relations:
UserTC.addRelation(
'friends',
() => ({
resolver: UserTC.getResolver('findByIds'),
args: {
_ids: (source) => source.friendsIds,
},
projection: { friendsIds: 1 },
})
);
UserTC.addRelation(
'adultFriendsWithSameGender',
() => ({
resolver: UserTC.get('$findMany'),
args: {
filter: (source) => ({
_operators : {
_id : { in: source.friendsIds },
age: { gt: 21 }
},
gender: source.gender,
}),
limit: 10,
},
projection: { friendsIds: 1, gender: 1 },
})
);
Reusing the same mongoose Schema in embedded object fields
Suppose you have a common structure you use as embedded object in multiple Schemas.
Also suppose you want the structure to have the same GraphQL type across all parent types.
(For instance, to allow reuse of fragments for this type)
Here are Schemas to demonstrate:
import { Schema } from 'mongoose';
const ImageDataStructure = Schema({
url: String,
dimensions : {
width: Number,
height: Number
}
}, { _id: false });
const UserProfile = Schema({
fullName: String,
personalImage: ImageDataStructure
});
const Article = Schema({
title: String,
heroImage: ImageDataStructure
});
If you want the ImageDataStructure
to use the same GraphQL type in both Article
and UserProfile
you will need create it as a mongoose schema (not a standard javascript object) and to explicitly tell graphql-compose-mongoose
the name you want it to have. Otherwise, without the name, it would generate the name according to the first parent this type was embedded in.
Do the following:
import { convertSchemaToGraphQL } from 'graphql-compose-mongoose';
convertSchemaToGraphQL(ImageDataStructure, 'EmbeddedImage');
Before continuing to convert your models to TypeComposers:
import mongoose from 'mongoose';
import { composeWithMongoose } from 'graphql-compose-mongoose';
const UserProfileModel = mongoose.model('UserProfile', UserProfile);
const ArticleModel = mongoose.model('Article', Article);
const UserProfileTC = composeWithMongoose(UserProfileModel);
const ArticleTC = composeWithMongoose(ArticleModel);
Then, you can use queries like this:
query {
topUser {
fullName
personalImage {
...fullImageData
}
}
topArticle {
title
heroImage {
...fullImageData
}
}
}
fragment fullImageData on EmbeddedImage {
url
dimensions {
width height
}
}
Customization options
When we convert model const UserTC = composeWithMongoose(UserModel, customizationOptions);
you may tune every piece of future derived types and resolvers.
Here is flow typed definition of this options:
The top level of customization options. Here you setup name and description for the main type, remove fields or leave only desired fields.
export type typeConverterOpts = {
name?: string,
description?: string,
fields?: {
only?: string[],
remove?: string[],
},
inputType?: typeConverterInputTypeOpts,
resolvers?: false | typeConverterResolversOpts,
};
This is opts.inputType
level of options for default InputTypeObject which will be provided to all resolvers for filter
and input
args.
export type typeConverterInputTypeOpts = {
name?: string,
description?: string,
fields?: {
only?: string[],
remove?: string[],
required?: string[]
},
};
This is opts.resolvers
level of options.
If you set the option to false
it will disable resolver or some of its input args.
Every resolver's arg has it own options. They described below.
export type typeConverterResolversOpts = {
findById?: false,
findByIds?: false | {
limit?: limitHelperArgsOpts | false,
sort?: sortHelperArgsOpts | false,
},
findOne?: false | {
filter?: filterHelperArgsOpts | false,
sort?: sortHelperArgsOpts | false,
skip?: false,
},
findMany?: false | {
filter?: filterHelperArgsOpts | false,
sort?: sortHelperArgsOpts | false,
limit?: limitHelperArgsOpts | false,
skip?: false,
},
updateById?: false | {
record?: recordHelperArgsOpts | false,
},
updateOne?: false | {
record?: recordHelperArgsOpts | false,
filter?: filterHelperArgsOpts | false,
sort?: sortHelperArgsOpts | false,
skip?: false,
},
updateMany?: false | {
record?: recordHelperArgsOpts | false,
filter?: filterHelperArgsOpts | false,
sort?: sortHelperArgsOpts | false,
limit?: limitHelperArgsOpts | false,
skip?: false,
},
removeById?: false,
removeOne?: false | {
filter?: filterHelperArgsOpts | false,
sort?: sortHelperArgsOpts | false,
},
removeMany?: false | {
filter?: filterHelperArgsOpts | false,
},
createOne?: false | {
record?: recordHelperArgsOpts | false,
},
count?: false | {
filter?: filterHelperArgsOpts | false,
},
connection?: false | {
uniqueFields: string[],
sortValue: mixed,
directionFilter: (<T>(filterArg: T, cursorData: CursorDataType, isBefore: boolean) => T),
},
pagination?: false | {
perPage?: number,
},
};
This is opts.resolvers.[resolverName].[filter|sort|record|limit]
level of options.
You may tune every resolver's args independently as you wish.
Here you may setup every argument and override some fields from the default input object type, described above in opts.inputType
.
export type filterHelperArgsOpts = {
filterTypeName?: string,
isRequired?: boolean,
onlyIndexed?: boolean,
requiredFields?: string | string[],
operators?: filterOperatorsOpts | false,
};
export type filterOperatorNames = 'gt' | 'gte' | 'lt' | 'lte' | 'ne' | 'in[]' | 'nin[]';
export type filterOperatorsOpts = { [fieldName: string]: filterOperatorNames[] | false };
export type sortHelperArgsOpts = {
sortTypeName?: string,
};
export type recordHelperArgsOpts = {
recordTypeName?: string,
isRequired?: boolean,
removeFields?: string[],
requiredFields?: string[],
};
export type limitHelperArgsOpts = {
defaultValue?: number,
};
Used plugins
This plugin adds connection
resolver. Build in mechanism allows sort by any unique indexes (not only by id). Also supported compound sorting (by several fields).
Besides standard connection arguments first
, last
, before
and after
, also added great arguments:
filter
arg - for filtering recordssort
arg - for sorting records
This plugin completely follows to Relay Cursor Connections Specification.
This plugin adds pagination
resolver.
License
MIT