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/6c5b758f677527c5345e2a504447de9f to your computer and use it in GitHub Desktop.
Save schickling/6c5b758f677527c5345e2a504447de9f to your computer and use it in GitHub Desktop.
Connections, Edges & Nodes in Relay (Simple GraphQL Request + Response)
{
movie(title: "Inception") {
releaseDate
actors {
name
}
}
}
{
"releaseDate": "2010-08-29T12:00:00Z",
"actors": [{
"name": "Leonardo DiCaprio"
}, {
"name": "Ellen Page"
}]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment