GraphQL Demo
This repo is a small working example of a GraphQL endpoint.
Getting Started
-
clone the repo and install the dependencies.
$> git clone https://github.com/blockframes/graphql-demo $> cd graphql-demo $> npm i
-
start the server
$> npm start > graphql-demo@1.0.0 start ./graphql-demo > ts-node ./src/index.ts Server Ready!
-
open the GraphQl Playground in your browser
-
start typing queries
For example:
query { user(id: "001") { name } }