Creating an Apollo Server through GraphQL and testing it using the Apollo Sandbox.
- How to set up a GraphQL server and run it locally.
- How write queries to get a response on the frontend using Apollo Sandbox
- Create type definitions to describe data on a graph(schemas) and also specify entry points to the graph.
- Create resolver functions to decide how to respond to queries(either single or all) to a graph.
- Perform mutations(add, update, and delete) data.
- After clonning, run the command:
npm installthen, - Run the command:
npm start
- I got up and running with GraphQL using NetNinja's youtube course on GraphQL.
- Apollo GraphQL Docs