0.1.1 • Published 5 years ago
generator-apollo-server-with-mongodb v0.1.1
This is Yeoman generator for fast creation graphql server with:
- Apollo Server
- mongoose
- mongodb
It generates full server with authorization
It is fully compatible with this web-app:
npm i generator-web-app-with-graphqlhttps://github.com/Krill221/generator-web-app-with-graphql
Get started:
To generate server type in console:
yo generator-apollo-server-with-mongodbthan follow instructions
To start local server simply type:
yarn sIt also has simple generators:
To add new model (for example for model "Post") simply type in console:
yarn add-model Post name:String desc:StringTo add new fields to model type in console:
yarn add-fields Post body:String img:StringTo delete fields from model type in console:
yarn delete-fields Post body:String img:StringTo add new has-one relation field to model type in console:
yarn add-has-one Post Comment name:String desc:StringTo delete has-one relation field from model type in console:
yarn delete-has-one Post CommentTo add new has-many relation field to model type in console:
yarn add-has-many Post CommentTo delete has-many relation field to model type in console:
yarn delete-has-many Post CommentTo add estimate's array field to model type in console:
yarn add-estimates Post like:Float stars:FloatTo delete estimate's array field to model type in console:
yarn delete-estimates Post like:Float stars:Float