Questions
stringlengths 12
172
| Queries
stringlengths 41
313
|
---|---|
Can you tell me which film genres Spike Lee has directed? | db.movies.distinct("genres", { "directors": "Spike Lee" }) |
the movie Toni starred which actors? | db.movies.find({"title": "Toni"}, {"cast": 1}) |
what was the genre of Mèdchen in Uniform? | db.movies.find({"title": "Mèdchen in Uniform"}, {"genres": 1}) |
How many viewer reviews did the movie The World Moves On receive on Rotten Tomatoes? | db.movies.find({"title":"The World Moves On"}, {"tomatoes.viewer.numReviews":1}) |
what type of film is The Son of Kong? | db.movies.find({"title": "The Son of Kong"}, {"genres": 1}) |
What is the IMDB rating of the movie Little Miss Marker ? | db.movies.find({"title": "Little Miss Marker"}, { "imdb.rating": 1}) |
How many reviews have been submitted by critics for the movie The Freshman ? | db.movies.find({"title": "The Freshman"}, {"tomatoes.critic.numReviews": 1}) |
what was the release year of the movie Cavalcade? | db.movies.find({"title": "Cavalcade"}, {"year": 1}) |
what is the film For Heaven's Sake about in details? | db.movies.find({"title": "For Heaven's Sake"}, {"fullplot": 1}) |
What is the running time of the movie Topaze? | db.movies.find({"title":"Topaze"}, {"runtime":1}) |
How many reviews have been submitted by critics for the movie The Trail of the Lonesome Pine ? | db.movies.find({"title": "The Trail of the Lonesome Pine"}, {"tomatoes.critic.numReviews": 1}) |
What is the viewer rating for the movie Curly Top on Rotten Tomatoes? | db.movies.find({"title":"Curly Top"}, {"tomatoes.viewer.rating":1}) |
which person wrote the film One Hundred Men and a Girl? | db.movies.find({"title": "One Hundred Men and a Girl"}, {"writers": 1}) |
who was Red Dust written by? | db.movies.find({"title": "Red Dust"}, {"writers": 1}) |
who is the director that directed The 3 Penny Opera? | db.movies.find({"title": "The 3 Penny Opera"}, {"directors": 1}) |
How many audience reviews have been submitted for the movie Queen Christina? | db.movies.find({ "title": "Queen Christina" }, { "tomatoes.viewer.numReviews": 1 }) |
Has the film Broadway Melody of 1936 won any awards? If so, which ones? | db.movies.find({"title":"Broadway Melody of 1936","awards.wins": {"$gt": 0}}, {"awards.text": 1}) |
In what year was the movie The Gay Divorcee released? | db.movies.find({"title":"The Gay Divorcee"}, {"year":1}) |
which person wrote the movie The Thief of Bagdad? | db.movies.find({"title": "The Thief of Bagdad"}, {"writers": 1}) |
What is the plot summary of the movie The Green Pastures ? | db.movies.find({ "title": "The Green Pastures" }, { "plot": 1}) |
who is the writer of the movie Ben-Hur: A Tale of the Christ? | db.movies.find({"title": "Ben-Hur: A Tale of the Christ"}, {"writers": 1}) |
What is the production company of Anna Karenina? | db.movies.find({"title":"Anna Karenina"}, {"tomatoes.production":1}) |
What is the rating of the movie The Fall of the House of Usher on IMDb? | db.movies.find({"title":"The Fall of the House of Usher"}, {"imdb.rating":1}) |
What is the runtime and rating for the movie 'Our Hospitality'? | db.movies.find({"title": "Our Hospitality"}, {"runtime": 1, "rated": 1}) |
Which actor has the highest number of appearances in movies directed by Martin Scorsese? | db.movies.aggregate([ { "$match": { "directors": "Martin Scorsese" } }, { "$unwind": "$cast" }, { "$group": { "_id": "$cast", "count": { "$sum": 1 } } }, { "$sort": { "count": -1 } }, { "$limit": 1 }]) |
What is the text representation of the awards won and nominations received by the movie Triumph of the Will? | db.movies.find({"title": "Triumph of the Will"}, { "awards.text": 1}) |
What is the critical reception of the movie The Cheat? | db.movies.find({"title":"The Cheat"}, {"tomatoes.critic":1}) |
what is the plot for the film The Red Head? | db.movies.find({"title": "The Red Head"}, {"plot": 1}) |
who directed the film King Kong? | db.movies.find({"title": "King Kong"}, {"directors": 1}) |
What are the names of all the actors who starred in the movie 'Secret Agent'? | db.movies.find({"title": "Secret Agent"}, {"cast": 1}) |
who was Battleship Potemkin directed by? | db.movies.find({"title": "Battleship Potemkin"}, {"directors": 1}) |
who stars in the movie Black Legion? | db.movies.find({"title": "Black Legion"}, {"cast": 1}) |
What are the names of all the actors who starred in the movie 'Lonesome'? | db.movies.find({"title": "Lonesome"}, {"cast": 1}) |
What are the movies directed by Jean-Pierre Melville? | db.movies.find({"directors": "Jean-Pierre Melville"},{"title":1}) |
how many awards did The Saphead win? | db.movies.find({"title":"The Saphead"}, {"awards.wins":1}) |
What is the imdbID and year of release for the movie with a title of 'The Power and the Glory'? | db.movies.find({"title": "The Power and the Glory"}, {"imdb.id": 1, "year": 1, "_id": 0}) |
What is the rating of the movie The Birth of a Nation on IMDb? | db.movies.find({"title":"The Birth of a Nation"}, {"imdb.rating":1}) |
which person wrote the film Westfront 1918? | db.movies.find({"title": "Westfront 1918"}, {"writers": 1}) |
What is the rating of the movie Robin Hood ? | db.movies.find({ "title": "Robin Hood" }, { "rated": 1}) |
In what year was the movie Black Fury released? | db.movies.find({"title":"Black Fury"}, {"year":1}) |
What is the IMDb rating for Wonder Bar? | db.movies.find({"title": "Wonder Bar"}, {"imdb.rating": 1}) |
who acted in the movie Wonder Bar? | db.movies.find({"title": "Wonder Bar"}, {"cast": 1}) |
Anna Karenina is a movie written by this person? | db.movies.find({"title": "Anna Karenina"}, {"writers": 1}) |
Has the movie The Black Cat won any awards? | db.movies.find({"title":"The Black Cat"}, {"awards.wins":1}) |
What is the production company behind the movie x? | db.movies.find({"title": "Lenin in October"}, { "tomatoes.production": 1}) |
who is the director that directed Going Hollywood? | db.movies.find({"title": "Going Hollywood"}, {"directors": 1}) |
What is the Tomatometer score of the movie The Birth of a Nation ? | db.movies.find({ "title": "The Birth of a Nation" },{ "tomatoes.critic.meter": 1 }) |
who acted in the movie The Prisoner of Zenda? | db.movies.find({"title": "The Prisoner of Zenda"}, {"cast": 1}) |
What is the ID of the movie Children in the Wind on IMDB? | db.movies.find({"title": "Children in the Wind"}, {"imdb.id": 1}) |
what genre of film is Topaze? | db.movies.find({"title": "Topaze"}, {"genres": 1}) |
who was the writer of the film Westfront 1918? | db.movies.find({"title": "Westfront 1918"}, {"writers": 1}) |
What is the running time of the film The Edge of the World? | db.movies.find({"title":"The Edge of the World"}, {"runtime":1}) |
how many awards did Our Hospitality win? | db.movies.find({"title":"Our Hospitality"}, {"awards.wins":1}) |
How many reviews have been submitted by critics for the movie The Black Pirate? | db.movies.find({ "title": "The Black Pirate" }, { "tomatoes.critic.numReviews": 1 }) |
which company produced Lloyd's of London? | db.movies.find({"title":"Lloyd's of London"}, {"tomatoes.production":1}) |
Which cinematic genres were directed by Vittorio De Sica? | db.movies.distinct("genres", { "directors": "Vittorio De Sica" }) |
who was the film In Old Chicago written by? | db.movies.find({"title": "In Old Chicago"}, {"writers": 1}) |
what genre is the film The General? | db.movies.find({"title": "The General"}, {"genres": 1}) |
who starred in the movie Smilin' Through? | db.movies.find({"title": "Smilin' Through"}, {"cast": 1}) |
What is the average score assigned to all Martin Scorsese movies in the database? | db.movies.aggregate([{"$match": {"directors":"Martin Scorsese"}}, {"$group": { "_id":"null", "avgRating": {"$avg": "$imdb.rating"}}}]) |
what is the plot for the movie Freaks? | db.movies.find({"title": "Freaks"}, {"plot": 1}) |
Can you provide more information about the languages spoken in the movie Dr. Jekyll and Mr. Hyde ? | db.movies.find({"title":"Dr. Jekyll and Mr. Hyde"}, {"languages":1}) |
how many awards did the movie Storm Over Asia win? | db.movies.find({"title":"Storm Over Asia"}, {"awards.wins":1}) |
what year was the movie Under the Roofs of Paris released? | db.movies.find({"title": "Under the Roofs of Paris"}, {"year": 1}) |
who is the director for The Thief of Bagdad? | db.movies.find({"title": "The Thief of Bagdad"}, {"directors": 1}) |
What is the running time of the film The Son of Kong? | db.movies.find({"title":"The Son of Kong"}, {"runtime":1}) |
who is listed as director for The Son of the Sheik? | db.movies.find({"title": "The Son of the Sheik"}, {"directors": 1}) |
who are the actors in Frankenstein? | db.movies.find({"title": "Frankenstein"}, {"cast": 1}) |
what genre of film is One Hundred Men and a Girl? | db.movies.find({"title": "One Hundred Men and a Girl"}, {"genres": 1}) |
Dodsworth is a movie written by this person? | db.movies.find({"title": "Dodsworth"}, {"writers": 1}) |
what genre is the movie It? | db.movies.find({"title": "It"}, {"genres": 1}) |
what is Smilin' Through imdb rating? | db.movies.find({"title": "Smilin' Through"}, {"imdb.rating": 1}) |
What is the movie The Wedding Night about? Can you provide a brief summary? | db.movies.find({"title":"The Wedding Night"}, {"plot":1}) |
How many reviews have been submitted by critics for the movie Going Hollywood? | db.movies.find({ "title": "Going Hollywood" }, { "tomatoes.critic.numReviews": 1 }) |
What is the audience rating of the movie The Mummy ? | db.movies.find({ "title": "The Mummy" },{ "tomatoes.viewer.rating": 1 }) |
How many reviews have been submitted by critics for the movie A Star Is Born? | db.movies.find({ "title": "A Star Is Born" }, { "tomatoes.critic.numReviews": 1 }) |
How many nominations did the movie A Day in the Country receive? | db.movies.find({"title":"A Day in the Country"}, {"awards.nominations":1}) |
In the database, what is the usual rating given to Alain Resnais's movies on average? | db.movies.aggregate([{"$match": {"directors":"Alain Resnais"}}, {"$group": { "_id":"null", "avgRating": {"$avg": "$imdb.rating"}}}]) |
What is the running time of the movie La Grande Illusion? | db.movies.find({"title":"La Grande Illusion"}, {"runtime":1}) |
What is the IMDb ID for the movie The Prisoner of Zenda? | db.movies.find({"title":"The Prisoner of Zenda"}, {"imdb.id":1}) |
Hell's Hinges, was written by who? | db.movies.find({"title": "Hell's Hinges"}, {"writers": 1}) |
How did the audience and critics receive the film Within Our Gates? | db.movies.find({"title":"Within Our Gates"}, {"tomatoes.viewer": 1,"tomatoes.critic":1}) |
In which countries was the movie Sanders of the River produced? | db.movies.find({"title":"Sanders of the River"}, {"countries":1}) |
the movie One Hundred Men and a Girl starred who? | db.movies.find({"title": "One Hundred Men and a Girl"}, {"cast": 1}) |
How long is the movie The Great Train Robbery in minutes? | db.movies.find({"title":"The Great Train Robbery"}, {"runtime":1}) |
what type of film is Love Me Tonight? | db.movies.find({"title": "Love Me Tonight"}, {"genres": 1}) |
Can you tell me which film genres David Fincher has directed? | db.movies.distinct("genres", { "directors": "David Fincher" }) |
who starred in the film King Kong? | db.movies.find({"title": "King Kong"}, {"cast": 1}) |
In which countries was the movie Shanghai Express produced? | db.movies.find({"title":"Shanghai Express"}, {"countries":1}) |
High and Dizzy is written by this person? | db.movies.find({"title": "High and Dizzy"}, {"writers": 1}) |
What is the rating of the movie Three Ages on IMDb? | db.movies.find({"title":"Three Ages"}, {"imdb.rating":1}) |
Can you give me a brief summary of the movie The Devil to Pay! plot? | db.movies.find({"title":"The Devil to Pay!"}, {"plot":1}) |
Scrooge, is written by who? | db.movies.find({"title": "Scrooge"}, {"writers": 1}) |
Was the movie The Green Pastures well received by audiences? | db.movies.find({"title":"The Green Pastures"}, {"tomatoes.viewer":1}) |
What is the most common genre of movies that Darren Aronofsky directs? | db.movies.aggregate([ { "$match": { "directors": "Darren Aronofsky" } }, { "$unwind": "$genres" }, { "$group": { "_id": "$genres", "count": { "$sum": 1 } } }, { "$sort": { "count": -1 } }, { "$limit": 1 }]) |
what is The Private Life of Henry VIII. description? | db.movies.find({"title": "The Private Life of Henry VIII."}, {"plot": 1}) |
What is the dominant genre of Oliver Stone's directed movies? | db.movies.aggregate([ { "$match": { "directors": "Oliver Stone" } }, { "$unwind": "$genres" }, { "$group": { "_id": "$genres", "count": { "$sum": 1 } } }, { "$sort": { "count": -1 } }, { "$limit": 1 }]) |
who produced the film The Lower Depths? | db.movies.find({"title":"The Lower Depths"}, {"tomatoes.production":1}) |
what was the genre of the movie Swedenhielms Family? | db.movies.find({"title": "Swedenhielms Family"}, {"genres": 1}) |
What is the MPAA rating of the film Zoo in Budapest? | db.movies.find({"title":"Zoo in Budapest"}, {"rated":1}) |