GraphQL server built using Node.js, Express and Apollo Server.
Create an .env
file in project root to register the following required environment variables:
MONGODB_URI
- MongoDB connection URI
To start the server run:
npm install
node index.js
You can use Nodemon to automatically restart the server when changes are detected:
npm install
npm install -g nodemon
nodemon
MongoDB is used as a data store.