Skip to content

yong-asial/graphql-react-tutorial

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

GraphQL (React) Try-Out

Description

A simple GraphQL Server with React (Apollo) Frontend

Prerequisities

  • NodeJS
  • Docker

Run Server

cd server;
npm install;
npm run dev;

Add some data to start off

  • Navigate to http://localhost:4000/graphql?
  • Add a few authors
mutation {
  addAuthor(name: "Nick Bostrom", age: 47) {
    name
    age
  }
}

Run Client

cd client;
npm install;
npm run start;

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published