A simple GraphQL Server with React (Apollo) Frontend
- NodeJS
- Docker
cd server;
npm install;
npm run dev;
- Navigate to
http://localhost:4000/graphql?
- Add a few authors
mutation {
addAuthor(name: "Nick Bostrom", age: 47) {
name
age
}
}
cd client;
npm install;
npm run start;