Skip to content

Instantly share code, notes, and snippets.

@albertstill
Created July 8, 2015 18:41
Show Gist options
  • Save albertstill/436762945af71f51cb45 to your computer and use it in GitHub Desktop.
Save albertstill/436762945af71f51cb45 to your computer and use it in GitHub Desktop.
query FetchInceptionQuery {
movie(title: "Inception") {
title
director
actors
released
type
plot
poster
director
imdb {
id
rating
votes
}
}
}
{
"data": {
"movie": {
"title": "Inception",
"director": "Christopher Nolan",
"actors": [
"Leonardo DiCaprio",
"Joseph Gordon-Levitt",
"Ellen Page",
"Tom Hardy"
],
"released": "Fri Jul 16 2010 00:00:00 GMT+0000 (UTC)",
"type": "MOVIE",
"plot": "A thief who steals corporate secrets through use of dream-sharing technology is given the inverse task of planting an idea into the mind of a CEO.",
"poster": "http://ia.media-imdb.com/images/M/MV5BMjAxMzY3NjcxNF5BMl5BanBnXkFtZTcwNTI5OTM0Mw@@._V1_SX300.jpg",
"imdb": {
"id": "tt1375666",
"rating": 8.8,
"votes": 1236546
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment