This repository contains some GraphQL examples in JavaScript. It uses Apollo Server on the backend, React and Apollo Client on the frontend.
The master
branch contains barebone client and server projects. Each other branch extends the initial setup to demonstrate a specific piece of functionality.
Start the server:
cd server
npm install
npm start
The server will be available at localhost:9000, and show the GraphQL Playground if you open it in a web browser.
Start the client:
cd client
npm install
npm start
The React app will be visible at localhost:3000.