Slide 36
Slide 36 text
GraphQL
{
"1572451031": {
"id": "1572451031",
"name": "Daniel Schafer",
"birthdate": {
"month": 1,
"day": 17,
},
"friends": [{
"cursor": "4802170",
"node": {
"name": "Lee Byron",
}
},
{
"cursor": "3700061",
"node": {
"name": "Nick Schrock",
}
}]
}
}
node(1572451031) {
id,
name,
birthdate {
month,
day
},
friends.after(3500401).first(2) {
cursor,
node {
name
}
}
}