Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 666 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 666 Bytes

GraphQL Examples

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.

Setup

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.