Skip to content

Latest commit

 

History

History
25 lines (22 loc) · 543 Bytes

README.md

File metadata and controls

25 lines (22 loc) · 543 Bytes

Learning GraphQL

A simple project to learn GraphQL with.

Setup

1. Install Dependencies

Install the dependencies for the GraphQL application:

# npm
npm i
# yarn
yarn

2. Start JSON Server

Serves a mock database and REST API for querying at http://localhost:3000.

npm run serve

3. Start GraphiQL client

Compiles the app at http://localhost:4000.
It will reload if you make edits. You will also see any errors in the terminal and console.

npm run start