graphql-crud
A GraphQL Node.js server and Angular 7 client to demonstrate CRUD operations with GraphQL with Mongo DB.
Run the server app
cd server
If you are using Yarn, run the following commands:
yarn
yarn dev:server
If you are using NPM then run the following command:
npm i
npm run dev:server
Run the client app
cd client
If you are using Yarn, run the following command:
yarn
ng serve
If you are using NPM then run the following command:
npm install
ng serve