Node GraphQL Express API
This repository is a boilerplate to build ES6 NodeJS GraphQL api using Express and DataLoader. If you want to see this starter kit used in a full stack app
Getting started
Install MongoDB
brew install mongodbInstall dependencies
yarnRun MongoDB daemon
brew services start mongodbStart
yarn startSignup :
curl -X POST http://localhost:8000/signup -d username=user -d password=userSignin :
curl -X POST http://localhost:8000/signin -d username=user -d password=userYou can now check out GraphiQL explorer to try your API !