Questions
stringlengths
12
172
Queries
stringlengths
41
313
how many awards did the film The World Moves On win?
db.movies.find({"title":"The World Moves On"}, {"awards.wins":1})
what genre is the film Lady Windermere's Fan?
db.movies.find({"title": "Lady Windermere's Fan"}, {"genres": 1})
the movie Rembrandt was directed by who?
db.movies.find({"title": "Rembrandt"}, {"directors": 1})
What is the movie In Old Arizona about? Can you provide a brief summary?
db.movies.find({"title":"In Old Arizona"}, {"plot":1})
What is the full plot summary of the movie Wonder Bar ?
db.movies.find({"title": "Wonder Bar"}, {"plot": 1})
who starred in Rembrandt?
db.movies.find({"title": "Rembrandt"}, {"cast": 1})
the movie The World Moves On starred who?
db.movies.find({"title": "The World Moves On"}, {"cast": 1})
What is the production company of the movie Frankenstein?
db.movies.find({"title":"Frankenstein"}, {"tomatoes.production":1})
In which countries was the movie Little Miss Marker produced?
db.movies.find({"title":"Little Miss Marker"}, {"countries":1})
who wrote the movie The Iron Horse?
db.movies.find({"title": "The Iron Horse"}, {"writers": 1})
Who are the starring actors/actresses in the movie The Green Pastures?
db.movies.find({"title":"The Green Pastures"}, {"cast":1})
who's the director of Hell's Hinges?
db.movies.find({"title": "Hell's Hinges"}, {"directors": 1})
Could you tell me the title of the movie with the shortest duration that was directed by Michelangelo Antonioni?
db.movies.find({"directors":"Michelangelo Antonioni"}, {"title": 1, "runtime": 1}).sort({"runtime": 1}).limit(1)
What is the consensus among critics about the movie King Kong?
db.movies.find({"title": "King Kong"}, { "tomatoes.consensus": 1})
How many votes did the movie Zoo in Budapest receive on IMDB?
db.movies.find({"title": "Zoo in Budapest"}, { "imdb.votes": 1})
What is the Metacritic score of the movie Dishonored ?
db.movies.find({ "title": "Dishonored" }, { "metacritic": 1})
The Story of Louis Pasteur is written by this person?
db.movies.find({"title": "The Story of Louis Pasteur"}, {"writers": 1})
What is the imdbID and genre of the movie 'The Freshman'?
db.movies.find({"title": "The Freshman"}, {"imdb.id": 1, "genres": 1, "_id": 0})
What is the production company behind the movie L'opèra de quat'sous ?
db.movies.find({"title": "L'opèra de quat'sous"}, {"tomatoes.production": 1})
who is listed as director for Marked Woman?
db.movies.find({"title": "Marked Woman"}, {"directors": 1})
How many reviews have been submitted by critics for the movie Morocco?
db.movies.find({ "title": "Morocco" }, { "tomatoes.critic.numReviews": 1 })
what is the film Salomè about?
db.movies.find({"title": "Salomè"}, {"plot": 1})
What is the meter score of the movie Tarzan the Ape Man according to viewers on Rotten Tomatoes?
db.movies.find({"title": "Tarzan the Ape Man"}, {"tomatoes.viewer.meter": 1})
what is Flying Down to Rio description?
db.movies.find({"title": "Flying Down to Rio"}, {"plot": 1})
What is the rating of the movie Lonesome ?
db.movies.find({ "title": "Lonesome" }, { "rated": 1})
Which of Andrei Tarkovsky's directed films has the lengthiest duration?
db.movies.find({"directors":"Andrei Tarkovsky"}, {"title": 1, "runtime": 1}).sort({"runtime": -1}).limit(1)
Can you share with me the names of the top-rated movies directed by Tim Burton?
db.movies.find({"directors": 'Tim Burton', "imdb.rating": {"$gt": 8.5}})
which person wrote Ruggles of Red Gap?
db.movies.find({"title": "Ruggles of Red Gap"}, {"writers": 1})
What is the IMDb rating for Pandora's Box?
db.movies.find({"title": "Pandora's Box"}, {"imdb.rating": 1})
who was High and Dizzy directed by?
db.movies.find({"title": "High and Dizzy"}, {"directors": 1})
Who is the lead actress of the movie The Invisible Man ?
db.movies.find({"title": "The Invisible Man"}, {"cast":{"$slice": 1},"title":1})
what is the full plot for the film The Docks of New York?
db.movies.find({"title": "The Docks of New York"}, {"fullplot": 1})
What is the consensus among critics about the movie The Wedding Night ?
db.movies.find({"title": "The Wedding Night"}, {"tomatoes.consensus": 1})
what is Four Sons imdb rating?
db.movies.find({"title": "Four Sons"}, {"imdb.rating": 1})
the director of A Day in the Country was?
db.movies.find({"title": "A Day in the Country"}, {"directors": 1})
The Thief of Bagdad, is written by who?
db.movies.find({"title": "The Thief of Bagdad"}, {"writers": 1})
what genre is the film Mr. Deeds Goes to Town?
db.movies.find({"title": "Mr. Deeds Goes to Town"}, {"genres": 1})
what is the movie Kid Galahad about?
db.movies.find({"title": "Kid Galahad"}, {"plot": 1})
who starred in the film Dekigokoro?
db.movies.find({"title": "Dekigokoro"}, {"cast": 1})
what is Cavalcade about?
db.movies.find({"title": "Cavalcade"}, {"plot": 1})
Can you provide more information about the Rotten Tomatoes rating for the movie The Great Ziegfeld?
db.movies.find({"title": "The Great Ziegfeld"}, { "tomatoes.critic": 1, "tomatoes.viewer": 1, "tomatoes.consensus": 1 })
Can you provide a detailed summary of the movie The Band Concert plot?
db.movies.find({ "title": "The Band Concert" }, { "fullplot": 1})
How many votes did the movie Le grand jeu receive on IMDB?
db.movies.find({"title": "Le grand jeu"}, { "imdb.votes": 1})
what sort of movie is Now or Never?
db.movies.find({"title": "Now or Never"}, {"genres": 1})
who is the writer of the movie Comradeship?
db.movies.find({"title": "Comradeship"}, {"writers": 1})
the director of The Lost World was?
db.movies.find({"title": "The Lost World"}, {"directors": 1})
who is the writer of He Who Gets Slapped?
db.movies.find({"title": "He Who Gets Slapped"}, {"writers": 1})
what kind of film is Broadway Bill?
db.movies.find({"title": "Broadway Bill"}, {"genres": 1})
what genre of movie is Snow White and the Seven Dwarfs?
db.movies.find({"title": "Snow White and the Seven Dwarfs"}, {"genres": 1})
What is the audience rating of the movie Shall We Dance ?
db.movies.find({ "title": "Shall We Dance" },{ "tomatoes.viewer.rating": 1 })
who are the actors in the film The Phantom of the Opera?
db.movies.find({"title": "The Phantom of the Opera"}, {"cast": 1})
what year was Traffic in Souls released?
db.movies.find({"title": "Traffic in Souls"}, {"year": 1})
who wrote the movie Tarzan and His Mate?
db.movies.find({"title": "Tarzan and His Mate"}, {"writers": 1})
who are the actors in These Three?
db.movies.find({"title": "These Three"}, {"cast": 1})
what is the film The 3 Penny Opera about in details?
db.movies.find({"title": "The 3 Penny Opera"}, {"fullplot": 1})
who wrote Tabu: A Story of the South Seas?
db.movies.find({"title": "Tabu: A Story of the South Seas"}, {"writers": 1})
How does the movie Romeo and Juliet rate on Rotten Tomatoes?
db.movies.find({ "title": "Romeo and Juliet" },{ "tomatoes.critic.meter": 1 })
who stars in the film The Song of Night?
db.movies.find({"title": "The Song of Night"}, {"cast": 1})
who directed the movie The Devil to Pay!?
db.movies.find({"title": "The Devil to Pay!"}, {"directors": 1})
what was the release date of the movie Dr. Jekyll and Mr. Hyde?
db.movies.find({"title": "Dr. Jekyll and Mr. Hyde"}, {"released": 1})
Can you provide a detailed summary of the movie The Saphead plot?
db.movies.find({ "title": "The Saphead" }, { "fullplot": 1})
Who is the director of the movie The Saphead?
db.movies.find({"title": "The Saphead"}, { "directors": 1})
the movie Shanghai Express starred which actors?
db.movies.find({"title": "Shanghai Express"}, {"cast": 1})
Has The Private Life of Don Juan won any awards? If so, which ones?
db.movies.find({"title":"The Private Life of Don Juan","awards.wins": {"$gt": 0}}, {"awards.text": 1})
who directed The Circus?
db.movies.find({"title": "The Circus"}, {"directors": 1})
When was the movie Queen Christina released in theaters?
db.movies.find({"title": "Queen Christina"}, {"released": 1})
How many audience reviews have been submitted for the movie College?
db.movies.find({ "title": "College" }, { "tomatoes.viewer.numReviews": 1 })
what is the movie Dekigokoro description ?
db.movies.find({"title": "Dekigokoro"}, {"plot": 1})
what is the full plot for the film The Lost Patrol?
db.movies.find({"title": "The Lost Patrol"}, {"fullplot": 1})
Has the movie Toni won any awards? If so, which ones?
db.movies.find({"title":"Toni","awards.wins": {"$gt": 0}}, {"awards.text": 1})
What is the MPAA rating of the movie Captains Courageous?
db.movies.find({"title":"Captains Courageous"}, {"rated":1})
What was the release date for the movie The Perils of Pauline?
db.movies.find({"title":"The Perils of Pauline"}, {"released":1})
Who are the main actors in The Wind ?
db.movies.find({ "title": "The Wind" }, { "cast": 1})
what is the full plot for The Life of Emile Zola?
db.movies.find({"title": "The Life of Emile Zola"}, {"fullplot": 1})
What is the title of the movie with the longest duration that Steven Spielberg directed?
db.movies.find({"directors":"Steven Spielberg"}, {"title": 1, "runtime": 1}).sort({"runtime": -1}).limit(1)
What is the language of the movie The Ace of Hearts?
db.movies.find({"title":"The Ace of Hearts"}, {"languages":1})
What is the rating of the movie Frankenstein ?
db.movies.find({ "title": "Frankenstein" }, { "rated": 1})
what type of movie is The New Gulliver?
db.movies.find({"title": "The New Gulliver"}, {"genres": 1})
What is the running time of the film Go West?
db.movies.find({"title":"Go West"}, {"runtime":1})
Three Little Pigs, is written by who?
db.movies.find({"title": "Three Little Pigs"}, {"writers": 1})
What is the full plot summary of the movie A Night at the Opera ?
db.movies.find({"title": "A Night at the Opera"}, {"plot": 1})
who stars in the film The Trail of the Lonesome Pine?
db.movies.find({"title": "The Trail of the Lonesome Pine"}, {"cast": 1})
who is the director for Broken Blossoms or The Yellow Man and the Girl?
db.movies.find({"title": "Broken Blossoms or The Yellow Man and the Girl"}, {"directors": 1})
Who is the lead actor of the movie The Italian ?
db.movies.find({"title": "The Italian"}, {"cast":{"$slice": 1},"title":1})
What is the production company of the film The Lost Patrol?
db.movies.find({"title":"The Lost Patrol"}, {"tomatoes.production":1})
Can you provide more information about the Rotten Tomatoes rating for the movie The Blood of a Poet?
db.movies.find({"title": "The Blood of a Poet"}, { "tomatoes.critic": 1, "tomatoes.viewer": 1, "tomatoes.consensus": 1 })
What is the name of the Eric Rohmer-directed movie with the briefest runtime?
db.movies.find({"directors":"Eric Rohmer"}, {"title": 1, "runtime": 1}).sort({"runtime": 1}).limit(1)
How many reviews have been submitted by critics for the movie Children in the Wind?
db.movies.find({ "title": "Children in the Wind" }, { "tomatoes.critic.numReviews": 1 })
What is the production company behind the movie Dodsworth ?
db.movies.find({"title": "Dodsworth"}, {"tomatoes.production": 1})
which person wrote Death Takes a Holiday?
db.movies.find({"title": "Death Takes a Holiday"}, {"writers": 1})
How did the audience and critics receive Les Misèrables?
db.movies.find({"title":"Les Misèrables"}, {"tomatoes.viewer": 1,"tomatoes.critic":1})
who produced the movie The Scarlet Empress?
db.movies.find({"title":"The Scarlet Empress"}, {"tomatoes.production":1})
what was the genre of the movie The Man Who Knew Too Much?
db.movies.find({"title": "The Man Who Knew Too Much"}, {"genres": 1})
what genre is the film Bad Girl?
db.movies.find({"title": "Bad Girl"}, {"genres": 1})
How long is the movie The Last Command in minutes?
db.movies.find({"title":"The Last Command"}, {"runtime":1})
What is the imdbID and genre of the movie 'Les vampires'?
db.movies.find({"title": "Les vampires"}, {"imdb.id": 1, "genres": 1, "_id": 0})
What is the running time of the film The Public Enemy?
db.movies.find({"title":"The Public Enemy"}, {"runtime":1})
What is the rating of the movie Follow the Fleet on IMDb?
db.movies.find({"title":"Follow the Fleet"}, {"imdb.rating":1})
How many viewer reviews did the movie Pèpè le Moko receive on Rotten Tomatoes?
db.movies.find({"title":"Pèpè le Moko"}, {"tomatoes.viewer.numReviews":1})
what was the genre of the movie A Day in the Country?
db.movies.find({"title": "A Day in the Country"}, {"genres": 1})