Questions
stringlengths
12
172
Queries
stringlengths
41
313
What is the best-reviewed movie on Rotten Tomatoes that was directed by Claude Chabrol?
db.movies.find({"directors": "Claude Chabrol", "tomatoes.critic.rating": {"$exists": true}}, {"title": 1, "_id": 0}).sort({"tomatoes.critic.rating": -1}).limit(1)
what was the genre of Tarzan and His Mate?
db.movies.find({"title": "Tarzan and His Mate"}, {"genres": 1})
what year was Masquerade in Vienna released?
db.movies.find({"title": "Masquerade in Vienna"}, {"year": 1})
what was the release year of Asphalt?
db.movies.find({"title": "Asphalt"}, {"year": 1})
which person wrote the film The Ghost Goes West?
db.movies.find({"title": "The Ghost Goes West"}, {"writers": 1})