Questions
stringlengths 12
172
| Queries
stringlengths 41
313
|
---|---|
who's the director of Safety Last!? | db.movies.find({"title": "Safety Last!"}, {"directors": 1}) |
How did the audience and critics receive the movie A Story of Floating Weeds? | db.movies.find({"title":"A Story of Floating Weeds"}, {"tomatoes.viewer": 1,"tomatoes.critic":1}) |
what was the release year of the film Battling Butler? | db.movies.find({"title": "Battling Butler"}, {"year": 1}) |
who are the actors in the movie In Old Chicago? | db.movies.find({"title": "In Old Chicago"}, {"cast": 1}) |
What are the names of all the actors who starred in the movie 'è Nous la Libertè'? | db.movies.find({"title": "è Nous la Libertè"}, {"cast": 1}) |
What is the ID of the movie Make Way for Tomorrow on IMDB? | db.movies.find({"title": "Make Way for Tomorrow"}, {"imdb.id": 1}) |
what is the film Little Miss Marker imdb rating? | db.movies.find({"title": "Little Miss Marker"}, {"imdb.rating": 1}) |
Who are the main actors in From Hand to Mouth ? | db.movies.find({ "title": "From Hand to Mouth" }, { "cast": 1}) |
who is the writer of Murders in the Rue Morgue? | db.movies.find({"title": "Murders in the Rue Morgue"}, {"writers": 1}) |
What is the rating of the movie Safety Last! according to viewers on Rotten Tomatoes? | db.movies.find({"title": "Safety Last!"}, {"tomatoes.viewer.rating": 1}) |
what was the genre of the film Modern Times? | db.movies.find({"title": "Modern Times"}, {"genres": 1}) |
How many reviews did the movie Storm Over Asia receive on Rotten Tomatoes? | db.movies.find({"title":"Storm Over Asia"}, {"tomatoes.viewer.numReviews": 1,"tomatoes.critic.numReviews":1}) |
Who is the lead actor of the movie Greed ? | db.movies.find({"title": "Greed"}, {"cast":{"$slice": 1},"title":1}) |
Who is the director of the movie A Free Soul? | db.movies.find({"title": "A Free Soul"}, { "directors": 1}) |
The Sin of Madelon Claudet is written by this person? | db.movies.find({"title": "The Sin of Madelon Claudet"}, {"writers": 1}) |
who wrote the screenplay for Swedenhielms Family? | db.movies.aggregate([ { "$match": { "title":"Swedenhielms Family"} }, { "$project": { "_id": 0, "writers": {"$filter": { "input": "$writers", "as": "writer", "cond": { "$regexMatch": { "input": "$$writer", "regex": "screenplay", "options":"i" } } } } } }]) |
How many reviews did the movie In Old Arizona receive on Rotten Tomatoes? | db.movies.find({"title":"In Old Arizona"}, {"tomatoes.viewer.numReviews": 1,"tomatoes.critic.numReviews":1}) |
How many awards did the movie win The Perils of Pauline ? | db.movies.find({ "title": "The Perils of Pauline" },{ "awards.wins": 1 }) |
who wrote the screenplay for the movie The Mummy? | db.movies.aggregate([ { "$match": { "title":"The Mummy"} }, { "$project": { "_id": 0, "writers": {"$filter": { "input": "$writers", "as": "writer", "cond": { "$regexMatch": { "input": "$$writer", "regex": "screenplay", "options":"i" } } } } } }]) |
Who is the lead actor of the movie Lady Windermere's Fan ? | db.movies.find({"title": "Lady Windermere's Fan"}, {"cast":{"$slice": 1},"title":1}) |
what type of movie is For Heaven's Sake? | db.movies.find({"title": "For Heaven's Sake"}, {"genres": 1}) |
What is the movie Three Ages rating? | db.movies.find({"title":"Three Ages"}, {"rated":1}) |
How many viewer reviews did the movie Wild and Woolly receive on Rotten Tomatoes? | db.movies.find({"title":"Wild and Woolly"}, {"tomatoes.viewer.numReviews":1}) |
What is the rating of the movie Go West according to viewers on Rotten Tomatoes? | db.movies.find({"title": "Go West"}, {"tomatoes.viewer.rating": 1}) |
who directed Wild Oranges? | db.movies.find({"title": "Wild Oranges"}, {"directors": 1}) |
When was the information last updated for the movie The Phantom of the Opera ? | db.movies.find({ "title": "The Phantom of the Opera" },{ "lastupdated": 1 }) |
what was the release date of the film Naughty Marietta? | db.movies.find({"title": "Naughty Marietta"}, {"released": 1}) |
what genre is the film The Garden of Allah? | db.movies.find({"title": "The Garden of Allah"}, {"genres": 1}) |
who directed the film A Free Soul? | db.movies.find({"title": "A Free Soul"}, {"directors": 1}) |
The Prisoner of Zenda was directed by who? | db.movies.find({"title": "The Prisoner of Zenda"}, {"directors": 1}) |
What is the Metacritic score of the movie The Prisoner of Zenda ? | db.movies.find({ "title": "The Prisoner of Zenda" }, { "metacritic": 1}) |
who wrote the screenplay for the film The Last of the Mohicans? | db.movies.aggregate([ { "$match": { "title":"The Last of the Mohicans"} }, { "$project": { "_id": 0, "writers": {"$filter": { "input": "$writers", "as": "writer", "cond": { "$regexMatch": { "input": "$$writer", "regex": "screenplay", "options":"i" } } } } } }]) |
Modern Times, was written by who? | db.movies.find({"title": "Modern Times"}, {"writers": 1}) |
which company produced the film The Crowd? | db.movies.find({"title":"The Crowd"}, {"tomatoes.production":1}) |
What is the language of Daughter of Shanghai? | db.movies.find({"title":"Daughter of Shanghai"}, {"languages":1}) |
What is the box office revenue of the movie A Day in the Country ? | db.movies.find({"title": "A Day in the Country"}, { "tomatoes.boxOffice": 1}) |
who stars in the movie Snow White and the Seven Dwarfs? | db.movies.find({"title": "Snow White and the Seven Dwarfs"}, {"cast": 1}) |
How does the movie Footlight Parade rate on Rotten Tomatoes? | db.movies.find({ "title": "Footlight Parade" },{ "tomatoes.critic.meter": 1 }) |
What is the plot summary of the movie Imitation of Life ? | db.movies.find({ "title": "Imitation of Life" }, { "plot": 1}) |
The Blue Bird, is written by who? | db.movies.find({"title": "The Blue Bird"}, {"writers": 1}) |
who starred in the movie The Man Who Knew Too Much? | db.movies.find({"title": "The Man Who Knew Too Much"}, {"cast": 1}) |
What is the audience rating of the movie Ella Cinders ? | db.movies.find({ "title": "Ella Cinders" },{ "tomatoes.viewer.rating": 1 }) |
When was the information about the movie Grand Hotel last updated? | db.movies.find({ "title": "Grand Hotel" }, { "lastupdated": 1}) |
what is Eskimo about? | db.movies.find({"title": "Eskimo"}, {"plot": 1}) |
who directed the film Sanders of the River? | db.movies.find({"title": "Sanders of the River"}, {"directors": 1}) |
what was the release date of the film The Thief of Bagdad? | db.movies.find({"title": "The Thief of Bagdad"}, {"released": 1}) |
What is the full plot summary of the movie Sunrise ? | db.movies.find({"title": "Sunrise"}, {"plot": 1}) |
What is the Rotten Tomatoes meter rating for the movie Roberta ? | db.movies.find({"title":"Roberta"}, {"tomatoes.viewer.meter": 1,"tomatoes.critic.meter":1}) |
The Circus was directed by who? | db.movies.find({"title": "The Circus"}, {"directors": 1}) |
When was the information last updated for the movie The Land Beyond the Sunset ? | db.movies.find({ "title": "The Land Beyond the Sunset" },{ "lastupdated": 1 }) |
When was the Tomatometer score and other Tomato-related information last updated for the movie Final Accord? | db.movies.find({"title": "Final Accord"}, { "tomatoes.lastUpdated": 1}) |
what is Asphalt imdb rating? | db.movies.find({"title": "Asphalt"}, {"imdb.rating": 1}) |
What is the production company of the film My Man Godfrey? | db.movies.find({"title":"My Man Godfrey"}, {"tomatoes.production":1}) |
what is the genre for the film Maria Chapdelaine? | db.movies.find({"title": "Maria Chapdelaine"}, {"genres": 1}) |
Was the movie The New Gulliver well received by audiences and critics? | db.movies.find({"title":"The New Gulliver"}, {"tomatoes.viewer": 1,"tomatoes.critic":1}) |
What is the rating of the movie The Barretts of Wimpole Street on IMDb? | db.movies.find({"title":"The Barretts of Wimpole Street"}, {"imdb.rating":1}) |
What are the genres this movie Flash Gordon belongs to? | db.movies.find({"title":"Flash Gordon"}, {"genres":1}) |
what was the release year of the film The Wind? | db.movies.find({"title": "The Wind"}, {"year": 1}) |
How many audience reviews have been submitted for the movie The Beloved Vagabond? | db.movies.find({ "title": "The Beloved Vagabond" }, { "tomatoes.viewer.numReviews": 1 }) |
How many audience reviews have been submitted for the movie Dekigokoro ? | db.movies.find({ "title": "Dekigokoro" },{ "tomatoes.viewer.numReviews": 1 }) |
What is the audience rating of the movie The Private Life of Henry VIII. ? | db.movies.find({ "title": "The Private Life of Henry VIII." },{ "tomatoes.viewer.rating": 1 }) |
what is the movie Wild Boys of the Road about? | db.movies.find({"title": "Wild Boys of the Road"}, {"plot": 1}) |
what is the movie Forbidden about? | db.movies.find({"title": "Forbidden"}, {"plot": 1}) |
who was the writer of the movie The Kid Brother? | db.movies.find({"title": "The Kid Brother"}, {"writers": 1}) |
who stars in the movie The Prince and the Pauper? | db.movies.find({"title": "The Prince and the Pauper"}, {"cast": 1}) |
the film From Hand to Mouth starred who? | db.movies.find({"title": "From Hand to Mouth"}, {"cast": 1}) |
When was the Tomatometer score and other Tomato-related information last updated for the movie The Great Ziegfeld? | db.movies.find({"title": "The Great Ziegfeld"}, { "tomatoes.lastUpdated": 1}) |
who produced the film Marked Woman? | db.movies.find({"title":"Marked Woman"}, {"tomatoes.production":1}) |
who stars in the movie The Barretts of Wimpole Street? | db.movies.find({"title": "The Barretts of Wimpole Street"}, {"cast": 1}) |
what genre is the film Sunrise? | db.movies.find({"title": "Sunrise"}, {"genres": 1}) |
who acted in the film The Great Train Robbery? | db.movies.find({"title": "The Great Train Robbery"}, {"cast": 1}) |
what is the full plot for The Cheat? | db.movies.find({"title": "The Cheat"}, {"fullplot": 1}) |
Can you give me a brief summary of the movie The Unknown plot? | db.movies.find({"title":"The Unknown"}, {"plot":1}) |
When was the information about the movie The Great Ziegfeld last updated? | db.movies.find({ "title": "The Great Ziegfeld" }, { "lastupdated": 1}) |
What is the IMDB rating of the movie Queen Kelly ? | db.movies.find({"title": "Queen Kelly"}, { "imdb.rating": 1}) |
La Grande Illusion is a movie written by this person? | db.movies.find({"title": "La Grande Illusion"}, {"writers": 1}) |
What is the IMDB rating of the movie Kid Galahad ? | db.movies.find({"title": "Kid Galahad"}, { "imdb.rating": 1}) |
What is the ID of the movie Three Ages on IMDB? | db.movies.find({"title": "Three Ages"}, {"imdb.id": 1}) |
who was the writer of White Shadows? | db.movies.find({"title": "White Shadows"}, {"writers": 1}) |
what is the full plot for Now or Never? | db.movies.find({"title": "Now or Never"}, {"fullplot": 1}) |
In what language was the movie Shall We Dance released? | db.movies.find({ "title": "Shall We Dance" }, { "languages": 1}) |
what is Blacksmith Scene imdb rating? | db.movies.find({"title": "Blacksmith Scene"}, {"imdb.rating": 1}) |
what is the film Snow White and the Seven Dwarfs description ? | db.movies.find({"title": "Snow White and the Seven Dwarfs"}, {"plot": 1}) |
what is the film Mr. Deeds Goes to Town about? | db.movies.find({"title": "Mr. Deeds Goes to Town"}, {"plot": 1}) |
Who is the director of the movie Disraeli? | db.movies.find({"title": "Disraeli"}, { "directors": 1}) |
who is the writer of the movie The Docks of New York? | db.movies.find({"title": "The Docks of New York"}, {"writers": 1}) |
who wrote the screenplay for L'opèra de quat'sous? | db.movies.aggregate([ { "$match": { "title":"L'opèra de quat'sous"} }, { "$project": { "_id": 0, "writers": {"$filter": { "input": "$writers", "as": "writer", "cond": { "$regexMatch": { "input": "$$writer", "regex": "screenplay", "options":"i" } } } } } }]) |
what is the movie Hell's Hinges imdb rating? | db.movies.find({"title": "Hell's Hinges"}, {"imdb.rating": 1}) |
Could you tell me the typical rating of Michelangelo Antonioni movies in the database? | db.movies.aggregate([{"$match": {"directors":"Michelangelo Antonioni"}}, {"$group": { "_id":"null", "avgRating": {"$avg": "$imdb.rating"}}}]) |
who's the director of Curly Top? | db.movies.find({"title": "Curly Top"}, {"directors": 1}) |
can you describe the plot of The Private Life of Don Juan? | db.movies.find({"title": "The Private Life of Don Juan"}, {"plot": 1}) |
What languages are spoken in the movie Black Fury? | db.movies.find({"title":"Black Fury"}, {"languages":1}) |
who starred in the film Make Way for Tomorrow? | db.movies.find({"title": "Make Way for Tomorrow"}, {"cast": 1}) |
what year was the movie Ben-Hur: A Tale of the Christ released? | db.movies.find({"title": "Ben-Hur: A Tale of the Christ"}, {"year": 1}) |
M is written by this person? | db.movies.find({"title": "M"}, {"writers": 1}) |
When was the movie Hallelujah released? | db.movies.find({"title":"Hallelujah"}, {"released":1}) |
whats the total runtime of all the movies directed by Pedro Almodovar ? | db.movies.aggregate([{ "$match": { "directors": "Pedro Almodovar" } }, { "$group": { "_id": null, "totalRuntime": { $sum: "$runtime" } } }]) |
What is the quantity of movies that Alain Resnais has directed? | db.movies.countDocuments({"directors":"Alain Resnais"}) |
What is the text description of the movie One Night of Love awards? | db.movies.find({"title":"One Night of Love"}, {"awards.text":1}) |
What is the production company behind the movie Frankenstein ? | db.movies.find({"title": "Frankenstein"}, { "tomatoes.production": 1}) |
Subsets and Splits