Graphql Apollo Server example
The Pet api backend is a graphql api with a CRUD endpoints of pet entity and simple jwt auth endpoints. For make this backend graphql apollo server is used https://www.apollographql.com/docs/apollo-server/. This backend is used for graphql pet api frontend for show how to use a graphql server https://petapidemo.firebaseapp.com/.
Features
- Authentication jwt(log in)
- Create Pet
- Read Pet
- Update Pet
- Delete Pet
- Node
- MongoDB (In this repo we use a cloud mongoDB)
git clone {repository-URL}
npm install
npm start-dev
- Go to
http://localhost:4000/graphql
Not tests implemented. You can contribute to it!.