Skip to content

Instantly share code, notes, and snippets.

@schickling
Last active May 26, 2016 22:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save schickling/a26ef1289c3f8ab70e610db309c9b499 to your computer and use it in GitHub Desktop.
Save schickling/a26ef1289c3f8ab70e610db309c9b499 to your computer and use it in GitHub Desktop.
Connections, Edges & Nodes in Relay (Relay Request + Response)
{
movie(title: "Inception") {
releaseDate
actors(first: 10) {
edges {
node {
name
}
}
}
}
}
{
"releaseDate": "2010-08-29T12:00:00Z",
"actors": {
"edges": [{
"node": {
"name": "Leonardo DiCaprio"
}
}, {
"node": {
"name": "Ellen Page"
}
}]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment