Install and open app in development mode
npm i
npm run dev
yarn
yarn dev
https://graph-101.herokuapp.com/
{
posts {
_id
title
content
comments {
_id
postId
content
}
}
}
{
post(_id: "5bed274c014e45d7a93046c0") {
_id
title
content
comments {
_id
postId
content
}
}
}
{
comment(_id: "5bed282760666dd83f7f017c") {
_id
postId
content
post {
_id
title
content
}
}
}
mutation {
createPost(title: "hello", content: "world") {
_id
title
content
comments {
content
}
}
}
mutation {
createComment(postId: "5bed2a4f564b4fd99fa8041d", content: "hello") {
_id
content
postId
}
}
https://docs.google.com/presentation/d/1dmreDWqJG4NTGQf2LCWIXtIC2f0BFK6lJ_1qQBcgGXE