Slide 22
Slide 22 text
22
GET
/GraphQL
Request Body Response Body
query { post(id: 1) {
id
title
tagline
votesCount
commentsCount
thumbnailUrl
hunter: {
id
avatarUrl
}
}
}
{
"data": {
"post": {
"id": 1,
"title": "Developerayo’s Blog",
"tagline": "Articles on Soft.",
"votesCount": 490,
"commentsCount": 7,648,
"thumbnailUrl": "google.com/tbn"
"hunter": {
"id": 1,
"avatarUrl": "google.com/tbn"
}
}
}
}