imdb ratings
Highest rating
When you execute the previous query:
cypher
MATCH (m:Movie)
WHERE m.imdbRating IS NOT NULL
RETURN m.title, m.imdbRating
ORDER BY m.imdbRating DESC
What is the highest imdbRating value in the graph?
-
✓ 9.6
Hint
If the results are ordered in descending order, the top of the results should answer this question.
Once you have entered the answer, click the Try Again button below to continue.
Solution
The correct answer is: 9.6
Once you have entered the answer, click the Try Again button below to continue.
Summary
In this challenge, you wrote a query to return results in a specified order.
In the next challenge, you will return results sorted by multiple values