1. GET /users/<id>
{
"user": {
"id": "er3tg439frjw",
"name": "Mary",
"address": { ... },
"birthday": "July 26, 1982"
}
"posts": [
{ "id": "ncwcon3ce89hs",
"title": "Learn GraphQL today",
"content": "Lorem ipsum ...",
"comments": [ ... ]
]
"followers": [
{ "id": "U58h2dojsu",
"name": "John",
User(id: "er3tg439frjw") {
name
posts {
title
followers(last: 3) {
"data": {
"User": {
{ "title": "Learn GraphQL today" }
],
{ "name": "John" },
{ "name": "Alice" },
{ "name": "Sarah" }
by shir