Questions
stringlengths 12
172
| Queries
stringlengths 41
313
|
---|---|
who was Go West directed by? | db.movies.find({"title": "Go West"}, {"directors": 1}) |
How many nominations did the movie Swedenhielms Family receive? | db.movies.find({"title":"Swedenhielms Family"}, {"awards.nominations":1}) |
what is the plot for the movie City Streets? | db.movies.find({"title": "City Streets"}, {"plot": 1}) |
who is the writer of the movie The Ace of Hearts? | db.movies.find({"title": "The Ace of Hearts"}, {"writers": 1}) |
what kind of movie is Gold Diggers of 1933? | db.movies.find({"title": "Gold Diggers of 1933"}, {"genres": 1}) |
What is the rating of the movie The Last Command according to viewers on Rotten Tomatoes? | db.movies.find({"title": "The Last Command"}, {"tomatoes.viewer.rating": 1}) |
what is the genre for the film Final Accord? | db.movies.find({"title": "Final Accord"}, {"genres": 1}) |
What is the imdbID and genre of the movie 'Zero for Conduct'? | db.movies.find({"title": "Zero for Conduct"}, {"imdb.id": 1, "genres": 1, "_id": 0}) |
Which cinematic genres were directed by James Cameron? | db.movies.distinct("genres", { "directors": "James Cameron" }) |
what is the plot for My Man Godfrey? | db.movies.find({"title": "My Man Godfrey"}, {"plot": 1}) |
what is the movie The Hunchback of Notre Dame about? | db.movies.find({"title": "The Hunchback of Notre Dame"}, {"plot": 1}) |
When was the movie Sherlock Jr. released in theaters? | db.movies.find({"title": "Sherlock Jr."}, {"released": 1}) |
Who are the actors that appear in the movie Moscow Laughs ? | db.movies.find({ "title": "Moscow Laughs" },{ "cast": 1 }) |
what kind of film is Scrooge? | db.movies.find({"title": "Scrooge"}, {"genres": 1}) |
What is the running time of Nosferatu? | db.movies.find({"title":"Nosferatu"}, {"runtime":1}) |
What is the full plot summary of the movie Daughter of Shanghai ? | db.movies.find({"title": "Daughter of Shanghai"}, {"plot": 1}) |
what is the plot for the movie The Strong Man? | db.movies.find({"title": "The Strong Man"}, {"plot": 1}) |
Who are the main actors in The Divine Lady ? | db.movies.find({ "title": "The Divine Lady" }, { "cast": 1}) |
which company produced the film The Big Trail? | db.movies.find({"title":"The Big Trail"}, {"tomatoes.production":1}) |
what genre of film is Everybody's Woman? | db.movies.find({"title": "Everybody's Woman"}, {"genres": 1}) |
How did the audience and critics receive Battleship Potemkin? | db.movies.find({"title":"Battleship Potemkin"}, {"tomatoes.viewer": 1,"tomatoes.critic":1}) |
How many reviews did the movie The Champ receive on Rotten Tomatoes? | db.movies.find({"title":"The Champ"}, {"tomatoes.viewer.numReviews": 1,"tomatoes.critic.numReviews":1}) |
How many audience reviews have been submitted for the movie The Big House? | db.movies.find({ "title": "The Big House" }, { "tomatoes.viewer.numReviews": 1 }) |
Could you tell me the title of the movie with the shortest duration that was directed by Claude Chabrol? | db.movies.find({"directors":"Claude Chabrol"}, {"title": 1, "runtime": 1}).sort({"runtime": 1}).limit(1) |
which company produced the film It's a Gift? | db.movies.find({"title":"It's a Gift"}, {"tomatoes.production":1}) |
What is the freshness score of the movie White Shadows on Rotten Tomatoes? | db.movies.find({"title": "White Shadows"}, {"tomatoes.fresh": 1}) |
How many reviews have been submitted for the movie The Crowd Roars on Rotten Tomatoes? | db.movies.find({ "title": "The Crowd Roars" },{ "tomatoes.viewer.numReviews": 1 }) |
What is the box office revenue of the movie The Beloved Vagabond in dollars? | db.movies.find({"title": "The Beloved Vagabond"}, {"tomatoes.boxOffice": 1}) |
Who are the actors that appear in the movie Little Miss Marker ? | db.movies.find({ "title": "Little Miss Marker" },{ "cast": 1 }) |
the movie For Heaven's Sake starred which actors? | db.movies.find({"title": "For Heaven's Sake"}, {"cast": 1}) |
Who are the actors in the movie Going Hollywood? | db.movies.find({"title":"Going Hollywood"}, {"cast":1}) |
what is the film Camille description ? | db.movies.find({"title": "Camille"}, {"plot": 1}) |
the film The Great Train Robbery, was written by who? | db.movies.find({"title": "The Great Train Robbery"}, {"writers": 1}) |
the film Men Without Women was directed by who? | db.movies.find({"title": "Men Without Women"}, {"directors": 1}) |
When was the movie Pandora's Box released in theaters? | db.movies.find({"title": "Pandora's Box"}, {"released": 1}) |
Can you give me a brief summary of the movie Stage Door plot? | db.movies.find({"title":"Stage Door"}, {"plot":1}) |
who was the writer of the movie Les Misèrables? | db.movies.find({"title": "Les Misèrables"}, {"writers": 1}) |
What is the rating of the movie High and Dizzy according to viewers on Rotten Tomatoes? | db.movies.find({"title": "High and Dizzy"}, {"tomatoes.viewer.rating": 1}) |
What is the prevailing movie genre in Francois Truffaut's directed films? | db.movies.aggregate([ { "$match": { "directors": "Francois Truffaut" } }, { "$unwind": "$genres" }, { "$group": { "_id": "$genres", "count": { "$sum": 1 } } }, { "$sort": { "count": -1 } }, { "$limit": 1 }]) |
what is the plot for Chapayev? | db.movies.find({"title": "Chapayev"}, {"plot": 1}) |
the film A Day in the Country starred which actors? | db.movies.find({"title": "A Day in the Country"}, {"cast": 1}) |
who wrote the screenplay for the movie Movie Crazy? | db.movies.aggregate([ { "$match": { "title":"Movie Crazy"} }, { "$project": { "_id": 0, "writers": {"$filter": { "input": "$writers", "as": "writer", "cond": { "$regexMatch": { "input": "$$writer", "regex": "screenplay", "options":"i" } } } } } }]) |
which person wrote Folies Bergère de Paris? | db.movies.find({"title": "Folies Bergère de Paris"}, {"writers": 1}) |
What is the Rotten Tomatoes meter rating for the viewer reviews of the movie The Immigrant ? | db.movies.find({"title":"The Immigrant"}, {"tomatoes.viewer.meter":1}) |
what was the release year of the film Les Misèrables? | db.movies.find({"title": "Les Misèrables"}, {"year": 1}) |
what is the genre for the film White Shadows? | db.movies.find({"title": "White Shadows"}, {"genres": 1}) |
what is the genre for the movie Popeye the Sailor Meets Sindbad the Sailor? | db.movies.find({"title": "Popeye the Sailor Meets Sindbad the Sailor"}, {"genres": 1}) |
How many reviews have been submitted by critics for the movie The Poor Little Rich Girl? | db.movies.find({ "title": "The Poor Little Rich Girl" }, { "tomatoes.critic.numReviews": 1 }) |
who acted in the film Triumph of the Will? | db.movies.find({"title": "Triumph of the Will"}, {"cast": 1}) |
who stars in A Woman of Paris: A Drama of Fate? | db.movies.find({"title": "A Woman of Paris: A Drama of Fate"}, {"cast": 1}) |
who is the director for The Gay Divorcee? | db.movies.find({"title": "The Gay Divorcee"}, {"directors": 1}) |
In which countries was the movie M produced? | db.movies.find({"title":"M"}, {"countries":1}) |
what was the release date of the movie City Lights? | db.movies.find({"title": "City Lights"}, {"released": 1}) |
What is the text description of the movie Triumph of the Will awards? | db.movies.find({"title":"Triumph of the Will"}, {"awards.text":1}) |
What is the MongoDB document ID of the movie M? | db.movies.find({"title": "M"}, {"_id": 1}) |
what is the plot for Greed? | db.movies.find({"title": "Greed"}, {"plot": 1}) |
what genre is the movie Forbidden? | db.movies.find({"title": "Forbidden"}, {"genres": 1}) |
the film The Ace of Hearts was directed by who? | db.movies.find({"title": "The Ace of Hearts"}, {"directors": 1}) |
what is the full plot for the film The Lives of a Bengal Lancer? | db.movies.find({"title": "The Lives of a Bengal Lancer"}, {"fullplot": 1}) |
What are the top-rated movies directed by Christopher Nolan? | db.movies.find({"directors": 'Christopher Nolan', "imdb.rating": {"$gt": 8.5}}) |
When was the information about the movie The Crowd Roars last updated? | db.movies.find({ "title": "The Crowd Roars" }, { "lastupdated": 1}) |
what was the release year of the movie Broken Blossoms or The Yellow Man and the Girl? | db.movies.find({"title": "Broken Blossoms or The Yellow Man and the Girl"}, {"year": 1}) |
How many comments have been posted by users on the movie The Big Parade's page on the Mflix platform? | db.movies.find({ "title": "The Big Parade" }, { "num_mflix_comments": 1 }) |
How many votes does the movie Wings have on IMDb? | db.movies.find({"title":"Wings"}, {"imdb.votes":1}) |
what is the plot for The Fall of the House of Usher? | db.movies.find({"title": "The Fall of the House of Usher"}, {"plot": 1}) |
which company produced the film Final Accord? | db.movies.find({"title":"Final Accord"}, {"tomatoes.production":1}) |
what is the plot for Go West? | db.movies.find({"title": "Go West"}, {"plot": 1}) |
what is the plot for the film Murders in the Rue Morgue? | db.movies.find({"title": "Murders in the Rue Morgue"}, {"plot": 1}) |
What is the MPAA rating of the movie The Awful Truth? | db.movies.find({"title":"The Awful Truth"}, {"rated":1}) |
How does the movie A Damsel in Distress rate on Rotten Tomatoes? | db.movies.find({ "title": "A Damsel in Distress" },{ "tomatoes.critic.meter": 1 }) |
What is the production company behind the movie x? | db.movies.find({"title": "Mutiny on the Bounty"}, { "tomatoes.production": 1}) |
How long is the runtime of the movie Shanghai Express ? | db.movies.find({"title":"Shanghai Express"}, {"runtime":1}) |
what year was the movie The Champ released? | db.movies.find({"title": "The Champ"}, {"year": 1}) |
When was the information last updated for the movie Swedenhielms Family ? | db.movies.find({ "title": "Swedenhielms Family" },{ "lastupdated": 1 }) |
How many awards did the movie win The Private Life of Henry VIII. ? | db.movies.find({ "title": "The Private Life of Henry VIII." },{ "awards.wins": 1 }) |
what is the movie Moscow Laughs description ? | db.movies.find({"title": "Moscow Laughs"}, {"plot": 1}) |
can you describe the plot of Lloyd's of London? | db.movies.find({"title": "Lloyd's of London"}, {"plot": 1}) |
What was the release date for the movie Baby Face? | db.movies.find({"title":"Baby Face"}, {"released":1}) |
the director of The Broadway Melody was? | db.movies.find({"title": "The Broadway Melody"}, {"directors": 1}) |
What is the plot summary of the movie The Passion of Joan of Arc ? | db.movies.find({ "title": "The Passion of Joan of Arc" }, { "plot": 1}) |
What is the MPAA rating of the movie La Grande Illusion? | db.movies.find({"title":"La Grande Illusion"}, {"rated":1}) |
Now or Never, was written by who? | db.movies.find({"title": "Now or Never"}, {"writers": 1}) |
who acted in the movie Three Smart Girls? | db.movies.find({"title": "Three Smart Girls"}, {"cast": 1}) |
what genre of movie is The Mummy? | db.movies.find({"title": "The Mummy"}, {"genres": 1}) |
What is the MPAA rating of the movie The General? | db.movies.find({"title":"The General"}, {"rated":1}) |
what genre of movie is Cops? | db.movies.find({"title": "Cops"}, {"genres": 1}) |
who was the writer of the film Asphalt? | db.movies.find({"title": "Asphalt"}, {"writers": 1}) |
What is the name of the Akira Kurosawa-directed movie with the briefest runtime? | db.movies.find({"directors":"Akira Kurosawa"}, {"title": 1, "runtime": 1}).sort({"runtime": 1}).limit(1) |
What is the IMDb rating for the movie Lonesome ? | db.movies.find({"title":"Lonesome"}, {"imdb.rating":1}) |
which person directed The Pearls of the Crown? | db.movies.find({"title": "The Pearls of the Crown"}, {"directors": 1}) |
What is the movie Duck Soup about? Can you provide a brief summary? | db.movies.find({"title":"Duck Soup"}, {"plot":1}) |
Who is the lead actor of the movie Disraeli ? | db.movies.find({"title": "Disraeli"}, {"cast":{"$slice": 1},"title":1}) |
What is the box office revenue of the movie Under the Roofs of Paris ? | db.movies.find({"title": "Under the Roofs of Paris"}, { "tomatoes.boxOffice": 1}) |
who produced the movie The Mummy? | db.movies.find({"title":"The Mummy"}, {"tomatoes.production":1}) |
what is the full plot for Shanghai Express? | db.movies.find({"title": "Shanghai Express"}, {"fullplot": 1}) |
Who are the starring actors/actresses in the movie Berkeley Square? | db.movies.find({"title":"Berkeley Square"}, {"cast":1}) |
who acted in the movie They Won't Forget? | db.movies.find({"title": "They Won't Forget"}, {"cast": 1}) |
What movie directed by Darren Aronofsky has the best Rotten Tomatoes score? | db.movies.find({"directors": "Darren Aronofsky", "tomatoes.critic.rating": {"$exists": true}}, {"title": 1, "_id": 0}).sort({"tomatoes.critic.rating": -1}).limit(1) |
How long is the runtime of the movie Broken Blossoms or The Yellow Man and the Girl ? | db.movies.find({"title":"Broken Blossoms or The Yellow Man and the Girl"}, {"runtime":1}) |
How long is the movie Sunrise in minutes? | db.movies.find({"title":"Sunrise"}, {"runtime":1}) |
Subsets and Splits