/graphql-node-sample

Sample GraphQL project with Node and express

Primary LanguageJavaScript

graphql-node-sample

This is sample project for GraphQL with Node and express.

Start

$ yarn add graphql
$ yarn add express express-graphql

Run

$ node index.js

and open http://localhost:3000/graphql.

Get video by ID

Input

{
  video(id: 1){
    id,
    title,
    watched,
  }
}

and you can get

{
  "data": {
    "video": {
      "id": "1",
      "title": "title 1",
      "watched": true
    }
  }
}

Mutate video

Input

mutation M {
  createVideo(title: "hoge") {
    id,
    title,
    watched,
  }
}

and you can get

{
  "data": {
    "createVideo": {
      "id": "3",
      "title": "hoge",
      "watched": false
    }
  }
}

Ref