Well done!

You have completed Variables Review!

Quiz Question 1 of 5

Consider the following query and query variables:

/** Query */
query ($year:Int = 2017) {
	randomMovieByYear (
		year: $year
	) {
		id
		title
		releaseYear
	}
}

/** Query variables */
{
	year: 2016
}  

Which of the following values will be sent to our backend for the “year” argument?

Choose the correct answer below:

Skip Quiz Review Video