This application has client (React JS, GraphQL) and server (GraphQL, Node JS) part. To run the application we need to run both the client and server separately.
Navigate to server directory
cd server
Install all modules
npm i
Run the server
node server.js
Server URL: http://localhost:3010/
Navigate to client directory
cd client
Install all modules
npm i
Run the server
npm start