UNPKG

graphql-compose-mongoose

Version:

Plugin for `graphql-compose` which derive a graphql types from a mongoose model.

8 lines 203 B
import { Schema } from './mongooseCommon'; const ContactsSchema = new Schema({ phones: [String], email: String, skype: String, locationId: Schema.Types.ObjectId }); export default ContactsSchema;