This is sample project for GraphQL with Node and express.
$ yarn add graphql
$ yarn add express express-graphql
$ node index.js
and open http://localhost:3000/graphql.
Input
{
video(id: 1){
id,
title,
watched,
}
}
and you can get
{
"data": {
"video": {
"id": "1",
"title": "title 1",
"watched": true
}
}
}
Input
mutation M {
createVideo(title: "hoge") {
id,
title,
watched,
}
}
and you can get
{
"data": {
"createVideo": {
"id": "3",
"title": "hoge",
"watched": false
}
}
}