Questions
stringlengths
12
172
Queries
stringlengths
41
313
What is the quantity of movies that Darren Aronofsky has directed?
db.movies.countDocuments({"directors":"Darren Aronofsky"})
who is the writer of The Last Command?
db.movies.find({"title": "The Last Command"}, {"writers": 1})
What is the meter score of the movie The Robber Symphony according to viewers on Rotten Tomatoes?
db.movies.find({"title": "The Robber Symphony"}, {"tomatoes.viewer.meter": 1})
How many reviews have been submitted by critics for the movie Romeo and Juliet?
db.movies.find({ "title": "Romeo and Juliet" }, { "tomatoes.critic.numReviews": 1 })
What is the IMDB rating of the movie One Week ?
db.movies.find({"title": "One Week"}, { "imdb.rating": 1})
what is For Heaven's Sake description?
db.movies.find({"title": "For Heaven's Sake"}, {"plot": 1})
what is the film Under the Roofs of Paris imdb rating?
db.movies.find({"title": "Under the Roofs of Paris"}, {"imdb.rating": 1})
What is the runtime of the movie The Man Who Knew Too Much ?
db.movies.find({"title": "The Man Who Knew Too Much"}, { "runtime": 1})
Could you inform me of the total runtime of all Kenji Mizoguchi-directed movies?
db.movies.aggregate([{ "$match": { "directors": "Kenji Mizoguchi" } }, { "$group": { "_id": null, "totalRuntime": { $sum: "$runtime" } } }])
what was the genre of the film Asphalt?
db.movies.find({"title": "Asphalt"}, {"genres": 1})
What type of movie is The Poor Little Rich Girl ?
db.movies.find({"title":"The Poor Little Rich Girl"}, {"genres":1})
What are the genres this movie Masquerade in Vienna belongs to?
db.movies.find({"title":"Masquerade in Vienna"}, {"genres":1})
What is the production company behind the movie The Beloved Vagabond ?
db.movies.find({"title": "The Beloved Vagabond"}, {"tomatoes.production": 1})
what is the genre for the film The Song of Night?
db.movies.find({"title": "The Song of Night"}, {"genres": 1})
what is the full plot for the movie Top Hat?
db.movies.find({"title": "Top Hat"}, {"fullplot": 1})
What is the text representation of the awards won and nominations received by the movie Duck Soup?
db.movies.find({"title": "Duck Soup"}, { "awards.text": 1})
What is the highest-ranking Vittorio De Sica-directed film on Rotten Tomatoes?
db.movies.find({"directors": "Vittorio De Sica", "tomatoes.critic.rating": {"$exists": true}}, {"title": 1, "_id": 0}).sort({"tomatoes.critic.rating": -1}).limit(1)
who was the writer of Now or Never?
db.movies.find({"title": "Now or Never"}, {"writers": 1})
who directed the film The Unknown?
db.movies.find({"title": "The Unknown"}, {"directors": 1})
how many awards did The Awful Truth win?
db.movies.find({"title":"The Awful Truth"}, {"awards.wins":1})
what kind of film is Robin Hood?
db.movies.find({"title": "Robin Hood"}, {"genres": 1})
Can you provide more information about the Rotten Tomatoes rating for the movie They Won't Forget?
db.movies.find({"title": "They Won't Forget"}, { "tomatoes.critic": 1, "tomatoes.viewer": 1, "tomatoes.consensus": 1 })
who is the writer of the film Sherlock Jr.?
db.movies.find({"title": "Sherlock Jr."}, {"writers": 1})
What is the text description of the movie The Thief of Bagdad awards?
db.movies.find({"title":"The Thief of Bagdad"}, {"awards.text":1})
What is the website associated with the movie Man with a Movie Camera on Rotten Tomatoes?
db.movies.find({"title": "Man with a Movie Camera"}, {"tomatoes.website": 1})
What is the runtime and rating for the movie 'The Prince and the Pauper'?
db.movies.find({"title": "The Prince and the Pauper"}, {"runtime": 1, "rated": 1})
what is the full plot for the movie Stage Door?
db.movies.find({"title": "Stage Door"}, {"fullplot": 1})
what kind of movie is Daughter of Shanghai?
db.movies.find({"title": "Daughter of Shanghai"}, {"genres": 1})
What is the mean rating for Spike Lee movies in the database?
db.movies.aggregate([{"$match": {"directors":"Spike Lee"}}, {"$group": { "_id":"null", "avgRating": {"$avg": "$imdb.rating"}}}])
What is the mean rating of all the Jean Renoir films in the database?
db.movies.aggregate([{"$match": {"directors":"Jean Renoir"}}, {"$group": { "_id":"null", "avgRating": {"$avg": "$imdb.rating"}}}])
who acted in the film Mary of Scotland?
db.movies.find({"title": "Mary of Scotland"}, {"cast": 1})
è Nous la Libertè is written by this person?
db.movies.find({"title": "è Nous la Libertè"}, {"writers": 1})
How many awards did the movie win The Italian ?
db.movies.find({ "title": "The Italian" },{ "awards.wins": 1 })
what genre is The Green Pastures?
db.movies.find({"title": "The Green Pastures"}, {"genres": 1})
How many votes did the movie My Man Godfrey receive on IMDB?
db.movies.find({"title": "My Man Godfrey"}, { "imdb.votes": 1})
What is the rating of the movie Tol'able David according to viewers on Rotten Tomatoes?
db.movies.find({"title": "Tol'able David"}, {"tomatoes.viewer.rating": 1})
What is the text representation of the awards won and nominations received by the movie Le grand jeu?
db.movies.find({"title": "Le grand jeu"}, { "awards.text": 1})
Could you inform me of the movies that Alain Resnais directed?
db.movies.find({"directors": "Alain Resnais"},{"title":1})
How long is the movie Cops in minutes?
db.movies.find({"title":"Cops"}, {"runtime":1})
Who is the director of the movie The General?
db.movies.find({"title": "The General"}, { "directors": 1})
who are the actors in the movie The Phantom of the Opera?
db.movies.find({"title": "The Phantom of the Opera"}, {"cast": 1})
What is the title of the movie with the shortest duration that Jean-Luc Godard directed?
db.movies.find({"directors":"Jean-Luc Godard"}, {"title": 1, "runtime": 1}).sort({"runtime": 1}).limit(1)
Who is the director of the movie Two Seconds?
db.movies.find({"title": "Two Seconds"}, { "directors": 1})
what type of film is Snow White and the Seven Dwarfs?
db.movies.find({"title": "Snow White and the Seven Dwarfs"}, {"genres": 1})
How did the audience and critics receive the film Dante's Inferno?
db.movies.find({"title":"Dante's Inferno"}, {"tomatoes.viewer": 1,"tomatoes.critic":1})
What is the Metacritic score of the movie The Band Concert ?
db.movies.find({ "title": "The Band Concert" }, { "metacritic": 1})
What is the average rating for all of Jean-Luc Godard's films in the database?
db.movies.aggregate([{"$match": {"directors":"Jean-Luc Godard"}}, {"$group": { "_id":"null", "avgRating": {"$avg": "$imdb.rating"}}}])
Stage Door was directed by who?
db.movies.find({"title": "Stage Door"}, {"directors": 1})
Which Abbas Kiarostami-directed movie has the highest score on Rotten Tomatoes?
db.movies.find({"directors": "Abbas Kiarostami", "tomatoes.critic.rating": {"$exists": true}}, {"title": 1, "_id": 0}).sort({"tomatoes.critic.rating": -1}).limit(1)
Can you provide me with a list of Kenji Mizoguchi-directed movies with the highest ratings?
db.movies.find({"directors": 'Kenji Mizoguchi', "imdb.rating": {"$gt": 8.5}})
the film Daughter of Shanghai starred who?
db.movies.find({"title": "Daughter of Shanghai"}, {"cast": 1})
How many audience reviews have been submitted for the movie The Crusades?
db.movies.find({ "title": "The Crusades" }, { "tomatoes.viewer.numReviews": 1 })
who was Tol'able David written by?
db.movies.find({"title": "Tol'able David"}, {"writers": 1})
Can you provide more information about the languages spoken in the movie Mr. Deeds Goes to Town ?
db.movies.find({"title":"Mr. Deeds Goes to Town"}, {"languages":1})
Can you provide more information about the Rotten Tomatoes rating for the movie The Crusades?
db.movies.find({"title": "The Crusades"}, { "tomatoes.critic": 1, "tomatoes.viewer": 1, "tomatoes.consensus": 1 })
What is the IMDb rating for the movie Greed ?
db.movies.find({"title":"Greed"}, {"imdb.rating":1})
What is the consensus among critics about the movie The Chechahcos ?
db.movies.find({"title": "The Chechahcos"}, {"tomatoes.consensus": 1})
When was the movie Safety Last! released in theaters?
db.movies.find({"title": "Safety Last!"}, {"released": 1})
How many reviews have been submitted by critics for the movie Three Little Pigs ?
db.movies.find({"title": "Three Little Pigs"}, {"tomatoes.critic.numReviews": 1})
What is the ID of the movie Les vampires on IMDB?
db.movies.find({"title": "Les vampires"}, {"imdb.id": 1})
What is the production company behind the movie The Last Command ?
db.movies.find({"title": "The Last Command"}, {"tomatoes.production": 1})
who directed the movie The Lost World?
db.movies.find({"title": "The Lost World"}, {"directors": 1})
what sort of film is Bride of Frankenstein?
db.movies.find({"title": "Bride of Frankenstein"}, {"genres": 1})
What is the imdbID and genre of the movie 'Cleopatra'?
db.movies.find({"title": "Cleopatra"}, {"imdb.id": 1, "genres": 1, "_id": 0})
When was the movie The Wedding March released in theaters?
db.movies.find({"title": "The Wedding March"}, {"released": 1})
What is the viewer rating for the movie Night Must Fall on Rotten Tomatoes?
db.movies.find({"title":"Night Must Fall"}, {"tomatoes.viewer.rating":1})
Who are the actors in the movie The Chechahcos?
db.movies.find({"title":"The Chechahcos"}, {"cast":1})
who directed the movie Anthony Adverse?
db.movies.find({"title": "Anthony Adverse"}, {"directors": 1})
what is the genre for the film Morocco?
db.movies.find({"title": "Morocco"}, {"genres": 1})
the movie Mutiny on the Bounty starred which actors?
db.movies.find({"title": "Mutiny on the Bounty"}, {"cast": 1})
which company produced the film The Blue Light?
db.movies.find({"title":"The Blue Light"}, {"tomatoes.production":1})
who stars in A Corner in Wheat?
db.movies.find({"title": "A Corner in Wheat"}, {"cast": 1})
What are the genres this movie The Poor Little Rich Girl belongs to?
db.movies.find({"title":"The Poor Little Rich Girl"}, {"genres":1})
who produced the movie The Kid?
db.movies.find({"title":"The Kid"}, {"tomatoes.production":1})
who wrote The Gay Divorcee?
db.movies.find({"title": "The Gay Divorcee"}, {"writers": 1})
Has Applause won any awards? If so, which ones?
db.movies.find({"title":"Applause","awards.wins": {"$gt": 0}}, {"awards.text": 1})
What is the running time of the movie The Devil to Pay!?
db.movies.find({"title":"The Devil to Pay!"}, {"runtime":1})
who wrote the screenplay for The Man Who Knew Too Much?
db.movies.aggregate([ { "$match": { "title":"The Man Who Knew Too Much"} }, { "$project": { "_id": 0, "writers": {"$filter": { "input": "$writers", "as": "writer", "cond": { "$regexMatch": { "input": "$$writer", "regex": "screenplay", "options":"i" } } } } } }])
What is the production company behind the movie The Beloved Vagabond ?
db.movies.find({"title": "The Beloved Vagabond"}, { "tomatoes.production": 1})
How many awards did the movie win David Copperfield ?
db.movies.find({ "title": "David Copperfield" },{ "awards.wins": 1 })
what are the genres directed by Tim Burton?
db.movies.distinct("genres", { "directors": "Tim Burton" })
who starred in the movie Miss Lulu Bett?
db.movies.find({"title": "Miss Lulu Bett"}, {"cast": 1})
What was the release date for the movie State Fair?
db.movies.find({"title":"State Fair"}, {"released":1})
How long is the movie Follow the Fleet in minutes?
db.movies.find({"title":"Follow the Fleet"}, {"runtime":1})
What is the language of the movie Triumph of the Will?
db.movies.find({"title":"Triumph of the Will"}, {"languages":1})
What is the production company behind the movie x?
db.movies.find({"title": "The General"}, { "tomatoes.production": 1})
What is the name of the director and cast for the movie 'One Week'?
db.movies.find({"title": "One Week"}, {"directors": 1, "cast": 1, "_id": 0})
What is the runtime and rating for the movie 'The Big House'?
db.movies.find({"title": "The Big House"}, {"runtime": 1, "rated": 1})
What is the consensus among critics about the movie The Blue Light?
db.movies.find({"title": "The Blue Light"}, { "tomatoes.consensus": 1})
Was the movie The Perils of Pauline well received by audiences and critics?
db.movies.find({"title":"The Perils of Pauline"}, {"tomatoes.viewer": 1,"tomatoes.critic":1})
In what year was the movie The Edge of the World released?
db.movies.find({"title":"The Edge of the World"}, {"year":1})
what kind of film is Alice Adams?
db.movies.find({"title": "Alice Adams"}, {"genres": 1})
what was the release date of the film San Francisco?
db.movies.find({"title": "San Francisco"}, {"released": 1})
What's the title of the shortest Pedro Almodovar-directed movie?
db.movies.find({"directors":"Pedro Almodovar"}, {"title": 1, "runtime": 1}).sort({"runtime": 1}).limit(1)
What is the consensus among critics about the movie The Cheat ?
db.movies.find({"title": "The Cheat"}, {"tomatoes.consensus": 1})
who directed the film Cavalcade?
db.movies.find({"title": "Cavalcade"}, {"directors": 1})
what is the plot for the film Comradeship?
db.movies.find({"title": "Comradeship"}, {"plot": 1})
Has the movie Black Legion won any awards?
db.movies.find({"title":"Black Legion"}, {"awards.wins":1})
what genre of movie is Tsirk?
db.movies.find({"title": "Tsirk"}, {"genres": 1})
which person wrote the movie Miss Lulu Bett?
db.movies.find({"title": "Miss Lulu Bett"}, {"writers": 1})