How To Run:
- Install NodeJs
- Clone this project ( git clone https://github.com/sreekanth-anubolu/graphql-node-sqlite.git )
-
cd graphql-node-sqlite
-
npm install
-
cd database
-
node createDB.js (This would create SQLite DB to work with project.)
-
cd ..
-
npm run babelTranspile (Transpiles to es5 so that node can run with out any issues)
-
npm run monitor
After all the steps
- Open Browser
- Navigate to http://localhost:5000/graphql
- You would see a GQL Query Editor
Sample Queries to Test:
========== Query 1 =============
{ Organisations { id name location } }
========== Query 2 =============
{ Organisations(ids: [1, 2]) { id name location } }
========== Query 3 =============
{ Skills { id name } }
========== Query 4 =============
{ Users(ids: [1]) { id name email Organisations{ id name location } Skills{ id name } } }