diff --git "a/Valid.csv" "b/Valid.csv" new file mode 100644--- /dev/null +++ "b/Valid.csv" @@ -0,0 +1,10001 @@ +Questions,Queries +How long is the movie The Gold Rush in minutes?,"db.movies.find({""title"":""The Gold Rush""}, {""runtime"":1})" +When was the movie Triumph of the Will released?,"db.movies.find({""title"":""Triumph of the Will""}, {""released"":1})" +Which Sergei Eisenstein film has the shortest duration?,"db.movies.find({""directors"":""Sergei Eisenstein""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +How many reviews have been submitted by critics for the movie He Who Gets Slapped?,"db.movies.find({ ""title"": ""He Who Gets Slapped"" }, { ""tomatoes.critic.numReviews"": 1 })" +Who are the starring actors/actresses in the movie Cleopatra?,"db.movies.find({""title"":""Cleopatra""}, {""cast"":1})" +what was the genre of the movie The Cameraman?,"db.movies.find({""title"": ""The Cameraman""}, {""genres"": 1})" +what is the full plot for the movie Viva Villa!?,"db.movies.find({""title"": ""Viva Villa!""}, {""fullplot"": 1})" +What is the title of the movie with the shortest duration that Ingmar Bergman directed?,"db.movies.find({""directors"":""Ingmar Bergman""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +How did the audience and critics receive the film The Son of Kong?,"db.movies.find({""title"":""The Son of Kong""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the imdbID and year of release for the movie with a title of 'Broadway Melody of 1936'?,"db.movies.find({""title"": ""Broadway Melody of 1936""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +What is the average score assigned to all Robert Bresson movies in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Robert Bresson""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +"What is the rating of the movie Laugh, Clown, Laugh on IMDb?","db.movies.find({""title"":""Laugh, Clown, Laugh""}, {""imdb.rating"":1})" +Which Coen Brothers-directed movie has the highest score on Rotten Tomatoes?,"db.movies.find({""directors"": ""Coen Brothers"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +what genre is the film Frankenstein?,"db.movies.find({""title"": ""Frankenstein""}, {""genres"": 1})" +What was the release date for the movie The Lives of a Bengal Lancer?,"db.movies.find({""title"":""The Lives of a Bengal Lancer""}, {""released"":1})" +How many reviews have been submitted by critics for the movie Freaks ?,"db.movies.find({""title"": ""Freaks""}, {""tomatoes.critic.numReviews"": 1})" +who stars in Broken Blossoms or The Yellow Man and the Girl?,"db.movies.find({""title"": ""Broken Blossoms or The Yellow Man and the Girl""}, {""cast"": 1})" +who wrote Cimarron?,"db.movies.find({""title"": ""Cimarron""}, {""writers"": 1})" +What is the critical reception of the movie Street Angel?,"db.movies.find({""title"":""Street Angel""}, {""tomatoes.critic"":1})" +Can you give me a brief summary of the movie The Crowd Roars plot?,"db.movies.find({""title"":""The Crowd Roars""}, {""plot"":1})" +In what year was the movie The Band Concert released ?,"db.movies.find({ ""title"": ""The Band Concert"" }, { ""year"": 1})" +What is the IMDb rating for the movie Zero for Conduct ?,"db.movies.find({""title"":""Zero for Conduct""}, {""imdb.rating"":1})" +How many nominations did the movie Movie Crazy receive?,"db.movies.find({""title"":""Movie Crazy""}, {""awards.nominations"":1})" +Which actor has the highest count of appearances in Federico Fellini's directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Federico Fellini"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What is the language of the movie The Black Cat?,"db.movies.find({""title"":""The Black Cat""}, {""languages"":1})" +How long is the movie Pandora's Box in minutes?,"db.movies.find({""title"":""Pandora's Box""}, {""runtime"":1})" +What is the box office revenue of the movie The Informer ?,"db.movies.find({""title"": ""The Informer""}, { ""tomatoes.boxOffice"": 1})" +who was Hallelujah directed by?,"db.movies.find({""title"": ""Hallelujah""}, {""directors"": 1})" +Andrei Tarkovsky directed which films in the 1990s?,"db.movies.find({""directors"": 'Andrei Tarkovsky', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +How many nominations did the movie Battleship Potemkin receive?,"db.movies.find({""title"":""Battleship Potemkin""}, {""awards.nominations"":1})" +In which countries was the movie Anthony Adverse produced?,"db.movies.find({""title"":""Anthony Adverse""}, {""countries"":1})" +what genre of movie is Metropolis?,"db.movies.find({""title"": ""Metropolis""}, {""genres"": 1})" +"Was the movie Steamboat Bill, Jr. well received by audiences?","db.movies.find({""title"":""Steamboat Bill, Jr.""}, {""tomatoes.viewer"":1})" +what year was the movie The Crowd Roars released?,"db.movies.find({""title"": ""The Crowd Roars""}, {""year"": 1})" +the movie The Ace of Hearts was directed by who?,"db.movies.find({""title"": ""The Ace of Hearts""}, {""directors"": 1})" +the film The Song of Night starred who?,"db.movies.find({""title"": ""The Song of Night""}, {""cast"": 1})" +What is the production company of Robin Hood?,"db.movies.find({""title"":""Robin Hood""}, {""tomatoes.production"":1})" +what type of movie is 7th Heaven?,"db.movies.find({""title"": ""7th Heaven""}, {""genres"": 1})" +which person wrote the film Flesh and the Devil?,"db.movies.find({""title"": ""Flesh and the Devil""}, {""writers"": 1})" +How long is the movie The Blue Bird in minutes?,"db.movies.find({""title"":""The Blue Bird""}, {""runtime"":1})" +which company produced Steamboat Willie?,"db.movies.find({""title"":""Steamboat Willie""}, {""tomatoes.production"":1})" +Can you share with me the film genres that were helmed by Roberto Rossellini?,"db.movies.distinct(""genres"", { ""directors"": ""Roberto Rossellini"" })" +who are the actors in the film Gold Diggers of 1933?,"db.movies.find({""title"": ""Gold Diggers of 1933""}, {""cast"": 1})" +who stars in the film David Golder?,"db.movies.find({""title"": ""David Golder""}, {""cast"": 1})" +can you describe the plot of Mayerling?,"db.movies.find({""title"": ""Mayerling""}, {""plot"": 1})" +who directed the movie The Music Box?,"db.movies.find({""title"": ""The Music Box""}, {""directors"": 1})" +what is the movie The Thin Man about in details?,"db.movies.find({""title"": ""The Thin Man""}, {""fullplot"": 1})" +In which countries was the movie All Quiet on the Western Front produced?,"db.movies.find({""title"":""All Quiet on the Western Front""}, {""countries"":1})" +What are the countries associated with the movie Gold Diggers of 1933 ?,"db.movies.find({""title"": ""Gold Diggers of 1933""}, {""countries"": 1})" +When was the information about the movie Mèdchen in Uniform last updated?,"db.movies.find({ ""title"": ""Mèdchen in Uniform"" }, { ""lastupdated"": 1})" +Has the movie Twentieth Century won any awards?,"db.movies.find({""title"":""Twentieth Century""}, {""awards.wins"":1})" +what year was Hell's Hinges released?,"db.movies.find({""title"": ""Hell's Hinges""}, {""year"": 1})" +When was the information last updated for the movie The Son of the Sheik ?,"db.movies.find({ ""title"": ""The Son of the Sheik"" },{ ""lastupdated"": 1 })" +Who are the writers of the movie Roberta ?,"db.movies.find({""title"": ""Roberta""}, { ""writers"": 1})" +what kind of film is The Kid Brother?,"db.movies.find({""title"": ""The Kid Brother""}, {""genres"": 1})" +who acted in the film Le grand jeu?,"db.movies.find({""title"": ""Le grand jeu""}, {""cast"": 1})" +What is the MPAA rating of the movie Smilin' Through?,"db.movies.find({""title"":""Smilin' Through""}, {""rated"":1})" +which person wrote the film The Power and the Glory?,"db.movies.find({""title"": ""The Power and the Glory""}, {""writers"": 1})" +who starred in the movie Everybody's Woman?,"db.movies.find({""title"": ""Everybody's Woman""}, {""cast"": 1})" +what is Folies Bergère de Paris about?,"db.movies.find({""title"": ""Folies Bergère de Paris""}, {""plot"": 1})" +What is the ID of the movie Tabu: A Story of the South Seas on IMDB?,"db.movies.find({""title"": ""Tabu: A Story of the South Seas""}, {""imdb.id"": 1})" +Could you tell me the exact number of films that have been directed by Eric Rohmer?,"db.movies.countDocuments({""directors"":""Eric Rohmer""})" +What is the IMDb rating for Modern Times?,"db.movies.find({""title"": ""Modern Times""}, {""imdb.rating"": 1})" +What is the text representation of the awards won and nominations received by the movie Nosferatu?,"db.movies.find({""title"": ""Nosferatu""}, { ""awards.text"": 1})" +How many wins did the movie Top Hat receive?,"db.movies.find({""title"":""Top Hat""}, {""awards.wins"":1})" +what was the genre of the movie Show People?,"db.movies.find({""title"": ""Show People""}, {""genres"": 1})" +What is the production company behind the movie x?,"db.movies.find({""title"": ""Sherlock Jr.""}, { ""tomatoes.production"": 1})" +which person wrote the movie Mèdchen in Uniform?,"db.movies.find({""title"": ""Mèdchen in Uniform""}, {""writers"": 1})" +which actor appeared in most of the movies directed by Francis Ford Coppola?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Francis Ford Coppola"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +what is the movie The Black Cat about in details?,"db.movies.find({""title"": ""The Black Cat""}, {""fullplot"": 1})" +What are the names of all the actors who starred in the movie 'The Dark Angel'?,"db.movies.find({""title"": ""The Dark Angel""}, {""cast"": 1})" +What is the title of the movie with the shortest duration that Clint Eastwood directed?,"db.movies.find({""directors"":""Clint Eastwood""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +who's the director of Robin Hood?,"db.movies.find({""title"": ""Robin Hood""}, {""directors"": 1})" +What is the production company of the movie Trouble in Paradise?,"db.movies.find({""title"":""Trouble in Paradise""}, {""tomatoes.production"":1})" +which person wrote The Lives of a Bengal Lancer?,"db.movies.find({""title"": ""The Lives of a Bengal Lancer""}, {""writers"": 1})" +When was the Tomatometer score and other Tomato-related information last updated for the movie The New Gulliver?,"db.movies.find({""title"": ""The New Gulliver""}, { ""tomatoes.lastUpdated"": 1})" +How many audience reviews have been submitted for the movie A Woman of Paris: A Drama of Fate ?,"db.movies.find({ ""title"": ""A Woman of Paris: A Drama of Fate"" },{ ""tomatoes.viewer.numReviews"": 1 })" +Who are the main actors/actresses in the movie Swedenhielms Family?,"db.movies.find({""title"":""Swedenhielms Family""}, {""cast"":1})" +who's the director of White Shadows?,"db.movies.find({""title"": ""White Shadows""}, {""directors"": 1})" +What is the consensus among critics about the movie A Night at the Opera?,"db.movies.find({""title"": ""A Night at the Opera""}, { ""tomatoes.consensus"": 1})" +"The 39 Steps, was written by who?","db.movies.find({""title"": ""The 39 Steps""}, {""writers"": 1})" +what is the full plot for The Gold Rush?,"db.movies.find({""title"": ""The Gold Rush""}, {""fullplot"": 1})" +How did the audience and critics receive the movie Intolerance: Love's Struggle Throughout the Ages?,"db.movies.find({""title"":""Intolerance: Love's Struggle Throughout the Ages""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the runtime and rating for the movie 'Storm Over Asia'?,"db.movies.find({""title"": ""Storm Over Asia""}, {""runtime"": 1, ""rated"": 1})" +What is the language of the movie Three Smart Girls?,"db.movies.find({""title"":""Three Smart Girls""}, {""languages"":1})" +who wrote Dishonored?,"db.movies.find({""title"": ""Dishonored""}, {""writers"": 1})" +In which countries was the movie One Night of Love produced?,"db.movies.find({""title"":""One Night of Love""}, {""countries"":1})" +What is the language of the film The Unknown?,"db.movies.find({""title"":""The Unknown""}, {""languages"":1})" +What is the box office revenue of the movie Scrooge ?,"db.movies.find({""title"": ""Scrooge""}, { ""tomatoes.boxOffice"": 1})" +What is the Metacritic score of the movie The Crowd Roars ?,"db.movies.find({ ""title"": ""The Crowd Roars"" }, { ""metacritic"": 1})" +What is the critical reception of the movie Come and Get It?,"db.movies.find({""title"":""Come and Get It""}, {""tomatoes.critic"":1})" +How many awards did the movie win Upstream ?,"db.movies.find({ ""title"": ""Upstream"" },{ ""awards.wins"": 1 })" +what is the film Romance imdb rating?,"db.movies.find({""title"": ""Romance""}, {""imdb.rating"": 1})" +what was the release year of the movie The Lost Patrol?,"db.movies.find({""title"": ""The Lost Patrol""}, {""year"": 1})" +"Has the movie Salomè won any awards? If so, which ones?","db.movies.find({""title"":""Salomè"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +Could you tell me which movie that Jean Renoir directed has the longest runtime?,"db.movies.find({""directors"":""Jean Renoir""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +The Lives of a Bengal Lancer is a movie written by this person?,"db.movies.find({""title"": ""The Lives of a Bengal Lancer""}, {""writers"": 1})" +What type of movie is The Saphead ?,"db.movies.find({""title"":""The Saphead""}, {""genres"":1})" +which company produced the movie The Poor Little Rich Girl?,"db.movies.find({""title"":""The Poor Little Rich Girl""}, {""tomatoes.production"":1})" +who wrote the movie She Done Him Wrong?,"db.movies.find({""title"": ""She Done Him Wrong""}, {""writers"": 1})" +who is the author of The Kid Brother?,"db.movies.find({""title"": ""The Kid Brother""}, {""writers"": 1})" +Which film directed by Claude Chabrol has the longest running time?,"db.movies.find({""directors"":""Claude Chabrol""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +What is the running time of Tarzan the Ape Man?,"db.movies.find({""title"":""Tarzan the Ape Man""}, {""runtime"":1})" +Who is the lead actress of the movie Sons of the Desert ?,"db.movies.find({""title"": ""Sons of the Desert""}, {""cast"":{""$slice"": 1},""title"":1})" +what was the release year of Tarzan the Ape Man?,"db.movies.find({""title"": ""Tarzan the Ape Man""}, {""year"": 1})" +How many audience reviews have been submitted for the movie Mary of Scotland ?,"db.movies.find({ ""title"": ""Mary of Scotland"" },{ ""tomatoes.viewer.numReviews"": 1 })" +what kind of film is Miss Lulu Bett?,"db.movies.find({""title"": ""Miss Lulu Bett""}, {""genres"": 1})" +what was the release year of the movie Scarface?,"db.movies.find({""title"": ""Scarface""}, {""year"": 1})" +What is the MPAA rating of the movie Man of Aran?,"db.movies.find({""title"":""Man of Aran""}, {""rated"":1})" +"Has the film King of Jazz won any awards? If so, which ones?","db.movies.find({""title"":""King of Jazz"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +When was the information about the movie Little Women last updated?,"db.movies.find({ ""title"": ""Little Women"" }, { ""lastupdated"": 1})" +what genre is Les vampires?,"db.movies.find({""title"": ""Les vampires""}, {""genres"": 1})" +"Has the film Flesh and the Devil won any awards? If so, which ones?","db.movies.find({""title"":""Flesh and the Devil"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +Who are the main actors/actresses in the movie Camille?,"db.movies.find({""title"":""Camille""}, {""cast"":1})" +How many awards did the movie win China Seas ?,"db.movies.find({ ""title"": ""China Seas"" },{ ""awards.wins"": 1 })" +What is the language of Scarface?,"db.movies.find({""title"":""Scarface""}, {""languages"":1})" +who directed the movie Applause?,"db.movies.find({""title"": ""Applause""}, {""directors"": 1})" +What are the names of all the actors who starred in the movie 'It's a Gift'?,"db.movies.find({""title"": ""It's a Gift""}, {""cast"": 1})" +who wrote San Francisco?,"db.movies.find({""title"": ""San Francisco""}, {""writers"": 1})" +can you describe the plot of Cimarron?,"db.movies.find({""title"": ""Cimarron""}, {""plot"": 1})" +What is the audience rating of the movie The Gay Divorcee ?,"db.movies.find({ ""title"": ""The Gay Divorcee"" },{ ""tomatoes.viewer.rating"": 1 })" +How many viewer reviews did the movie A Woman of Paris: A Drama of Fate receive on Rotten Tomatoes?,"db.movies.find({""title"":""A Woman of Paris: A Drama of Fate""}, {""tomatoes.viewer.numReviews"":1})" +"the movie The Unknown, was written by who?","db.movies.find({""title"": ""The Unknown""}, {""writers"": 1})" +Can you provide more information about the IMDb rating for the movie Mèdchen in Uniform ?,"db.movies.find({""title"":""Mèdchen in Uniform""}, {""imdb"":1})" +Can you provide a detailed summary of the movie Dekigokoro plot?,"db.movies.find({ ""title"": ""Dekigokoro"" }, { ""fullplot"": 1})" +What is the running time of The Saphead?,"db.movies.find({""title"":""The Saphead""}, {""runtime"":1})" +"who stars in the film I Was Born, But...?","db.movies.find({""title"": ""I Was Born, But...""}, {""cast"": 1})" +What is the IMDb rating for the film Little Caesar?,"db.movies.find({""title"": ""Little Caesar""}, {""imdb.rating"": 1})" +What is the production company behind the movie Gold Diggers of 1933 ?,"db.movies.find({""title"": ""Gold Diggers of 1933""}, {""tomatoes.production"": 1})" +What are the countries associated with the movie The Garden of Allah ?,"db.movies.find({""title"": ""The Garden of Allah""}, {""countries"": 1})" +What type of media is He Who Gets Slapped?,"db.movies.find({ ""title"": ""He Who Gets Slapped"" }, { ""type"": 1})" +who produced Rembrandt?,"db.movies.find({""title"":""Rembrandt""}, {""tomatoes.production"":1})" +which person wrote the movie Bad Girl?,"db.movies.find({""title"": ""Bad Girl""}, {""writers"": 1})" +what is the full plot for the film Broken Lullaby?,"db.movies.find({""title"": ""Broken Lullaby""}, {""fullplot"": 1})" +What is the audience rating of the movie The Hurricane ?,"db.movies.find({ ""title"": ""The Hurricane"" },{ ""tomatoes.viewer.rating"": 1 })" +which company produced the film Ruggles of Red Gap?,"db.movies.find({""title"":""Ruggles of Red Gap""}, {""tomatoes.production"":1})" +How many audience reviews have been submitted for the movie The Last Command?,"db.movies.find({ ""title"": ""The Last Command"" }, { ""tomatoes.viewer.numReviews"": 1 })" +what is the full plot for the film Comradeship?,"db.movies.find({""title"": ""Comradeship""}, {""fullplot"": 1})" +What is the rating of the movie Trouble in Paradise ?,"db.movies.find({ ""title"": ""Trouble in Paradise"" }, { ""rated"": 1})" +What is the IMDb ID for the movie The Invisible Man?,"db.movies.find({""title"":""The Invisible Man""}, {""imdb.id"":1})" +what is the film The Man Who Could Work Miracles about?,"db.movies.find({""title"": ""The Man Who Could Work Miracles""}, {""plot"": 1})" +Was the movie M well received by audiences and critics?,"db.movies.find({""title"":""M""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +who is the writer of A Woman of Paris: A Drama of Fate?,"db.movies.find({""title"": ""A Woman of Paris: A Drama of Fate""}, {""writers"": 1})" +What are the genres this movie Camille belongs to?,"db.movies.find({""title"":""Camille""}, {""genres"":1})" +Could you tell me the exact number of films that have been directed by Michelangelo Antonioni?,"db.movies.countDocuments({""directors"":""Michelangelo Antonioni""})" +who was the writer of the movie A Woman of Paris: A Drama of Fate?,"db.movies.find({""title"": ""A Woman of Paris: A Drama of Fate""}, {""writers"": 1})" +who are the actors in the film Sisters of the Gion?,"db.movies.find({""title"": ""Sisters of the Gion""}, {""cast"": 1})" +what sort of movie is Traffic in Souls?,"db.movies.find({""title"": ""Traffic in Souls""}, {""genres"": 1})" +How many awards did the movie win 7th Heaven ?,"db.movies.find({ ""title"": ""7th Heaven"" },{ ""awards.wins"": 1 })" +What is the imdbID and year of release for the movie with a title of 'Der Kaiser von Kalifornien'?,"db.movies.find({""title"": ""Der Kaiser von Kalifornien""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +Could you tell me the main category of movies that Joel Coen directs?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Joel Coen"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +who stars in Storm Over Asia?,"db.movies.find({""title"": ""Storm Over Asia""}, {""cast"": 1})" +What is the Metacritic score of the movie Hallelujah ?,"db.movies.find({ ""title"": ""Hallelujah"" }, { ""metacritic"": 1})" +which actor appeared in most of the movies directed by Roberto Rossellini?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Roberto Rossellini"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What languages are spoken in the movie Stage Door ?,"db.movies.find({""title"": ""Stage Door""}, { ""languages"": 1})" +Frankenstein is a film written by this person?,"db.movies.find({""title"": ""Frankenstein""}, {""writers"": 1})" +What is the language of the film Curly Top?,"db.movies.find({""title"":""Curly Top""}, {""languages"":1})" +What is the movie The Mummy rating?,"db.movies.find({""title"":""The Mummy""}, {""rated"":1})" +What is the meter score of the movie Night Must Fall according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Night Must Fall""}, {""tomatoes.viewer.meter"": 1})" +How long is the movie Modern Times in minutes?,"db.movies.find({""title"":""Modern Times""}, {""runtime"":1})" +Which actor has the highest number of appearances in movies directed by Akira Kurosawa?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Akira Kurosawa"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +the director of Scarface was?,"db.movies.find({""title"": ""Scarface""}, {""directors"": 1})" +What is the best-reviewed movie on Rotten Tomatoes that was directed by Louis Malle?,"db.movies.find({""directors"": ""Louis Malle"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +Which cinematic productions were directed by Jacques Rivette?,"db.movies.find({""directors"": ""Jacques Rivette""},{""title"":1})" +What languages are spoken in the movie Ben-Hur: A Tale of the Christ?,"db.movies.find({""title"":""Ben-Hur: A Tale of the Christ""}, {""languages"":1})" +What was the release date for the movie The Count of Monte Cristo?,"db.movies.find({""title"":""The Count of Monte Cristo""}, {""released"":1})" +How many wins did the movie 42nd Street receive?,"db.movies.find({""title"":""42nd Street""}, {""awards.wins"":1})" +What is the plot summary of the movie In the Land of the Head Hunters ?,"db.movies.find({ ""title"": ""In the Land of the Head Hunters"" }, { ""plot"": 1})" +who produced Dracula?,"db.movies.find({""title"":""Dracula""}, {""tomatoes.production"":1})" +who starred in the film The Devil Is a Woman?,"db.movies.find({""title"": ""The Devil Is a Woman""}, {""cast"": 1})" +who is listed as director for Robin Hood?,"db.movies.find({""title"": ""Robin Hood""}, {""directors"": 1})" +who produced the film Camille?,"db.movies.find({""title"":""Camille""}, {""tomatoes.production"":1})" +which person wrote The Count of Monte Cristo?,"db.movies.find({""title"": ""The Count of Monte Cristo""}, {""writers"": 1})" +who was the writer of the movie The Cheat?,"db.movies.find({""title"": ""The Cheat""}, {""writers"": 1})" +What is the number of films that Roberto Rossellini has directed?,"db.movies.countDocuments({""directors"":""Roberto Rossellini""})" +what was the genre of the film Sisters of the Gion?,"db.movies.find({""title"": ""Sisters of the Gion""}, {""genres"": 1})" +How many reviews have been submitted for the movie Hallelujah on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Hallelujah"" },{ ""tomatoes.viewer.numReviews"": 1 })" +how many awards did the film This Is My Affair win?,"db.movies.find({""title"":""This Is My Affair""}, {""awards.wins"":1})" +Can you provide more information about the IMDb rating for the movie City Streets ?,"db.movies.find({""title"":""City Streets""}, {""imdb"":1})" +Can you tell me which films were helmed by David Lynch?,"db.movies.find({""directors"": ""David Lynch""},{""title"":1})" +Was the movie Wings well received by audiences?,"db.movies.find({""title"":""Wings""}, {""tomatoes.viewer"":1})" +who was the writer of the film Dr. Jekyll and Mr. Hyde?,"db.movies.find({""title"": ""Dr. Jekyll and Mr. Hyde""}, {""writers"": 1})" +who are the actors in the film The Emperor Jones?,"db.movies.find({""title"": ""The Emperor Jones""}, {""cast"": 1})" +the movie In Old Arizona starred which actors?,"db.movies.find({""title"": ""In Old Arizona""}, {""cast"": 1})" +which company produced the movie Secret Agent?,"db.movies.find({""title"":""Secret Agent""}, {""tomatoes.production"":1})" +What is the production company behind the movie Nanook of the North ?,"db.movies.find({""title"": ""Nanook of the North""}, { ""tomatoes.production"": 1})" +What is the MPAA rating of the film M?,"db.movies.find({""title"":""M""}, {""rated"":1})" +the movie Three Smart Girls was directed by who?,"db.movies.find({""title"": ""Three Smart Girls""}, {""directors"": 1})" +A Midsummer Night's Dream is a movie written by this person?,"db.movies.find({""title"": ""A Midsummer Night's Dream""}, {""writers"": 1})" +Who are the main actors/actresses in the movie The Big Parade?,"db.movies.find({""title"":""The Big Parade""}, {""cast"":1})" +What is the box office revenue of the movie The Guardsman ?,"db.movies.find({""title"": ""The Guardsman""}, { ""tomatoes.boxOffice"": 1})" +who wrote the screenplay for the film Night Must Fall?,"db.movies.aggregate([ { ""$match"": { ""title"":""Night Must Fall""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +How many reviews have been submitted for the movie The New Gulliver on Rotten Tomatoes?,"db.movies.find({ ""title"": ""The New Gulliver"" },{ ""tomatoes.viewer.numReviews"": 1 })" +What is the MPAA rating of the movie The Last Command?,"db.movies.find({""title"":""The Last Command""}, {""rated"":1})" +What type of movie is The Black Cat ?,"db.movies.find({""title"":""The Black Cat""}, {""genres"":1})" +who is the director of Alice Adams?,"db.movies.find({""title"": ""Alice Adams""}, {""directors"": 1})" +What is the production company of Go West?,"db.movies.find({""title"":""Go West""}, {""tomatoes.production"":1})" +what is the full plot for the movie David Copperfield?,"db.movies.find({""title"": ""David Copperfield""}, {""fullplot"": 1})" +What are the highest-rated Thriller movies in the database?,"db.movies.find({""genres"": ""Thriller""}).sort({""imdb.rating"": -1}).limit(10)" +who's the director of The Last Command?,"db.movies.find({""title"": ""The Last Command""}, {""directors"": 1})" +What are the names of all the actors who starred in the movie 'Under the Roofs of Paris'?,"db.movies.find({""title"": ""Under the Roofs of Paris""}, {""cast"": 1})" +who acted in the film I Am a Fugitive from a Chain Gang?,"db.movies.find({""title"": ""I Am a Fugitive from a Chain Gang""}, {""cast"": 1})" +The Wedding March was directed by who?,"db.movies.find({""title"": ""The Wedding March""}, {""directors"": 1})" +Who are the starring actors/actresses in the movie The Four Horsemen of the Apocalypse?,"db.movies.find({""title"":""The Four Horsemen of the Apocalypse""}, {""cast"":1})" +who stars in the movie Hallelujah?,"db.movies.find({""title"": ""Hallelujah""}, {""cast"": 1})" +who stars in Mutiny on the Bounty?,"db.movies.find({""title"": ""Mutiny on the Bounty""}, {""cast"": 1})" +How did the audience and critics receive the film Dishonored?,"db.movies.find({""title"":""Dishonored""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what is Dekigokoro about?,"db.movies.find({""title"": ""Dekigokoro""}, {""plot"": 1})" +What is the running time of the movie The Last of the Mohicans?,"db.movies.find({""title"":""The Last of the Mohicans""}, {""runtime"":1})" +Which actor has the greatest number of roles in Ridley Scott's directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Ridley Scott"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +who is the author of The Saphead?,"db.movies.find({""title"": ""The Saphead""}, {""writers"": 1})" +The Mummy is a film written by this person?,"db.movies.find({""title"": ""The Mummy""}, {""writers"": 1})" +Can you provide a detailed summary of the movie Carnival in Flanders plot?,"db.movies.find({ ""title"": ""Carnival in Flanders"" }, { ""fullplot"": 1})" +In what year was the movie The Crusades released ?,"db.movies.find({ ""title"": ""The Crusades"" }, { ""year"": 1})" +who wrote the screenplay for The Song of Night?,"db.movies.aggregate([ { ""$match"": { ""title"":""The Song of Night""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +I'm curious about the films that were directed by Ingmar Bergman. Can you name them?,"db.movies.find({""directors"": ""Ingmar Bergman""},{""title"":1})" +What is the runtime and rating for the movie 'Disraeli'?,"db.movies.find({""title"": ""Disraeli""}, {""runtime"": 1, ""rated"": 1})" +who acted in the movie Three Ages?,"db.movies.find({""title"": ""Three Ages""}, {""cast"": 1})" +How many audience reviews have been submitted for the movie Little Caesar?,"db.movies.find({ ""title"": ""Little Caesar"" }, { ""tomatoes.viewer.numReviews"": 1 })" +What is the title of the movie with the longest duration that Francois Truffaut directed?,"db.movies.find({""directors"":""Francois Truffaut""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +A Free Soul was directed by who?,"db.movies.find({""title"": ""A Free Soul""}, {""directors"": 1})" +who is the writer of the film Asphalt?,"db.movies.find({""title"": ""Asphalt""}, {""writers"": 1})" +What type of movie is The Wedding March ?,"db.movies.find({""title"":""The Wedding March""}, {""genres"":1})" +what genre of film is Der Kaiser von Kalifornien?,"db.movies.find({""title"": ""Der Kaiser von Kalifornien""}, {""genres"": 1})" +Who are the writers of the movie The Four Horsemen of the Apocalypse ?,"db.movies.find({""title"": ""The Four Horsemen of the Apocalypse""}, { ""writers"": 1})" +What is the runtime of the movie The Blue Bird ?,"db.movies.find({""title"": ""The Blue Bird""}, { ""runtime"": 1})" +How did the audience and critics receive State Fair?,"db.movies.find({""title"":""State Fair""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What are the genres associated with the movie Metropolis ?,"db.movies.find({ ""title"": ""Metropolis"" }, { ""genres"": 1})" +Was the movie The Black Pirate well received by audiences?,"db.movies.find({""title"":""The Black Pirate""}, {""tomatoes.viewer"":1})" +How long is the movie Love Me Tonight in minutes?,"db.movies.find({""title"":""Love Me Tonight""}, {""runtime"":1})" +What is the production company behind the movie Bad Girl ?,"db.movies.find({""title"": ""Bad Girl""}, { ""tomatoes.production"": 1})" +Who are the main actors/actresses in the movie David Golder?,"db.movies.find({""title"":""David Golder""}, {""cast"":1})" +who produced the movie Swedenhielms Family?,"db.movies.find({""title"":""Swedenhielms Family""}, {""tomatoes.production"":1})" +how many awards did the movie The Hurricane win?,"db.movies.find({""title"":""The Hurricane""}, {""awards.wins"":1})" +what is the full plot for the film Anthony Adverse?,"db.movies.find({""title"": ""Anthony Adverse""}, {""fullplot"": 1})" +How did the audience and critics receive the film The Devil Is a Woman?,"db.movies.find({""title"":""The Devil Is a Woman""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what is the full plot for the film Smilin' Through?,"db.movies.find({""title"": ""Smilin' Through""}, {""fullplot"": 1})" +what year was the movie Lonesome released?,"db.movies.find({""title"": ""Lonesome""}, {""year"": 1})" +who produced the film The Last of the Mohicans?,"db.movies.find({""title"":""The Last of the Mohicans""}, {""tomatoes.production"":1})" +who directed the film Romeo and Juliet?,"db.movies.find({""title"": ""Romeo and Juliet""}, {""directors"": 1})" +what was the release date of The Gay Divorcee?,"db.movies.find({""title"": ""The Gay Divorcee""}, {""released"": 1})" +can you describe the plot of The Count of Monte Cristo?,"db.movies.find({""title"": ""The Count of Monte Cristo""}, {""plot"": 1})" +A Corner in Wheat is a film written by this person?,"db.movies.find({""title"": ""A Corner in Wheat""}, {""writers"": 1})" +In what language was the movie Gertie the Dinosaur released?,"db.movies.find({ ""title"": ""Gertie the Dinosaur"" }, { ""languages"": 1})" +what is the plot for the film Kid Galahad?,"db.movies.find({""title"": ""Kid Galahad""}, {""plot"": 1})" +How many comments have been posted by users on the movie Payment Deferred's page on the Mflix platform?,"db.movies.find({ ""title"": ""Payment Deferred"" }, { ""num_mflix_comments"": 1 })" +the director of Cavalcade was?,"db.movies.find({""title"": ""Cavalcade""}, {""directors"": 1})" +What is the MongoDB document ID of the movie Triumph of the Will?,"db.movies.find({""title"": ""Triumph of the Will""}, {""_id"": 1})" +what sort of film is The Red Head?,"db.movies.find({""title"": ""The Red Head""}, {""genres"": 1})" +What languages are spoken in the movie They Won't Forget?,"db.movies.find({""title"":""They Won't Forget""}, {""languages"":1})" +who was the movie Dodsworth written by?,"db.movies.find({""title"": ""Dodsworth""}, {""writers"": 1})" +"Laugh, Clown, Laugh is a film written by this person?","db.movies.find({""title"": ""Laugh, Clown, Laugh""}, {""writers"": 1})" +"the film Top Hat, was written by who?","db.movies.find({""title"": ""Top Hat""}, {""writers"": 1})" +what kind of movie is L'opèra de quat'sous?,"db.movies.find({""title"": ""L'opèra de quat'sous""}, {""genres"": 1})" +What is the rating of the movie Chapayev on IMDb?,"db.movies.find({""title"":""Chapayev""}, {""imdb.rating"":1})" +Queen Kelly is written by this person?,"db.movies.find({""title"": ""Queen Kelly""}, {""writers"": 1})" +What is the IMDb rating for the film Black Legion?,"db.movies.find({""title"": ""Black Legion""}, {""imdb.rating"": 1})" +What is the percentage of positive reviews among critics for the movie White Shadows ?,"db.movies.find({ ""title"": ""White Shadows"" },{ ""tomatoes.critic.meter"": 1 })" +What are the names of all the actors who starred in the movie 'Four Sons'?,"db.movies.find({""title"": ""Four Sons""}, {""cast"": 1})" +what is the movie Le grand jeu imdb rating?,"db.movies.find({""title"": ""Le grand jeu""}, {""imdb.rating"": 1})" +What is the full plot summary of the movie The Prince and the Pauper ?,"db.movies.find({""title"": ""The Prince and the Pauper""}, {""plot"": 1})" +How many movies were directed by Francis Ford Coppola?,"db.movies.countDocuments({""directors"":""Francis Ford Coppola""})" +what genre of film is A Story of Floating Weeds?,"db.movies.find({""title"": ""A Story of Floating Weeds""}, {""genres"": 1})" +Can you provide more information about the Rotten Tomatoes rating for the movie Robin Hood?,"db.movies.find({""title"": ""Robin Hood""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +what is the movie The New Gulliver about in details?,"db.movies.find({""title"": ""The New Gulliver""}, {""fullplot"": 1})" +What is the imdbID and year of release for the movie with a title of 'The Hunchback of Notre Dame'?,"db.movies.find({""title"": ""The Hunchback of Notre Dame""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +Can you provide more information about the languages spoken in the movie Curly Top ?,"db.movies.find({""title"":""Curly Top""}, {""languages"":1})" +What languages are spoken in the movie Regeneration?,"db.movies.find({""title"":""Regeneration""}, {""languages"":1})" +what genre is The Gilded Lily?,"db.movies.find({""title"": ""The Gilded Lily""}, {""genres"": 1})" +What are the genres this movie The Big House belongs to?,"db.movies.find({""title"":""The Big House""}, {""genres"":1})" +What is the production company of the film The Chechahcos?,"db.movies.find({""title"":""The Chechahcos""}, {""tomatoes.production"":1})" +which company produced the movie M?,"db.movies.find({""title"":""M""}, {""tomatoes.production"":1})" +How long is the movie Within Our Gates in minutes?,"db.movies.find({""title"":""Within Our Gates""}, {""runtime"":1})" +Was the movie The Navigator well received by audiences and critics?,"db.movies.find({""title"":""The Navigator""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +who wrote the screenplay for the movie Cimarron?,"db.movies.aggregate([ { ""$match"": { ""title"":""Cimarron""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +what was the genre of City Lights?,"db.movies.find({""title"": ""City Lights""}, {""genres"": 1})" +"the movie The Hunchback of Notre Dame, was written by who?","db.movies.find({""title"": ""The Hunchback of Notre Dame""}, {""writers"": 1})" +What is the IMDb rating for the movie The Story of a Cheat?,"db.movies.find({""title"": ""The Story of a Cheat""}, {""imdb.rating"": 1})" +How many nominations did the movie Broken Blossoms or The Yellow Man and the Girl receive?,"db.movies.find({""title"":""Broken Blossoms or The Yellow Man and the Girl""}, {""awards.nominations"":1})" +How did the audience and critics receive the movie The Son of the Sheik?,"db.movies.find({""title"":""The Son of the Sheik""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +Can you provide more information about the languages spoken in the movie The Hunchback of Notre Dame ?,"db.movies.find({""title"":""The Hunchback of Notre Dame""}, {""languages"":1})" +what is the genre of The Black Pirate?,"db.movies.find({""title"": ""The Black Pirate""}, {""genres"": 1})" +Which Woody Allen-directed movie has the highest score on Rotten Tomatoes?,"db.movies.find({""directors"": ""Woody Allen"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +What is the Rotten Tomatoes meter rating for the movie David Golder ?,"db.movies.find({""title"":""David Golder""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +what is Dames about?,"db.movies.find({""title"": ""Dames""}, {""plot"": 1})" +Which cinematic productions were directed by Orson Welles?,"db.movies.find({""directors"": ""Orson Welles""},{""title"":1})" +can you describe the plot of A Free Soul?,"db.movies.find({""title"": ""A Free Soul""}, {""plot"": 1})" +What is the plot summary of the movie Anna Karenina ?,"db.movies.find({ ""title"": ""Anna Karenina"" }, { ""plot"": 1})" +Who are the starring actors/actresses in the movie Black Legion?,"db.movies.find({""title"":""Black Legion""}, {""cast"":1})" +which company produced the film Wild Boys of the Road?,"db.movies.find({""title"":""Wild Boys of the Road""}, {""tomatoes.production"":1})" +Can you provide more information about the IMDb rating for the movie The Barretts of Wimpole Street ?,"db.movies.find({""title"":""The Barretts of Wimpole Street""}, {""imdb"":1})" +What is the box office revenue of the movie The General ?,"db.movies.find({""title"": ""The General""}, { ""tomatoes.boxOffice"": 1})" +What is the production company of The Good Earth?,"db.movies.find({""title"":""The Good Earth""}, {""tomatoes.production"":1})" +What is the language of the film Eskimo?,"db.movies.find({""title"":""Eskimo""}, {""languages"":1})" +Who is the lead actor of the movie Theodora Goes Wild ?,"db.movies.find({""title"": ""Theodora Goes Wild""}, {""cast"":{""$slice"": 1},""title"":1})" +What is the meter score of the movie Bride of Frankenstein according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Bride of Frankenstein""}, {""tomatoes.viewer.meter"": 1})" +How many audience reviews have been submitted for the movie Scrooge ?,"db.movies.find({ ""title"": ""Scrooge"" },{ ""tomatoes.viewer.numReviews"": 1 })" +What is the MongoDB document ID of the movie Berkeley Square?,"db.movies.find({""title"": ""Berkeley Square""}, {""_id"": 1})" +What is the movie Mary of Scotland about? Can you provide a brief summary?,"db.movies.find({""title"":""Mary of Scotland""}, {""plot"":1})" +Which movies from the 1990s were directed by Jean-Pierre Melville?,"db.movies.find({""directors"": 'Jean-Pierre Melville', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +What is the MPAA rating of the movie Tarzan the Ape Man?,"db.movies.find({""title"":""Tarzan the Ape Man""}, {""rated"":1})" +Can you tell me which films were helmed by Vittorio De Sica?,"db.movies.find({""directors"": ""Vittorio De Sica""},{""title"":1})" +who wrote the screenplay for the film Mèdchen in Uniform?,"db.movies.aggregate([ { ""$match"": { ""title"":""Mèdchen in Uniform""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +what genre is the film The Freshman?,"db.movies.find({""title"": ""The Freshman""}, {""genres"": 1})" +What is the runtime and rating for the movie 'Trouble in Paradise'?,"db.movies.find({""title"": ""Trouble in Paradise""}, {""runtime"": 1, ""rated"": 1})" +What is the IMDb rating for the film Ella Cinders?,"db.movies.find({""title"": ""Ella Cinders""}, {""imdb.rating"": 1})" +who wrote the screenplay for the movie The Land Beyond the Sunset?,"db.movies.aggregate([ { ""$match"": { ""title"":""The Land Beyond the Sunset""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +What is the MongoDB document ID of the movie The Music Box?,"db.movies.find({""title"": ""The Music Box""}, {""_id"": 1})" +Which movies did James Cameron direct?,"db.movies.find({""directors"": ""James Cameron""},{""title"":1})" +How many votes did the movie Forbidden receive on IMDB?,"db.movies.find({""title"": ""Forbidden""}, { ""imdb.votes"": 1})" +how many awards did the film Moscow Laughs win?,"db.movies.find({""title"":""Moscow Laughs""}, {""awards.wins"":1})" +what is the movie The Last Command description ?,"db.movies.find({""title"": ""The Last Command""}, {""plot"": 1})" +who are the actors in the movie White Shadows?,"db.movies.find({""title"": ""White Shadows""}, {""cast"": 1})" +what is Shall We Dance imdb rating?,"db.movies.find({""title"": ""Shall We Dance""}, {""imdb.rating"": 1})" +What is the production company of Clash of the Wolves?,"db.movies.find({""title"":""Clash of the Wolves""}, {""tomatoes.production"":1})" +who wrote Where Are My Children??,"db.movies.find({""title"": ""Where Are My Children?""}, {""writers"": 1})" +which company produced the movie Little Women?,"db.movies.find({""title"":""Little Women""}, {""tomatoes.production"":1})" +the movie The Good Earth starred who?,"db.movies.find({""title"": ""The Good Earth""}, {""cast"": 1})" +who stars in the movie Wings?,"db.movies.find({""title"": ""Wings""}, {""cast"": 1})" +What is the text description of the movie The Poor Little Rich Girl awards?,"db.movies.find({""title"":""The Poor Little Rich Girl""}, {""awards.text"":1})" +what is the genre for the movie Cimarron?,"db.movies.find({""title"": ""Cimarron""}, {""genres"": 1})" +What is the consensus among critics about the movie Two Seconds ?,"db.movies.find({""title"": ""Two Seconds""}, {""tomatoes.consensus"": 1})" +what is The Lost Patrol description?,"db.movies.find({""title"": ""The Lost Patrol""}, {""plot"": 1})" +"Among all the actors who have appeared in Jean-Luc Godard's movies, who has appeared the most times?","db.movies.aggregate([ { ""$match"": { ""directors"": ""Jean-Luc Godard"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +what was the release year of the film One Night of Love?,"db.movies.find({""title"": ""One Night of Love""}, {""year"": 1})" +what sort of film is The Immigrant?,"db.movies.find({""title"": ""The Immigrant""}, {""genres"": 1})" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie Peter Pan ?,"db.movies.find({""title"":""Peter Pan""}, {""tomatoes.viewer.meter"":1})" +What are the genres associated with the movie The Devil Is a Woman ?,"db.movies.find({ ""title"": ""The Devil Is a Woman"" }, { ""genres"": 1})" +what was the genre of Blacksmith Scene?,"db.movies.find({""title"": ""Blacksmith Scene""}, {""genres"": 1})" +the film Shall We Dance was directed by who?,"db.movies.find({""title"": ""Shall We Dance""}, {""directors"": 1})" +what is the film Duck Soup description ?,"db.movies.find({""title"": ""Duck Soup""}, {""plot"": 1})" +What is the imdbID and genre of the movie 'The Blood of a Poet'?,"db.movies.find({""title"": ""The Blood of a Poet""}, {""imdb.id"": 1, ""genres"": 1, ""_id"": 0})" +"what genre is the movie Laugh, Clown, Laugh?","db.movies.find({""title"": ""Laugh, Clown, Laugh""}, {""genres"": 1})" +who directed the film The Private Life of Don Juan?,"db.movies.find({""title"": ""The Private Life of Don Juan""}, {""directors"": 1})" +How did the audience and critics receive the film The Big House?,"db.movies.find({""title"":""The Big House""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the IMDb ID for the movie White Shadows?,"db.movies.find({""title"":""White Shadows""}, {""imdb.id"":1})" +What is the MPAA rating of A Midsummer Night's Dream?,"db.movies.find({""title"":""A Midsummer Night's Dream""}, {""rated"":1})" +What is the IMDb rating for the movie Pèpè le Moko?,"db.movies.find({""title"": ""Pèpè le Moko""}, {""imdb.rating"": 1})" +which person wrote the movie Chapayev?,"db.movies.find({""title"": ""Chapayev""}, {""writers"": 1})" +What is the language of the movie Anna Karenina?,"db.movies.find({""title"":""Anna Karenina""}, {""languages"":1})" +what is the full plot for Battleship Potemkin?,"db.movies.find({""title"": ""Battleship Potemkin""}, {""fullplot"": 1})" +What is the text description of the movie Grand Hotel awards?,"db.movies.find({""title"":""Grand Hotel""}, {""awards.text"":1})" +What is the rating of the movie Intolerance: Love's Struggle Throughout the Ages on IMDb?,"db.movies.find({""title"":""Intolerance: Love's Struggle Throughout the Ages""}, {""imdb.rating"":1})" +what was the release year of the movie The Poor Little Rich Girl?,"db.movies.find({""title"": ""The Poor Little Rich Girl""}, {""year"": 1})" +what is Man of Aran description?,"db.movies.find({""title"": ""Man of Aran""}, {""plot"": 1})" +who was the writer of Freaks?,"db.movies.find({""title"": ""Freaks""}, {""writers"": 1})" +"Has the film Chapayev won any awards? If so, which ones?","db.movies.find({""title"":""Chapayev"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What type of movie is Battling Butler ?,"db.movies.find({""title"":""Battling Butler""}, {""genres"":1})" +who stars in The Last Command?,"db.movies.find({""title"": ""The Last Command""}, {""cast"": 1})" +the film Maria Chapdelaine was directed by who?,"db.movies.find({""title"": ""Maria Chapdelaine""}, {""directors"": 1})" +who are the actors in The Beloved Vagabond?,"db.movies.find({""title"": ""The Beloved Vagabond""}, {""cast"": 1})" +what was the release date of the film Seven Chances?,"db.movies.find({""title"": ""Seven Chances""}, {""released"": 1})" +who wrote the movie Mr. Deeds Goes to Town?,"db.movies.find({""title"": ""Mr. Deeds Goes to Town""}, {""writers"": 1})" +What is the runtime of the movie The Gold Rush ?,"db.movies.find({""title"": ""The Gold Rush""}, { ""runtime"": 1})" +What is the meter score of the movie Dr. Jekyll and Mr. Hyde according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Dr. Jekyll and Mr. Hyde""}, {""tomatoes.viewer.meter"": 1})" +How did the audience and critics receive Seven Chances?,"db.movies.find({""title"":""Seven Chances""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +who was The Last of the Mohicans directed by?,"db.movies.find({""title"": ""The Last of the Mohicans""}, {""directors"": 1})" +When was the information last updated for the movie Les Misèrables ?,"db.movies.find({ ""title"": ""Les Misèrables"" },{ ""lastupdated"": 1 })" +"the film For Heaven's Sake, was written by who?","db.movies.find({""title"": ""For Heaven's Sake""}, {""writers"": 1})" +What is the highest-ranking Alfred Hitchcock-directed film on Rotten Tomatoes?,"db.movies.find({""directors"": ""Alfred Hitchcock"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +"what type of movie is Laugh, Clown, Laugh?","db.movies.find({""title"": ""Laugh, Clown, Laugh""}, {""genres"": 1})" +How many viewer reviews did the movie The Front Page receive on Rotten Tomatoes?,"db.movies.find({""title"":""The Front Page""}, {""tomatoes.viewer.numReviews"":1})" +Can you give me a brief summary of the movie The Saphead plot?,"db.movies.find({""title"":""The Saphead""}, {""plot"":1})" +what is the plot for the movie The Invisible Ray?,"db.movies.find({""title"": ""The Invisible Ray""}, {""plot"": 1})" +who is the director that directed Metropolis?,"db.movies.find({""title"": ""Metropolis""}, {""directors"": 1})" +What languages are spoken in the movie The General?,"db.movies.find({""title"":""The General""}, {""languages"":1})" +Can you give me a brief summary of the movie Dracula plot?,"db.movies.find({""title"":""Dracula""}, {""plot"":1})" +what year was Zoo in Budapest released?,"db.movies.find({""title"": ""Zoo in Budapest""}, {""year"": 1})" +which company produced the film Pèpè le Moko?,"db.movies.find({""title"":""Pèpè le Moko""}, {""tomatoes.production"":1})" +What is the running time of High and Dizzy?,"db.movies.find({""title"":""High and Dizzy""}, {""runtime"":1})" +what is the full plot for Naughty Marietta?,"db.movies.find({""title"": ""Naughty Marietta""}, {""fullplot"": 1})" +When was the information about the movie The Gay Divorcee last updated?,"db.movies.find({ ""title"": ""The Gay Divorcee"" }, { ""lastupdated"": 1})" +who are the actors in the film Night Must Fall?,"db.movies.find({""title"": ""Night Must Fall""}, {""cast"": 1})" +Can you give me a brief summary of the movie The Big House plot?,"db.movies.find({""title"":""The Big House""}, {""plot"":1})" +How did the audience and critics receive The Son of Kong?,"db.movies.find({""title"":""The Son of Kong""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +who acted in the film It's a Gift?,"db.movies.find({""title"": ""It's a Gift""}, {""cast"": 1})" +What is the production company of Snow White and the Seven Dwarfs?,"db.movies.find({""title"":""Snow White and the Seven Dwarfs""}, {""tomatoes.production"":1})" +"the movie The Cheat, was written by who?","db.movies.find({""title"": ""The Cheat""}, {""writers"": 1})" +which person wrote the movie Smilin' Through?,"db.movies.find({""title"": ""Smilin' Through""}, {""writers"": 1})" +How many votes did the movie Wild Boys of the Road receive on IMDB?,"db.movies.find({""title"": ""Wild Boys of the Road""}, { ""imdb.votes"": 1})" +What is the runtime of the movie The Scarlet Empress ?,"db.movies.find({""title"": ""The Scarlet Empress""}, { ""runtime"": 1})" +What is the most common genre of movies that Martin Scorsese directs?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Martin Scorsese"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +what sort of movie is Der Kaiser von Kalifornien?,"db.movies.find({""title"": ""Der Kaiser von Kalifornien""}, {""genres"": 1})" +Which actor has the most frequent appearances in Yasujiro Ozu's directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Yasujiro Ozu"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What is the running time of The Docks of New York?,"db.movies.find({""title"":""The Docks of New York""}, {""runtime"":1})" +what type of film is The Garden of Allah?,"db.movies.find({""title"": ""The Garden of Allah""}, {""genres"": 1})" +what was the release year of the film The Pearls of the Crown?,"db.movies.find({""title"": ""The Pearls of the Crown""}, {""year"": 1})" +who stars in the film Storm Over Asia?,"db.movies.find({""title"": ""Storm Over Asia""}, {""cast"": 1})" +What is the IMDb rating for the movie The Thin Man ?,"db.movies.find({""title"":""The Thin Man""}, {""imdb.rating"":1})" +How many viewer reviews did the movie Sherlock Jr. receive on Rotten Tomatoes?,"db.movies.find({""title"":""Sherlock Jr.""}, {""tomatoes.viewer.numReviews"":1})" +who is the writer of the movie Fury?,"db.movies.find({""title"": ""Fury""}, {""writers"": 1})" +who produced the film Street Angel?,"db.movies.find({""title"":""Street Angel""}, {""tomatoes.production"":1})" +the movie Shanghai Express starred who?,"db.movies.find({""title"": ""Shanghai Express""}, {""cast"": 1})" +What is the MPAA rating of Broken Blossoms or The Yellow Man and the Girl?,"db.movies.find({""title"":""Broken Blossoms or The Yellow Man and the Girl""}, {""rated"":1})" +what was the release date of the film The Phantom of the Opera?,"db.movies.find({""title"": ""The Phantom of the Opera""}, {""released"": 1})" +What is the Metacritic score of the movie Man of Aran ?,"db.movies.find({ ""title"": ""Man of Aran"" }, { ""metacritic"": 1})" +who starred in the movie Disraeli?,"db.movies.find({""title"": ""Disraeli""}, {""cast"": 1})" +Which of Francis Ford Coppola's directed films has the lengthiest duration?,"db.movies.find({""directors"":""Francis Ford Coppola""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +Can you provide more information about the IMDb rating for the movie Shall We Dance ?,"db.movies.find({""title"":""Shall We Dance""}, {""imdb"":1})" +Can you give me a brief summary of the movie Trouble in Paradise plot?,"db.movies.find({""title"":""Trouble in Paradise""}, {""plot"":1})" +who is listed as director for Romeo and Juliet?,"db.movies.find({""title"": ""Romeo and Juliet""}, {""directors"": 1})" +"the film Battling Butler, was written by who?","db.movies.find({""title"": ""Battling Butler""}, {""writers"": 1})" +who is the director for Red Dust?,"db.movies.find({""title"": ""Red Dust""}, {""directors"": 1})" +What is the production company of Les Misèrables?,"db.movies.find({""title"":""Les Misèrables""}, {""tomatoes.production"":1})" +who starred in the film The Scarlet Empress?,"db.movies.find({""title"": ""The Scarlet Empress""}, {""cast"": 1})" +who wrote the screenplay for the film Bad Girl?,"db.movies.aggregate([ { ""$match"": { ""title"":""Bad Girl""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +What is the Tomatometer score of the movie The Wind ?,"db.movies.find({ ""title"": ""The Wind"" },{ ""tomatoes.critic.meter"": 1 })" +What is the IMDb ID for the movie One Night of Love?,"db.movies.find({""title"":""One Night of Love""}, {""imdb.id"":1})" +what genre is the movie Murders in the Rue Morgue?,"db.movies.find({""title"": ""Murders in the Rue Morgue""}, {""genres"": 1})" +which person wrote the film Zoo in Budapest?,"db.movies.find({""title"": ""Zoo in Budapest""}, {""writers"": 1})" +Can you provide more information about the Rotten Tomatoes rating for the movie The Spanish Earth?,"db.movies.find({""title"": ""The Spanish Earth""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +What is the production company of the movie Man of Aran?,"db.movies.find({""title"":""Man of Aran""}, {""tomatoes.production"":1})" +who directed A Farewell to Arms?,"db.movies.find({""title"": ""A Farewell to Arms""}, {""directors"": 1})" +From Hand to Mouth is written by this person?,"db.movies.find({""title"": ""From Hand to Mouth""}, {""writers"": 1})" +who are the actors in the film Tabu: A Story of the South Seas?,"db.movies.find({""title"": ""Tabu: A Story of the South Seas""}, {""cast"": 1})" +what was the release year of the film Harvest?,"db.movies.find({""title"": ""Harvest""}, {""year"": 1})" +What is the plot summary of the movie The Beloved Vagabond ?,"db.movies.find({ ""title"": ""The Beloved Vagabond"" }, { ""plot"": 1})" +What type of media is Tol'able David?,"db.movies.find({ ""title"": ""Tol'able David"" }, { ""type"": 1})" +who is the writer of Becky Sharp?,"db.movies.find({""title"": ""Becky Sharp""}, {""writers"": 1})" +what kind of movie is The Prisoner of Shark Island?,"db.movies.find({""title"": ""The Prisoner of Shark Island""}, {""genres"": 1})" +How did the audience and critics receive the movie Twentieth Century?,"db.movies.find({""title"":""Twentieth Century""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +who acted in the movie Little Caesar?,"db.movies.find({""title"": ""Little Caesar""}, {""cast"": 1})" +what is the plot for the movie The Emperor Jones?,"db.movies.find({""title"": ""The Emperor Jones""}, {""plot"": 1})" +How did the audience and critics receive the movie The Mummy?,"db.movies.find({""title"":""The Mummy""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the running time of the film My Man Godfrey?,"db.movies.find({""title"":""My Man Godfrey""}, {""runtime"":1})" +What is the name of the director and cast for the movie 'Naughty Marietta'?,"db.movies.find({""title"": ""Naughty Marietta""}, {""directors"": 1, ""cast"": 1, ""_id"": 0})" +What is the running time of the film The Red Head?,"db.movies.find({""title"":""The Red Head""}, {""runtime"":1})" +What is the language of The Private Life of Henry VIII.?,"db.movies.find({""title"":""The Private Life of Henry VIII.""}, {""languages"":1})" +How did the audience and critics receive the movie Battleship Potemkin?,"db.movies.find({""title"":""Battleship Potemkin""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +"The Gay Divorcee, is written by who?","db.movies.find({""title"": ""The Gay Divorcee""}, {""writers"": 1})" +What is the IMDb rating for the movie Eskimo?,"db.movies.find({""title"": ""Eskimo""}, {""imdb.rating"": 1})" +who wrote the screenplay for It Happened One Night?,"db.movies.aggregate([ { ""$match"": { ""title"":""It Happened One Night""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +who is the writer of Grass: A Nation's Battle for Life?,"db.movies.find({""title"": ""Grass: A Nation's Battle for Life""}, {""writers"": 1})" +what is the full plot for the movie Mr. Deeds Goes to Town?,"db.movies.find({""title"": ""Mr. Deeds Goes to Town""}, {""fullplot"": 1})" +who stars in the film Three Smart Girls?,"db.movies.find({""title"": ""Three Smart Girls""}, {""cast"": 1})" +what sort of film is Viva Villa!?,"db.movies.find({""title"": ""Viva Villa!""}, {""genres"": 1})" +what was the release date of the movie Greed?,"db.movies.find({""title"": ""Greed""}, {""released"": 1})" +How many nominations did the movie King Solomon's Mines receive?,"db.movies.find({""title"":""King Solomon's Mines""}, {""awards.nominations"":1})" +Can you provide more information about the IMDb rating for the movie Scrooge ?,"db.movies.find({""title"":""Scrooge""}, {""imdb"":1})" +"From Hand to Mouth, is written by who?","db.movies.find({""title"": ""From Hand to Mouth""}, {""writers"": 1})" +who was the movie Anthony Adverse written by?,"db.movies.find({""title"": ""Anthony Adverse""}, {""writers"": 1})" +"the movie Gertie the Dinosaur, was written by who?","db.movies.find({""title"": ""Gertie the Dinosaur""}, {""writers"": 1})" +Who are the actors in the movie Steamboat Willie?,"db.movies.find({""title"":""Steamboat Willie""}, {""cast"":1})" +who is the director of The Unknown?,"db.movies.find({""title"": ""The Unknown""}, {""directors"": 1})" +How many votes does the movie The Story of a Cheat have on IMDb?,"db.movies.find({""title"":""The Story of a Cheat""}, {""imdb.votes"":1})" +who directed The Thin Man?,"db.movies.find({""title"": ""The Thin Man""}, {""directors"": 1})" +who stars in Morocco?,"db.movies.find({""title"": ""Morocco""}, {""cast"": 1})" +who wrote the screenplay for the movie Grass: A Nation's Battle for Life?,"db.movies.aggregate([ { ""$match"": { ""title"":""Grass: A Nation's Battle for Life""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +"Among all the actors who have appeared in Vittorio De Sica's movies, who has appeared the most times?","db.movies.aggregate([ { ""$match"": { ""directors"": ""Vittorio De Sica"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +How many reviews did the movie Beau Geste receive on Rotten Tomatoes?,"db.movies.find({""title"":""Beau Geste""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +What is the running time of the film It Happened One Night?,"db.movies.find({""title"":""It Happened One Night""}, {""runtime"":1})" +who stars in the movie Ben-Hur: A Tale of the Christ?,"db.movies.find({""title"": ""Ben-Hur: A Tale of the Christ""}, {""cast"": 1})" +what is the movie The Pearls of the Crown about?,"db.movies.find({""title"": ""The Pearls of the Crown""}, {""plot"": 1})" +what sort of film is State Fair?,"db.movies.find({""title"": ""State Fair""}, {""genres"": 1})" +What are the names of all the actors who starred in the movie 'Foolish Wives'?,"db.movies.find({""title"": ""Foolish Wives""}, {""cast"": 1})" +What is the production company of the film Folies Bergère de Paris?,"db.movies.find({""title"":""Folies Bergère de Paris""}, {""tomatoes.production"":1})" +What is the percentage of positive reviews among critics for the movie Secret Agent ?,"db.movies.find({ ""title"": ""Secret Agent"" },{ ""tomatoes.critic.meter"": 1 })" +When was the information about the movie The Man Who Could Work Miracles last updated?,"db.movies.find({ ""title"": ""The Man Who Could Work Miracles"" }, { ""lastupdated"": 1})" +who are the actors in Comradeship?,"db.movies.find({""title"": ""Comradeship""}, {""cast"": 1})" +Can you tell me which films were helmed by Quentin Tarantino?,"db.movies.find({""directors"": ""Quentin Tarantino""},{""title"":1})" +What is the running time of the film Storm Over Asia?,"db.movies.find({""title"":""Storm Over Asia""}, {""runtime"":1})" +how many awards did the movie Le grand jeu win?,"db.movies.find({""title"":""Le grand jeu""}, {""awards.wins"":1})" +what year was Gertie the Dinosaur released?,"db.movies.find({""title"": ""Gertie the Dinosaur""}, {""year"": 1})" +What is the text description of the movie The Hunchback of Notre Dame awards?,"db.movies.find({""title"":""The Hunchback of Notre Dame""}, {""awards.text"":1})" +What is the MongoDB document ID of the movie Wild and Woolly?,"db.movies.find({""title"": ""Wild and Woolly""}, {""_id"": 1})" +who produced the movie My Man Godfrey?,"db.movies.find({""title"":""My Man Godfrey""}, {""tomatoes.production"":1})" +Which movies did Clint Eastwood direct?,"db.movies.find({""directors"": ""Clint Eastwood""},{""title"":1})" +what is Sanders of the River about?,"db.movies.find({""title"": ""Sanders of the River""}, {""plot"": 1})" +What is the standard rating of Federico Fellini movies in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Federico Fellini""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +what genre is the movie The Thin Man?,"db.movies.find({""title"": ""The Thin Man""}, {""genres"": 1})" +what is the plot for The Emperor Jones?,"db.movies.find({""title"": ""The Emperor Jones""}, {""plot"": 1})" +what was the genre of The Ghost Goes West?,"db.movies.find({""title"": ""The Ghost Goes West""}, {""genres"": 1})" +what is the plot for the movie Snow White and the Seven Dwarfs?,"db.movies.find({""title"": ""Snow White and the Seven Dwarfs""}, {""plot"": 1})" +What are the countries associated with the movie Tarzan and His Mate ?,"db.movies.find({""title"": ""Tarzan and His Mate""}, {""countries"": 1})" +who starred in Greed?,"db.movies.find({""title"": ""Greed""}, {""cast"": 1})" +what is the genre for the film Les vampires?,"db.movies.find({""title"": ""Les vampires""}, {""genres"": 1})" +In what language was the movie Grand Hotel released?,"db.movies.find({ ""title"": ""Grand Hotel"" }, { ""languages"": 1})" +how many awards did the movie Chapayev win?,"db.movies.find({""title"":""Chapayev""}, {""awards.wins"":1})" +who stars in the film The Pearls of the Crown?,"db.movies.find({""title"": ""The Pearls of the Crown""}, {""cast"": 1})" +who was the writer of the movie The Good Earth?,"db.movies.find({""title"": ""The Good Earth""}, {""writers"": 1})" +What is the cumulative duration of all the films that Andrei Tarkovsky directed?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Andrei Tarkovsky"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +What is the MPAA rating of The Band Concert?,"db.movies.find({""title"":""The Band Concert""}, {""rated"":1})" +What is the IMDb rating for the movie M ?,"db.movies.find({""title"":""M""}, {""imdb.rating"":1})" +who are the actors in the film The Freshman?,"db.movies.find({""title"": ""The Freshman""}, {""cast"": 1})" +who stars in the film The New Gulliver?,"db.movies.find({""title"": ""The New Gulliver""}, {""cast"": 1})" +what type of movie is Death Takes a Holiday?,"db.movies.find({""title"": ""Death Takes a Holiday""}, {""genres"": 1})" +who stars in the movie Going Hollywood?,"db.movies.find({""title"": ""Going Hollywood""}, {""cast"": 1})" +What is the website associated with the movie The Gold Rush on Rotten Tomatoes?,"db.movies.find({""title"": ""The Gold Rush""}, {""tomatoes.website"": 1})" +which person wrote The New Gulliver?,"db.movies.find({""title"": ""The New Gulliver""}, {""writers"": 1})" +How many audience reviews have been submitted for the movie The Chechahcos?,"db.movies.find({ ""title"": ""The Chechahcos"" }, { ""tomatoes.viewer.numReviews"": 1 })" +who directed The Son of Kong?,"db.movies.find({""title"": ""The Son of Kong""}, {""directors"": 1})" +what was the genre of the movie Street Angel?,"db.movies.find({""title"": ""Street Angel""}, {""genres"": 1})" +What is the rating of the movie Where Are My Children? on IMDb?,"db.movies.find({""title"":""Where Are My Children?""}, {""imdb.rating"":1})" +who produced Come and Get It?,"db.movies.find({""title"":""Come and Get It""}, {""tomatoes.production"":1})" +Who are the actors in the movie Asphalt?,"db.movies.find({""title"":""Asphalt""}, {""cast"":1})" +who directed the movie Queen Kelly?,"db.movies.find({""title"": ""Queen Kelly""}, {""directors"": 1})" +What is the IMDb rating for Movie Crazy?,"db.movies.find({""title"": ""Movie Crazy""}, {""imdb.rating"": 1})" +who is listed as director for The Italian?,"db.movies.find({""title"": ""The Italian""}, {""directors"": 1})" +the film The Crowd was directed by who?,"db.movies.find({""title"": ""The Crowd""}, {""directors"": 1})" +What is the rating of the movie The Mummy on IMDb?,"db.movies.find({""title"":""The Mummy""}, {""imdb.rating"":1})" +what sort of movie is Gold Diggers of 1935?,"db.movies.find({""title"": ""Gold Diggers of 1935""}, {""genres"": 1})" +What is the number of films that Alain Resnais has directed?,"db.movies.countDocuments({""directors"":""Alain Resnais""})" +What is the audience rating of the movie Battling Butler ?,"db.movies.find({ ""title"": ""Battling Butler"" },{ ""tomatoes.viewer.rating"": 1 })" +How many votes did the movie Tarzan the Ape Man receive on IMDB?,"db.movies.find({""title"": ""Tarzan the Ape Man""}, { ""imdb.votes"": 1})" +How many award nominations did the movie receive Zoo in Budapest ?,"db.movies.find({ ""title"": ""Zoo in Budapest"" },{ ""awards.nominations"": 1 })" +When was the movie Little Women released?,"db.movies.find({""title"":""Little Women""}, {""released"":1})" +What is the title of the movie with the shortest duration that Akira Kurosawa directed?,"db.movies.find({""directors"":""Akira Kurosawa""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +Can you provide more information about the languages spoken in the movie He Who Gets Slapped ?,"db.movies.find({""title"":""He Who Gets Slapped""}, {""languages"":1})" +who stars in the movie The Emperor Jones?,"db.movies.find({""title"": ""The Emperor Jones""}, {""cast"": 1})" +What is the IMDB rating of the movie A Night at the Opera ?,"db.movies.find({""title"": ""A Night at the Opera""}, { ""imdb.rating"": 1})" +Can you tell me which film genres Yasujiro Ozu has directed?,"db.movies.distinct(""genres"", { ""directors"": ""Yasujiro Ozu"" })" +Can you provide a longer version of the movie A Midsummer Night's Dream plot?,"db.movies.find({""title"":""A Midsummer Night's Dream""}, {""fullplot"":1})" +who was the writer of Steamboat Willie?,"db.movies.find({""title"": ""Steamboat Willie""}, {""writers"": 1})" +When was the movie The Lives of a Bengal Lancer released in theaters?,"db.movies.find({""title"": ""The Lives of a Bengal Lancer""}, {""released"": 1})" +what are the genres directed by Louis Malle?,"db.movies.distinct(""genres"", { ""directors"": ""Louis Malle"" })" +what is the full plot for the movie The Italian?,"db.movies.find({""title"": ""The Italian""}, {""fullplot"": 1})" +What are some of the films that Wes Anderson has directed?,"db.movies.find({""directors"": ""Wes Anderson""},{""title"":1})" +what was the release year of the film All Quiet on the Western Front?,"db.movies.find({""title"": ""All Quiet on the Western Front""}, {""year"": 1})" +who wrote the movie Sisters of the Gion?,"db.movies.find({""title"": ""Sisters of the Gion""}, {""writers"": 1})" +What type of movie is State Fair ?,"db.movies.find({""title"":""State Fair""}, {""genres"":1})" +What is the language of the movie Frankenstein?,"db.movies.find({""title"":""Frankenstein""}, {""languages"":1})" +How long is the movie She in minutes?,"db.movies.find({""title"":""She""}, {""runtime"":1})" +What is the imdbID and genre of the movie 'Romeo and Juliet'?,"db.movies.find({""title"": ""Romeo and Juliet""}, {""imdb.id"": 1, ""genres"": 1, ""_id"": 0})" +what is Marked Woman description?,"db.movies.find({""title"": ""Marked Woman""}, {""plot"": 1})" +"who produced the film Laugh, Clown, Laugh?","db.movies.find({""title"":""Laugh, Clown, Laugh""}, {""tomatoes.production"":1})" +What is the critical reception of the movie Wings?,"db.movies.find({""title"":""Wings""}, {""tomatoes.critic"":1})" +What is the name of the director and cast for the movie 'Flash Gordon'?,"db.movies.find({""title"": ""Flash Gordon""}, {""directors"": 1, ""cast"": 1, ""_id"": 0})" +What is the average rating for all of Roman Polanski's films in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Roman Polanski""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +what kind of film is Dodsworth?,"db.movies.find({""title"": ""Dodsworth""}, {""genres"": 1})" +who is the writer of the film Westfront 1918?,"db.movies.find({""title"": ""Westfront 1918""}, {""writers"": 1})" +who acted in the film The Black Pirate?,"db.movies.find({""title"": ""The Black Pirate""}, {""cast"": 1})" +In what year was the movie A Story of Floating Weeds released?,"db.movies.find({""title"":""A Story of Floating Weeds""}, {""year"":1})" +What is the runtime and rating for the movie 'Nosferatu'?,"db.movies.find({""title"": ""Nosferatu""}, {""runtime"": 1, ""rated"": 1})" +How many nominations did the movie Folies Bergère de Paris receive?,"db.movies.find({""title"":""Folies Bergère de Paris""}, {""awards.nominations"":1})" +What is the IMDb ID for the movie Man with a Movie Camera?,"db.movies.find({""title"":""Man with a Movie Camera""}, {""imdb.id"":1})" +who are the actors in the film The Kid?,"db.movies.find({""title"": ""The Kid""}, {""cast"": 1})" +who is the director that directed The Wedding March?,"db.movies.find({""title"": ""The Wedding March""}, {""directors"": 1})" +What is the Tomatometer score of the movie The Band Concert ?,"db.movies.find({ ""title"": ""The Band Concert"" },{ ""tomatoes.critic.meter"": 1 })" +What is the rating of the movie Camille ?,"db.movies.find({ ""title"": ""Camille"" }, { ""rated"": 1})" +who wrote the screenplay for the movie Nosferatu?,"db.movies.aggregate([ { ""$match"": { ""title"":""Nosferatu""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +what sort of film is Movie Crazy?,"db.movies.find({""title"": ""Movie Crazy""}, {""genres"": 1})" +what is the plot for the movie Who Killed Cock Robin??,"db.movies.find({""title"": ""Who Killed Cock Robin?""}, {""plot"": 1})" +how many awards did the film The Unknown win?,"db.movies.find({""title"":""The Unknown""}, {""awards.wins"":1})" +What is the standard rating of Oliver Stone movies in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Oliver Stone""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +what is the full plot for the movie The Wedding Night?,"db.movies.find({""title"": ""The Wedding Night""}, {""fullplot"": 1})" +what type of movie is The Dark Angel?,"db.movies.find({""title"": ""The Dark Angel""}, {""genres"": 1})" +What is the production company of the movie Go West?,"db.movies.find({""title"":""Go West""}, {""tomatoes.production"":1})" +What is the Tomatometer score of the movie Napoleon ?,"db.movies.find({ ""title"": ""Napoleon"" },{ ""tomatoes.critic.meter"": 1 })" +which person wrote the film A Woman of Paris: A Drama of Fate?,"db.movies.find({""title"": ""A Woman of Paris: A Drama of Fate""}, {""writers"": 1})" +"How many reviews have been submitted for the movie I Was Born, But... on Rotten Tomatoes?","db.movies.find({ ""title"": ""I Was Born, But..."" },{ ""tomatoes.viewer.numReviews"": 1 })" +What is the IMDB rating of the movie Masquerade in Vienna ?,"db.movies.find({""title"": ""Masquerade in Vienna""}, { ""imdb.rating"": 1})" +How many audience reviews have been submitted for the movie The Scarlet Empress?,"db.movies.find({ ""title"": ""The Scarlet Empress"" }, { ""tomatoes.viewer.numReviews"": 1 })" +How many reviews have been submitted by critics for the movie The Red Head ?,"db.movies.find({""title"": ""The Red Head""}, {""tomatoes.critic.numReviews"": 1})" +What is the Tomatometer score of the movie The World Moves On ?,"db.movies.find({ ""title"": ""The World Moves On"" },{ ""tomatoes.critic.meter"": 1 })" +What is the rating of the movie La Grande Illusion on IMDb?,"db.movies.find({""title"":""La Grande Illusion""}, {""imdb.rating"":1})" +What is the production company of the film The Navigator?,"db.movies.find({""title"":""The Navigator""}, {""tomatoes.production"":1})" +What are the names of all the actors who starred in the movie 'It Happened One Night'?,"db.movies.find({""title"": ""It Happened One Night""}, {""cast"": 1})" +Who is the lead actress of the movie Wild Boys of the Road ?,"db.movies.find({""title"": ""Wild Boys of the Road""}, {""cast"":{""$slice"": 1},""title"":1})" +What is the IMDb rating for the film The World Moves On?,"db.movies.find({""title"": ""The World Moves On""}, {""imdb.rating"": 1})" +How many votes did the movie The Barretts of Wimpole Street receive on IMDB?,"db.movies.find({""title"": ""The Barretts of Wimpole Street""}, { ""imdb.votes"": 1})" +How long is the movie The Private Life of Henry VIII. in minutes?,"db.movies.find({""title"":""The Private Life of Henry VIII.""}, {""runtime"":1})" +what is the full plot for the film Lady Windermere's Fan?,"db.movies.find({""title"": ""Lady Windermere's Fan""}, {""fullplot"": 1})" +who wrote the screenplay for the movie The 3 Penny Opera?,"db.movies.aggregate([ { ""$match"": { ""title"":""The 3 Penny Opera""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +what is the full plot for the film The Perils of Pauline?,"db.movies.find({""title"": ""The Perils of Pauline""}, {""fullplot"": 1})" +what is the full plot for the film Ruggles of Red Gap?,"db.movies.find({""title"": ""Ruggles of Red Gap""}, {""fullplot"": 1})" +who starred in the movie Mèdchen in Uniform?,"db.movies.find({""title"": ""Mèdchen in Uniform""}, {""cast"": 1})" +what genre is the movie The Edge of the World?,"db.movies.find({""title"": ""The Edge of the World""}, {""genres"": 1})" +What is the most common genre of movies that Steven Spielberg directs?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Steven Spielberg"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +who starred in Ruggles of Red Gap?,"db.movies.find({""title"": ""Ruggles of Red Gap""}, {""cast"": 1})" +who was the writer of Broken Lullaby?,"db.movies.find({""title"": ""Broken Lullaby""}, {""writers"": 1})" +who starred in the movie Battleship Potemkin?,"db.movies.find({""title"": ""Battleship Potemkin""}, {""cast"": 1})" +What is the production company behind the movie x?,"db.movies.find({""title"": ""Top Hat""}, { ""tomatoes.production"": 1})" +How many reviews have been submitted for the movie The Saphead on Rotten Tomatoes?,"db.movies.find({ ""title"": ""The Saphead"" },{ ""tomatoes.viewer.numReviews"": 1 })" +What is the MPAA rating of the movie Four Sons?,"db.movies.find({""title"":""Four Sons""}, {""rated"":1})" +City Lights is a movie written by this person?,"db.movies.find({""title"": ""City Lights""}, {""writers"": 1})" +What is the Rotten Tomatoes rating for Woody Allen's highest-rated movie?,"db.movies.find({""directors"": ""Woody Allen"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +what was the release date of the movie Cimarron?,"db.movies.find({""title"": ""Cimarron""}, {""released"": 1})" +who acted in the movie Clash of the Wolves?,"db.movies.find({""title"": ""Clash of the Wolves""}, {""cast"": 1})" +what is the genre for the movie The Gold Rush?,"db.movies.find({""title"": ""The Gold Rush""}, {""genres"": 1})" +what was the release year of the film Dames?,"db.movies.find({""title"": ""Dames""}, {""year"": 1})" +How many reviews have been submitted for the movie Intolerance: Love's Struggle Throughout the Ages on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Intolerance: Love's Struggle Throughout the Ages"" },{ ""tomatoes.viewer.numReviews"": 1 })" +who wrote the film Who Killed Cock Robin??,"db.movies.find({""title"": ""Who Killed Cock Robin?""}, {""writers"": 1})" +"Has the film State Fair won any awards? If so, which ones?","db.movies.find({""title"":""State Fair"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +what genre is the movie One Week?,"db.movies.find({""title"": ""One Week""}, {""genres"": 1})" +How many audience reviews have been submitted for the movie Sons of the Desert ?,"db.movies.find({ ""title"": ""Sons of the Desert"" },{ ""tomatoes.viewer.numReviews"": 1 })" +what year was Little Caesar released?,"db.movies.find({""title"": ""Little Caesar""}, {""year"": 1})" +How many votes does the movie One Night of Love have on IMDb?,"db.movies.find({""title"":""One Night of Love""}, {""imdb.votes"":1})" +What type of media is A Star Is Born?,"db.movies.find({ ""title"": ""A Star Is Born"" }, { ""type"": 1})" +What is the box office revenue of the movie Our Hospitality in dollars?,"db.movies.find({""title"": ""Our Hospitality""}, {""tomatoes.boxOffice"": 1})" +What is the production company of The Pearls of the Crown?,"db.movies.find({""title"":""The Pearls of the Crown""}, {""tomatoes.production"":1})" +who is the director that directed Flesh and the Devil?,"db.movies.find({""title"": ""Flesh and the Devil""}, {""directors"": 1})" +What is the IMDb rating for Berkeley Square?,"db.movies.find({""title"": ""Berkeley Square""}, {""imdb.rating"": 1})" +how many awards did the film Hell's Hinges win?,"db.movies.find({""title"":""Hell's Hinges""}, {""awards.wins"":1})" +which company produced Snow White and the Seven Dwarfs?,"db.movies.find({""title"":""Snow White and the Seven Dwarfs""}, {""tomatoes.production"":1})" +How many reviews have been submitted for the movie The Power and the Glory on Rotten Tomatoes?,"db.movies.find({ ""title"": ""The Power and the Glory"" },{ ""tomatoes.viewer.numReviews"": 1 })" +What is the added duration of all movies directed by Kenji Mizoguchi?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Kenji Mizoguchi"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +Can you share with me the names of the top-rated movies directed by Federico Fellini?,"db.movies.find({""directors"": 'Federico Fellini', ""imdb.rating"": {""$gt"": 8.5}})" +what is the film Wonder Bar about in details?,"db.movies.find({""title"": ""Wonder Bar""}, {""fullplot"": 1})" +When was the Tomatometer score and other Tomato-related information last updated for the movie Cleopatra?,"db.movies.find({""title"": ""Cleopatra""}, { ""tomatoes.lastUpdated"": 1})" +who's the director of Dr. Jekyll and Mr. Hyde?,"db.movies.find({""title"": ""Dr. Jekyll and Mr. Hyde""}, {""directors"": 1})" +In which countries was the movie Cavalcade produced?,"db.movies.find({""title"":""Cavalcade""}, {""countries"":1})" +who is the writer of the movie Movie Crazy?,"db.movies.find({""title"": ""Movie Crazy""}, {""writers"": 1})" +What is the MongoDB document ID of the movie Les Misèrables?,"db.movies.find({""title"": ""Les Misèrables""}, {""_id"": 1})" +What are the genres this movie Snow White and the Seven Dwarfs belongs to?,"db.movies.find({""title"":""Snow White and the Seven Dwarfs""}, {""genres"":1})" +What is the MPAA rating of the film Going Hollywood?,"db.movies.find({""title"":""Going Hollywood""}, {""rated"":1})" +Could you share with me the titles of the films that Gus Van Sant directed?,"db.movies.find({""directors"": ""Gus Van Sant""},{""title"":1})" +What is the meter score of the movie è Nous la Libertè according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""è Nous la Libertè""}, {""tomatoes.viewer.meter"": 1})" +What is the imdbID and genre of the movie 'A Woman of Paris: A Drama of Fate'?,"db.movies.find({""title"": ""A Woman of Paris: A Drama of Fate""}, {""imdb.id"": 1, ""genres"": 1, ""_id"": 0})" +whats the total runtime of all the movies directed by Francis Ford Coppola ?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Francis Ford Coppola"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +What is the audience rating of the movie Three Little Pigs ?,"db.movies.find({ ""title"": ""Three Little Pigs"" },{ ""tomatoes.viewer.rating"": 1 })" +What is the Metacritic score of the movie Morocco ?,"db.movies.find({ ""title"": ""Morocco"" }, { ""metacritic"": 1})" +What is the name of the director and cast for the movie 'Ella Cinders'?,"db.movies.find({""title"": ""Ella Cinders""}, {""directors"": 1, ""cast"": 1, ""_id"": 0})" +who is listed as director for The Man Who Could Work Miracles?,"db.movies.find({""title"": ""The Man Who Could Work Miracles""}, {""directors"": 1})" +How many audience reviews have been submitted for the movie Safety Last! ?,"db.movies.find({ ""title"": ""Safety Last!"" },{ ""tomatoes.viewer.numReviews"": 1 })" +What is the Rotten Tomatoes meter rating for the movie The Big Parade ?,"db.movies.find({""title"":""The Big Parade""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +What is the language of the movie Moscow Laughs?,"db.movies.find({""title"":""Moscow Laughs""}, {""languages"":1})" +who was Wild Oranges written by?,"db.movies.find({""title"": ""Wild Oranges""}, {""writers"": 1})" +What's the title of the shortest Luchino Visconti-directed movie?,"db.movies.find({""directors"":""Luchino Visconti""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +How many award nominations did the movie receive Roberta ?,"db.movies.find({ ""title"": ""Roberta"" },{ ""awards.nominations"": 1 })" +what was the release date of Seven Chances?,"db.movies.find({""title"": ""Seven Chances""}, {""released"": 1})" +which company produced Peter Pan?,"db.movies.find({""title"":""Peter Pan""}, {""tomatoes.production"":1})" +The Sin of Madelon Claudet is a film written by this person?,"db.movies.find({""title"": ""The Sin of Madelon Claudet""}, {""writers"": 1})" +who was the film A Farewell to Arms written by?,"db.movies.find({""title"": ""A Farewell to Arms""}, {""writers"": 1})" +What is the production company behind the movie è Nous la Libertè ?,"db.movies.find({""title"": ""è Nous la Libertè""}, {""tomatoes.production"": 1})" +What is the Metacritic score of the movie Frankenstein ?,"db.movies.find({ ""title"": ""Frankenstein"" }, { ""metacritic"": 1})" +what is the full plot for the movie The Garden of Allah?,"db.movies.find({""title"": ""The Garden of Allah""}, {""fullplot"": 1})" +the film A Night at the Opera starred who?,"db.movies.find({""title"": ""A Night at the Opera""}, {""cast"": 1})" +What are the countries associated with the movie Man of Aran ?,"db.movies.find({""title"": ""Man of Aran""}, {""countries"": 1})" +Which movies were helmed by Ingmar Bergman and came out in the 1990s?,"db.movies.find({""directors"": 'Ingmar Bergman', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +Romance is a film written by this person?,"db.movies.find({""title"": ""Romance""}, {""writers"": 1})" +"In the 1990s, which movies were directed by Quentin Tarantino and released?","db.movies.find({""directors"": 'Quentin Tarantino', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +who produced the movie The Red Head?,"db.movies.find({""title"":""The Red Head""}, {""tomatoes.production"":1})" +Can you provide more information about the Rotten Tomatoes rating for the movie Toni?,"db.movies.find({""title"": ""Toni""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +"San Francisco, is written by who?","db.movies.find({""title"": ""San Francisco""}, {""writers"": 1})" +what is the movie The Private Life of Don Juan about?,"db.movies.find({""title"": ""The Private Life of Don Juan""}, {""plot"": 1})" +What are the names of the films that were directed by Roberto Rossellini and released in the 1990s?,"db.movies.find({""directors"": 'Roberto Rossellini', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +what is the movie This Is My Affair about?,"db.movies.find({""title"": ""This Is My Affair""}, {""plot"": 1})" +How many reviews have been submitted for the movie Death Takes a Holiday on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Death Takes a Holiday"" },{ ""tomatoes.viewer.numReviews"": 1 })" +Can you provide a longer version of the movie Cimarron plot?,"db.movies.find({""title"":""Cimarron""}, {""fullplot"":1})" +who is the director of Top Hat?,"db.movies.find({""title"": ""Top Hat""}, {""directors"": 1})" +How many reviews have been submitted for the movie The Unknown on Rotten Tomatoes?,"db.movies.find({ ""title"": ""The Unknown"" },{ ""tomatoes.viewer.numReviews"": 1 })" +How many nominations did the movie Wife! Be Like a Rose! receive?,"db.movies.find({""title"":""Wife! Be Like a Rose!""}, {""awards.nominations"":1})" +Who are the actors that appear in the movie The Freshman ?,"db.movies.find({ ""title"": ""The Freshman"" },{ ""cast"": 1 })" +What is the running time of the movie Everybody's Woman?,"db.movies.find({""title"":""Everybody's Woman""}, {""runtime"":1})" +What is the running time of the movie Disraeli?,"db.movies.find({""title"":""Disraeli""}, {""runtime"":1})" +Who is the actor that has acted in the maximum number of movies directed by Coen Brothers?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Coen Brothers"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +who is the director for Children in the Wind?,"db.movies.find({""title"": ""Children in the Wind""}, {""directors"": 1})" +What is the movie Come and Get It about? Can you provide a brief summary?,"db.movies.find({""title"":""Come and Get It""}, {""plot"":1})" +the film I Am a Fugitive from a Chain Gang was directed by who?,"db.movies.find({""title"": ""I Am a Fugitive from a Chain Gang""}, {""directors"": 1})" +who was the movie Dekigokoro written by?,"db.movies.find({""title"": ""Dekigokoro""}, {""writers"": 1})" +who stars in the movie Smilin' Through?,"db.movies.find({""title"": ""Smilin' Through""}, {""cast"": 1})" +What is the imdbID and year of release for the movie with a title of 'The Crowd Roars'?,"db.movies.find({""title"": ""The Crowd Roars""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +What is the audience rating of the movie Follow the Fleet ?,"db.movies.find({ ""title"": ""Follow the Fleet"" },{ ""tomatoes.viewer.rating"": 1 })" +who stars in the film Ella Cinders?,"db.movies.find({""title"": ""Ella Cinders""}, {""cast"": 1})" +who acted in the film The 39 Steps?,"db.movies.find({""title"": ""The 39 Steps""}, {""cast"": 1})" +The Wind is a movie written by this person?,"db.movies.find({""title"": ""The Wind""}, {""writers"": 1})" +Kid Galahad is written by this person?,"db.movies.find({""title"": ""Kid Galahad""}, {""writers"": 1})" +Who are the writers of the movie The Man Who Could Work Miracles ?,"db.movies.find({""title"": ""The Man Who Could Work Miracles""}, { ""writers"": 1})" +the director of Morocco was?,"db.movies.find({""title"": ""Morocco""}, {""directors"": 1})" +Who are the main actors/actresses in the movie Love Me Tonight?,"db.movies.find({""title"":""Love Me Tonight""}, {""cast"":1})" +what type of movie is Bride of Frankenstein?,"db.movies.find({""title"": ""Bride of Frankenstein""}, {""genres"": 1})" +When was the information last updated for the movie Theodora Goes Wild ?,"db.movies.find({ ""title"": ""Theodora Goes Wild"" },{ ""lastupdated"": 1 })" +What is the mean rating for Ridley Scott movies in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Ridley Scott""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +what year was Pandora's Box released?,"db.movies.find({""title"": ""Pandora's Box""}, {""year"": 1})" +How long is the runtime of the movie Where Are My Children? ?,"db.movies.find({""title"":""Where Are My Children?""}, {""runtime"":1})" +How many reviews have been submitted by critics for the movie Toni ?,"db.movies.find({""title"": ""Toni""}, {""tomatoes.critic.numReviews"": 1})" +who is the writer of the movie The Red Head?,"db.movies.find({""title"": ""The Red Head""}, {""writers"": 1})" +What are the genres associated with the movie The Man Who Knew Too Much ?,"db.movies.find({ ""title"": ""The Man Who Knew Too Much"" }, { ""genres"": 1})" +what type of film is A Midsummer Night's Dream?,"db.movies.find({""title"": ""A Midsummer Night's Dream""}, {""genres"": 1})" +How many awards did the movie win Nosferatu ?,"db.movies.find({ ""title"": ""Nosferatu"" },{ ""awards.wins"": 1 })" +"Has Sons of the Desert won any awards? If so, which ones?","db.movies.find({""title"":""Sons of the Desert"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +what is the movie It Happened One Night imdb rating?,"db.movies.find({""title"": ""It Happened One Night""}, {""imdb.rating"": 1})" +Was the movie Wild Oranges well received by audiences and critics?,"db.movies.find({""title"":""Wild Oranges""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +the movie A Star Is Born starred who?,"db.movies.find({""title"": ""A Star Is Born""}, {""cast"": 1})" +Which film directed by Luchino Visconti has the longest running time?,"db.movies.find({""directors"":""Luchino Visconti""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +How many votes did the movie The Son of Kong receive on IMDB?,"db.movies.find({""title"": ""The Son of Kong""}, { ""imdb.votes"": 1})" +What is the movie The Son of Kong about? Can you provide a brief summary?,"db.movies.find({""title"":""The Son of Kong""}, {""plot"":1})" +who was the writer of the film Storm Over Asia?,"db.movies.find({""title"": ""Storm Over Asia""}, {""writers"": 1})" +who produced Gold Diggers of 1935?,"db.movies.find({""title"":""Gold Diggers of 1935""}, {""tomatoes.production"":1})" +what is the plot for the film The Man Who Knew Too Much?,"db.movies.find({""title"": ""The Man Who Knew Too Much""}, {""plot"": 1})" +What is the consensus among critics about the movie Dekigokoro?,"db.movies.find({""title"": ""Dekigokoro""}, { ""tomatoes.consensus"": 1})" +who was The Informer directed by?,"db.movies.find({""title"": ""The Informer""}, {""directors"": 1})" +who was the writer of The Big Parade?,"db.movies.find({""title"": ""The Big Parade""}, {""writers"": 1})" +who are the actors in the film Snow White and the Seven Dwarfs?,"db.movies.find({""title"": ""Snow White and the Seven Dwarfs""}, {""cast"": 1})" +Could you inform me of the genres of films that Coen Brothers has directed?,"db.movies.distinct(""genres"", { ""directors"": ""Coen Brothers"" })" +How long is the runtime of the movie Within Our Gates ?,"db.movies.find({""title"":""Within Our Gates""}, {""runtime"":1})" +Which films directed by Ingmar Bergman have the highest ratings?,"db.movies.find({""directors"": 'Ingmar Bergman', ""imdb.rating"": {""$gt"": 8.5}})" +What is the rating of the movie M ?,"db.movies.find({ ""title"": ""M"" }, { ""rated"": 1})" +who produced the movie Dames?,"db.movies.find({""title"":""Dames""}, {""tomatoes.production"":1})" +What are the genres associated with the movie San Francisco ?,"db.movies.find({ ""title"": ""San Francisco"" }, { ""genres"": 1})" +Can you inform me of the Federico Fellini movie with the shortest duration?,"db.movies.find({""directors"":""Federico Fellini""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +What are the names of all the actors who starred in the movie 'Romeo and Juliet'?,"db.movies.find({""title"": ""Romeo and Juliet""}, {""cast"": 1})" +what is The Song of Night description?,"db.movies.find({""title"": ""The Song of Night""}, {""plot"": 1})" +How many reviews have been submitted for the movie In Old Chicago on Rotten Tomatoes?,"db.movies.find({ ""title"": ""In Old Chicago"" },{ ""tomatoes.viewer.numReviews"": 1 })" +who was the writer of the film Hell's Hinges?,"db.movies.find({""title"": ""Hell's Hinges""}, {""writers"": 1})" +what is Flash Gordon about in details?,"db.movies.find({""title"": ""Flash Gordon""}, {""fullplot"": 1})" +How many wins did the movie Westfront 1918 receive?,"db.movies.find({""title"":""Westfront 1918""}, {""awards.wins"":1})" +what is the genre of Greed?,"db.movies.find({""title"": ""Greed""}, {""genres"": 1})" +How many reviews have been submitted for the movie David Copperfield on Rotten Tomatoes?,"db.movies.find({ ""title"": ""David Copperfield"" },{ ""tomatoes.viewer.numReviews"": 1 })" +How many reviews have been submitted by critics for the movie Frankenstein ?,"db.movies.find({""title"": ""Frankenstein""}, {""tomatoes.critic.numReviews"": 1})" +which person directed The Iron Horse?,"db.movies.find({""title"": ""The Iron Horse""}, {""directors"": 1})" +How many viewer reviews did the movie City Streets receive on Rotten Tomatoes?,"db.movies.find({""title"":""City Streets""}, {""tomatoes.viewer.numReviews"":1})" +What is the rating of the movie The Big Trail ?,"db.movies.find({ ""title"": ""The Big Trail"" }, { ""rated"": 1})" +What is the runtime of the movie The Power and the Glory ?,"db.movies.find({""title"": ""The Power and the Glory""}, { ""runtime"": 1})" +who was the writer of the film Gold Diggers of 1933?,"db.movies.find({""title"": ""Gold Diggers of 1933""}, {""writers"": 1})" +What is the consensus among critics about the movie Morocco ?,"db.movies.find({""title"": ""Morocco""}, {""tomatoes.consensus"": 1})" +Who is the actor that has acted in the maximum number of movies directed by Alain Resnais?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Alain Resnais"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +what was the genre of Wings?,"db.movies.find({""title"": ""Wings""}, {""genres"": 1})" +what is the film Lloyd's of London imdb rating?,"db.movies.find({""title"": ""Lloyd's of London""}, {""imdb.rating"": 1})" +What is the freshness score of the movie Clash of the Wolves on Rotten Tomatoes?,"db.movies.find({""title"": ""Clash of the Wolves""}, {""tomatoes.fresh"": 1})" +what kind of movie is Comradeship?,"db.movies.find({""title"": ""Comradeship""}, {""genres"": 1})" +What is the ID of the movie My Man Godfrey on IMDB?,"db.movies.find({""title"": ""My Man Godfrey""}, {""imdb.id"": 1})" +What is the rating of the movie Zero for Conduct on IMDb?,"db.movies.find({""title"":""Zero for Conduct""}, {""imdb.rating"":1})" +What is the text description of the movie Upstream awards?,"db.movies.find({""title"":""Upstream""}, {""awards.text"":1})" +who was Movie Crazy written by?,"db.movies.find({""title"": ""Movie Crazy""}, {""writers"": 1})" +which person wrote the film The Spanish Earth?,"db.movies.find({""title"": ""The Spanish Earth""}, {""writers"": 1})" +what kind of movie is Smilin' Through?,"db.movies.find({""title"": ""Smilin' Through""}, {""genres"": 1})" +How many comments have been posted by users on the movie Gertie the Dinosaur's page on the Mflix platform?,"db.movies.find({ ""title"": ""Gertie the Dinosaur"" }, { ""num_mflix_comments"": 1 })" +What is the most common genre of movies that Satyajit Ray directs?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Satyajit Ray"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +what type of movie is Romance?,"db.movies.find({""title"": ""Romance""}, {""genres"": 1})" +What is the MPAA rating of the film Queen Kelly?,"db.movies.find({""title"":""Queen Kelly""}, {""rated"":1})" +what kind of movie is City Lights?,"db.movies.find({""title"": ""City Lights""}, {""genres"": 1})" +who are the actors in the movie The 3 Penny Opera?,"db.movies.find({""title"": ""The 3 Penny Opera""}, {""cast"": 1})" +what is the film Berkeley Square imdb rating?,"db.movies.find({""title"": ""Berkeley Square""}, {""imdb.rating"": 1})" +How many votes does the movie The Blue Bird have on IMDb?,"db.movies.find({""title"":""The Blue Bird""}, {""imdb.votes"":1})" +the film Applause was directed by who?,"db.movies.find({""title"": ""Applause""}, {""directors"": 1})" +What is the percentage of positive reviews among critics for the movie The Broadway Melody ?,"db.movies.find({ ""title"": ""The Broadway Melody"" },{ ""tomatoes.critic.meter"": 1 })" +What is the language of the film The Circus?,"db.movies.find({""title"":""The Circus""}, {""languages"":1})" +What is the rating of the movie Nosferatu according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Nosferatu""}, {""tomatoes.viewer.rating"": 1})" +When was the Tomatometer score and other Tomato-related information last updated for the movie Viva Villa!?,"db.movies.find({""title"": ""Viva Villa!""}, { ""tomatoes.lastUpdated"": 1})" +what was the release date of the film Mutiny on the Bounty?,"db.movies.find({""title"": ""Mutiny on the Bounty""}, {""released"": 1})" +What is the name of the actor who appears most frequently in movies directed by Orson Welles?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Orson Welles"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +what was the release year of Trouble in Paradise?,"db.movies.find({""title"": ""Trouble in Paradise""}, {""year"": 1})" +Can you provide a longer version of the movie The Wind plot?,"db.movies.find({""title"":""The Wind""}, {""fullplot"":1})" +How did the audience and critics receive the movie The Sin of Madelon Claudet?,"db.movies.find({""title"":""The Sin of Madelon Claudet""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +which company produced the movie State Fair?,"db.movies.find({""title"":""State Fair""}, {""tomatoes.production"":1})" +the director of Civilization was?,"db.movies.find({""title"": ""Civilization""}, {""directors"": 1})" +what sort of movie is Baby Face?,"db.movies.find({""title"": ""Baby Face""}, {""genres"": 1})" +What is the box office revenue of the movie The Gilded Lily in dollars?,"db.movies.find({""title"": ""The Gilded Lily""}, {""tomatoes.boxOffice"": 1})" +What is the full plot summary of the movie Murders in the Rue Morgue ?,"db.movies.find({""title"": ""Murders in the Rue Morgue""}, {""plot"": 1})" +what was the genre of The Ace of Hearts?,"db.movies.find({""title"": ""The Ace of Hearts""}, {""genres"": 1})" +Can you provide a detailed summary of the movie 7th Heaven plot?,"db.movies.find({ ""title"": ""7th Heaven"" }, { ""fullplot"": 1})" +What is the combined duration of all films that Akira Kurosawa directed?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Akira Kurosawa"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +what is the full plot for the film The Black Pirate?,"db.movies.find({""title"": ""The Black Pirate""}, {""fullplot"": 1})" +who wrote the screenplay for the film Dishonored?,"db.movies.aggregate([ { ""$match"": { ""title"":""Dishonored""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +What is the audience rating of the movie Masquerade in Vienna ?,"db.movies.find({ ""title"": ""Masquerade in Vienna"" },{ ""tomatoes.viewer.rating"": 1 })" +What is the rating of the movie Twentieth Century ?,"db.movies.find({ ""title"": ""Twentieth Century"" }, { ""rated"": 1})" +Who are the starring actors/actresses in the movie Sherlock Jr.?,"db.movies.find({""title"":""Sherlock Jr.""}, {""cast"":1})" +What is the MPAA rating of The Man Who Could Work Miracles?,"db.movies.find({""title"":""The Man Who Could Work Miracles""}, {""rated"":1})" +who wrote the screenplay for the film Nosferatu?,"db.movies.aggregate([ { ""$match"": { ""title"":""Nosferatu""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +what kind of film is The Public Enemy?,"db.movies.find({""title"": ""The Public Enemy""}, {""genres"": 1})" +what genre is the film The Black Cat?,"db.movies.find({""title"": ""The Black Cat""}, {""genres"": 1})" +Which actor has the highest number of appearances in movies directed by Quentin Tarantino?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Quentin Tarantino"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What is the production company behind the movie Les vampires ?,"db.movies.find({""title"": ""Les vampires""}, { ""tomatoes.production"": 1})" +What is the chief film category that Christopher Nolan's directed movies are classified under?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Christopher Nolan"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What are the movies directed by Alain Resnais?,"db.movies.find({""directors"": ""Alain Resnais""},{""title"":1})" +In what year was the movie Hell's Hinges released ?,"db.movies.find({ ""title"": ""Hell's Hinges"" }, { ""year"": 1})" +What is the audience rating of the movie Foolish Wives ?,"db.movies.find({ ""title"": ""Foolish Wives"" },{ ""tomatoes.viewer.rating"": 1 })" +The Awful Truth was directed by who?,"db.movies.find({""title"": ""The Awful Truth""}, {""directors"": 1})" +"In movies directed by Martin Scorsese, which actor has the highest number of performances?","db.movies.aggregate([ { ""$match"": { ""directors"": ""Martin Scorsese"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What is the rating of the movie Lloyd's of London according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Lloyd's of London""}, {""tomatoes.viewer.rating"": 1})" +What is the runtime of the movie Greed ?,"db.movies.find({""title"": ""Greed""}, { ""runtime"": 1})" +which company produced Storm Over Asia?,"db.movies.find({""title"":""Storm Over Asia""}, {""tomatoes.production"":1})" +I'm curious about the films that were directed by Roman Polanski. Can you name them?,"db.movies.find({""directors"": ""Roman Polanski""},{""title"":1})" +What is the percentage of positive reviews among critics for the movie She ?,"db.movies.find({ ""title"": ""She"" },{ ""tomatoes.critic.meter"": 1 })" +who wrote the screenplay for the film David Copperfield?,"db.movies.aggregate([ { ""$match"": { ""title"":""David Copperfield""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +who stars in Le grand jeu?,"db.movies.find({""title"": ""Le grand jeu""}, {""cast"": 1})" +Who are the main actors in A Woman of Paris: A Drama of Fate ?,"db.movies.find({ ""title"": ""A Woman of Paris: A Drama of Fate"" }, { ""cast"": 1})" +what was the release date of Tol'able David?,"db.movies.find({""title"": ""Tol'able David""}, {""released"": 1})" +What is the rating of the movie China Seas ?,"db.movies.find({ ""title"": ""China Seas"" }, { ""rated"": 1})" +which company produced the movie In Old Chicago?,"db.movies.find({""title"":""In Old Chicago""}, {""tomatoes.production"":1})" +what genre is the movie Tarzan the Ape Man?,"db.movies.find({""title"": ""Tarzan the Ape Man""}, {""genres"": 1})" +What is the viewer rating for the movie Folies Bergère de Paris on Rotten Tomatoes?,"db.movies.find({""title"":""Folies Bergère de Paris""}, {""tomatoes.viewer.rating"":1})" +"The Kid Brother, is written by who?","db.movies.find({""title"": ""The Kid Brother""}, {""writers"": 1})" +which person wrote The Black Pirate?,"db.movies.find({""title"": ""The Black Pirate""}, {""writers"": 1})" +who was the writer of The Divine Lady?,"db.movies.find({""title"": ""The Divine Lady""}, {""writers"": 1})" +The Green Pastures is a movie written by this person?,"db.movies.find({""title"": ""The Green Pastures""}, {""writers"": 1})" +what kind of film is Dracula?,"db.movies.find({""title"": ""Dracula""}, {""genres"": 1})" +which actor appeared in most of the movies directed by Quentin Tarantino?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Quentin Tarantino"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +what is the genre for the movie I Am a Fugitive from a Chain Gang?,"db.movies.find({""title"": ""I Am a Fugitive from a Chain Gang""}, {""genres"": 1})" +How many reviews have been submitted by critics for the movie Dante's Inferno ?,"db.movies.find({""title"": ""Dante's Inferno""}, {""tomatoes.critic.numReviews"": 1})" +who starred in Bad Girl?,"db.movies.find({""title"": ""Bad Girl""}, {""cast"": 1})" +what is the genre for the movie Maria Chapdelaine?,"db.movies.find({""title"": ""Maria Chapdelaine""}, {""genres"": 1})" +What is the imdbID and year of release for the movie with a title of 'White Shadows'?,"db.movies.find({""title"": ""White Shadows""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +Can you provide a detailed summary of the movie Storm Over Asia plot?,"db.movies.find({ ""title"": ""Storm Over Asia"" }, { ""fullplot"": 1})" +Who are the actors that appear in the movie Night Must Fall ?,"db.movies.find({ ""title"": ""Night Must Fall"" },{ ""cast"": 1 })" +what type of movie is Red Dust?,"db.movies.find({""title"": ""Red Dust""}, {""genres"": 1})" +What is the text representation of the awards won and nominations received by the movie Scarface?,"db.movies.find({""title"": ""Scarface""}, { ""awards.text"": 1})" +The Pearls of the Crown is a film written by this person?,"db.movies.find({""title"": ""The Pearls of the Crown""}, {""writers"": 1})" +How many award nominations did the movie receive The Thief of Bagdad ?,"db.movies.find({ ""title"": ""The Thief of Bagdad"" },{ ""awards.nominations"": 1 })" +who are the actors in the film Greed?,"db.movies.find({""title"": ""Greed""}, {""cast"": 1})" +Was the movie One Hundred Men and a Girl well received by audiences and critics?,"db.movies.find({""title"":""One Hundred Men and a Girl""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +Was the movie In the Land of the Head Hunters well received by audiences?,"db.movies.find({""title"":""In the Land of the Head Hunters""}, {""tomatoes.viewer"":1})" +How many audience reviews have been submitted for the movie Daughter of Shanghai?,"db.movies.find({ ""title"": ""Daughter of Shanghai"" }, { ""tomatoes.viewer.numReviews"": 1 })" +What is the critical reception of the movie She Done Him Wrong?,"db.movies.find({""title"":""She Done Him Wrong""}, {""tomatoes.critic"":1})" +Who is the director of the movie Dishonored?,"db.movies.find({""title"": ""Dishonored""}, { ""directors"": 1})" +How many reviews have been submitted for the movie The Land Beyond the Sunset on Rotten Tomatoes?,"db.movies.find({ ""title"": ""The Land Beyond the Sunset"" },{ ""tomatoes.viewer.numReviews"": 1 })" +When was the movie Mayerling released?,"db.movies.find({""title"":""Mayerling""}, {""released"":1})" +What is Ethan Coen's highest-rated movie on Rotten Tomatoes?,"db.movies.find({""directors"": ""Ethan Coen"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +what is the genre for the film The Prince and the Pauper?,"db.movies.find({""title"": ""The Prince and the Pauper""}, {""genres"": 1})" +How many votes did the movie She Done Him Wrong receive on IMDB?,"db.movies.find({""title"": ""She Done Him Wrong""}, { ""imdb.votes"": 1})" +what was the genre of Maria Chapdelaine?,"db.movies.find({""title"": ""Maria Chapdelaine""}, {""genres"": 1})" +What languages are spoken in the movie Lonesome ?,"db.movies.find({""title"": ""Lonesome""}, { ""languages"": 1})" +Which film directed by David Lynch has the highest rating on Rotten Tomatoes?,"db.movies.find({""directors"": ""David Lynch"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +Who are the starring actors/actresses in the movie Twentieth Century?,"db.movies.find({""title"":""Twentieth Century""}, {""cast"":1})" +what sort of film is The Life of Emile Zola?,"db.movies.find({""title"": ""The Life of Emile Zola""}, {""genres"": 1})" +what genre of film is The Cameraman?,"db.movies.find({""title"": ""The Cameraman""}, {""genres"": 1})" +How many audience reviews have been submitted for the movie State Fair?,"db.movies.find({ ""title"": ""State Fair"" }, { ""tomatoes.viewer.numReviews"": 1 })" +what was the release year of the film The General?,"db.movies.find({""title"": ""The General""}, {""year"": 1})" +What is the language of The Great Train Robbery?,"db.movies.find({""title"":""The Great Train Robbery""}, {""languages"":1})" +Who is the director of the movie Scrooge?,"db.movies.find({""title"": ""Scrooge""}, { ""directors"": 1})" +what is Snow White and the Seven Dwarfs imdb rating?,"db.movies.find({""title"": ""Snow White and the Seven Dwarfs""}, {""imdb.rating"": 1})" +The Navigator is a movie written by this person?,"db.movies.find({""title"": ""The Navigator""}, {""writers"": 1})" +What is the Rotten Tomatoes meter rating for the movie Flying Down to Rio ?,"db.movies.find({""title"":""Flying Down to Rio""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +what is the genre for the movie Clash of the Wolves?,"db.movies.find({""title"": ""Clash of the Wolves""}, {""genres"": 1})" +What is the rating of the movie Twentieth Century according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Twentieth Century""}, {""tomatoes.viewer.rating"": 1})" +what is the plot for the film The Broadway Melody?,"db.movies.find({""title"": ""The Broadway Melody""}, {""plot"": 1})" +What is the title of the movie with the shortest duration that Orson Welles directed?,"db.movies.find({""directors"":""Orson Welles""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +What is the dominant genre of Spike Lee's directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Spike Lee"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +how many awards did The Invisible Man win?,"db.movies.find({""title"":""The Invisible Man""}, {""awards.wins"":1})" +what type of film is Fury?,"db.movies.find({""title"": ""Fury""}, {""genres"": 1})" +What is the Metacritic score of the movie Theodora Goes Wild ?,"db.movies.find({ ""title"": ""Theodora Goes Wild"" }, { ""metacritic"": 1})" +what was the release year of Murders in the Rue Morgue?,"db.movies.find({""title"": ""Murders in the Rue Morgue""}, {""year"": 1})" +what was the release date of the movie Moscow Laughs?,"db.movies.find({""title"": ""Moscow Laughs""}, {""released"": 1})" +what is the genre for the film Snow White and the Seven Dwarfs?,"db.movies.find({""title"": ""Snow White and the Seven Dwarfs""}, {""genres"": 1})" +How many nominations did the movie Battling Butler receive?,"db.movies.find({""title"":""Battling Butler""}, {""awards.nominations"":1})" +what was the release year of Little Caesar?,"db.movies.find({""title"": ""Little Caesar""}, {""year"": 1})" +what type of movie is City Streets?,"db.movies.find({""title"": ""City Streets""}, {""genres"": 1})" +which person wrote Tsirk?,"db.movies.find({""title"": ""Tsirk""}, {""writers"": 1})" +What is the prevailing movie genre in Tim Burton's directed films?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Tim Burton"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What is the meter score of the movie Morocco according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Morocco""}, {""tomatoes.viewer.meter"": 1})" +Can you provide more information about the Rotten Tomatoes rating for the movie Under the Roofs of Paris?,"db.movies.find({""title"": ""Under the Roofs of Paris""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +what is the movie Wild Boys of the Road imdb rating?,"db.movies.find({""title"": ""Wild Boys of the Road""}, {""imdb.rating"": 1})" +Curly Top is a film written by this person?,"db.movies.find({""title"": ""Curly Top""}, {""writers"": 1})" +Was the movie For Heaven's Sake well received by audiences and critics?,"db.movies.find({""title"":""For Heaven's Sake""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +"Has the movie Chapayev won any awards? If so, which ones?","db.movies.find({""title"":""Chapayev"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +what is the film He Who Gets Slapped imdb rating?,"db.movies.find({""title"": ""He Who Gets Slapped""}, {""imdb.rating"": 1})" +the film Scarface was directed by who?,"db.movies.find({""title"": ""Scarface""}, {""directors"": 1})" +What is the average rating for all of Quentin Tarantino's films in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Quentin Tarantino""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +How many comments have been posted by users on the movie Toni's page on the Mflix platform?,"db.movies.find({ ""title"": ""Toni"" }, { ""num_mflix_comments"": 1 })" +What is the box office revenue for the movie 'Modern Times'?,"db.movies.find({""title"": ""Modern Times""}, {""tomatoes.boxOffice"": 1})" +How many reviews did the movie Nosferatu receive on Rotten Tomatoes?,"db.movies.find({""title"":""Nosferatu""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +who wrote the film A Midsummer Night's Dream?,"db.movies.find({""title"": ""A Midsummer Night's Dream""}, {""writers"": 1})" +When was the Tomatometer score and other Tomato-related information last updated for the movie One Week?,"db.movies.find({""title"": ""One Week""}, { ""tomatoes.lastUpdated"": 1})" +In what year was the movie The Spanish Earth released?,"db.movies.find({""title"":""The Spanish Earth""}, {""year"":1})" +what is Mutiny on the Bounty description?,"db.movies.find({""title"": ""Mutiny on the Bounty""}, {""plot"": 1})" +Can you provide a longer version of the movie Snow White and the Seven Dwarfs plot?,"db.movies.find({""title"":""Snow White and the Seven Dwarfs""}, {""fullplot"":1})" +Who is the lead actress of the movie The 3 Penny Opera ?,"db.movies.find({""title"": ""The 3 Penny Opera""}, {""cast"":{""$slice"": 1},""title"":1})" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie The Lower Depths ?,"db.movies.find({""title"":""The Lower Depths""}, {""tomatoes.viewer.meter"":1})" +Which cinematic productions were directed by Federico Fellini?,"db.movies.find({""directors"": ""Federico Fellini""},{""title"":1})" +How did the audience and critics receive the movie Flash Gordon?,"db.movies.find({""title"":""Flash Gordon""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +who is the writer of the movie The Iron Horse?,"db.movies.find({""title"": ""The Iron Horse""}, {""writers"": 1})" +The Great Ziegfeld was directed by who?,"db.movies.find({""title"": ""The Great Ziegfeld""}, {""directors"": 1})" +the movie The Great Ziegfeld starred who?,"db.movies.find({""title"": ""The Great Ziegfeld""}, {""cast"": 1})" +how many awards did the film White Shadows win?,"db.movies.find({""title"":""White Shadows""}, {""awards.wins"":1})" +what is Footlight Parade description?,"db.movies.find({""title"": ""Footlight Parade""}, {""plot"": 1})" +What is the box office revenue of the movie Come and Get It ?,"db.movies.find({""title"": ""Come and Get It""}, { ""tomatoes.boxOffice"": 1})" +Who are the actors in the movie The Lost Patrol?,"db.movies.find({""title"":""The Lost Patrol""}, {""cast"":1})" +what type of movie is Secret Agent?,"db.movies.find({""title"": ""Secret Agent""}, {""genres"": 1})" +what was the release year of the film Ruggles of Red Gap?,"db.movies.find({""title"": ""Ruggles of Red Gap""}, {""year"": 1})" +How long is the movie Triumph of the Will in minutes?,"db.movies.find({""title"":""Triumph of the Will""}, {""runtime"":1})" +What is the imdbID and genre of the movie 'Becky Sharp'?,"db.movies.find({""title"": ""Becky Sharp""}, {""imdb.id"": 1, ""genres"": 1, ""_id"": 0})" +What is the plot summary of the movie City Streets ?,"db.movies.find({ ""title"": ""City Streets"" }, { ""plot"": 1})" +In what year was the movie King Kong released ?,"db.movies.find({ ""title"": ""King Kong"" }, { ""year"": 1})" +what is Triumph of the Will about in details?,"db.movies.find({""title"": ""Triumph of the Will""}, {""fullplot"": 1})" +How many award nominations did the movie receive The Big House ?,"db.movies.find({ ""title"": ""The Big House"" },{ ""awards.nominations"": 1 })" +who wrote the screenplay for the movie The Power and the Glory?,"db.movies.aggregate([ { ""$match"": { ""title"":""The Power and the Glory""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +what is the movie The Dark Angel imdb rating?,"db.movies.find({""title"": ""The Dark Angel""}, {""imdb.rating"": 1})" +who was the writer of Scrooge?,"db.movies.find({""title"": ""Scrooge""}, {""writers"": 1})" +The Charge of the Light Brigade is written by this person?,"db.movies.find({""title"": ""The Charge of the Light Brigade""}, {""writers"": 1})" +who are the actors in the film Scrooge?,"db.movies.find({""title"": ""Scrooge""}, {""cast"": 1})" +what is the plot for the film Tsirk?,"db.movies.find({""title"": ""Tsirk""}, {""plot"": 1})" +How many reviews have been submitted by critics for the movie Civilization ?,"db.movies.find({""title"": ""Civilization""}, {""tomatoes.critic.numReviews"": 1})" +How long is the runtime of the movie The Lost Patrol ?,"db.movies.find({""title"":""The Lost Patrol""}, {""runtime"":1})" +what year was the movie In the Land of the Head Hunters released?,"db.movies.find({""title"": ""In the Land of the Head Hunters""}, {""year"": 1})" +what is the film Dracula imdb rating?,"db.movies.find({""title"": ""Dracula""}, {""imdb.rating"": 1})" +"Has Red Dust won any awards? If so, which ones?","db.movies.find({""title"":""Red Dust"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +In which countries was the movie The Edge of the World produced?,"db.movies.find({""title"":""The Edge of the World""}, {""countries"":1})" +Who is the lead actor of the movie The Private Life of Henry VIII. ?,"db.movies.find({""title"": ""The Private Life of Henry VIII.""}, {""cast"":{""$slice"": 1},""title"":1})" +What is the text description of the movie A Story of Floating Weeds awards?,"db.movies.find({""title"":""A Story of Floating Weeds""}, {""awards.text"":1})" +what sort of film is Robin Hood?,"db.movies.find({""title"": ""Robin Hood""}, {""genres"": 1})" +What is the name of the Alfred Hitchcock-directed movie with the briefest runtime?,"db.movies.find({""directors"":""Alfred Hitchcock""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +How many reviews have been submitted by critics for the movie Fury?,"db.movies.find({ ""title"": ""Fury"" }, { ""tomatoes.critic.numReviews"": 1 })" +who was the writer of the film Baby Face?,"db.movies.find({""title"": ""Baby Face""}, {""writers"": 1})" +what was the release date of the film The Lives of a Bengal Lancer?,"db.movies.find({""title"": ""The Lives of a Bengal Lancer""}, {""released"": 1})" +who's the director of The Gold Rush?,"db.movies.find({""title"": ""The Gold Rush""}, {""directors"": 1})" +What is the running time of the movie Man of Aran?,"db.movies.find({""title"":""Man of Aran""}, {""runtime"":1})" +What is the production company of the film The Hurricane?,"db.movies.find({""title"":""The Hurricane""}, {""tomatoes.production"":1})" +who acted in the movie Grass: A Nation's Battle for Life?,"db.movies.find({""title"": ""Grass: A Nation's Battle for Life""}, {""cast"": 1})" +what was the genre of Daughter of Shanghai?,"db.movies.find({""title"": ""Daughter of Shanghai""}, {""genres"": 1})" +How many reviews have been submitted for the movie Sherlock Jr. on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Sherlock Jr."" },{ ""tomatoes.viewer.numReviews"": 1 })" +what is the movie The Passion of Joan of Arc imdb rating?,"db.movies.find({""title"": ""The Passion of Joan of Arc""}, {""imdb.rating"": 1})" +What is the MPAA rating of the movie The Crowd Roars?,"db.movies.find({""title"":""The Crowd Roars""}, {""rated"":1})" +How many award nominations did the movie receive Dr. Jekyll and Mr. Hyde ?,"db.movies.find({ ""title"": ""Dr. Jekyll and Mr. Hyde"" },{ ""awards.nominations"": 1 })" +In which countries was the movie Alice Adams produced?,"db.movies.find({""title"":""Alice Adams""}, {""countries"":1})" +what was the genre of the movie The Band Concert?,"db.movies.find({""title"": ""The Band Concert""}, {""genres"": 1})" +what is the movie A Story of Floating Weeds imdb rating?,"db.movies.find({""title"": ""A Story of Floating Weeds""}, {""imdb.rating"": 1})" +What is the freshness score of the movie The Informer on Rotten Tomatoes?,"db.movies.find({""title"": ""The Informer""}, {""tomatoes.fresh"": 1})" +who wrote Blacksmith Scene?,"db.movies.find({""title"": ""Blacksmith Scene""}, {""writers"": 1})" +who wrote the screenplay for the movie Flesh and the Devil?,"db.movies.aggregate([ { ""$match"": { ""title"":""Flesh and the Devil""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +What is the MPAA rating of the film Show Boat?,"db.movies.find({""title"":""Show Boat""}, {""rated"":1})" +what is the plot for the movie Nosferatu?,"db.movies.find({""title"": ""Nosferatu""}, {""plot"": 1})" +the movie Le grand jeu was directed by who?,"db.movies.find({""title"": ""Le grand jeu""}, {""directors"": 1})" +What is the production company behind the movie x?,"db.movies.find({""title"": ""The Cameraman""}, { ""tomatoes.production"": 1})" +What is the running time of the film Naughty Marietta?,"db.movies.find({""title"":""Naughty Marietta""}, {""runtime"":1})" +what sort of film is The Last of the Mohicans?,"db.movies.find({""title"": ""The Last of the Mohicans""}, {""genres"": 1})" +What is the running time of the film Marked Woman?,"db.movies.find({""title"":""Marked Woman""}, {""runtime"":1})" +what was the release year of Final Accord?,"db.movies.find({""title"": ""Final Accord""}, {""year"": 1})" +the film A Night at the Opera starred which actors?,"db.movies.find({""title"": ""A Night at the Opera""}, {""cast"": 1})" +How many award nominations did the movie receive Captains Courageous ?,"db.movies.find({ ""title"": ""Captains Courageous"" },{ ""awards.nominations"": 1 })" +what year was My Man Godfrey released?,"db.movies.find({""title"": ""My Man Godfrey""}, {""year"": 1})" +How many votes did the movie King of Jazz receive on IMDB?,"db.movies.find({""title"": ""King of Jazz""}, { ""imdb.votes"": 1})" +How many nominations did the movie Shanghai Express receive?,"db.movies.find({""title"":""Shanghai Express""}, {""awards.nominations"":1})" +what kind of film is Four Sons?,"db.movies.find({""title"": ""Four Sons""}, {""genres"": 1})" +Who are the writers of the movie Dante's Inferno ?,"db.movies.find({""title"": ""Dante's Inferno""}, { ""writers"": 1})" +what was the release year of The Big Trail?,"db.movies.find({""title"": ""The Big Trail""}, {""year"": 1})" +Sanders of the River is a film written by this person?,"db.movies.find({""title"": ""Sanders of the River""}, {""writers"": 1})" +"who produced the movie I Was Born, But...?","db.movies.find({""title"":""I Was Born, But...""}, {""tomatoes.production"":1})" +what sort of movie is 42nd Street?,"db.movies.find({""title"": ""42nd Street""}, {""genres"": 1})" +what is the plot for the movie Romeo and Juliet?,"db.movies.find({""title"": ""Romeo and Juliet""}, {""plot"": 1})" +What is the running time of the movie The Music Box?,"db.movies.find({""title"":""The Music Box""}, {""runtime"":1})" +Could you inform me of the genres of films that Yasujiro Ozu has directed?,"db.movies.distinct(""genres"", { ""directors"": ""Yasujiro Ozu"" })" +What is the MongoDB document ID of the movie A Story of Floating Weeds?,"db.movies.find({""title"": ""A Story of Floating Weeds""}, {""_id"": 1})" +who starred in the film The Strong Man?,"db.movies.find({""title"": ""The Strong Man""}, {""cast"": 1})" +what is Daughter of Shanghai about?,"db.movies.find({""title"": ""Daughter of Shanghai""}, {""plot"": 1})" +how has Under the Roofs of Paris been recieved by critics and audience?,"db.movies.find({""title"":""Under the Roofs of Paris""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what is the genre of Lost Horizon?,"db.movies.find({""title"": ""Lost Horizon""}, {""genres"": 1})" +What is the IMDb rating for the film In Old Chicago?,"db.movies.find({""title"": ""In Old Chicago""}, {""imdb.rating"": 1})" +What is the meter score of the movie Smilin' Through according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Smilin' Through""}, {""tomatoes.viewer.meter"": 1})" +what genre of film is 7th Heaven?,"db.movies.find({""title"": ""7th Heaven""}, {""genres"": 1})" +what is the film The New Gulliver imdb rating?,"db.movies.find({""title"": ""The New Gulliver""}, {""imdb.rating"": 1})" +the movie In Old Arizona was directed by who?,"db.movies.find({""title"": ""In Old Arizona""}, {""directors"": 1})" +the film Our Hospitality starred which actors?,"db.movies.find({""title"": ""Our Hospitality""}, {""cast"": 1})" +"Has the movie State Fair won any awards? If so, which ones?","db.movies.find({""title"":""State Fair"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What is the language of the film Within Our Gates?,"db.movies.find({""title"":""Within Our Gates""}, {""languages"":1})" +Little Miss Marker is a movie written by this person?,"db.movies.find({""title"": ""Little Miss Marker""}, {""writers"": 1})" +What is the consensus among critics about the movie Twentieth Century ?,"db.movies.find({""title"": ""Twentieth Century""}, {""tomatoes.consensus"": 1})" +what is the plot for the movie The Poor Little Rich Girl?,"db.movies.find({""title"": ""The Poor Little Rich Girl""}, {""plot"": 1})" +Can you provide more information about the IMDb rating for the movie For Heaven's Sake ?,"db.movies.find({""title"":""For Heaven's Sake""}, {""imdb"":1})" +What is the language of the movie The Big Trail?,"db.movies.find({""title"":""The Big Trail""}, {""languages"":1})" +What is the text representation of the awards won and nominations received by the movie Imitation of Life?,"db.movies.find({""title"": ""Imitation of Life""}, { ""awards.text"": 1})" +What is the movie The Last of the Mohicans about? Can you provide a brief summary?,"db.movies.find({""title"":""The Last of the Mohicans""}, {""plot"":1})" +How many reviews did the movie The Prisoner of Zenda receive on Rotten Tomatoes?,"db.movies.find({""title"":""The Prisoner of Zenda""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +who was the writer of the movie Mèdchen in Uniform?,"db.movies.find({""title"": ""Mèdchen in Uniform""}, {""writers"": 1})" +what was the genre of the film These Three?,"db.movies.find({""title"": ""These Three""}, {""genres"": 1})" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie Gold Diggers of 1933 ?,"db.movies.find({""title"":""Gold Diggers of 1933""}, {""tomatoes.viewer.meter"":1})" +What is the rating of the movie The Lower Depths ?,"db.movies.find({ ""title"": ""The Lower Depths"" }, { ""rated"": 1})" +what is the genre of Queen Christina?,"db.movies.find({""title"": ""Queen Christina""}, {""genres"": 1})" +How many nominations did the movie The Son of the Sheik receive?,"db.movies.find({""title"":""The Son of the Sheik""}, {""awards.nominations"":1})" +Mary of Scotland is a movie written by this person?,"db.movies.find({""title"": ""Mary of Scotland""}, {""writers"": 1})" +"the film A Night at the Opera, was written by who?","db.movies.find({""title"": ""A Night at the Opera""}, {""writers"": 1})" +How many reviews have been submitted by critics for the movie The Birth of a Nation ?,"db.movies.find({""title"": ""The Birth of a Nation""}, {""tomatoes.critic.numReviews"": 1})" +what is The Crowd about?,"db.movies.find({""title"": ""The Crowd""}, {""plot"": 1})" +How does the movie A Star Is Born rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""A Star Is Born"" },{ ""tomatoes.critic.meter"": 1 })" +What is the audience rating of the movie King Solomon's Mines ?,"db.movies.find({ ""title"": ""King Solomon's Mines"" },{ ""tomatoes.viewer.rating"": 1 })" +what is the film The Circus imdb rating?,"db.movies.find({""title"": ""The Circus""}, {""imdb.rating"": 1})" +which person wrote the film The Docks of New York?,"db.movies.find({""title"": ""The Docks of New York""}, {""writers"": 1})" +who is the writer of the movie Miss Lulu Bett?,"db.movies.find({""title"": ""Miss Lulu Bett""}, {""writers"": 1})" +In what year was the movie Sherlock Jr. released ?,"db.movies.find({ ""title"": ""Sherlock Jr."" }, { ""year"": 1})" +What is the IMDb rating for the movie They Won't Forget?,"db.movies.find({""title"": ""They Won't Forget""}, {""imdb.rating"": 1})" +how many awards did Grand Hotel win?,"db.movies.find({""title"":""Grand Hotel""}, {""awards.wins"":1})" +What is the IMDb rating for Les Misèrables?,"db.movies.find({""title"": ""Les Misèrables""}, {""imdb.rating"": 1})" +what sort of movie is The Wind?,"db.movies.find({""title"": ""The Wind""}, {""genres"": 1})" +"Sunrise, is written by who?","db.movies.find({""title"": ""Sunrise""}, {""writers"": 1})" +what kind of movie is Three Little Pigs?,"db.movies.find({""title"": ""Three Little Pigs""}, {""genres"": 1})" +What is the running time of the film Pandora's Box?,"db.movies.find({""title"":""Pandora's Box""}, {""runtime"":1})" +who stars in the film The World Moves On?,"db.movies.find({""title"": ""The World Moves On""}, {""cast"": 1})" +The Private Life of Don Juan is a movie written by this person?,"db.movies.find({""title"": ""The Private Life of Don Juan""}, {""writers"": 1})" +what is One Week imdb rating?,"db.movies.find({""title"": ""One Week""}, {""imdb.rating"": 1})" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie Follow the Fleet ?,"db.movies.find({""title"":""Follow the Fleet""}, {""tomatoes.viewer.meter"":1})" +When was the information about the movie The Thief of Bagdad last updated?,"db.movies.find({ ""title"": ""The Thief of Bagdad"" }, { ""lastupdated"": 1})" +what was the release date of the movie Ruggles of Red Gap?,"db.movies.find({""title"": ""Ruggles of Red Gap""}, {""released"": 1})" +the film Lenin in October was directed by who?,"db.movies.find({""title"": ""Lenin in October""}, {""directors"": 1})" +Was the movie Gold Diggers of 1933 well received by audiences?,"db.movies.find({""title"":""Gold Diggers of 1933""}, {""tomatoes.viewer"":1})" +How long is the runtime of the movie The Hunchback of Notre Dame ?,"db.movies.find({""title"":""The Hunchback of Notre Dame""}, {""runtime"":1})" +What is the rating of the movie Wonder Bar ?,"db.movies.find({ ""title"": ""Wonder Bar"" }, { ""rated"": 1})" +Was the movie One Night of Love well received by audiences?,"db.movies.find({""title"":""One Night of Love""}, {""tomatoes.viewer"":1})" +What is the language of the film Harvest?,"db.movies.find({""title"":""Harvest""}, {""languages"":1})" +How many awards did the movie win In Old Chicago ?,"db.movies.find({ ""title"": ""In Old Chicago"" },{ ""awards.wins"": 1 })" +What is the running time of the movie Morocco?,"db.movies.find({""title"":""Morocco""}, {""runtime"":1})" +what year was Sisters of the Gion released?,"db.movies.find({""title"": ""Sisters of the Gion""}, {""year"": 1})" +Who holds the record for the most appearances in movies directed by Darren Aronofsky?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Darren Aronofsky"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +who is the writer of the film Three Little Pigs?,"db.movies.find({""title"": ""Three Little Pigs""}, {""writers"": 1})" +what was the release date of the movie Freaks?,"db.movies.find({""title"": ""Freaks""}, {""released"": 1})" +what type of film is Under the Roofs of Paris?,"db.movies.find({""title"": ""Under the Roofs of Paris""}, {""genres"": 1})" +How many awards did the movie win Sanders of the River ?,"db.movies.find({ ""title"": ""Sanders of the River"" },{ ""awards.wins"": 1 })" +what is the film Moscow Laughs about in details?,"db.movies.find({""title"": ""Moscow Laughs""}, {""fullplot"": 1})" +who directed Applause?,"db.movies.find({""title"": ""Applause""}, {""directors"": 1})" +who's the director of Mutiny on the Bounty?,"db.movies.find({""title"": ""Mutiny on the Bounty""}, {""directors"": 1})" +What is the viewer rating for the movie The Hunchback of Notre Dame on Rotten Tomatoes?,"db.movies.find({""title"":""The Hunchback of Notre Dame""}, {""tomatoes.viewer.rating"":1})" +who acted in the film Kid Galahad?,"db.movies.find({""title"": ""Kid Galahad""}, {""cast"": 1})" +What is the box office revenue of the movie Movie Crazy in dollars?,"db.movies.find({""title"": ""Movie Crazy""}, {""tomatoes.boxOffice"": 1})" +who is the writer of the movie The Count of Monte Cristo?,"db.movies.find({""title"": ""The Count of Monte Cristo""}, {""writers"": 1})" +What is the plot summary of the movie Black Legion ?,"db.movies.find({ ""title"": ""Black Legion"" }, { ""plot"": 1})" +who starred in the film Three Ages?,"db.movies.find({""title"": ""Three Ages""}, {""cast"": 1})" +What is the imdbID and year of release for the movie with a title of 'Four Sons'?,"db.movies.find({""title"": ""Four Sons""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +What are the genres associated with the movie Flying Down to Rio ?,"db.movies.find({ ""title"": ""Flying Down to Rio"" }, { ""genres"": 1})" +what type of film is The Last of the Mohicans?,"db.movies.find({""title"": ""The Last of the Mohicans""}, {""genres"": 1})" +who starred in the film Cleopatra?,"db.movies.find({""title"": ""Cleopatra""}, {""cast"": 1})" +Who are the starring actors/actresses in the movie King Solomon's Mines?,"db.movies.find({""title"":""King Solomon's Mines""}, {""cast"":1})" +which person wrote the movie Roberta?,"db.movies.find({""title"": ""Roberta""}, {""writers"": 1})" +Which of Clint Eastwood's movies has the highest Rotten Tomatoes rating?,"db.movies.find({""directors"": ""Clint Eastwood"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +"Folies Bergère de Paris, is written by who?","db.movies.find({""title"": ""Folies Bergère de Paris""}, {""writers"": 1})" +which person wrote the movie Broken Blossoms or The Yellow Man and the Girl?,"db.movies.find({""title"": ""Broken Blossoms or The Yellow Man and the Girl""}, {""writers"": 1})" +What is the MPAA rating of the film Trouble in Paradise?,"db.movies.find({""title"":""Trouble in Paradise""}, {""rated"":1})" +Who is the lead actor of the movie She Done Him Wrong ?,"db.movies.find({""title"": ""She Done Him Wrong""}, {""cast"":{""$slice"": 1},""title"":1})" +What is the meter score of the movie The Champ according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""The Champ""}, {""tomatoes.viewer.meter"": 1})" +"the film Black Legion, was written by who?","db.movies.find({""title"": ""Black Legion""}, {""writers"": 1})" +How many reviews did the movie The Gold Rush receive on Rotten Tomatoes?,"db.movies.find({""title"":""The Gold Rush""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +what was the release year of the movie Now or Never?,"db.movies.find({""title"": ""Now or Never""}, {""year"": 1})" +"Has From Hand to Mouth won any awards? If so, which ones?","db.movies.find({""title"":""From Hand to Mouth"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +How long is the movie The Phantom of the Opera in minutes?,"db.movies.find({""title"":""The Phantom of the Opera""}, {""runtime"":1})" +what is the film Elephant Boy about in details?,"db.movies.find({""title"": ""Elephant Boy""}, {""fullplot"": 1})" +who was the writer of the movie Harvest?,"db.movies.find({""title"": ""Harvest""}, {""writers"": 1})" +"Wild Oranges, was written by who?","db.movies.find({""title"": ""Wild Oranges""}, {""writers"": 1})" +what is the plot for the film Now or Never?,"db.movies.find({""title"": ""Now or Never""}, {""plot"": 1})" +What are the genres this movie Dodsworth belongs to?,"db.movies.find({""title"":""Dodsworth""}, {""genres"":1})" +What is the Metacritic score of the movie The Kid Brother ?,"db.movies.find({ ""title"": ""The Kid Brother"" }, { ""metacritic"": 1})" +Elephant Boy is written by this person?,"db.movies.find({""title"": ""Elephant Boy""}, {""writers"": 1})" +Who is the director of the movie A Midsummer Night's Dream?,"db.movies.find({""title"": ""A Midsummer Night's Dream""}, { ""directors"": 1})" +What is the box office revenue of the movie Tol'able David ?,"db.movies.find({""title"": ""Tol'able David""}, { ""tomatoes.boxOffice"": 1})" +what is A Damsel in Distress about?,"db.movies.find({""title"": ""A Damsel in Distress""}, {""plot"": 1})" +what is the plot for Tsirk?,"db.movies.find({""title"": ""Tsirk""}, {""plot"": 1})" +what sort of film is It Happened One Night?,"db.movies.find({""title"": ""It Happened One Night""}, {""genres"": 1})" +Which movies from the 1990s were directed by Kenji Mizoguchi?,"db.movies.find({""directors"": 'Kenji Mizoguchi', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +What is the language of the movie Little Women?,"db.movies.find({""title"":""Little Women""}, {""languages"":1})" +who starred in the movie The Scarlet Empress?,"db.movies.find({""title"": ""The Scarlet Empress""}, {""cast"": 1})" +what is the genre for the film Going Hollywood?,"db.movies.find({""title"": ""Going Hollywood""}, {""genres"": 1})" +What is the IMDb rating for the movie Les Misèrables?,"db.movies.find({""title"": ""Les Misèrables""}, {""imdb.rating"": 1})" +what was the genre of the film The Blue Light?,"db.movies.find({""title"": ""The Blue Light""}, {""genres"": 1})" +what is The Crowd Roars description?,"db.movies.find({""title"": ""The Crowd Roars""}, {""plot"": 1})" +who was Captains Courageous directed by?,"db.movies.find({""title"": ""Captains Courageous""}, {""directors"": 1})" +what is Two Seconds about?,"db.movies.find({""title"": ""Two Seconds""}, {""plot"": 1})" +how many awards did The Chechahcos win?,"db.movies.find({""title"":""The Chechahcos""}, {""awards.wins"":1})" +who produced Tsirk?,"db.movies.find({""title"":""Tsirk""}, {""tomatoes.production"":1})" +what is the movie The Devil Is a Woman about?,"db.movies.find({""title"": ""The Devil Is a Woman""}, {""plot"": 1})" +who is the author of Four Sons?,"db.movies.find({""title"": ""Four Sons""}, {""writers"": 1})" +who is the writer of the movie This Is My Affair?,"db.movies.find({""title"": ""This Is My Affair""}, {""writers"": 1})" +When was the movie The Wedding March released?,"db.movies.find({""title"":""The Wedding March""}, {""released"":1})" +who wrote the screenplay for The Divorcee?,"db.movies.aggregate([ { ""$match"": { ""title"":""The Divorcee""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +"how many awards did the movie I Was Born, But... win?","db.movies.find({""title"":""I Was Born, But...""}, {""awards.wins"":1})" +what sort of movie is Street Angel?,"db.movies.find({""title"": ""Street Angel""}, {""genres"": 1})" +How did the audience and critics receive the movie The Garden of Allah?,"db.movies.find({""title"":""The Garden of Allah""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the IMDb rating for the movie Sons of the Desert?,"db.movies.find({""title"": ""Sons of the Desert""}, {""imdb.rating"": 1})" +which person wrote Top Hat?,"db.movies.find({""title"": ""Top Hat""}, {""writers"": 1})" +what is the movie The Great Ziegfeld about in details?,"db.movies.find({""title"": ""The Great Ziegfeld""}, {""fullplot"": 1})" +How many wins did the movie Kid Galahad receive?,"db.movies.find({""title"":""Kid Galahad""}, {""awards.wins"":1})" +What is the rating of the movie The Story of Louis Pasteur on IMDb?,"db.movies.find({""title"":""The Story of Louis Pasteur""}, {""imdb.rating"":1})" +How many nominations did the movie Stage Door receive?,"db.movies.find({""title"":""Stage Door""}, {""awards.nominations"":1})" +Can you tell me how many movies Orson Welles directed for each year they were released?,"db.movies.aggregate([{ $match: { ""directors"": ""Orson Welles"" }},{""$group"": { ""_id"": ""$year"", ""count"": {""$sum"": 1}}}])" +what is Imitation of Life description?,"db.movies.find({""title"": ""Imitation of Life""}, {""plot"": 1})" +what is the movie Children in the Wind about in details?,"db.movies.find({""title"": ""Children in the Wind""}, {""fullplot"": 1})" +Battleship Potemkin is written by this person?,"db.movies.find({""title"": ""Battleship Potemkin""}, {""writers"": 1})" +What is the IMDb ID for the movie Disraeli?,"db.movies.find({""title"":""Disraeli""}, {""imdb.id"":1})" +what was the release year of the film Camille?,"db.movies.find({""title"": ""Camille""}, {""year"": 1})" +who stars in the film Mutiny on the Bounty?,"db.movies.find({""title"": ""Mutiny on the Bounty""}, {""cast"": 1})" +what was the release date of the film Modern Times?,"db.movies.find({""title"": ""Modern Times""}, {""released"": 1})" +How many wins did the movie Movie Crazy receive?,"db.movies.find({""title"":""Movie Crazy""}, {""awards.wins"":1})" +Who are the main actors in The Dark Angel ?,"db.movies.find({ ""title"": ""The Dark Angel"" }, { ""cast"": 1})" +can you describe the plot of Naughty Marietta?,"db.movies.find({""title"": ""Naughty Marietta""}, {""plot"": 1})" +Who are the main actors in China Seas ?,"db.movies.find({ ""title"": ""China Seas"" }, { ""cast"": 1})" +Can you tell me how many movies Louis Malle directed for each year they were released?,"db.movies.aggregate([{ $match: { ""directors"": ""Louis Malle"" }},{""$group"": { ""_id"": ""$year"", ""count"": {""$sum"": 1}}}])" +Who are the actors that appear in the movie Footlight Parade ?,"db.movies.find({ ""title"": ""Footlight Parade"" },{ ""cast"": 1 })" +what was the genre of the film The Lives of a Bengal Lancer?,"db.movies.find({""title"": ""The Lives of a Bengal Lancer""}, {""genres"": 1})" +Who are the starring actors/actresses in the movie Three Little Pigs?,"db.movies.find({""title"":""Three Little Pigs""}, {""cast"":1})" +What is the box office revenue of the movie Becky Sharp in dollars?,"db.movies.find({""title"": ""Becky Sharp""}, {""tomatoes.boxOffice"": 1})" +who starred in the movie In Old Chicago?,"db.movies.find({""title"": ""In Old Chicago""}, {""cast"": 1})" +How many votes does the movie China Seas have on IMDb?,"db.movies.find({""title"":""China Seas""}, {""imdb.votes"":1})" +What is the rating of the movie The Chechahcos ?,"db.movies.find({ ""title"": ""The Chechahcos"" }, { ""rated"": 1})" +who are the actors in The Big Parade?,"db.movies.find({""title"": ""The Big Parade""}, {""cast"": 1})" +What is the rating of the movie The Beloved Vagabond according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""The Beloved Vagabond""}, {""tomatoes.viewer.rating"": 1})" +who was the writer of the movie Make Way for Tomorrow?,"db.movies.find({""title"": ""Make Way for Tomorrow""}, {""writers"": 1})" +the film Roberta was directed by who?,"db.movies.find({""title"": ""Roberta""}, {""directors"": 1})" +what was the release date of The Birth of a Nation?,"db.movies.find({""title"": ""The Birth of a Nation""}, {""released"": 1})" +Who are the starring actors/actresses in the movie Broken Blossoms or The Yellow Man and the Girl?,"db.movies.find({""title"":""Broken Blossoms or The Yellow Man and the Girl""}, {""cast"":1})" +what was the release date of the film Romance?,"db.movies.find({""title"": ""Romance""}, {""released"": 1})" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie Flying Down to Rio ?,"db.movies.find({""title"":""Flying Down to Rio""}, {""tomatoes.viewer.meter"":1})" +who was the writer of the movie Smilin' Through?,"db.movies.find({""title"": ""Smilin' Through""}, {""writers"": 1})" +who is the director for The Passion of Joan of Arc?,"db.movies.find({""title"": ""The Passion of Joan of Arc""}, {""directors"": 1})" +What is the MPAA rating of The Edge of the World?,"db.movies.find({""title"":""The Edge of the World""}, {""rated"":1})" +When was the movie The Docks of New York released in theaters?,"db.movies.find({""title"": ""The Docks of New York""}, {""released"": 1})" +which company produced The Big Trail?,"db.movies.find({""title"":""The Big Trail""}, {""tomatoes.production"":1})" +What is the critical reception of the movie The 39 Steps?,"db.movies.find({""title"":""The 39 Steps""}, {""tomatoes.critic"":1})" +who was The Gilded Lily written by?,"db.movies.find({""title"": ""The Gilded Lily""}, {""writers"": 1})" +How many reviews have been submitted by critics for the movie Comradeship?,"db.movies.find({ ""title"": ""Comradeship"" }, { ""tomatoes.critic.numReviews"": 1 })" +who starred in the film The Charge of the Light Brigade?,"db.movies.find({""title"": ""The Charge of the Light Brigade""}, {""cast"": 1})" +what is the film The Docks of New York about in details?,"db.movies.find({""title"": ""The Docks of New York""}, {""fullplot"": 1})" +What is the audience rating of the movie Wild and Woolly ?,"db.movies.find({ ""title"": ""Wild and Woolly"" },{ ""tomatoes.viewer.rating"": 1 })" +What is the IMDb rating for the movie In the Land of the Head Hunters ?,"db.movies.find({""title"":""In the Land of the Head Hunters""}, {""imdb.rating"":1})" +who was Ruggles of Red Gap directed by?,"db.movies.find({""title"": ""Ruggles of Red Gap""}, {""directors"": 1})" +who starred in the film The Devil to Pay!?,"db.movies.find({""title"": ""The Devil to Pay!""}, {""cast"": 1})" +What is the added duration of all movies directed by Gus Van Sant?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Gus Van Sant"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +"Has the film Blacksmith Scene won any awards? If so, which ones?","db.movies.find({""title"":""Blacksmith Scene"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +Who is the lead actress of the movie Grass: A Nation's Battle for Life ?,"db.movies.find({""title"": ""Grass: A Nation's Battle for Life""}, {""cast"":{""$slice"": 1},""title"":1})" +Which film directed by Sergei Eisenstein has the longest running time?,"db.movies.find({""directors"":""Sergei Eisenstein""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +who acted in the movie The Prisoner of Shark Island?,"db.movies.find({""title"": ""The Prisoner of Shark Island""}, {""cast"": 1})" +which person directed The Prisoner of Shark Island?,"db.movies.find({""title"": ""The Prisoner of Shark Island""}, {""directors"": 1})" +What is the rating of the movie The Cameraman on IMDb?,"db.movies.find({""title"":""The Cameraman""}, {""imdb.rating"":1})" +What is the running time of The Devil to Pay!?,"db.movies.find({""title"":""The Devil to Pay!""}, {""runtime"":1})" +who wrote the screenplay for The Barretts of Wimpole Street?,"db.movies.aggregate([ { ""$match"": { ""title"":""The Barretts of Wimpole Street""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +How many comments have been posted by users on the movie China Seas's page on the Mflix platform?,"db.movies.find({ ""title"": ""China Seas"" }, { ""num_mflix_comments"": 1 })" +When was the movie Miss Lulu Bett released?,"db.movies.find({""title"":""Miss Lulu Bett""}, {""released"":1})" +what type of movie is Street Angel?,"db.movies.find({""title"": ""Street Angel""}, {""genres"": 1})" +What is the rating of the movie The Front Page on IMDb?,"db.movies.find({""title"":""The Front Page""}, {""imdb.rating"":1})" +What is the MPAA rating of 42nd Street?,"db.movies.find({""title"":""42nd Street""}, {""rated"":1})" +What is the production company behind the movie Little Caesar ?,"db.movies.find({""title"": ""Little Caesar""}, {""tomatoes.production"": 1})" +"In the database, what is the usual rating given to Akira Kurosawa's movies on average?","db.movies.aggregate([{""$match"": {""directors"":""Akira Kurosawa""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +What is the production company of The Black Pirate?,"db.movies.find({""title"":""The Black Pirate""}, {""tomatoes.production"":1})" +What languages are spoken in the movie The Passion of Joan of Arc ?,"db.movies.find({""title"": ""The Passion of Joan of Arc""}, { ""languages"": 1})" +What is the movie The Lost World about? Can you provide a brief summary?,"db.movies.find({""title"":""The Lost World""}, {""plot"":1})" +what is the genre for the movie The Immigrant?,"db.movies.find({""title"": ""The Immigrant""}, {""genres"": 1})" +What is the movie A Damsel in Distress about? Can you provide a brief summary?,"db.movies.find({""title"":""A Damsel in Distress""}, {""plot"":1})" +what year was Street Angel released?,"db.movies.find({""title"": ""Street Angel""}, {""year"": 1})" +what is Traffic in Souls about in details?,"db.movies.find({""title"": ""Traffic in Souls""}, {""fullplot"": 1})" +What is the name of the director and cast for the movie 'Pandora's Box'?,"db.movies.find({""title"": ""Pandora's Box""}, {""directors"": 1, ""cast"": 1, ""_id"": 0})" +What is the audience rating of the movie The Champ ?,"db.movies.find({ ""title"": ""The Champ"" },{ ""tomatoes.viewer.rating"": 1 })" +which person wrote the film Intolerance: Love's Struggle Throughout the Ages?,"db.movies.find({""title"": ""Intolerance: Love's Struggle Throughout the Ages""}, {""writers"": 1})" +Who are the main actors/actresses in the movie Mr. Deeds Goes to Town?,"db.movies.find({""title"":""Mr. Deeds Goes to Town""}, {""cast"":1})" +Can you provide a detailed summary of the movie Ruggles of Red Gap plot?,"db.movies.find({ ""title"": ""Ruggles of Red Gap"" }, { ""fullplot"": 1})" +"Has the film Civilization won any awards? If so, which ones?","db.movies.find({""title"":""Civilization"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +who is the director of Elephant Boy?,"db.movies.find({""title"": ""Elephant Boy""}, {""directors"": 1})" +"Has the film It's a Gift won any awards? If so, which ones?","db.movies.find({""title"":""It's a Gift"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +who is listed as director for Dekigokoro?,"db.movies.find({""title"": ""Dekigokoro""}, {""directors"": 1})" +What is the MongoDB document ID of the movie Der Kaiser von Kalifornien?,"db.movies.find({""title"": ""Der Kaiser von Kalifornien""}, {""_id"": 1})" +How many votes does the movie He Who Gets Slapped have on IMDb?,"db.movies.find({""title"":""He Who Gets Slapped""}, {""imdb.votes"":1})" +what was the genre of the film Nanook of the North?,"db.movies.find({""title"": ""Nanook of the North""}, {""genres"": 1})" +How many awards did the movie win The Birth of a Nation ?,"db.movies.find({ ""title"": ""The Birth of a Nation"" },{ ""awards.wins"": 1 })" +who is the director of The Poor Little Rich Girl?,"db.movies.find({""title"": ""The Poor Little Rich Girl""}, {""directors"": 1})" +What is the language of the film The Story of a Cheat?,"db.movies.find({""title"":""The Story of a Cheat""}, {""languages"":1})" +Who is the director of the movie The Birth of a Nation?,"db.movies.find({""title"": ""The Birth of a Nation""}, { ""directors"": 1})" +What is the movie The Private Life of Henry VIII. rating?,"db.movies.find({""title"":""The Private Life of Henry VIII.""}, {""rated"":1})" +can you describe the plot of A Star Is Born?,"db.movies.find({""title"": ""A Star Is Born""}, {""plot"": 1})" +who wrote the screenplay for Cimarron?,"db.movies.aggregate([ { ""$match"": { ""title"":""Cimarron""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +What languages are spoken in the movie Romeo and Juliet?,"db.movies.find({""title"":""Romeo and Juliet""}, {""languages"":1})" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie King Kong ?,"db.movies.find({""title"":""King Kong""}, {""tomatoes.viewer.meter"":1})" +"Has the film Now or Never won any awards? If so, which ones?","db.movies.find({""title"":""Now or Never"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +Was the movie Come and Get It well received by audiences and critics?,"db.movies.find({""title"":""Come and Get It""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +When was the Tomatometer score and other Tomato-related information last updated for the movie The Trail of the Lonesome Pine?,"db.movies.find({""title"": ""The Trail of the Lonesome Pine""}, { ""tomatoes.lastUpdated"": 1})" +"What languages are spoken in the movie Steamboat Bill, Jr. ?","db.movies.find({""title"": ""Steamboat Bill, Jr.""}, { ""languages"": 1})" +What is the critical reception of the movie The Music Box?,"db.movies.find({""title"":""The Music Box""}, {""tomatoes.critic"":1})" +"What is the general rating of Joel Coen's films in the database, calculated as an average?","db.movies.aggregate([{""$match"": {""directors"":""Joel Coen""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +what sort of movie is Pèpè le Moko?,"db.movies.find({""title"": ""Pèpè le Moko""}, {""genres"": 1})" +Can you provide a longer version of the movie Imitation of Life plot?,"db.movies.find({""title"":""Imitation of Life""}, {""fullplot"":1})" +What is the critical reception of the movie Duck Soup?,"db.movies.find({""title"":""Duck Soup""}, {""tomatoes.critic"":1})" +What is the audience rating of the movie The Wedding March ?,"db.movies.find({ ""title"": ""The Wedding March"" },{ ""tomatoes.viewer.rating"": 1 })" +who wrote the screenplay for Lloyd's of London?,"db.movies.aggregate([ { ""$match"": { ""title"":""Lloyd's of London""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +What are the names of all the actors who starred in the movie 'All Quiet on the Western Front'?,"db.movies.find({""title"": ""All Quiet on the Western Front""}, {""cast"": 1})" +Who are the actors in the movie Smilin' Through?,"db.movies.find({""title"":""Smilin' Through""}, {""cast"":1})" +what is The Strong Man description?,"db.movies.find({""title"": ""The Strong Man""}, {""plot"": 1})" +which person wrote the movie A Star Is Born?,"db.movies.find({""title"": ""A Star Is Born""}, {""writers"": 1})" +what is the film Movie Crazy about?,"db.movies.find({""title"": ""Movie Crazy""}, {""plot"": 1})" +How long is the runtime of the movie The Invisible Man ?,"db.movies.find({""title"":""The Invisible Man""}, {""runtime"":1})" +What is the IMDb rating for the movie Captains Courageous?,"db.movies.find({""title"": ""Captains Courageous""}, {""imdb.rating"": 1})" +What is the language of the movie It Happened One Night?,"db.movies.find({""title"":""It Happened One Night""}, {""languages"":1})" +Who is the lead actress of the movie The Navigator ?,"db.movies.find({""title"": ""The Navigator""}, {""cast"":{""$slice"": 1},""title"":1})" +Has the movie Street Angel won any awards?,"db.movies.find({""title"":""Street Angel""}, {""awards.wins"":1})" +What is the movie Disraeli rating?,"db.movies.find({""title"":""Disraeli""}, {""rated"":1})" +who was the movie A Farewell to Arms written by?,"db.movies.find({""title"": ""A Farewell to Arms""}, {""writers"": 1})" +who is the director for Sherlock Jr.?,"db.movies.find({""title"": ""Sherlock Jr.""}, {""directors"": 1})" +who starred in the movie Sisters of the Gion?,"db.movies.find({""title"": ""Sisters of the Gion""}, {""cast"": 1})" +"the movie Morocco, was written by who?","db.movies.find({""title"": ""Morocco""}, {""writers"": 1})" +What is the Tomatometer score of the movie Come and Get It ?,"db.movies.find({ ""title"": ""Come and Get It"" },{ ""tomatoes.critic.meter"": 1 })" +"who starred in the film I Was Born, But...?","db.movies.find({""title"": ""I Was Born, But...""}, {""cast"": 1})" +who directed Queen Kelly?,"db.movies.find({""title"": ""Queen Kelly""}, {""directors"": 1})" +"the film Tol'able David, was written by who?","db.movies.find({""title"": ""Tol'able David""}, {""writers"": 1})" +What is the Metacritic score of the movie The Divine Lady ?,"db.movies.find({ ""title"": ""The Divine Lady"" }, { ""metacritic"": 1})" +"Has the film I Am a Fugitive from a Chain Gang won any awards? If so, which ones?","db.movies.find({""title"":""I Am a Fugitive from a Chain Gang"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +what is the film Two Seconds description ?,"db.movies.find({""title"": ""Two Seconds""}, {""plot"": 1})" +who starred in the movie The Green Pastures?,"db.movies.find({""title"": ""The Green Pastures""}, {""cast"": 1})" +what was the release date of the movie The Birth of a Nation?,"db.movies.find({""title"": ""The Birth of a Nation""}, {""released"": 1})" +which person wrote the film Lady Windermere's Fan?,"db.movies.find({""title"": ""Lady Windermere's Fan""}, {""writers"": 1})" +who is the writer of The Red Head?,"db.movies.find({""title"": ""The Red Head""}, {""writers"": 1})" +"what is the movie Steamboat Bill, Jr. about?","db.movies.find({""title"": ""Steamboat Bill, Jr.""}, {""plot"": 1})" +who is the writer of the film The Saphead?,"db.movies.find({""title"": ""The Saphead""}, {""writers"": 1})" +who is the writer of the film Ella Cinders?,"db.movies.find({""title"": ""Ella Cinders""}, {""writers"": 1})" +What is the website associated with the movie Traffic in Souls on Rotten Tomatoes?,"db.movies.find({""title"": ""Traffic in Souls""}, {""tomatoes.website"": 1})" +Could you tell me the typical rating of Jean-Pierre Melville movies in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Jean-Pierre Melville""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +what is the movie The Crowd description ?,"db.movies.find({""title"": ""The Crowd""}, {""plot"": 1})" +What is the prevailing movie genre in Jean Renoir's directed films?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Jean Renoir"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +what was the release year of the movie The Strong Man?,"db.movies.find({""title"": ""The Strong Man""}, {""year"": 1})" +what is the movie The Strong Man imdb rating?,"db.movies.find({""title"": ""The Strong Man""}, {""imdb.rating"": 1})" +How many reviews have been submitted by critics for the movie The Crowd?,"db.movies.find({ ""title"": ""The Crowd"" }, { ""tomatoes.critic.numReviews"": 1 })" +who was the movie The Invisible Ray written by?,"db.movies.find({""title"": ""The Invisible Ray""}, {""writers"": 1})" +who directed the film Cleopatra?,"db.movies.find({""title"": ""Cleopatra""}, {""directors"": 1})" +How did the audience and critics receive the film I Am a Fugitive from a Chain Gang?,"db.movies.find({""title"":""I Am a Fugitive from a Chain Gang""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the website associated with the movie The Spanish Earth on Rotten Tomatoes?,"db.movies.find({""title"": ""The Spanish Earth""}, {""tomatoes.website"": 1})" +"What is the percentage of positive reviews among critics for the movie I Was Born, But... ?","db.movies.find({ ""title"": ""I Was Born, But..."" },{ ""tomatoes.critic.meter"": 1 })" +What is the website associated with the movie Flash Gordon on Rotten Tomatoes?,"db.movies.find({""title"": ""Flash Gordon""}, {""tomatoes.website"": 1})" +What is the IMDb ID for the movie Carnival in Flanders?,"db.movies.find({""title"":""Carnival in Flanders""}, {""imdb.id"":1})" +What is the box office revenue of the movie Daughter of Shanghai in dollars?,"db.movies.find({""title"": ""Daughter of Shanghai""}, {""tomatoes.boxOffice"": 1})" +What is the production company behind the movie Sisters of the Gion ?,"db.movies.find({""title"": ""Sisters of the Gion""}, {""tomatoes.production"": 1})" +what was the release year of The Black Cat?,"db.movies.find({""title"": ""The Black Cat""}, {""year"": 1})" +who is the director for Applause?,"db.movies.find({""title"": ""Applause""}, {""directors"": 1})" +What was the release date for the movie The Unknown?,"db.movies.find({""title"":""The Unknown""}, {""released"":1})" +who was the film The Black Pirate written by?,"db.movies.find({""title"": ""The Black Pirate""}, {""writers"": 1})" +who wrote the screenplay for The Gold Rush?,"db.movies.aggregate([ { ""$match"": { ""title"":""The Gold Rush""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +the film Nosferatu was directed by who?,"db.movies.find({""title"": ""Nosferatu""}, {""directors"": 1})" +which company produced the film The Thief of Bagdad?,"db.movies.find({""title"":""The Thief of Bagdad""}, {""tomatoes.production"":1})" +What is the production company behind the movie The Lives of a Bengal Lancer ?,"db.movies.find({""title"": ""The Lives of a Bengal Lancer""}, {""tomatoes.production"": 1})" +Can you provide more information about the Rotten Tomatoes rating for the movie Wife! Be Like a Rose!?,"db.movies.find({""title"": ""Wife! Be Like a Rose!""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +the film The Last Command starred who?,"db.movies.find({""title"": ""The Last Command""}, {""cast"": 1})" +the film Wonder Bar starred who?,"db.movies.find({""title"": ""Wonder Bar""}, {""cast"": 1})" +Which Oliver Stone-directed movie has the highest score on Rotten Tomatoes?,"db.movies.find({""directors"": ""Oliver Stone"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +who was the writer of the film Anthony Adverse?,"db.movies.find({""title"": ""Anthony Adverse""}, {""writers"": 1})" +what is the movie Footlight Parade about?,"db.movies.find({""title"": ""Footlight Parade""}, {""plot"": 1})" +who stars in The Hurricane?,"db.movies.find({""title"": ""The Hurricane""}, {""cast"": 1})" +What is the freshness score of the movie A Story of Floating Weeds on Rotten Tomatoes?,"db.movies.find({""title"": ""A Story of Floating Weeds""}, {""tomatoes.fresh"": 1})" +who was the film The Scarlet Empress written by?,"db.movies.find({""title"": ""The Scarlet Empress""}, {""writers"": 1})" +who wrote the film The Barretts of Wimpole Street?,"db.movies.find({""title"": ""The Barretts of Wimpole Street""}, {""writers"": 1})" +what is the full plot for the movie Two Seconds?,"db.movies.find({""title"": ""Two Seconds""}, {""fullplot"": 1})" +who wrote the movie Trouble in Paradise?,"db.movies.find({""title"": ""Trouble in Paradise""}, {""writers"": 1})" +How many wins did the movie The Big Trail receive?,"db.movies.find({""title"":""The Big Trail""}, {""awards.wins"":1})" +What is the production company behind the movie One Night of Love ?,"db.movies.find({""title"": ""One Night of Love""}, { ""tomatoes.production"": 1})" +What movie directed by Roman Polanski has the shortest running time?,"db.movies.find({""directors"":""Roman Polanski""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +What is the production company behind the movie A Corner in Wheat ?,"db.movies.find({""title"": ""A Corner in Wheat""}, {""tomatoes.production"": 1})" +who was the film Little Miss Marker written by?,"db.movies.find({""title"": ""Little Miss Marker""}, {""writers"": 1})" +What is the consensus among critics about the movie David Copperfield ?,"db.movies.find({""title"": ""David Copperfield""}, {""tomatoes.consensus"": 1})" +Has the movie Final Accord won any awards?,"db.movies.find({""title"":""Final Accord""}, {""awards.wins"":1})" +who produced the film Under the Roofs of Paris?,"db.movies.find({""title"":""Under the Roofs of Paris""}, {""tomatoes.production"":1})" +How did the audience and critics receive the film Dracula?,"db.movies.find({""title"":""Dracula""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +who is the writer of the movie Moscow Laughs?,"db.movies.find({""title"": ""Moscow Laughs""}, {""writers"": 1})" +What is the IMDb rating for the film Secret Agent?,"db.movies.find({""title"": ""Secret Agent""}, {""imdb.rating"": 1})" +What is the language of the film Pandora's Box?,"db.movies.find({""title"":""Pandora's Box""}, {""languages"":1})" +What is the name of the Spike Lee-directed movie with the least runtime?,"db.movies.find({""directors"":""Spike Lee""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +In what language was the movie Elephant Boy released?,"db.movies.find({ ""title"": ""Elephant Boy"" }, { ""languages"": 1})" +What is the name of the director and cast for the movie 'Regeneration'?,"db.movies.find({""title"": ""Regeneration""}, {""directors"": 1, ""cast"": 1, ""_id"": 0})" +What is the movie It's a Gift about? Can you provide a brief summary?,"db.movies.find({""title"":""It's a Gift""}, {""plot"":1})" +who acted in the film The Invisible Ray?,"db.movies.find({""title"": ""The Invisible Ray""}, {""cast"": 1})" +How long is the movie Imitation of Life in minutes?,"db.movies.find({""title"":""Imitation of Life""}, {""runtime"":1})" +What is the imdbID and year of release for the movie with a title of 'Make Way for Tomorrow'?,"db.movies.find({""title"": ""Make Way for Tomorrow""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +how has Lady Windermere's Fan been recieved by critics and audience?,"db.movies.find({""title"":""Lady Windermere's Fan""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +How long is the runtime of the movie Mutiny on the Bounty ?,"db.movies.find({""title"":""Mutiny on the Bounty""}, {""runtime"":1})" +Who are the writers of the movie Show Boat ?,"db.movies.find({""title"": ""Show Boat""}, { ""writers"": 1})" +who directed the movie Snow White and the Seven Dwarfs?,"db.movies.find({""title"": ""Snow White and the Seven Dwarfs""}, {""directors"": 1})" +who was the writer of Modern Times?,"db.movies.find({""title"": ""Modern Times""}, {""writers"": 1})" +What is the consensus among critics about the movie The Son of Kong ?,"db.movies.find({""title"": ""The Son of Kong""}, {""tomatoes.consensus"": 1})" +What is the text representation of the awards won and nominations received by the movie Under the Roofs of Paris?,"db.movies.find({""title"": ""Under the Roofs of Paris""}, { ""awards.text"": 1})" +which person wrote the movie Follow the Fleet?,"db.movies.find({""title"": ""Follow the Fleet""}, {""writers"": 1})" +How many viewer reviews did the movie Sons of the Desert receive on Rotten Tomatoes?,"db.movies.find({""title"":""Sons of the Desert""}, {""tomatoes.viewer.numReviews"":1})" +How many audience reviews have been submitted for the movie Dr. Jekyll and Mr. Hyde ?,"db.movies.find({ ""title"": ""Dr. Jekyll and Mr. Hyde"" },{ ""tomatoes.viewer.numReviews"": 1 })" +the movie A Night at the Opera was directed by who?,"db.movies.find({""title"": ""A Night at the Opera""}, {""directors"": 1})" +who produced the film City Streets?,"db.movies.find({""title"":""City Streets""}, {""tomatoes.production"":1})" +What is the MongoDB document ID of the movie Daughter of Shanghai?,"db.movies.find({""title"": ""Daughter of Shanghai""}, {""_id"": 1})" +what was the release year of the movie Pandora's Box?,"db.movies.find({""title"": ""Pandora's Box""}, {""year"": 1})" +What is the consensus among critics about the movie Come and Get It ?,"db.movies.find({""title"": ""Come and Get It""}, {""tomatoes.consensus"": 1})" +what was the release year of the film Nosferatu?,"db.movies.find({""title"": ""Nosferatu""}, {""year"": 1})" +what was the release date of the film Dr. Jekyll and Mr. Hyde?,"db.movies.find({""title"": ""Dr. Jekyll and Mr. Hyde""}, {""released"": 1})" +what sort of film is The Informer?,"db.movies.find({""title"": ""The Informer""}, {""genres"": 1})" +What is the imdbID and genre of the movie 'Kid Galahad'?,"db.movies.find({""title"": ""Kid Galahad""}, {""imdb.id"": 1, ""genres"": 1, ""_id"": 0})" +what is the genre for the film The Dark Angel?,"db.movies.find({""title"": ""The Dark Angel""}, {""genres"": 1})" +Can you give me a brief summary of the movie The Crowd plot?,"db.movies.find({""title"":""The Crowd""}, {""plot"":1})" +what was the release date of the film City Lights?,"db.movies.find({""title"": ""City Lights""}, {""released"": 1})" +what type of film is Sunrise?,"db.movies.find({""title"": ""Sunrise""}, {""genres"": 1})" +who is the writer of the movie The Divorcee?,"db.movies.find({""title"": ""The Divorcee""}, {""writers"": 1})" +What is the language of the movie Swing Time?,"db.movies.find({""title"":""Swing Time""}, {""languages"":1})" +What is the IMDb rating for Popeye the Sailor Meets Sindbad the Sailor?,"db.movies.find({""title"": ""Popeye the Sailor Meets Sindbad the Sailor""}, {""imdb.rating"": 1})" +What is the IMDb rating for the film State Fair?,"db.movies.find({""title"": ""State Fair""}, {""imdb.rating"": 1})" +Can you give me a brief summary of the movie A Free Soul plot?,"db.movies.find({""title"":""A Free Soul""}, {""plot"":1})" +What is the website associated with the movie The Thief of Bagdad on Rotten Tomatoes?,"db.movies.find({""title"": ""The Thief of Bagdad""}, {""tomatoes.website"": 1})" +What is the full plot summary of the movie Naughty Marietta ?,"db.movies.find({""title"": ""Naughty Marietta""}, {""plot"": 1})" +Could you tell me the total runtime of all Martin Scorsese movies he has directed?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Martin Scorsese"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +How many viewer reviews did the movie A Farewell to Arms receive on Rotten Tomatoes?,"db.movies.find({""title"":""A Farewell to Arms""}, {""tomatoes.viewer.numReviews"":1})" +What are the genres associated with the movie Lost Horizon ?,"db.movies.find({ ""title"": ""Lost Horizon"" }, { ""genres"": 1})" +who is the director of The Man Who Could Work Miracles?,"db.movies.find({""title"": ""The Man Who Could Work Miracles""}, {""directors"": 1})" +Which film directed by Terrence Malick has the highest rating on Rotten Tomatoes?,"db.movies.find({""directors"": ""Terrence Malick"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +How many audience reviews have been submitted for the movie This Is My Affair ?,"db.movies.find({ ""title"": ""This Is My Affair"" },{ ""tomatoes.viewer.numReviews"": 1 })" +Who is the lead actress of the movie A Woman of Paris: A Drama of Fate ?,"db.movies.find({""title"": ""A Woman of Paris: A Drama of Fate""}, {""cast"":{""$slice"": 1},""title"":1})" +What is the rating of the movie Tarzan and His Mate according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Tarzan and His Mate""}, {""tomatoes.viewer.rating"": 1})" +What is the full plot summary of the movie Roberta ?,"db.movies.find({""title"": ""Roberta""}, {""plot"": 1})" +What is the viewer rating for the movie From Hand to Mouth on Rotten Tomatoes?,"db.movies.find({""title"":""From Hand to Mouth""}, {""tomatoes.viewer.rating"":1})" +What are the countries associated with the movie è Nous la Libertè ?,"db.movies.find({""title"": ""è Nous la Libertè""}, {""countries"": 1})" +Can you provide me with a list of movies directed by Clint Eastwood?,"db.movies.find({""directors"": ""Clint Eastwood""},{""title"":1})" +How many reviews have been submitted for the movie The Big House on Rotten Tomatoes?,"db.movies.find({ ""title"": ""The Big House"" },{ ""tomatoes.viewer.numReviews"": 1 })" +How many votes did the movie Elephant Boy receive on IMDB?,"db.movies.find({""title"": ""Elephant Boy""}, { ""imdb.votes"": 1})" +How many audience reviews have been submitted for the movie The Scarlet Empress ?,"db.movies.find({ ""title"": ""The Scarlet Empress"" },{ ""tomatoes.viewer.numReviews"": 1 })" +who stars in the movie The Song of Night?,"db.movies.find({""title"": ""The Song of Night""}, {""cast"": 1})" +What is the ID of the movie The Private Life of Don Juan on IMDB?,"db.movies.find({""title"": ""The Private Life of Don Juan""}, {""imdb.id"": 1})" +who produced The Passion of Joan of Arc?,"db.movies.find({""title"":""The Passion of Joan of Arc""}, {""tomatoes.production"":1})" +What are the countries associated with the movie They Won't Forget ?,"db.movies.find({""title"": ""They Won't Forget""}, {""countries"": 1})" +who starred in the movie Popeye the Sailor Meets Sindbad the Sailor?,"db.movies.find({""title"": ""Popeye the Sailor Meets Sindbad the Sailor""}, {""cast"": 1})" +What is the audience rating of the movie Marked Woman ?,"db.movies.find({ ""title"": ""Marked Woman"" },{ ""tomatoes.viewer.rating"": 1 })" +what was the genre of The Wedding March?,"db.movies.find({""title"": ""The Wedding March""}, {""genres"": 1})" +What is the runtime and rating for the movie 'Secret Agent'?,"db.movies.find({""title"": ""Secret Agent""}, {""runtime"": 1, ""rated"": 1})" +How many viewer reviews did the movie Berkeley Square receive on Rotten Tomatoes?,"db.movies.find({""title"":""Berkeley Square""}, {""tomatoes.viewer.numReviews"":1})" +who wrote the screenplay for the film Dante's Inferno?,"db.movies.aggregate([ { ""$match"": { ""title"":""Dante's Inferno""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +what genre of movie is The Broadway Melody?,"db.movies.find({""title"": ""The Broadway Melody""}, {""genres"": 1})" +who starred in the film Flying Down to Rio?,"db.movies.find({""title"": ""Flying Down to Rio""}, {""cast"": 1})" +What is the MPAA rating of the film Dante's Inferno?,"db.movies.find({""title"":""Dante's Inferno""}, {""rated"":1})" +What is the consensus among critics about the movie Maria Chapdelaine ?,"db.movies.find({""title"": ""Maria Chapdelaine""}, {""tomatoes.consensus"": 1})" +What is the language of The Blue Light?,"db.movies.find({""title"":""The Blue Light""}, {""languages"":1})" +"Has the film The Last Command won any awards? If so, which ones?","db.movies.find({""title"":""The Last Command"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What is the movie Bad Girl rating?,"db.movies.find({""title"":""Bad Girl""}, {""rated"":1})" +The Blood of a Poet is a movie written by this person?,"db.movies.find({""title"": ""The Blood of a Poet""}, {""writers"": 1})" +the director of Baby Face was?,"db.movies.find({""title"": ""Baby Face""}, {""directors"": 1})" +the film Movie Crazy starred who?,"db.movies.find({""title"": ""Movie Crazy""}, {""cast"": 1})" +who was the writer of the film The Son of the Sheik?,"db.movies.find({""title"": ""The Son of the Sheik""}, {""writers"": 1})" +what is the movie Love Me Tonight description ?,"db.movies.find({""title"": ""Love Me Tonight""}, {""plot"": 1})" +Who is the lead actor of the movie Mutiny on the Bounty ?,"db.movies.find({""title"": ""Mutiny on the Bounty""}, {""cast"":{""$slice"": 1},""title"":1})" +who produced Night Must Fall?,"db.movies.find({""title"":""Night Must Fall""}, {""tomatoes.production"":1})" +what was the release date of the movie Make Way for Tomorrow?,"db.movies.find({""title"": ""Make Way for Tomorrow""}, {""released"": 1})" +Can you provide me with a list of movies directed by Christopher Nolan that were released in the 1990s?,"db.movies.find({""directors"": 'Christopher Nolan', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +who wrote the screenplay for Final Accord?,"db.movies.aggregate([ { ""$match"": { ""title"":""Final Accord""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +what sort of movie is Lonesome?,"db.movies.find({""title"": ""Lonesome""}, {""genres"": 1})" +who was the film Death Takes a Holiday written by?,"db.movies.find({""title"": ""Death Takes a Holiday""}, {""writers"": 1})" +what is the movie State Fair description ?,"db.movies.find({""title"": ""State Fair""}, {""plot"": 1})" +What is the rating of the movie The Lower Depths according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""The Lower Depths""}, {""tomatoes.viewer.rating"": 1})" +what is Fury imdb rating?,"db.movies.find({""title"": ""Fury""}, {""imdb.rating"": 1})" +what year was Becky Sharp released?,"db.movies.find({""title"": ""Becky Sharp""}, {""year"": 1})" +how many awards did the movie Gold Diggers of 1933 win?,"db.movies.find({""title"":""Gold Diggers of 1933""}, {""awards.wins"":1})" +what is the genre for the movie Dante's Inferno?,"db.movies.find({""title"": ""Dante's Inferno""}, {""genres"": 1})" +What are some of the films that Akira Kurosawa has directed?,"db.movies.find({""directors"": ""Akira Kurosawa""},{""title"":1})" +Has the movie The 3 Penny Opera won any awards?,"db.movies.find({""title"":""The 3 Penny Opera""}, {""awards.wins"":1})" +What are the names of all the actors who starred in the movie 'Dekigokoro'?,"db.movies.find({""title"": ""Dekigokoro""}, {""cast"": 1})" +What are the genres associated with the movie The Prince and the Pauper ?,"db.movies.find({ ""title"": ""The Prince and the Pauper"" }, { ""genres"": 1})" +what is Applause about?,"db.movies.find({""title"": ""Applause""}, {""plot"": 1})" +"Has the movie The Awful Truth won any awards? If so, which ones?","db.movies.find({""title"":""The Awful Truth"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +which person wrote the film Sisters of the Gion?,"db.movies.find({""title"": ""Sisters of the Gion""}, {""writers"": 1})" +"the movie The Thin Man, was written by who?","db.movies.find({""title"": ""The Thin Man""}, {""writers"": 1})" +the film Three Little Pigs starred which actors?,"db.movies.find({""title"": ""Three Little Pigs""}, {""cast"": 1})" +who is the director for Folies Bergère de Paris?,"db.movies.find({""title"": ""Folies Bergère de Paris""}, {""directors"": 1})" +What is the IMDb ID for the movie Moscow Laughs?,"db.movies.find({""title"":""Moscow Laughs""}, {""imdb.id"":1})" +what is Two Seconds imdb rating?,"db.movies.find({""title"": ""Two Seconds""}, {""imdb.rating"": 1})" +who was the writer of the movie M?,"db.movies.find({""title"": ""M""}, {""writers"": 1})" +what is the full plot for the film The Big Parade?,"db.movies.find({""title"": ""The Big Parade""}, {""fullplot"": 1})" +"Fury, is written by who?","db.movies.find({""title"": ""Fury""}, {""writers"": 1})" +What is the text description of the movie David Golder awards?,"db.movies.find({""title"":""David Golder""}, {""awards.text"":1})" +What is the IMDB rating of the movie The Immigrant ?,"db.movies.find({""title"": ""The Immigrant""}, { ""imdb.rating"": 1})" +When was the Tomatometer score and other Tomato-related information last updated for the movie Gold Diggers of 1933?,"db.movies.find({""title"": ""Gold Diggers of 1933""}, { ""tomatoes.lastUpdated"": 1})" +what was the release year of the movie Broadway Melody of 1936?,"db.movies.find({""title"": ""Broadway Melody of 1936""}, {""year"": 1})" +who stars in the movie Storm Over Asia?,"db.movies.find({""title"": ""Storm Over Asia""}, {""cast"": 1})" +How did the audience and critics receive the film Queen Christina?,"db.movies.find({""title"":""Queen Christina""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +In what year was the movie City Lights released?,"db.movies.find({""title"":""City Lights""}, {""year"":1})" +Can you give me a brief summary of the movie The Song of Night plot?,"db.movies.find({""title"":""The Song of Night""}, {""plot"":1})" +what is the plot for the film Mary of Scotland?,"db.movies.find({""title"": ""Mary of Scotland""}, {""plot"": 1})" +what is the genre for the movie Dr. Jekyll and Mr. Hyde?,"db.movies.find({""title"": ""Dr. Jekyll and Mr. Hyde""}, {""genres"": 1})" +What is the language of the movie Mr. Deeds Goes to Town?,"db.movies.find({""title"":""Mr. Deeds Goes to Town""}, {""languages"":1})" +How many wins did the movie It's a Gift receive?,"db.movies.find({""title"":""It's a Gift""}, {""awards.wins"":1})" +can you describe the plot of Wild Oranges?,"db.movies.find({""title"": ""Wild Oranges""}, {""plot"": 1})" +What is the rating of the movie Captains Courageous on IMDb?,"db.movies.find({""title"":""Captains Courageous""}, {""imdb.rating"":1})" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie The Iron Horse ?,"db.movies.find({""title"":""The Iron Horse""}, {""tomatoes.viewer.meter"":1})" +what was the genre of the film Battleship Potemkin?,"db.movies.find({""title"": ""Battleship Potemkin""}, {""genres"": 1})" +the movie Black Fury starred which actors?,"db.movies.find({""title"": ""Black Fury""}, {""cast"": 1})" +What is the plot summary of the movie Dodsworth ?,"db.movies.find({ ""title"": ""Dodsworth"" }, { ""plot"": 1})" +What is the freshness score of the movie Lonesome on Rotten Tomatoes?,"db.movies.find({""title"": ""Lonesome""}, {""tomatoes.fresh"": 1})" +What is the text representation of the awards won and nominations received by the movie Cops?,"db.movies.find({""title"": ""Cops""}, { ""awards.text"": 1})" +What is the MongoDB document ID of the movie Hallelujah?,"db.movies.find({""title"": ""Hallelujah""}, {""_id"": 1})" +When was the information about the movie Chapayev last updated?,"db.movies.find({ ""title"": ""Chapayev"" }, { ""lastupdated"": 1})" +"One Week, is written by who?","db.movies.find({""title"": ""One Week""}, {""writers"": 1})" +What is the running time of the movie Sisters of the Gion?,"db.movies.find({""title"":""Sisters of the Gion""}, {""runtime"":1})" +"The Big House, is written by who?","db.movies.find({""title"": ""The Big House""}, {""writers"": 1})" +Could you tell me which Wes Anderson-directed film has the longest running time?,"db.movies.find({""directors"":""Wes Anderson""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +When was the Tomatometer score and other Tomato-related information last updated for the movie Lloyd's of London?,"db.movies.find({""title"": ""Lloyd's of London""}, { ""tomatoes.lastUpdated"": 1})" +who produced the movie Gertie the Dinosaur?,"db.movies.find({""title"":""Gertie the Dinosaur""}, {""tomatoes.production"":1})" +who wrote the film It Happened One Night?,"db.movies.find({""title"": ""It Happened One Night""}, {""writers"": 1})" +Who are the main actors/actresses in the movie The 39 Steps?,"db.movies.find({""title"":""The 39 Steps""}, {""cast"":1})" +In what year was the movie Broadway Melody of 1936 released ?,"db.movies.find({ ""title"": ""Broadway Melody of 1936"" }, { ""year"": 1})" +Was the movie Mayerling well received by audiences?,"db.movies.find({""title"":""Mayerling""}, {""tomatoes.viewer"":1})" +what is the full plot for the film Come and Get It?,"db.movies.find({""title"": ""Come and Get It""}, {""fullplot"": 1})" +What is the language of the movie A Night at the Opera?,"db.movies.find({""title"":""A Night at the Opera""}, {""languages"":1})" +What is the text description of the movie The Great Train Robbery awards?,"db.movies.find({""title"":""The Great Train Robbery""}, {""awards.text"":1})" +What type of media is Everybody's Woman?,"db.movies.find({ ""title"": ""Everybody's Woman"" }, { ""type"": 1})" +what is the movie A Star Is Born about in details?,"db.movies.find({""title"": ""A Star Is Born""}, {""fullplot"": 1})" +what was the genre of the film I Am a Fugitive from a Chain Gang?,"db.movies.find({""title"": ""I Am a Fugitive from a Chain Gang""}, {""genres"": 1})" +What is the consensus among critics about the movie The Champ?,"db.movies.find({""title"": ""The Champ""}, { ""tomatoes.consensus"": 1})" +Who are the starring actors/actresses in the movie The Pearls of the Crown?,"db.movies.find({""title"":""The Pearls of the Crown""}, {""cast"":1})" +who is the author of Dishonored?,"db.movies.find({""title"": ""Dishonored""}, {""writers"": 1})" +what is the plot for the movie The Scarlet Empress?,"db.movies.find({""title"": ""The Scarlet Empress""}, {""plot"": 1})" +When was the movie City Lights released in theaters?,"db.movies.find({""title"": ""City Lights""}, {""released"": 1})" +What is the language of Upstream?,"db.movies.find({""title"":""Upstream""}, {""languages"":1})" +What is the production company behind the movie The Music Box ?,"db.movies.find({""title"": ""The Music Box""}, { ""tomatoes.production"": 1})" +who is the writer of the movie 7th Heaven?,"db.movies.find({""title"": ""7th Heaven""}, {""writers"": 1})" +How many comments have been posted by users on the movie I Am a Fugitive from a Chain Gang's page on the Mflix platform?,"db.movies.find({ ""title"": ""I Am a Fugitive from a Chain Gang"" }, { ""num_mflix_comments"": 1 })" +What is the freshness score of the movie Masquerade in Vienna on Rotten Tomatoes?,"db.movies.find({""title"": ""Masquerade in Vienna""}, {""tomatoes.fresh"": 1})" +who directed the movie The Life of Emile Zola?,"db.movies.find({""title"": ""The Life of Emile Zola""}, {""directors"": 1})" +who was the writer of Romance?,"db.movies.find({""title"": ""Romance""}, {""writers"": 1})" +What is the website associated with the movie Maria Chapdelaine on Rotten Tomatoes?,"db.movies.find({""title"": ""Maria Chapdelaine""}, {""tomatoes.website"": 1})" +who is the writer of the film Red Dust?,"db.movies.find({""title"": ""Red Dust""}, {""writers"": 1})" +which person directed Fury?,"db.movies.find({""title"": ""Fury""}, {""directors"": 1})" +what is the genre for the movie Two Seconds?,"db.movies.find({""title"": ""Two Seconds""}, {""genres"": 1})" +"In which countries was the movie Winsor McCay, the Famous Cartoonist of the N.Y. Herald and His Moving Comics produced?","db.movies.find({""title"":""Winsor McCay, the Famous Cartoonist of the N.Y. Herald and His Moving Comics""}, {""countries"":1})" +What was the release date for the movie Chapayev?,"db.movies.find({""title"":""Chapayev""}, {""released"":1})" +what is the movie Lost Horizon description ?,"db.movies.find({""title"": ""Lost Horizon""}, {""plot"": 1})" +What is the runtime and rating for the movie 'The Trail of the Lonesome Pine'?,"db.movies.find({""title"": ""The Trail of the Lonesome Pine""}, {""runtime"": 1, ""rated"": 1})" +what is the full plot for the film The Birth of a Nation?,"db.movies.find({""title"": ""The Birth of a Nation""}, {""fullplot"": 1})" +In what language was the movie The Champ released?,"db.movies.find({ ""title"": ""The Champ"" }, { ""languages"": 1})" +What is the text description of the movie Secret Agent awards?,"db.movies.find({""title"":""Secret Agent""}, {""awards.text"":1})" +what genre of film is King Solomon's Mines?,"db.movies.find({""title"": ""King Solomon's Mines""}, {""genres"": 1})" +What is the running time of the movie Regeneration?,"db.movies.find({""title"":""Regeneration""}, {""runtime"":1})" +Who is the lead actor of the movie Tarzan the Ape Man ?,"db.movies.find({""title"": ""Tarzan the Ape Man""}, {""cast"":{""$slice"": 1},""title"":1})" +"what year was the movie I Was Born, But... released?","db.movies.find({""title"": ""I Was Born, But...""}, {""year"": 1})" +How long is the runtime of the movie Flesh and the Devil ?,"db.movies.find({""title"":""Flesh and the Devil""}, {""runtime"":1})" +who stars in the movie Three Smart Girls?,"db.movies.find({""title"": ""Three Smart Girls""}, {""cast"": 1})" +who wrote the screenplay for the movie La Grande Illusion?,"db.movies.aggregate([ { ""$match"": { ""title"":""La Grande Illusion""} }, { ""$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 Edge of the World ?,"db.movies.find({""title"": ""The Edge of the World""}, {""tomatoes.production"": 1})" +Who are the writers of the movie Go West ?,"db.movies.find({""title"": ""Go West""}, { ""writers"": 1})" +who starred in the film The Cheat?,"db.movies.find({""title"": ""The Cheat""}, {""cast"": 1})" +What is the critical reception of the movie For Heaven's Sake?,"db.movies.find({""title"":""For Heaven's Sake""}, {""tomatoes.critic"":1})" +How does the movie Mary of Scotland rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Mary of Scotland"" },{ ""tomatoes.critic.meter"": 1 })" +What is the running time of the film The Divine Lady?,"db.movies.find({""title"":""The Divine Lady""}, {""runtime"":1})" +What is the full plot summary of the movie Hell's Hinges ?,"db.movies.find({""title"": ""Hell's Hinges""}, {""plot"": 1})" +Who are the main actors in La Grande Illusion ?,"db.movies.find({ ""title"": ""La Grande Illusion"" }, { ""cast"": 1})" +Who are the starring actors/actresses in the movie The Prisoner of Shark Island?,"db.movies.find({""title"":""The Prisoner of Shark Island""}, {""cast"":1})" +who wrote the screenplay for Love Me Tonight?,"db.movies.aggregate([ { ""$match"": { ""title"":""Love Me Tonight""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +What type of movie is Flying Down to Rio ?,"db.movies.find({""title"":""Flying Down to Rio""}, {""genres"":1})" +how many awards did the movie Queen Kelly win?,"db.movies.find({""title"":""Queen Kelly""}, {""awards.wins"":1})" +Can you provide more information about the languages spoken in the movie Nosferatu ?,"db.movies.find({""title"":""Nosferatu""}, {""languages"":1})" +"Has the movie Regeneration won any awards? If so, which ones?","db.movies.find({""title"":""Regeneration"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +How many award nominations did the movie receive Scrooge ?,"db.movies.find({ ""title"": ""Scrooge"" },{ ""awards.nominations"": 1 })" +Can you name some of the films that Ingmar Bergman directed and were released in the 1990s?,"db.movies.find({""directors"": 'Ingmar Bergman', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +What is the full plot summary of the movie Broken Lullaby ?,"db.movies.find({""title"": ""Broken Lullaby""}, {""plot"": 1})" +What is the IMDB rating of the movie Tol'able David ?,"db.movies.find({""title"": ""Tol'able David""}, { ""imdb.rating"": 1})" +What are the names of all the actors who starred in the movie 'The Scarlet Empress'?,"db.movies.find({""title"": ""The Scarlet Empress""}, {""cast"": 1})" +What is the running time of the film Sisters of the Gion?,"db.movies.find({""title"":""Sisters of the Gion""}, {""runtime"":1})" +who wrote the screenplay for The Black Pirate?,"db.movies.aggregate([ { ""$match"": { ""title"":""The Black Pirate""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +In what year was the movie The Hunchback of Notre Dame released ?,"db.movies.find({ ""title"": ""The Hunchback of Notre Dame"" }, { ""year"": 1})" +what sort of movie is Modern Times?,"db.movies.find({""title"": ""Modern Times""}, {""genres"": 1})" +what was the release year of Follow the Fleet?,"db.movies.find({""title"": ""Follow the Fleet""}, {""year"": 1})" +Who are the main actors/actresses in the movie Four Sons?,"db.movies.find({""title"":""Four Sons""}, {""cast"":1})" +What is the plot summary of the movie Battleship Potemkin ?,"db.movies.find({ ""title"": ""Battleship Potemkin"" }, { ""plot"": 1})" +what was the release year of the film Wonder Bar?,"db.movies.find({""title"": ""Wonder Bar""}, {""year"": 1})" +what is Love Me Tonight about?,"db.movies.find({""title"": ""Love Me Tonight""}, {""plot"": 1})" +When was the Tomatometer score and other Tomato-related information last updated for the movie Traffic in Souls?,"db.movies.find({""title"": ""Traffic in Souls""}, { ""tomatoes.lastUpdated"": 1})" +whats the total runtime of all the movies directed by Abbas Kiarostami ?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Abbas Kiarostami"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +"It's a Gift, is written by who?","db.movies.find({""title"": ""It's a Gift""}, {""writers"": 1})" +When was the movie In the Land of the Head Hunters released in theaters?,"db.movies.find({""title"": ""In the Land of the Head Hunters""}, {""released"": 1})" +What is the mean rating of all the Pedro Almodovar films in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Pedro Almodovar""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +When was the information last updated for the movie Metropolis ?,"db.movies.find({ ""title"": ""Metropolis"" },{ ""lastupdated"": 1 })" +"What is the movie I Was Born, But... about? Can you provide a brief summary?","db.movies.find({""title"":""I Was Born, But...""}, {""plot"":1})" +In which countries was the movie The Devil Is a Woman produced?,"db.movies.find({""title"":""The Devil Is a Woman""}, {""countries"":1})" +the director of The Great Train Robbery was?,"db.movies.find({""title"": ""The Great Train Robbery""}, {""directors"": 1})" +Can you provide more information about the Rotten Tomatoes rating for the movie Two Seconds?,"db.movies.find({""title"": ""Two Seconds""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +What is the MPAA rating of the movie Napoleon?,"db.movies.find({""title"":""Napoleon""}, {""rated"":1})" +What is the production company of the movie The Good Earth?,"db.movies.find({""title"":""The Good Earth""}, {""tomatoes.production"":1})" +who stars in the movie Battleship Potemkin?,"db.movies.find({""title"": ""Battleship Potemkin""}, {""cast"": 1})" +the movie All Quiet on the Western Front starred which actors?,"db.movies.find({""title"": ""All Quiet on the Western Front""}, {""cast"": 1})" +What is the IMDb rating for One Night of Love?,"db.movies.find({""title"": ""One Night of Love""}, {""imdb.rating"": 1})" +What is the sum of the runtimes of all the films directed by Tim Burton?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Tim Burton"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +What is the MPAA rating of The Crowd Roars?,"db.movies.find({""title"":""The Crowd Roars""}, {""rated"":1})" +who acted in the movie Applause?,"db.movies.find({""title"": ""Applause""}, {""cast"": 1})" +what type of movie is The Gay Divorcee?,"db.movies.find({""title"": ""The Gay Divorcee""}, {""genres"": 1})" +"the film The Broadway Melody, was written by who?","db.movies.find({""title"": ""The Broadway Melody""}, {""writers"": 1})" +who is the writer of Bride of Frankenstein?,"db.movies.find({""title"": ""Bride of Frankenstein""}, {""writers"": 1})" +which person wrote the film Masquerade in Vienna?,"db.movies.find({""title"": ""Masquerade in Vienna""}, {""writers"": 1})" +who directed the film The Wedding Night?,"db.movies.find({""title"": ""The Wedding Night""}, {""directors"": 1})" +who wrote the movie The Dark Angel?,"db.movies.find({""title"": ""The Dark Angel""}, {""writers"": 1})" +how many awards did the film Cavalcade win?,"db.movies.find({""title"":""Cavalcade""}, {""awards.wins"":1})" +who's the director of Civilization?,"db.movies.find({""title"": ""Civilization""}, {""directors"": 1})" +what is the film Stage Door description ?,"db.movies.find({""title"": ""Stage Door""}, {""plot"": 1})" +What is the running time of the movie Three Smart Girls?,"db.movies.find({""title"":""Three Smart Girls""}, {""runtime"":1})" +the movie College was directed by who?,"db.movies.find({""title"": ""College""}, {""directors"": 1})" +What is the IMDb rating for the movie Les vampires?,"db.movies.find({""title"": ""Les vampires""}, {""imdb.rating"": 1})" +Was the movie The Lives of a Bengal Lancer well received by audiences?,"db.movies.find({""title"":""The Lives of a Bengal Lancer""}, {""tomatoes.viewer"":1})" +who was the writer of the film Captains Courageous?,"db.movies.find({""title"": ""Captains Courageous""}, {""writers"": 1})" +"Who are the main actors/actresses in the movie Steamboat Bill, Jr.?","db.movies.find({""title"":""Steamboat Bill, Jr.""}, {""cast"":1})" +what is the full plot for the movie The Perils of Pauline?,"db.movies.find({""title"": ""The Perils of Pauline""}, {""fullplot"": 1})" +who are the actors in Intolerance: Love's Struggle Throughout the Ages?,"db.movies.find({""title"": ""Intolerance: Love's Struggle Throughout the Ages""}, {""cast"": 1})" +who wrote the screenplay for the movie The 39 Steps?,"db.movies.aggregate([ { ""$match"": { ""title"":""The 39 Steps""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +Can you provide me with a list of movies directed by Ingmar Bergman?,"db.movies.find({""directors"": ""Ingmar Bergman""},{""title"":1})" +What is the runtime and rating for the movie 'Everybody's Woman'?,"db.movies.find({""title"": ""Everybody's Woman""}, {""runtime"": 1, ""rated"": 1})" +what is the movie Nosferatu imdb rating?,"db.movies.find({""title"": ""Nosferatu""}, {""imdb.rating"": 1})" +What is the running time of the film A Farewell to Arms?,"db.movies.find({""title"":""A Farewell to Arms""}, {""runtime"":1})" +What is the consensus among critics about the movie The Land Beyond the Sunset?,"db.movies.find({""title"": ""The Land Beyond the Sunset""}, { ""tomatoes.consensus"": 1})" +the film Civilization starred who?,"db.movies.find({""title"": ""Civilization""}, {""cast"": 1})" +what is the plot for A Damsel in Distress?,"db.movies.find({""title"": ""A Damsel in Distress""}, {""plot"": 1})" +which company produced the movie The Guardsman?,"db.movies.find({""title"":""The Guardsman""}, {""tomatoes.production"":1})" +What is the rating of the movie Final Accord ?,"db.movies.find({ ""title"": ""Final Accord"" }, { ""rated"": 1})" +which person wrote the film The Guardsman?,"db.movies.find({""title"": ""The Guardsman""}, {""writers"": 1})" +"who directed the movie Steamboat Bill, Jr.?","db.movies.find({""title"": ""Steamboat Bill, Jr.""}, {""directors"": 1})" +What is the production company of the film Love Me Tonight?,"db.movies.find({""title"":""Love Me Tonight""}, {""tomatoes.production"":1})" +How many viewer reviews did the movie The Sin of Madelon Claudet receive on Rotten Tomatoes?,"db.movies.find({""title"":""The Sin of Madelon Claudet""}, {""tomatoes.viewer.numReviews"":1})" +who is the director of China Seas?,"db.movies.find({""title"": ""China Seas""}, {""directors"": 1})" +Duck Soup is written by this person?,"db.movies.find({""title"": ""Duck Soup""}, {""writers"": 1})" +who acted in the film The Invisible Man?,"db.movies.find({""title"": ""The Invisible Man""}, {""cast"": 1})" +what was the genre of the film Les vampires?,"db.movies.find({""title"": ""Les vampires""}, {""genres"": 1})" +what was the release year of the film Dishonored?,"db.movies.find({""title"": ""Dishonored""}, {""year"": 1})" +How many audience reviews have been submitted for the movie San Francisco ?,"db.movies.find({ ""title"": ""San Francisco"" },{ ""tomatoes.viewer.numReviews"": 1 })" +What's the title of the shortest Vittorio De Sica-directed movie?,"db.movies.find({""directors"":""Vittorio De Sica""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +who is the director for Traffic in Souls?,"db.movies.find({""title"": ""Traffic in Souls""}, {""directors"": 1})" +What is the name of the Ingmar Bergman-directed movie with the briefest runtime?,"db.movies.find({""directors"":""Ingmar Bergman""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +What is the IMDb rating for Cimarron?,"db.movies.find({""title"": ""Cimarron""}, {""imdb.rating"": 1})" +What is the Metacritic score of the movie Twentieth Century ?,"db.movies.find({ ""title"": ""Twentieth Century"" }, { ""metacritic"": 1})" +who was the movie Les Misèrables written by?,"db.movies.find({""title"": ""Les Misèrables""}, {""writers"": 1})" +what is the movie The Devil Is a Woman imdb rating?,"db.movies.find({""title"": ""The Devil Is a Woman""}, {""imdb.rating"": 1})" +what is the film College about in details?,"db.movies.find({""title"": ""College""}, {""fullplot"": 1})" +who are the actors in Les vampires?,"db.movies.find({""title"": ""Les vampires""}, {""cast"": 1})" +Who is the lead actress of the movie Wild Oranges ?,"db.movies.find({""title"": ""Wild Oranges""}, {""cast"":{""$slice"": 1},""title"":1})" +What are the highest-rated Adventure movies in the database?,"db.movies.find({""genres"": ""Adventure""}).sort({""imdb.rating"": -1}).limit(10)" +"who starred in I Was Born, But...?","db.movies.find({""title"": ""I Was Born, But...""}, {""cast"": 1})" +who produced the movie One Week?,"db.movies.find({""title"":""One Week""}, {""tomatoes.production"":1})" +How many viewer reviews did the movie Eskimo receive on Rotten Tomatoes?,"db.movies.find({""title"":""Eskimo""}, {""tomatoes.viewer.numReviews"":1})" +what genre is The Docks of New York?,"db.movies.find({""title"": ""The Docks of New York""}, {""genres"": 1})" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie Where Are My Children? ?,"db.movies.find({""title"":""Where Are My Children?""}, {""tomatoes.viewer.meter"":1})" +What is the meter score of the movie In Old Arizona according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""In Old Arizona""}, {""tomatoes.viewer.meter"": 1})" +what is the film The Last of the Mohicans imdb rating?,"db.movies.find({""title"": ""The Last of the Mohicans""}, {""imdb.rating"": 1})" +What is the production company behind the movie A Damsel in Distress ?,"db.movies.find({""title"": ""A Damsel in Distress""}, { ""tomatoes.production"": 1})" +How many votes does the movie Marked Woman have on IMDb?,"db.movies.find({""title"":""Marked Woman""}, {""imdb.votes"":1})" +who is the writer of Death Takes a Holiday?,"db.movies.find({""title"": ""Death Takes a Holiday""}, {""writers"": 1})" +who directed the film Miss Lulu Bett?,"db.movies.find({""title"": ""Miss Lulu Bett""}, {""directors"": 1})" +who directed the film The Front Page?,"db.movies.find({""title"": ""The Front Page""}, {""directors"": 1})" +who was the writer of the film Grand Hotel?,"db.movies.find({""title"": ""Grand Hotel""}, {""writers"": 1})" +Final Accord is a movie written by this person?,"db.movies.find({""title"": ""Final Accord""}, {""writers"": 1})" +What is the IMDb rating for the movie Follow the Fleet?,"db.movies.find({""title"": ""Follow the Fleet""}, {""imdb.rating"": 1})" +How long is the runtime of the movie The Private Life of Don Juan ?,"db.movies.find({""title"":""The Private Life of Don Juan""}, {""runtime"":1})" +What is the meter score of the movie College according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""College""}, {""tomatoes.viewer.meter"": 1})" +what is Mayerling imdb rating?,"db.movies.find({""title"": ""Mayerling""}, {""imdb.rating"": 1})" +Who is the lead actress of the movie Lonesome ?,"db.movies.find({""title"": ""Lonesome""}, {""cast"":{""$slice"": 1},""title"":1})" +How many viewer reviews did the movie Gertie the Dinosaur receive on Rotten Tomatoes?,"db.movies.find({""title"":""Gertie the Dinosaur""}, {""tomatoes.viewer.numReviews"":1})" +how many awards did Mèdchen in Uniform win?,"db.movies.find({""title"":""Mèdchen in Uniform""}, {""awards.wins"":1})" +who is the writer of Sunrise?,"db.movies.find({""title"": ""Sunrise""}, {""writers"": 1})" +which company produced the movie Sherlock Jr.?,"db.movies.find({""title"":""Sherlock Jr.""}, {""tomatoes.production"":1})" +"Theodora Goes Wild, was written by who?","db.movies.find({""title"": ""Theodora Goes Wild""}, {""writers"": 1})" +What are the highest-rated movies directed by Ingmar Bergman?,"db.movies.find({""directors"": 'Ingmar Bergman', ""imdb.rating"": {""$gt"": 8.5}})" +who is the director of Theodora Goes Wild?,"db.movies.find({""title"": ""Theodora Goes Wild""}, {""directors"": 1})" +who was the writer of Hell's Hinges?,"db.movies.find({""title"": ""Hell's Hinges""}, {""writers"": 1})" +What is the dominant genre of Michelangelo Antonioni's directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Michelangelo Antonioni"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +what is the full plot for Hell's Hinges?,"db.movies.find({""title"": ""Hell's Hinges""}, {""fullplot"": 1})" +How many reviews have been submitted for the movie Napoleon on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Napoleon"" },{ ""tomatoes.viewer.numReviews"": 1 })" +Swedenhielms Family is a film written by this person?,"db.movies.find({""title"": ""Swedenhielms Family""}, {""writers"": 1})" +Could you tell me the title of the movie with the shortest duration that was directed by David Fincher?,"db.movies.find({""directors"":""David Fincher""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +which person wrote the film Les Misèrables?,"db.movies.find({""title"": ""Les Misèrables""}, {""writers"": 1})" +Who are the actors in the movie Earth?,"db.movies.find({""title"":""Earth""}, {""cast"":1})" +which person wrote the movie The Private Life of Henry VIII.?,"db.movies.find({""title"": ""The Private Life of Henry VIII.""}, {""writers"": 1})" +What is the ID of the movie Tarzan and His Mate on IMDB?,"db.movies.find({""title"": ""Tarzan and His Mate""}, {""imdb.id"": 1})" +How many reviews have been submitted by critics for the movie Traffic in Souls ?,"db.movies.find({""title"": ""Traffic in Souls""}, {""tomatoes.critic.numReviews"": 1})" +what genre of film is Comradeship?,"db.movies.find({""title"": ""Comradeship""}, {""genres"": 1})" +Who are the main actors/actresses in the movie Twentieth Century?,"db.movies.find({""title"":""Twentieth Century""}, {""cast"":1})" +what is the movie The Prisoner of Zenda imdb rating?,"db.movies.find({""title"": ""The Prisoner of Zenda""}, {""imdb.rating"": 1})" +what is the movie The Prince and the Pauper about?,"db.movies.find({""title"": ""The Prince and the Pauper""}, {""plot"": 1})" +what genre of film is Frankenstein?,"db.movies.find({""title"": ""Frankenstein""}, {""genres"": 1})" +what is the movie L'opèra de quat'sous about in details?,"db.movies.find({""title"": ""L'opèra de quat'sous""}, {""fullplot"": 1})" +What is the movie The Invisible Ray rating?,"db.movies.find({""title"":""The Invisible Ray""}, {""rated"":1})" +what is the full plot for the movie Follow the Fleet?,"db.movies.find({""title"": ""Follow the Fleet""}, {""fullplot"": 1})" +who wrote the screenplay for the movie Black Fury?,"db.movies.aggregate([ { ""$match"": { ""title"":""Black Fury""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +How many comments have been posted by users on the movie Our Hospitality's page on the Mflix platform?,"db.movies.find({ ""title"": ""Our Hospitality"" }, { ""num_mflix_comments"": 1 })" +Who are the actors that appear in the movie Der Kaiser von Kalifornien ?,"db.movies.find({ ""title"": ""Der Kaiser von Kalifornien"" },{ ""cast"": 1 })" +who is the director for Greed?,"db.movies.find({""title"": ""Greed""}, {""directors"": 1})" +How many reviews did the movie The Ghost Goes West receive on Rotten Tomatoes?,"db.movies.find({""title"":""The Ghost Goes West""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +who was The Ghost Goes West written by?,"db.movies.find({""title"": ""The Ghost Goes West""}, {""writers"": 1})" +What languages are spoken in the movie Applause?,"db.movies.find({""title"":""Applause""}, {""languages"":1})" +who stars in These Three?,"db.movies.find({""title"": ""These Three""}, {""cast"": 1})" +What is the highest-rated movie directed by James Cameron on rotten tomatoes?,"db.movies.find({""directors"": ""James Cameron"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +Who are the starring actors/actresses in the movie From Hand to Mouth?,"db.movies.find({""title"":""From Hand to Mouth""}, {""cast"":1})" +What are the names of all the actors who starred in the movie 'Miss Lulu Bett'?,"db.movies.find({""title"": ""Miss Lulu Bett""}, {""cast"": 1})" +What is the audience rating of the movie Mèdchen in Uniform ?,"db.movies.find({ ""title"": ""Mèdchen in Uniform"" },{ ""tomatoes.viewer.rating"": 1 })" +what is the plot for the movie The Last of the Mohicans?,"db.movies.find({""title"": ""The Last of the Mohicans""}, {""plot"": 1})" +What is the consensus among critics about the movie The Kid Brother?,"db.movies.find({""title"": ""The Kid Brother""}, { ""tomatoes.consensus"": 1})" +"The Ace of Hearts, is written by who?","db.movies.find({""title"": ""The Ace of Hearts""}, {""writers"": 1})" +who produced the film The Immigrant?,"db.movies.find({""title"":""The Immigrant""}, {""tomatoes.production"":1})" +What is the runtime and rating for the movie 'Tarzan and His Mate'?,"db.movies.find({""title"": ""Tarzan and His Mate""}, {""runtime"": 1, ""rated"": 1})" +who was the writer of the film Secret Agent?,"db.movies.find({""title"": ""Secret Agent""}, {""writers"": 1})" +How many audience reviews have been submitted for the movie The Emperor Jones?,"db.movies.find({ ""title"": ""The Emperor Jones"" }, { ""tomatoes.viewer.numReviews"": 1 })" +who are the actors in Red Dust?,"db.movies.find({""title"": ""Red Dust""}, {""cast"": 1})" +what type of movie is San Francisco?,"db.movies.find({""title"": ""San Francisco""}, {""genres"": 1})" +Who is the lead actor of the movie The Broadway Melody ?,"db.movies.find({""title"": ""The Broadway Melody""}, {""cast"":{""$slice"": 1},""title"":1})" +How many audience reviews have been submitted for the movie Three Ages ?,"db.movies.find({ ""title"": ""Three Ages"" },{ ""tomatoes.viewer.numReviews"": 1 })" +What is the consensus among critics about the movie Little Caesar?,"db.movies.find({""title"": ""Little Caesar""}, { ""tomatoes.consensus"": 1})" +What is the language of the film Gertie the Dinosaur?,"db.movies.find({""title"":""Gertie the Dinosaur""}, {""languages"":1})" +which company produced the film The Informer?,"db.movies.find({""title"":""The Informer""}, {""tomatoes.production"":1})" +what is the movie Moscow Laughs imdb rating?,"db.movies.find({""title"": ""Moscow Laughs""}, {""imdb.rating"": 1})" +What languages are spoken in the movie Robin Hood?,"db.movies.find({""title"":""Robin Hood""}, {""languages"":1})" +Which movies from the 1990s were directed by Ethan Coen?,"db.movies.find({""directors"": 'Ethan Coen', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +which person wrote the film Safety Last!?,"db.movies.find({""title"": ""Safety Last!""}, {""writers"": 1})" +What is the consensus among critics about the movie Rembrandt?,"db.movies.find({""title"": ""Rembrandt""}, { ""tomatoes.consensus"": 1})" +who produced Curly Top?,"db.movies.find({""title"":""Curly Top""}, {""tomatoes.production"":1})" +How did the audience and critics receive the movie The Docks of New York?,"db.movies.find({""title"":""The Docks of New York""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the IMDb rating for The Son of Kong?,"db.movies.find({""title"": ""The Son of Kong""}, {""imdb.rating"": 1})" +What type of media is A Farewell to Arms?,"db.movies.find({ ""title"": ""A Farewell to Arms"" }, { ""type"": 1})" +who produced the movie The Cameraman?,"db.movies.find({""title"":""The Cameraman""}, {""tomatoes.production"":1})" +what is the movie Miss Lulu Bett description ?,"db.movies.find({""title"": ""Miss Lulu Bett""}, {""plot"": 1})" +What is the movie Broadway Bill about? Can you provide a brief summary?,"db.movies.find({""title"":""Broadway Bill""}, {""plot"":1})" +What is the running time of the film Westfront 1918?,"db.movies.find({""title"":""Westfront 1918""}, {""runtime"":1})" +what was the genre of the film Bride of Frankenstein?,"db.movies.find({""title"": ""Bride of Frankenstein""}, {""genres"": 1})" +which company produced the film This Is My Affair?,"db.movies.find({""title"":""This Is My Affair""}, {""tomatoes.production"":1})" +what is the film Grand Hotel about?,"db.movies.find({""title"": ""Grand Hotel""}, {""plot"": 1})" +what is the full plot for the film Three Smart Girls?,"db.movies.find({""title"": ""Three Smart Girls""}, {""fullplot"": 1})" +what's the main genre of the movies directed by Sergei Eisenstein ?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Sergei Eisenstein"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +what is the movie Becky Sharp imdb rating?,"db.movies.find({""title"": ""Becky Sharp""}, {""imdb.rating"": 1})" +what is the film Little Caesar about?,"db.movies.find({""title"": ""Little Caesar""}, {""plot"": 1})" +what type of film is She?,"db.movies.find({""title"": ""She""}, {""genres"": 1})" +what was the release year of the movie Topaze?,"db.movies.find({""title"": ""Topaze""}, {""year"": 1})" +What languages are spoken in the movie Duck Soup ?,"db.movies.find({""title"": ""Duck Soup""}, { ""languages"": 1})" +What is the production company of the film Broadway Bill?,"db.movies.find({""title"":""Broadway Bill""}, {""tomatoes.production"":1})" +What was the release date for the movie The Crowd?,"db.movies.find({""title"":""The Crowd""}, {""released"":1})" +How many audience reviews have been submitted for the movie The Awful Truth ?,"db.movies.find({ ""title"": ""The Awful Truth"" },{ ""tomatoes.viewer.numReviews"": 1 })" +How many awards did the movie win The Robber Symphony ?,"db.movies.find({ ""title"": ""The Robber Symphony"" },{ ""awards.wins"": 1 })" +What is the language of the film I Am a Fugitive from a Chain Gang?,"db.movies.find({""title"":""I Am a Fugitive from a Chain Gang""}, {""languages"":1})" +I Am a Fugitive from a Chain Gang is a film written by this person?,"db.movies.find({""title"": ""I Am a Fugitive from a Chain Gang""}, {""writers"": 1})" +What is the Rotten Tomatoes meter rating for the movie Go West ?,"db.movies.find({""title"":""Go West""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +What type of movie is Bad Girl ?,"db.movies.find({""title"":""Bad Girl""}, {""genres"":1})" +What is the language of the film Salomè?,"db.movies.find({""title"":""Salomè""}, {""languages"":1})" +the movie A Free Soul was directed by who?,"db.movies.find({""title"": ""A Free Soul""}, {""directors"": 1})" +How did the audience and critics receive the movie Black Legion?,"db.movies.find({""title"":""Black Legion""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what genre is Carnival in Flanders?,"db.movies.find({""title"": ""Carnival in Flanders""}, {""genres"": 1})" +who wrote the movie The Jazz Singer?,"db.movies.find({""title"": ""The Jazz Singer""}, {""writers"": 1})" +What is the rating of the movie The Lost Patrol ?,"db.movies.find({ ""title"": ""The Lost Patrol"" }, { ""rated"": 1})" +"Has Camille won any awards? If so, which ones?","db.movies.find({""title"":""Camille"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +Who is the lead actor of the movie Cops ?,"db.movies.find({""title"": ""Cops""}, {""cast"":{""$slice"": 1},""title"":1})" +what genre of movie is The Big Trail?,"db.movies.find({""title"": ""The Big Trail""}, {""genres"": 1})" +How does the movie The Public Enemy rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""The Public Enemy"" },{ ""tomatoes.critic.meter"": 1 })" +what genre is The Son of the Sheik?,"db.movies.find({""title"": ""The Son of the Sheik""}, {""genres"": 1})" +What is the quantity of movies that Sergei Eisenstein has directed?,"db.movies.countDocuments({""directors"":""Sergei Eisenstein""})" +what kind of film is Scarface?,"db.movies.find({""title"": ""Scarface""}, {""genres"": 1})" +what was the genre of the film The Informer?,"db.movies.find({""title"": ""The Informer""}, {""genres"": 1})" +What are the countries associated with the movie The Perils of Pauline ?,"db.movies.find({""title"": ""The Perils of Pauline""}, {""countries"": 1})" +How does the movie State Fair rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""State Fair"" },{ ""tomatoes.critic.meter"": 1 })" +what type of film is The Pearls of the Crown?,"db.movies.find({""title"": ""The Pearls of the Crown""}, {""genres"": 1})" +"Bride of Frankenstein, was written by who?","db.movies.find({""title"": ""Bride of Frankenstein""}, {""writers"": 1})" +who is the author of Black Legion?,"db.movies.find({""title"": ""Black Legion""}, {""writers"": 1})" +how many awards did the movie Masquerade in Vienna win?,"db.movies.find({""title"":""Masquerade in Vienna""}, {""awards.wins"":1})" +What is the IMDb rating for the movie Tol'able David?,"db.movies.find({""title"": ""Tol'able David""}, {""imdb.rating"": 1})" +the film Wife! Be Like a Rose! starred which actors?,"db.movies.find({""title"": ""Wife! Be Like a Rose!""}, {""cast"": 1})" +What is the movie The Four Horsemen of the Apocalypse about? Can you provide a brief summary?,"db.movies.find({""title"":""The Four Horsemen of the Apocalypse""}, {""plot"":1})" +how many awards did the movie Smilin' Through win?,"db.movies.find({""title"":""Smilin' Through""}, {""awards.wins"":1})" +How did the audience and critics receive The Spanish Earth?,"db.movies.find({""title"":""The Spanish Earth""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +who are the actors in the film The Prisoner of Zenda?,"db.movies.find({""title"": ""The Prisoner of Zenda""}, {""cast"": 1})" +When was the information last updated for the movie The Freshman ?,"db.movies.find({ ""title"": ""The Freshman"" },{ ""lastupdated"": 1 })" +"Has Dames won any awards? If so, which ones?","db.movies.find({""title"":""Dames"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +Could you inform me of the movies that Jean-Pierre Melville directed?,"db.movies.find({""directors"": ""Jean-Pierre Melville""},{""title"":1})" +Who is the lead actress of the movie Westfront 1918 ?,"db.movies.find({""title"": ""Westfront 1918""}, {""cast"":{""$slice"": 1},""title"":1})" +What is the chief film category that Stanley Kubrick's directed movies are classified under?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Stanley Kubrick"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +When was the movie Zero for Conduct released?,"db.movies.find({""title"":""Zero for Conduct""}, {""released"":1})" +In what year was the movie David Golder released ?,"db.movies.find({ ""title"": ""David Golder"" }, { ""year"": 1})" +What is the audience rating of the movie Smilin' Through ?,"db.movies.find({ ""title"": ""Smilin' Through"" },{ ""tomatoes.viewer.rating"": 1 })" +What is the language of the movie The Great Train Robbery?,"db.movies.find({""title"":""The Great Train Robbery""}, {""languages"":1})" +what is Upstream about?,"db.movies.find({""title"": ""Upstream""}, {""plot"": 1})" +What is the consensus among critics about the movie One Hundred Men and a Girl?,"db.movies.find({""title"": ""One Hundred Men and a Girl""}, { ""tomatoes.consensus"": 1})" +What is the primary genre of the movies directed by Pedro Almodovar?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Pedro Almodovar"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +who was the writer of the movie Forbidden?,"db.movies.find({""title"": ""Forbidden""}, {""writers"": 1})" +what is the film Final Accord about in details?,"db.movies.find({""title"": ""Final Accord""}, {""fullplot"": 1})" +What is the production company of the film Three Smart Girls?,"db.movies.find({""title"":""Three Smart Girls""}, {""tomatoes.production"":1})" +what was the release date of This Is My Affair?,"db.movies.find({""title"": ""This Is My Affair""}, {""released"": 1})" +What is the IMDb rating for the film Seven Chances?,"db.movies.find({""title"": ""Seven Chances""}, {""imdb.rating"": 1})" +what is City Streets imdb rating?,"db.movies.find({""title"": ""City Streets""}, {""imdb.rating"": 1})" +what is the movie The Song of Night description ?,"db.movies.find({""title"": ""The Song of Night""}, {""plot"": 1})" +How many reviews have been submitted by critics for the movie Gertie the Dinosaur?,"db.movies.find({ ""title"": ""Gertie the Dinosaur"" }, { ""tomatoes.critic.numReviews"": 1 })" +"Has the movie City Lights won any awards? If so, which ones?","db.movies.find({""title"":""City Lights"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +Was the movie The Ace of Hearts well received by audiences?,"db.movies.find({""title"":""The Ace of Hearts""}, {""tomatoes.viewer"":1})" +what is the movie Bad Girl about in details?,"db.movies.find({""title"": ""Bad Girl""}, {""fullplot"": 1})" +What movie directed by Gus Van Sant has the longest duration?,"db.movies.find({""directors"":""Gus Van Sant""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +who produced the film The Ace of Hearts?,"db.movies.find({""title"":""The Ace of Hearts""}, {""tomatoes.production"":1})" +What is the IMDb rating for the movie Tarzan and His Mate?,"db.movies.find({""title"": ""Tarzan and His Mate""}, {""imdb.rating"": 1})" +which company produced the movie The Big House?,"db.movies.find({""title"":""The Big House""}, {""tomatoes.production"":1})" +In what language was the movie The Son of the Sheik released?,"db.movies.find({ ""title"": ""The Son of the Sheik"" }, { ""languages"": 1})" +Can you tell me which movie that Martin Scorsese directed has the shortest running time?,"db.movies.find({""directors"":""Martin Scorsese""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +Who is the lead actor of the movie Bad Girl ?,"db.movies.find({""title"": ""Bad Girl""}, {""cast"":{""$slice"": 1},""title"":1})" +What is the production company behind the movie The Great Train Robbery ?,"db.movies.find({""title"": ""The Great Train Robbery""}, {""tomatoes.production"": 1})" +who produced They Won't Forget?,"db.movies.find({""title"":""They Won't Forget""}, {""tomatoes.production"":1})" +Can you name some of the films that Jean-Luc Godard directed and were released in the 1990s?,"db.movies.find({""directors"": 'Jean-Luc Godard', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +which company produced the movie Dr. Jekyll and Mr. Hyde?,"db.movies.find({""title"":""Dr. Jekyll and Mr. Hyde""}, {""tomatoes.production"":1})" +who is listed as director for Mary of Scotland?,"db.movies.find({""title"": ""Mary of Scotland""}, {""directors"": 1})" +Who are the main actors/actresses in the movie The Poor Little Rich Girl?,"db.movies.find({""title"":""The Poor Little Rich Girl""}, {""cast"":1})" +In what language was the movie The Charge of the Light Brigade released?,"db.movies.find({ ""title"": ""The Charge of the Light Brigade"" }, { ""languages"": 1})" +who is the author of A Star Is Born?,"db.movies.find({""title"": ""A Star Is Born""}, {""writers"": 1})" +Could you give me the average rating of Luchino Visconti's movies that are in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Luchino Visconti""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +What is the MPAA rating of the movie The Robber Symphony?,"db.movies.find({""title"":""The Robber Symphony""}, {""rated"":1})" +what is the movie Man with a Movie Camera about in details?,"db.movies.find({""title"": ""Man with a Movie Camera""}, {""fullplot"": 1})" +What is the plot summary of the movie Le grand jeu ?,"db.movies.find({ ""title"": ""Le grand jeu"" }, { ""plot"": 1})" +who are the actors in the movie Movie Crazy?,"db.movies.find({""title"": ""Movie Crazy""}, {""cast"": 1})" +who is the director of The Phantom of the Opera?,"db.movies.find({""title"": ""The Phantom of the Opera""}, {""directors"": 1})" +who wrote the screenplay for the movie Gertie the Dinosaur?,"db.movies.aggregate([ { ""$match"": { ""title"":""Gertie the Dinosaur""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +What is the text representation of the awards won and nominations received by the movie The Thin Man?,"db.movies.find({""title"": ""The Thin Man""}, { ""awards.text"": 1})" +What is the meter score of the movie The Wedding Night according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""The Wedding Night""}, {""tomatoes.viewer.meter"": 1})" +what genre of film is Three Ages?,"db.movies.find({""title"": ""Three Ages""}, {""genres"": 1})" +what is the movie Under the Roofs of Paris description ?,"db.movies.find({""title"": ""Under the Roofs of Paris""}, {""plot"": 1})" +"who starred in Steamboat Bill, Jr.?","db.movies.find({""title"": ""Steamboat Bill, Jr.""}, {""cast"": 1})" +How many awards did the movie win Bride of Frankenstein ?,"db.movies.find({ ""title"": ""Bride of Frankenstein"" },{ ""awards.wins"": 1 })" +What is the consensus among critics about the movie Sunrise?,"db.movies.find({""title"": ""Sunrise""}, { ""tomatoes.consensus"": 1})" +How does the movie La Grande Illusion rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""La Grande Illusion"" },{ ""tomatoes.critic.meter"": 1 })" +Who is the director of the movie A Night at the Opera?,"db.movies.find({""title"": ""A Night at the Opera""}, { ""directors"": 1})" +What is the running time of Cimarron?,"db.movies.find({""title"":""Cimarron""}, {""runtime"":1})" +what is the full plot for A Star Is Born?,"db.movies.find({""title"": ""A Star Is Born""}, {""fullplot"": 1})" +which company produced the film In the Land of the Head Hunters?,"db.movies.find({""title"":""In the Land of the Head Hunters""}, {""tomatoes.production"":1})" +what year was the movie A Damsel in Distress released?,"db.movies.find({""title"": ""A Damsel in Distress""}, {""year"": 1})" +what is the film Broken Blossoms or The Yellow Man and the Girl about in details?,"db.movies.find({""title"": ""Broken Blossoms or The Yellow Man and the Girl""}, {""fullplot"": 1})" +who wrote the movie A Night at the Opera?,"db.movies.find({""title"": ""A Night at the Opera""}, {""writers"": 1})" +Who are the main actors/actresses in the movie Masquerade in Vienna?,"db.movies.find({""title"":""Masquerade in Vienna""}, {""cast"":1})" +How many reviews have been submitted by critics for the movie Napoleon ?,"db.movies.find({""title"": ""Napoleon""}, {""tomatoes.critic.numReviews"": 1})" +"What is the general rating of Robert Bresson's films in the database, calculated as an average?","db.movies.aggregate([{""$match"": {""directors"":""Robert Bresson""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +What is the IMDb rating for the film The Man Who Could Work Miracles?,"db.movies.find({""title"": ""The Man Who Could Work Miracles""}, {""imdb.rating"": 1})" +who produced In the Land of the Head Hunters?,"db.movies.find({""title"":""In the Land of the Head Hunters""}, {""tomatoes.production"":1})" +How many viewer reviews did the movie Der Kaiser von Kalifornien receive on Rotten Tomatoes?,"db.movies.find({""title"":""Der Kaiser von Kalifornien""}, {""tomatoes.viewer.numReviews"":1})" +who directed The Prisoner of Shark Island?,"db.movies.find({""title"": ""The Prisoner of Shark Island""}, {""directors"": 1})" +What is the imdbID and year of release for the movie with a title of 'The Lost World'?,"db.movies.find({""title"": ""The Lost World""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +Which movie genre does James Cameron mainly specialize in as a director?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""James Cameron"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +who acted in the movie Earth?,"db.movies.find({""title"": ""Earth""}, {""cast"": 1})" +What is the plot summary of the movie Civilization ?,"db.movies.find({ ""title"": ""Civilization"" }, { ""plot"": 1})" +What is the production company behind the movie Triumph of the Will ?,"db.movies.find({""title"": ""Triumph of the Will""}, { ""tomatoes.production"": 1})" +which person directed A Night at the Opera?,"db.movies.find({""title"": ""A Night at the Opera""}, {""directors"": 1})" +Who are the actors in the movie The Power and the Glory?,"db.movies.find({""title"":""The Power and the Glory""}, {""cast"":1})" +Who are the starring actors/actresses in the movie The General?,"db.movies.find({""title"":""The General""}, {""cast"":1})" +When was the Tomatometer score and other Tomato-related information last updated for the movie Dames?,"db.movies.find({""title"": ""Dames""}, { ""tomatoes.lastUpdated"": 1})" +What is the Rotten Tomatoes meter rating for the movie Dodsworth ?,"db.movies.find({""title"":""Dodsworth""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +What type of media is The Devil Is a Woman?,"db.movies.find({ ""title"": ""The Devil Is a Woman"" }, { ""type"": 1})" +the movie Ella Cinders starred who?,"db.movies.find({""title"": ""Ella Cinders""}, {""cast"": 1})" +Can you provide more information about the languages spoken in the movie The Wedding March ?,"db.movies.find({""title"":""The Wedding March""}, {""languages"":1})" +How many awards did the movie win The Guardsman ?,"db.movies.find({ ""title"": ""The Guardsman"" },{ ""awards.wins"": 1 })" +Can you give me a brief summary of the movie The Man Who Knew Too Much plot?,"db.movies.find({""title"":""The Man Who Knew Too Much""}, {""plot"":1})" +who wrote the film Curly Top?,"db.movies.find({""title"": ""Curly Top""}, {""writers"": 1})" +How many comments have been posted by users on the movie The Passion of Joan of Arc's page on the Mflix platform?,"db.movies.find({ ""title"": ""The Passion of Joan of Arc"" }, { ""num_mflix_comments"": 1 })" +What is the production company of the movie Lost Horizon?,"db.movies.find({""title"":""Lost Horizon""}, {""tomatoes.production"":1})" +who directed the movie The Birth of a Nation?,"db.movies.find({""title"": ""The Birth of a Nation""}, {""directors"": 1})" +who are the actors in Scarface?,"db.movies.find({""title"": ""Scarface""}, {""cast"": 1})" +What are the genres this movie Daughter of Shanghai belongs to?,"db.movies.find({""title"":""Daughter of Shanghai""}, {""genres"":1})" +what year was Mutiny on the Bounty released?,"db.movies.find({""title"": ""Mutiny on the Bounty""}, {""year"": 1})" +what is The Wind about in details?,"db.movies.find({""title"": ""The Wind""}, {""fullplot"": 1})" +who are the actors in The Trail of the Lonesome Pine?,"db.movies.find({""title"": ""The Trail of the Lonesome Pine""}, {""cast"": 1})" +What is the IMDb rating for the movie Seven Chances ?,"db.movies.find({""title"":""Seven Chances""}, {""imdb.rating"":1})" +How long is the runtime of the movie The Docks of New York ?,"db.movies.find({""title"":""The Docks of New York""}, {""runtime"":1})" +What is the text representation of the awards won and nominations received by the movie The Robber Symphony?,"db.movies.find({""title"": ""The Robber Symphony""}, { ""awards.text"": 1})" +what was the genre of the film China Seas?,"db.movies.find({""title"": ""China Seas""}, {""genres"": 1})" +How many award nominations did the movie receive The Story of Louis Pasteur ?,"db.movies.find({ ""title"": ""The Story of Louis Pasteur"" },{ ""awards.nominations"": 1 })" +what is the film Three Little Pigs about in details?,"db.movies.find({""title"": ""Three Little Pigs""}, {""fullplot"": 1})" +How many nominations did the movie Les Misèrables receive?,"db.movies.find({""title"":""Les Misèrables""}, {""awards.nominations"":1})" +Can you provide a longer version of the movie The Cameraman plot?,"db.movies.find({""title"":""The Cameraman""}, {""fullplot"":1})" +Zero for Conduct was directed by who?,"db.movies.find({""title"": ""Zero for Conduct""}, {""directors"": 1})" +When was the movie The Lost Patrol released?,"db.movies.find({""title"":""The Lost Patrol""}, {""released"":1})" +What is the runtime and rating for 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, ""rated"": 1})" +who directed The Big Trail?,"db.movies.find({""title"": ""The Big Trail""}, {""directors"": 1})" +Who are the main actors/actresses in the movie The Black Cat?,"db.movies.find({""title"":""The Black Cat""}, {""cast"":1})" +How many viewer reviews did the movie The Prisoner of Zenda receive on Rotten Tomatoes?,"db.movies.find({""title"":""The Prisoner of Zenda""}, {""tomatoes.viewer.numReviews"":1})" +who is the director of Make Way for Tomorrow?,"db.movies.find({""title"": ""Make Way for Tomorrow""}, {""directors"": 1})" +"who wrote the screenplay for the film Laugh, Clown, Laugh?","db.movies.aggregate([ { ""$match"": { ""title"":""Laugh, Clown, Laugh""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +the movie The Jazz Singer was directed by who?,"db.movies.find({""title"": ""The Jazz Singer""}, {""directors"": 1})" +How many comments have been posted by users on the movie The Big House's page on the Mflix platform?,"db.movies.find({ ""title"": ""The Big House"" }, { ""num_mflix_comments"": 1 })" +What is the MongoDB document ID of the movie The Gay Divorcee?,"db.movies.find({""title"": ""The Gay Divorcee""}, {""_id"": 1})" +Who are the main actors in Disraeli ?,"db.movies.find({ ""title"": ""Disraeli"" }, { ""cast"": 1})" +What is the box office revenue of the movie White Shadows in dollars?,"db.movies.find({""title"": ""White Shadows""}, {""tomatoes.boxOffice"": 1})" +what year was The Life of Emile Zola released?,"db.movies.find({""title"": ""The Life of Emile Zola""}, {""year"": 1})" +How long is the movie The Son of Kong in minutes?,"db.movies.find({""title"":""The Son of Kong""}, {""runtime"":1})" +How many viewer reviews did the movie The Devil Is a Woman receive on Rotten Tomatoes?,"db.movies.find({""title"":""The Devil Is a Woman""}, {""tomatoes.viewer.numReviews"":1})" +what was the release year of Wonder Bar?,"db.movies.find({""title"": ""Wonder Bar""}, {""year"": 1})" +the movie David Golder starred which actors?,"db.movies.find({""title"": ""David Golder""}, {""cast"": 1})" +What is the text representation of the awards won and nominations received by the movie The New Gulliver?,"db.movies.find({""title"": ""The New Gulliver""}, { ""awards.text"": 1})" +which person wrote the film Tarzan the Ape Man?,"db.movies.find({""title"": ""Tarzan the Ape Man""}, {""writers"": 1})" +who's the director of Red Dust?,"db.movies.find({""title"": ""Red Dust""}, {""directors"": 1})" +What is the IMDB rating of the movie The Gilded Lily ?,"db.movies.find({""title"": ""The Gilded Lily""}, { ""imdb.rating"": 1})" +What are the genres associated with the movie The Iron Horse ?,"db.movies.find({ ""title"": ""The Iron Horse"" }, { ""genres"": 1})" +How many comments have been posted by users on the movie Sunrise's page on the Mflix platform?,"db.movies.find({ ""title"": ""Sunrise"" }, { ""num_mflix_comments"": 1 })" +What is the runtime of the movie Anna Karenina ?,"db.movies.find({""title"": ""Anna Karenina""}, { ""runtime"": 1})" +who acted in the film La Grande Illusion?,"db.movies.find({""title"": ""La Grande Illusion""}, {""cast"": 1})" +How did the audience and critics receive the movie Tabu: A Story of the South Seas?,"db.movies.find({""title"":""Tabu: A Story of the South Seas""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +who wrote Les Misèrables?,"db.movies.find({""title"": ""Les Misèrables""}, {""writers"": 1})" +who starred in the film Show People?,"db.movies.find({""title"": ""Show People""}, {""cast"": 1})" +What is the rating of the movie Sanders of the River ?,"db.movies.find({ ""title"": ""Sanders of the River"" }, { ""rated"": 1})" +what was the genre of the film 7th Heaven?,"db.movies.find({""title"": ""7th Heaven""}, {""genres"": 1})" +What is the MongoDB document ID of the movie The Navigator?,"db.movies.find({""title"": ""The Navigator""}, {""_id"": 1})" +who is the director that directed Camille?,"db.movies.find({""title"": ""Camille""}, {""directors"": 1})" +who acted in the movie Sherlock Jr.?,"db.movies.find({""title"": ""Sherlock Jr.""}, {""cast"": 1})" +"Has the movie Ruggles of Red Gap won any awards? If so, which ones?","db.movies.find({""title"":""Ruggles of Red Gap"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +Who is the director of the movie Lady Windermere's Fan?,"db.movies.find({""title"": ""Lady Windermere's Fan""}, { ""directors"": 1})" +How many viewer reviews did the movie The Jazz Singer receive on Rotten Tomatoes?,"db.movies.find({""title"":""The Jazz Singer""}, {""tomatoes.viewer.numReviews"":1})" +how many awards did the movie Alice Adams win?,"db.movies.find({""title"":""Alice Adams""}, {""awards.wins"":1})" +what is the full plot for Dr. Jekyll and Mr. Hyde?,"db.movies.find({""title"": ""Dr. Jekyll and Mr. Hyde""}, {""fullplot"": 1})" +what was the release year of Folies Bergère de Paris?,"db.movies.find({""title"": ""Folies Bergère de Paris""}, {""year"": 1})" +what genre is the movie The Scarlet Empress?,"db.movies.find({""title"": ""The Scarlet Empress""}, {""genres"": 1})" +whats the total runtime of all the movies directed by Darren Aronofsky ?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Darren Aronofsky"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +what type of film is It Happened One Night?,"db.movies.find({""title"": ""It Happened One Night""}, {""genres"": 1})" +Foolish Wives is written by this person?,"db.movies.find({""title"": ""Foolish Wives""}, {""writers"": 1})" +Who is the lead actor of the movie The Man Who Could Work Miracles ?,"db.movies.find({""title"": ""The Man Who Could Work Miracles""}, {""cast"":{""$slice"": 1},""title"":1})" +What is the Rotten Tomatoes meter rating for the movie Le grand jeu ?,"db.movies.find({""title"":""Le grand jeu""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +"In the database, what is the usual rating given to Tim Burton's movies on average?","db.movies.aggregate([{""$match"": {""directors"":""Tim Burton""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +What languages are spoken in the movie Grand Hotel?,"db.movies.find({""title"":""Grand Hotel""}, {""languages"":1})" +what year was Battling Butler released?,"db.movies.find({""title"": ""Battling Butler""}, {""year"": 1})" +How many wins did the movie The Iron Horse receive?,"db.movies.find({""title"":""The Iron Horse""}, {""awards.wins"":1})" +Who are the starring actors/actresses in the movie A Midsummer Night's Dream?,"db.movies.find({""title"":""A Midsummer Night's Dream""}, {""cast"":1})" +When was the information about the movie The Lost Patrol last updated?,"db.movies.find({ ""title"": ""The Lost Patrol"" }, { ""lastupdated"": 1})" +Can you tell me the total count of films that Roman Polanski has directed?,"db.movies.countDocuments({""directors"":""Roman Polanski""})" +what is the genre for the film Show Boat?,"db.movies.find({""title"": ""Show Boat""}, {""genres"": 1})" +what is David Golder description?,"db.movies.find({""title"": ""David Golder""}, {""plot"": 1})" +What is the production company behind the movie x?,"db.movies.find({""title"": ""The Devil to Pay!""}, { ""tomatoes.production"": 1})" +What languages are spoken in the movie The Unknown ?,"db.movies.find({""title"": ""The Unknown""}, { ""languages"": 1})" +Can you give me a brief summary of the movie It's a Gift plot?,"db.movies.find({""title"":""It's a Gift""}, {""plot"":1})" +What is the running time of Black Legion?,"db.movies.find({""title"":""Black Legion""}, {""runtime"":1})" +who directed the film China Seas?,"db.movies.find({""title"": ""China Seas""}, {""directors"": 1})" +"the film The Invisible Ray, was written by who?","db.movies.find({""title"": ""The Invisible Ray""}, {""writers"": 1})" +Can you provide more information about the Rotten Tomatoes rating for the movie Sisters of the Gion?,"db.movies.find({""title"": ""Sisters of the Gion""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +who is the director of For Heaven's Sake?,"db.movies.find({""title"": ""For Heaven's Sake""}, {""directors"": 1})" +what is the genre for the movie The Land Beyond the Sunset?,"db.movies.find({""title"": ""The Land Beyond the Sunset""}, {""genres"": 1})" +who is the director that directed King Kong?,"db.movies.find({""title"": ""King Kong""}, {""directors"": 1})" +who stars in City Lights?,"db.movies.find({""title"": ""City Lights""}, {""cast"": 1})" +who starred in the film Duck Soup?,"db.movies.find({""title"": ""Duck Soup""}, {""cast"": 1})" +who stars in the film Berkeley Square?,"db.movies.find({""title"": ""Berkeley Square""}, {""cast"": 1})" +Can you provide a longer version of the movie The Thin Man plot?,"db.movies.find({""title"":""The Thin Man""}, {""fullplot"":1})" +which company produced the film The Divorcee?,"db.movies.find({""title"":""The Divorcee""}, {""tomatoes.production"":1})" +What is the running time of the movie Nosferatu?,"db.movies.find({""title"":""Nosferatu""}, {""runtime"":1})" +What are the genres this movie Show People belongs to?,"db.movies.find({""title"":""Show People""}, {""genres"":1})" +what is the film Steamboat Willie imdb rating?,"db.movies.find({""title"": ""Steamboat Willie""}, {""imdb.rating"": 1})" +what was the genre of the film Tabu: A Story of the South Seas?,"db.movies.find({""title"": ""Tabu: A Story of the South Seas""}, {""genres"": 1})" +Who are the actors in the movie Broadway Melody of 1936?,"db.movies.find({""title"":""Broadway Melody of 1936""}, {""cast"":1})" +How long is the runtime of the movie Man with a Movie Camera ?,"db.movies.find({""title"":""Man with a Movie Camera""}, {""runtime"":1})" +How many movies were directed by Coen Brothers?,"db.movies.countDocuments({""directors"":""Coen Brothers""})" +who are the actors in the film The Blood of a Poet?,"db.movies.find({""title"": ""The Blood of a Poet""}, {""cast"": 1})" +Which Eric Rohmer film has the shortest duration?,"db.movies.find({""directors"":""Eric Rohmer""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +what kind of film is The Birth of a Nation?,"db.movies.find({""title"": ""The Birth of a Nation""}, {""genres"": 1})" +What is the imdbID and year of release for the movie with a title of 'Chapayev'?,"db.movies.find({""title"": ""Chapayev""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +what was the genre of The Story of a Cheat?,"db.movies.find({""title"": ""The Story of a Cheat""}, {""genres"": 1})" +Which cinematic genres were directed by Roman Polanski?,"db.movies.distinct(""genres"", { ""directors"": ""Roman Polanski"" })" +How many votes does the movie Flesh and the Devil have on IMDb?,"db.movies.find({""title"":""Flesh and the Devil""}, {""imdb.votes"":1})" +who are the actors in Dr. Jekyll and Mr. Hyde?,"db.movies.find({""title"": ""Dr. Jekyll and Mr. Hyde""}, {""cast"": 1})" +who are the actors in Black Legion?,"db.movies.find({""title"": ""Black Legion""}, {""cast"": 1})" +How many awards did the movie win Flesh and the Devil ?,"db.movies.find({ ""title"": ""Flesh and the Devil"" },{ ""awards.wins"": 1 })" +Who are the writers of the movie Snow White and the Seven Dwarfs ?,"db.movies.find({""title"": ""Snow White and the Seven Dwarfs""}, { ""writers"": 1})" +Could you tell me the total runtime of all Abbas Kiarostami movies he has directed?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Abbas Kiarostami"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +who was the writer of It Happened One Night?,"db.movies.find({""title"": ""It Happened One Night""}, {""writers"": 1})" +who starred in the movie Moscow Laughs?,"db.movies.find({""title"": ""Moscow Laughs""}, {""cast"": 1})" +the film One Week starred who?,"db.movies.find({""title"": ""One Week""}, {""cast"": 1})" +what was the release year of Elephant Boy?,"db.movies.find({""title"": ""Elephant Boy""}, {""year"": 1})" +what is the plot for the film One Hundred Men and a Girl?,"db.movies.find({""title"": ""One Hundred Men and a Girl""}, {""plot"": 1})" +What is the box office revenue of the movie Broken Lullaby ?,"db.movies.find({""title"": ""Broken Lullaby""}, { ""tomatoes.boxOffice"": 1})" +What languages are spoken in the movie Romance ?,"db.movies.find({""title"": ""Romance""}, { ""languages"": 1})" +Could you inform me of the genres of films that Ethan Coen has directed?,"db.movies.distinct(""genres"", { ""directors"": ""Ethan Coen"" })" +can you describe the plot of La Grande Illusion?,"db.movies.find({""title"": ""La Grande Illusion""}, {""plot"": 1})" +Nosferatu is a film written by this person?,"db.movies.find({""title"": ""Nosferatu""}, {""writers"": 1})" +who wrote the movie Marked Woman?,"db.movies.find({""title"": ""Marked Woman""}, {""writers"": 1})" +what is the film Popeye the Sailor Meets Sindbad the Sailor description ?,"db.movies.find({""title"": ""Popeye the Sailor Meets Sindbad the Sailor""}, {""plot"": 1})" +whats the total runtime of all the movies directed by Jacques Rivette ?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Jacques Rivette"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +How many movies were directed by Satyajit Ray?,"db.movies.countDocuments({""directors"":""Satyajit Ray""})" +which company produced the film Harvest?,"db.movies.find({""title"":""Harvest""}, {""tomatoes.production"":1})" +When was the Tomatometer score and other Tomato-related information last updated for the movie The Devil to Pay!?,"db.movies.find({""title"": ""The Devil to Pay!""}, { ""tomatoes.lastUpdated"": 1})" +How many reviews have been submitted by critics for the movie The Big House?,"db.movies.find({ ""title"": ""The Big House"" }, { ""tomatoes.critic.numReviews"": 1 })" +What is the language of the film Battling Butler?,"db.movies.find({""title"":""Battling Butler""}, {""languages"":1})" +what is the movie Imitation of Life about in details?,"db.movies.find({""title"": ""Imitation of Life""}, {""fullplot"": 1})" +How many comments have been posted by users on the movie Peter Pan's page on the Mflix platform?,"db.movies.find({ ""title"": ""Peter Pan"" }, { ""num_mflix_comments"": 1 })" +The Private Life of Henry VIII. is written by this person?,"db.movies.find({""title"": ""The Private Life of Henry VIII.""}, {""writers"": 1})" +who produced the film The Son of Kong?,"db.movies.find({""title"":""The Son of Kong""}, {""tomatoes.production"":1})" +In what year was the movie The Invisible Man released?,"db.movies.find({""title"":""The Invisible Man""}, {""year"":1})" +what was the release date of High and Dizzy?,"db.movies.find({""title"": ""High and Dizzy""}, {""released"": 1})" +what is The Trail of the Lonesome Pine imdb rating?,"db.movies.find({""title"": ""The Trail of the Lonesome Pine""}, {""imdb.rating"": 1})" +What is the rating of the movie Topaze on IMDb?,"db.movies.find({""title"":""Topaze""}, {""imdb.rating"":1})" +what is the film Robin Hood description ?,"db.movies.find({""title"": ""Robin Hood""}, {""plot"": 1})" +who stars in The Blue Bird?,"db.movies.find({""title"": ""The Blue Bird""}, {""cast"": 1})" +what is the film Grass: A Nation's Battle for Life description ?,"db.movies.find({""title"": ""Grass: A Nation's Battle for Life""}, {""plot"": 1})" +how many awards did the movie One Week win?,"db.movies.find({""title"":""One Week""}, {""awards.wins"":1})" +What is the box office revenue of the movie The Prisoner of Shark Island ?,"db.movies.find({""title"": ""The Prisoner of Shark Island""}, { ""tomatoes.boxOffice"": 1})" +who is the writer of the film Lloyd's of London?,"db.movies.find({""title"": ""Lloyd's of London""}, {""writers"": 1})" +What is the ID of the movie Men Without Women on IMDB?,"db.movies.find({""title"": ""Men Without Women""}, {""imdb.id"": 1})" +who was the writer of the movie The Sin of Madelon Claudet?,"db.movies.find({""title"": ""The Sin of Madelon Claudet""}, {""writers"": 1})" +what is the full plot for the film Bride of Frankenstein?,"db.movies.find({""title"": ""Bride of Frankenstein""}, {""fullplot"": 1})" +who was the film The Count of Monte Cristo written by?,"db.movies.find({""title"": ""The Count of Monte Cristo""}, {""writers"": 1})" +What is the box office revenue for the movie 'The Guardsman'?,"db.movies.find({""title"": ""The Guardsman""}, {""tomatoes.boxOffice"": 1})" +What is the running time of the film The Big Trail?,"db.movies.find({""title"":""The Big Trail""}, {""runtime"":1})" +what is the genre for the film A Free Soul?,"db.movies.find({""title"": ""A Free Soul""}, {""genres"": 1})" +what was the release year of My Man Godfrey?,"db.movies.find({""title"": ""My Man Godfrey""}, {""year"": 1})" +what is the full plot for the film Going Hollywood?,"db.movies.find({""title"": ""Going Hollywood""}, {""fullplot"": 1})" +How did the audience and critics receive the film Swedenhielms Family?,"db.movies.find({""title"":""Swedenhielms Family""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +who acted in the movie The Devil to Pay!?,"db.movies.find({""title"": ""The Devil to Pay!""}, {""cast"": 1})" +What is the website associated with the movie The Awful Truth on Rotten Tomatoes?,"db.movies.find({""title"": ""The Awful Truth""}, {""tomatoes.website"": 1})" +How did the audience and critics receive Murders in the Rue Morgue?,"db.movies.find({""title"":""Murders in the Rue Morgue""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +the film Secret Agent starred which actors?,"db.movies.find({""title"": ""Secret Agent""}, {""cast"": 1})" +who stars in the film Marked Woman?,"db.movies.find({""title"": ""Marked Woman""}, {""cast"": 1})" +what was the release year of the movie The Immigrant?,"db.movies.find({""title"": ""The Immigrant""}, {""year"": 1})" +who was the film Show Boat written by?,"db.movies.find({""title"": ""Show Boat""}, {""writers"": 1})" +In what language was the movie The Scarlet Empress released?,"db.movies.find({ ""title"": ""The Scarlet Empress"" }, { ""languages"": 1})" +How does the movie The Music Box rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""The Music Box"" },{ ""tomatoes.critic.meter"": 1 })" +What is the production company behind the movie The Song of Night ?,"db.movies.find({""title"": ""The Song of Night""}, {""tomatoes.production"": 1})" +the movie Tabu: A Story of the South Seas starred which actors?,"db.movies.find({""title"": ""Tabu: A Story of the South Seas""}, {""cast"": 1})" +What is the running time of She Done Him Wrong?,"db.movies.find({""title"":""She Done Him Wrong""}, {""runtime"":1})" +Which movie genres did Tim Burton direct?,"db.movies.distinct(""genres"", { ""directors"": ""Tim Burton"" })" +In what year was the movie The Cheat released ?,"db.movies.find({ ""title"": ""The Cheat"" }, { ""year"": 1})" +What type of movie is The Garden of Allah ?,"db.movies.find({""title"":""The Garden of Allah""}, {""genres"":1})" +What is the percentage of positive reviews among critics for the movie Little Caesar ?,"db.movies.find({ ""title"": ""Little Caesar"" },{ ""tomatoes.critic.meter"": 1 })" +what is the genre of Westfront 1918?,"db.movies.find({""title"": ""Westfront 1918""}, {""genres"": 1})" +who is the director for The Life of Emile Zola?,"db.movies.find({""title"": ""The Life of Emile Zola""}, {""directors"": 1})" +who was the writer of the movie Mary of Scotland?,"db.movies.find({""title"": ""Mary of Scotland""}, {""writers"": 1})" +"the movie Cavalcade, was written by who?","db.movies.find({""title"": ""Cavalcade""}, {""writers"": 1})" +What is the language of the film The Story of Louis Pasteur?,"db.movies.find({""title"":""The Story of Louis Pasteur""}, {""languages"":1})" +How did the audience and critics receive the film In Old Arizona?,"db.movies.find({""title"":""In Old Arizona""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What languages are spoken in the movie Payment Deferred?,"db.movies.find({""title"":""Payment Deferred""}, {""languages"":1})" +who was Three Smart Girls written by?,"db.movies.find({""title"": ""Three Smart Girls""}, {""writers"": 1})" +What is the runtime and rating for the movie 'King Solomon's Mines'?,"db.movies.find({""title"": ""King Solomon's Mines""}, {""runtime"": 1, ""rated"": 1})" +Who is the actor that appears the most in movies directed by Roberto Rossellini?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Roberto Rossellini"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +how has The Italian been recieved by critics and audience?,"db.movies.find({""title"":""The Italian""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +Who are the starring actors/actresses in the movie Mèdchen in Uniform?,"db.movies.find({""title"":""Mèdchen in Uniform""}, {""cast"":1})" +who are the actors in the movie Within Our Gates?,"db.movies.find({""title"": ""Within Our Gates""}, {""cast"": 1})" +Who is the lead actor of the movie Der Kaiser von Kalifornien ?,"db.movies.find({""title"": ""Der Kaiser von Kalifornien""}, {""cast"":{""$slice"": 1},""title"":1})" +what is the film Pandora's Box description ?,"db.movies.find({""title"": ""Pandora's Box""}, {""plot"": 1})" +What is the Tomatometer score of the movie Street Angel ?,"db.movies.find({ ""title"": ""Street Angel"" },{ ""tomatoes.critic.meter"": 1 })" +What is the language of The Gilded Lily?,"db.movies.find({""title"":""The Gilded Lily""}, {""languages"":1})" +In what language was the movie The Red Head released?,"db.movies.find({ ""title"": ""The Red Head"" }, { ""languages"": 1})" +what sort of movie is Tsirk?,"db.movies.find({""title"": ""Tsirk""}, {""genres"": 1})" +"Has the film Imitation of Life won any awards? If so, which ones?","db.movies.find({""title"":""Imitation of Life"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +Can you provide more information about the Rotten Tomatoes rating for the movie The Pearls of the Crown?,"db.movies.find({""title"": ""The Pearls of the Crown""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +What is the running time of the film It?,"db.movies.find({""title"":""It""}, {""runtime"":1})" +Can you tell me how many movies Alain Resnais directed for each year they were released?,"db.movies.aggregate([{ $match: { ""directors"": ""Alain Resnais"" }},{""$group"": { ""_id"": ""$year"", ""count"": {""$sum"": 1}}}])" +what is the full plot for King Solomon's Mines?,"db.movies.find({""title"": ""King Solomon's Mines""}, {""fullplot"": 1})" +A Damsel in Distress was directed by who?,"db.movies.find({""title"": ""A Damsel in Distress""}, {""directors"": 1})" +How did the audience and critics receive the movie Tsirk?,"db.movies.find({""title"":""Tsirk""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +Who is the lead actress of the movie Payment Deferred ?,"db.movies.find({""title"": ""Payment Deferred""}, {""cast"":{""$slice"": 1},""title"":1})" +who acted in the movie Black Legion?,"db.movies.find({""title"": ""Black Legion""}, {""cast"": 1})" +who directed the movie The Champ?,"db.movies.find({""title"": ""The Champ""}, {""directors"": 1})" +Who are the main actors in Tarzan and His Mate ?,"db.movies.find({ ""title"": ""Tarzan and His Mate"" }, { ""cast"": 1})" +What is the production company of the movie It's a Gift?,"db.movies.find({""title"":""It's a Gift""}, {""tomatoes.production"":1})" +Upstream is a movie written by this person?,"db.movies.find({""title"": ""Upstream""}, {""writers"": 1})" +In what year was the movie The Barretts of Wimpole Street released ?,"db.movies.find({ ""title"": ""The Barretts of Wimpole Street"" }, { ""year"": 1})" +When was the movie The Big Parade released in theaters?,"db.movies.find({""title"": ""The Big Parade""}, {""released"": 1})" +what is the genre for the movie Broken Lullaby?,"db.movies.find({""title"": ""Broken Lullaby""}, {""genres"": 1})" +What is the MongoDB document ID of the movie The Divine Lady?,"db.movies.find({""title"": ""The Divine Lady""}, {""_id"": 1})" +How did the audience and critics receive Fury?,"db.movies.find({""title"":""Fury""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what genre is Comradeship?,"db.movies.find({""title"": ""Comradeship""}, {""genres"": 1})" +When was the movie Upstream released?,"db.movies.find({""title"":""Upstream""}, {""released"":1})" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie Sanders of the River ?,"db.movies.find({""title"":""Sanders of the River""}, {""tomatoes.viewer.meter"":1})" +who was the film The Garden of Allah written by?,"db.movies.find({""title"": ""The Garden of Allah""}, {""writers"": 1})" +what was the release date of Hallelujah?,"db.movies.find({""title"": ""Hallelujah""}, {""released"": 1})" +who acted in the movie Romeo and Juliet?,"db.movies.find({""title"": ""Romeo and Juliet""}, {""cast"": 1})" +the movie Movie Crazy was directed by who?,"db.movies.find({""title"": ""Movie Crazy""}, {""directors"": 1})" +What is the production company of the film The Great Train Robbery?,"db.movies.find({""title"":""The Great Train Robbery""}, {""tomatoes.production"":1})" +Who is the lead actress of the movie Triumph of the Will ?,"db.movies.find({""title"": ""Triumph of the Will""}, {""cast"":{""$slice"": 1},""title"":1})" +What are the genres this movie Go West belongs to?,"db.movies.find({""title"":""Go West""}, {""genres"":1})" +What is the added duration of all movies directed by Akira Kurosawa?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Akira Kurosawa"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +What's the title of the shortest Ethan Coen-directed movie?,"db.movies.find({""directors"":""Ethan Coen""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +Who are the starring actors/actresses in the movie Les vampires?,"db.movies.find({""title"":""Les vampires""}, {""cast"":1})" +What is the MongoDB document ID of the movie Everybody's Woman?,"db.movies.find({""title"": ""Everybody's Woman""}, {""_id"": 1})" +What is the critical reception of the movie La Grande Illusion?,"db.movies.find({""title"":""La Grande Illusion""}, {""tomatoes.critic"":1})" +What is the Tomatometer score of the movie One Night of Love ?,"db.movies.find({ ""title"": ""One Night of Love"" },{ ""tomatoes.critic.meter"": 1 })" +"Has the film Masquerade in Vienna won any awards? If so, which ones?","db.movies.find({""title"":""Masquerade in Vienna"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What is the MongoDB document ID of the movie Battling Butler?,"db.movies.find({""title"": ""Battling Butler""}, {""_id"": 1})" +What is the MPAA rating of the movie The Power and the Glory?,"db.movies.find({""title"":""The Power and the Glory""}, {""rated"":1})" +what genre is One Night of Love?,"db.movies.find({""title"": ""One Night of Love""}, {""genres"": 1})" +what was the genre of the movie Storm Over Asia?,"db.movies.find({""title"": ""Storm Over Asia""}, {""genres"": 1})" +In which countries was the movie Modern Times produced?,"db.movies.find({""title"":""Modern Times""}, {""countries"":1})" +which company produced Murders in the Rue Morgue?,"db.movies.find({""title"":""Murders in the Rue Morgue""}, {""tomatoes.production"":1})" +Man of Aran is a movie written by this person?,"db.movies.find({""title"": ""Man of Aran""}, {""writers"": 1})" +who directed the movie In Old Arizona?,"db.movies.find({""title"": ""In Old Arizona""}, {""directors"": 1})" +What languages are spoken in the movie The Blood of a Poet ?,"db.movies.find({""title"": ""The Blood of a Poet""}, { ""languages"": 1})" +What are the genres this movie The Emperor Jones belongs to?,"db.movies.find({""title"":""The Emperor Jones""}, {""genres"":1})" +What is the number of movies Quentin Tarantino released per year?,"db.movies.aggregate([{ $match: { ""directors"": ""Quentin Tarantino"" }},{""$group"": { ""_id"": ""$year"", ""count"": {""$sum"": 1}}}])" +what is Earth description?,"db.movies.find({""title"": ""Earth""}, {""plot"": 1})" +who was the writer of the film The Circus?,"db.movies.find({""title"": ""The Circus""}, {""writers"": 1})" +"who starred in the movie Laugh, Clown, Laugh?","db.movies.find({""title"": ""Laugh, Clown, Laugh""}, {""cast"": 1})" +When was the movie This Is My Affair released in theaters?,"db.movies.find({""title"": ""This Is My Affair""}, {""released"": 1})" +What is the freshness score of the movie These Three on Rotten Tomatoes?,"db.movies.find({""title"": ""These Three""}, {""tomatoes.fresh"": 1})" +What is the Rotten Tomatoes meter rating for the movie Les Misèrables ?,"db.movies.find({""title"":""Les Misèrables""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +who are the actors in the film Alice Adams?,"db.movies.find({""title"": ""Alice Adams""}, {""cast"": 1})" +who starred in the movie Topaze?,"db.movies.find({""title"": ""Topaze""}, {""cast"": 1})" +What is the overall length of all movies that Ingmar Bergman has directed?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Ingmar Bergman"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +what genre is the film Greed?,"db.movies.find({""title"": ""Greed""}, {""genres"": 1})" +who produced Children in the Wind?,"db.movies.find({""title"":""Children in the Wind""}, {""tomatoes.production"":1})" +who was the film Mutiny on the Bounty written by?,"db.movies.find({""title"": ""Mutiny on the Bounty""}, {""writers"": 1})" +what sort of film is Forbidden?,"db.movies.find({""title"": ""Forbidden""}, {""genres"": 1})" +what is Flesh and the Devil description?,"db.movies.find({""title"": ""Flesh and the Devil""}, {""plot"": 1})" +who is the director of Frankenstein?,"db.movies.find({""title"": ""Frankenstein""}, {""directors"": 1})" +What is the running time of è Nous la Libertè?,"db.movies.find({""title"":""è Nous la Libertè""}, {""runtime"":1})" +what kind of movie is Nanook of the North?,"db.movies.find({""title"": ""Nanook of the North""}, {""genres"": 1})" +In what language was the movie The Lives of a Bengal Lancer released?,"db.movies.find({ ""title"": ""The Lives of a Bengal Lancer"" }, { ""languages"": 1})" +what year was Pèpè le Moko released?,"db.movies.find({""title"": ""Pèpè le Moko""}, {""year"": 1})" +what is the film Robin Hood imdb rating?,"db.movies.find({""title"": ""Robin Hood""}, {""imdb.rating"": 1})" +What is the production company behind the movie x?,"db.movies.find({""title"": ""Cleopatra""}, { ""tomatoes.production"": 1})" +The Land Beyond the Sunset was directed by who?,"db.movies.find({""title"": ""The Land Beyond the Sunset""}, {""directors"": 1})" +Which Steven Spielberg-directed movie has the highest score on Rotten Tomatoes?,"db.movies.find({""directors"": ""Steven Spielberg"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +When was the movie Man of Aran released?,"db.movies.find({""title"":""Man of Aran""}, {""released"":1})" +who was the movie Under the Roofs of Paris written by?,"db.movies.find({""title"": ""Under the Roofs of Paris""}, {""writers"": 1})" +Was the movie Lloyd's of London well received by audiences?,"db.movies.find({""title"":""Lloyd's of London""}, {""tomatoes.viewer"":1})" +What is the highest-ranking Pedro Almodovar-directed film on Rotten Tomatoes?,"db.movies.find({""directors"": ""Pedro Almodovar"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +Who are the starring actors/actresses in the movie China Seas?,"db.movies.find({""title"":""China Seas""}, {""cast"":1})" +what sort of movie is The Lives of a Bengal Lancer?,"db.movies.find({""title"": ""The Lives of a Bengal Lancer""}, {""genres"": 1})" +What is the best-reviewed movie on Rotten Tomatoes that was directed by Sergei Eisenstein?,"db.movies.find({""directors"": ""Sergei Eisenstein"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +What is the meter score of the movie A Day in the Country according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""A Day in the Country""}, {""tomatoes.viewer.meter"": 1})" +What was the release date for the movie Traffic in Souls?,"db.movies.find({""title"":""Traffic in Souls""}, {""released"":1})" +What was the release date for the movie Flying Down to Rio?,"db.movies.find({""title"":""Flying Down to Rio""}, {""released"":1})" +What is the IMDb ID for the movie The Unknown?,"db.movies.find({""title"":""The Unknown""}, {""imdb.id"":1})" +What is the language of the film Three Little Pigs?,"db.movies.find({""title"":""Three Little Pigs""}, {""languages"":1})" +What is the sum of the runtimes of all the films directed by Oliver Stone?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Oliver Stone"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +"Cops, was written by who?","db.movies.find({""title"": ""Cops""}, {""writers"": 1})" +what is the full plot for Hallelujah?,"db.movies.find({""title"": ""Hallelujah""}, {""fullplot"": 1})" +How did the audience and critics receive Go West?,"db.movies.find({""title"":""Go West""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +"Has the movie The Crowd Roars won any awards? If so, which ones?","db.movies.find({""title"":""The Crowd Roars"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +who was Daughter of Shanghai directed by?,"db.movies.find({""title"": ""Daughter of Shanghai""}, {""directors"": 1})" +What is the audience rating of the movie This Is My Affair ?,"db.movies.find({ ""title"": ""This Is My Affair"" },{ ""tomatoes.viewer.rating"": 1 })" +How many reviews have been submitted by critics for the movie Moscow Laughs ?,"db.movies.find({""title"": ""Moscow Laughs""}, {""tomatoes.critic.numReviews"": 1})" +What is the Rotten Tomatoes meter rating for the movie Sisters of the Gion ?,"db.movies.find({""title"":""Sisters of the Gion""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +how many awards did the film The Lower Depths win?,"db.movies.find({""title"":""The Lower Depths""}, {""awards.wins"":1})" +What is the running time of Grass: A Nation's Battle for Life?,"db.movies.find({""title"":""Grass: A Nation's Battle for Life""}, {""runtime"":1})" +"Has the film They Won't Forget won any awards? If so, which ones?","db.movies.find({""title"":""They Won't Forget"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +who produced the film Forbidden?,"db.movies.find({""title"":""Forbidden""}, {""tomatoes.production"":1})" +How long is the runtime of the movie The Thief of Bagdad ?,"db.movies.find({""title"":""The Thief of Bagdad""}, {""runtime"":1})" +who produced the film The Devil Is a Woman?,"db.movies.find({""title"":""The Devil Is a Woman""}, {""tomatoes.production"":1})" +What is the IMDb rating for the film è Nous la Libertè?,"db.movies.find({""title"": ""è Nous la Libertè""}, {""imdb.rating"": 1})" +what sort of movie is The Devil Is a Woman?,"db.movies.find({""title"": ""The Devil Is a Woman""}, {""genres"": 1})" +who are the actors in the film It Happened One Night?,"db.movies.find({""title"": ""It Happened One Night""}, {""cast"": 1})" +who is the director for The Freshman?,"db.movies.find({""title"": ""The Freshman""}, {""directors"": 1})" +What is the box office revenue of the movie Little Women in dollars?,"db.movies.find({""title"": ""Little Women""}, {""tomatoes.boxOffice"": 1})" +what was the release date of the movie The Dark Angel?,"db.movies.find({""title"": ""The Dark Angel""}, {""released"": 1})" +What is the production company behind the movie In Old Chicago ?,"db.movies.find({""title"": ""In Old Chicago""}, {""tomatoes.production"": 1})" +What is the production company behind the movie The Broadway Melody ?,"db.movies.find({""title"": ""The Broadway Melody""}, {""tomatoes.production"": 1})" +When was the movie Applause released?,"db.movies.find({""title"":""Applause""}, {""released"":1})" +What is the imdbID and year of release for the movie with a title of 'Comradeship'?,"db.movies.find({""title"": ""Comradeship""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +what is the film Dekigokoro description ?,"db.movies.find({""title"": ""Dekigokoro""}, {""plot"": 1})" +What is the viewer rating for the movie Wife! Be Like a Rose! on Rotten Tomatoes?,"db.movies.find({""title"":""Wife! Be Like a Rose!""}, {""tomatoes.viewer.rating"":1})" +Who holds the record for the most appearances in movies directed by Sergei Eisenstein?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Sergei Eisenstein"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +who produced the movie Hallelujah?,"db.movies.find({""title"":""Hallelujah""}, {""tomatoes.production"":1})" +who stars in the movie Folies Bergère de Paris?,"db.movies.find({""title"": ""Folies Bergère de Paris""}, {""cast"": 1})" +What is the percentage of positive reviews among critics for the movie The General ?,"db.movies.find({ ""title"": ""The General"" },{ ""tomatoes.critic.meter"": 1 })" +What is the movie Camille rating?,"db.movies.find({""title"":""Camille""}, {""rated"":1})" +what is the genre for the film Lenin in October?,"db.movies.find({""title"": ""Lenin in October""}, {""genres"": 1})" +What are some of the films that Ridley Scott has directed?,"db.movies.find({""directors"": ""Ridley Scott""},{""title"":1})" +What is the consensus among critics about the movie Duck Soup ?,"db.movies.find({""title"": ""Duck Soup""}, {""tomatoes.consensus"": 1})" +what genre of movie is King of Jazz?,"db.movies.find({""title"": ""King of Jazz""}, {""genres"": 1})" +What is the running time of Stage Door?,"db.movies.find({""title"":""Stage Door""}, {""runtime"":1})" +"the movie Les vampires, was written by who?","db.movies.find({""title"": ""Les vampires""}, {""writers"": 1})" +what sort of movie is The Song of Night?,"db.movies.find({""title"": ""The Song of Night""}, {""genres"": 1})" +What type of movie is Wonder Bar ?,"db.movies.find({""title"":""Wonder Bar""}, {""genres"":1})" +In what year was the movie The Story of Louis Pasteur released?,"db.movies.find({""title"":""The Story of Louis Pasteur""}, {""year"":1})" +Who is the lead actress of the movie Comradeship ?,"db.movies.find({""title"": ""Comradeship""}, {""cast"":{""$slice"": 1},""title"":1})" +What is the consensus among critics about the movie Mutiny on the Bounty ?,"db.movies.find({""title"": ""Mutiny on the Bounty""}, {""tomatoes.consensus"": 1})" +who starred in the movie Civilization?,"db.movies.find({""title"": ""Civilization""}, {""cast"": 1})" +Flesh and the Devil is a film written by this person?,"db.movies.find({""title"": ""Flesh and the Devil""}, {""writers"": 1})" +who was the film Wild Oranges written by?,"db.movies.find({""title"": ""Wild Oranges""}, {""writers"": 1})" +What type of movie is The Devil to Pay! ?,"db.movies.find({""title"":""The Devil to Pay!""}, {""genres"":1})" +who wrote the screenplay for the film The Public Enemy?,"db.movies.aggregate([ { ""$match"": { ""title"":""The Public Enemy""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +what kind of film is Show People?,"db.movies.find({""title"": ""Show People""}, {""genres"": 1})" +what is the plot for Asphalt?,"db.movies.find({""title"": ""Asphalt""}, {""plot"": 1})" +How many wins did the movie The Man Who Knew Too Much receive?,"db.movies.find({""title"":""The Man Who Knew Too Much""}, {""awards.wins"":1})" +Who is the lead actor of the movie The Kid ?,"db.movies.find({""title"": ""The Kid""}, {""cast"":{""$slice"": 1},""title"":1})" +Can you provide a longer version of the movie The Power and the Glory plot?,"db.movies.find({""title"":""The Power and the Glory""}, {""fullplot"":1})" +What is the text representation of the awards won and nominations received by the movie Lady Windermere's Fan?,"db.movies.find({""title"": ""Lady Windermere's Fan""}, { ""awards.text"": 1})" +who is the writer of Clash of the Wolves?,"db.movies.find({""title"": ""Clash of the Wolves""}, {""writers"": 1})" +How many awards did the movie win The Blue Light ?,"db.movies.find({ ""title"": ""The Blue Light"" },{ ""awards.wins"": 1 })" +what is the film A Story of Floating Weeds about?,"db.movies.find({""title"": ""A Story of Floating Weeds""}, {""plot"": 1})" +Was the movie Scrooge well received by audiences and critics?,"db.movies.find({""title"":""Scrooge""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what is the movie Follow the Fleet description ?,"db.movies.find({""title"": ""Follow the Fleet""}, {""plot"": 1})" +who was the writer of Our Hospitality?,"db.movies.find({""title"": ""Our Hospitality""}, {""writers"": 1})" +What is the meter score of the movie Dishonored according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Dishonored""}, {""tomatoes.viewer.meter"": 1})" +What are the genres associated with the movie A Farewell to Arms ?,"db.movies.find({ ""title"": ""A Farewell to Arms"" }, { ""genres"": 1})" +What are the films directed by Steven Spielberg?,"db.movies.find({""directors"": ""Steven Spielberg""},{""title"":1})" +who stars in Secret Agent?,"db.movies.find({""title"": ""Secret Agent""}, {""cast"": 1})" +what is the movie The Circus imdb rating?,"db.movies.find({""title"": ""The Circus""}, {""imdb.rating"": 1})" +What is the audience rating of the movie She Done Him Wrong ?,"db.movies.find({ ""title"": ""She Done Him Wrong"" },{ ""tomatoes.viewer.rating"": 1 })" +who acted in the film The Crusades?,"db.movies.find({""title"": ""The Crusades""}, {""cast"": 1})" +What is the box office revenue of the movie The Life of Emile Zola in dollars?,"db.movies.find({""title"": ""The Life of Emile Zola""}, {""tomatoes.boxOffice"": 1})" +How many viewer reviews did the movie Dr. Jekyll and Mr. Hyde receive on Rotten Tomatoes?,"db.movies.find({""title"":""Dr. Jekyll and Mr. Hyde""}, {""tomatoes.viewer.numReviews"":1})" +What languages are spoken in the movie Kid Galahad ?,"db.movies.find({""title"": ""Kid Galahad""}, { ""languages"": 1})" +What is the quantity of movies that Oliver Stone has directed?,"db.movies.countDocuments({""directors"":""Oliver Stone""})" +Can you provide a longer version of the movie The Docks of New York plot?,"db.movies.find({""title"":""The Docks of New York""}, {""fullplot"":1})" +What is the IMDb rating for the movie A Corner in Wheat ?,"db.movies.find({""title"":""A Corner in Wheat""}, {""imdb.rating"":1})" +How long is the runtime of the movie The Divorcee ?,"db.movies.find({""title"":""The Divorcee""}, {""runtime"":1})" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie Night Must Fall ?,"db.movies.find({""title"":""Night Must Fall""}, {""tomatoes.viewer.meter"":1})" +who wrote the film The Perils of Pauline?,"db.movies.find({""title"": ""The Perils of Pauline""}, {""writers"": 1})" +what is the plot for the movie The General?,"db.movies.find({""title"": ""The General""}, {""plot"": 1})" +How many award nominations did the movie receive The Champ ?,"db.movies.find({ ""title"": ""The Champ"" },{ ""awards.nominations"": 1 })" +what is The Wedding Night description?,"db.movies.find({""title"": ""The Wedding Night""}, {""plot"": 1})" +"Fury, was written by who?","db.movies.find({""title"": ""Fury""}, {""writers"": 1})" +what is Bad Girl imdb rating?,"db.movies.find({""title"": ""Bad Girl""}, {""imdb.rating"": 1})" +Who is the lead actor of the movie Footlight Parade ?,"db.movies.find({""title"": ""Footlight Parade""}, {""cast"":{""$slice"": 1},""title"":1})" +"Has Upstream won any awards? If so, which ones?","db.movies.find({""title"":""Upstream"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +what is the full plot for the movie The Private Life of Henry VIII.?,"db.movies.find({""title"": ""The Private Life of Henry VIII.""}, {""fullplot"": 1})" +who is the director for Dr. Jekyll and Mr. Hyde?,"db.movies.find({""title"": ""Dr. Jekyll and Mr. Hyde""}, {""directors"": 1})" +What is the text description of the movie Regeneration awards?,"db.movies.find({""title"":""Regeneration""}, {""awards.text"":1})" +What is the IMDb rating for the movie Wild Oranges?,"db.movies.find({""title"": ""Wild Oranges""}, {""imdb.rating"": 1})" +who was Sanders of the River written by?,"db.movies.find({""title"": ""Sanders of the River""}, {""writers"": 1})" +What is the MongoDB document ID of the movie The Fall of the House of Usher?,"db.movies.find({""title"": ""The Fall of the House of Usher""}, {""_id"": 1})" +what is The Cameraman about in details?,"db.movies.find({""title"": ""The Cameraman""}, {""fullplot"": 1})" +"can you describe the plot of Laugh, Clown, Laugh?","db.movies.find({""title"": ""Laugh, Clown, Laugh""}, {""plot"": 1})" +Which actor has the highest count of appearances in Spike Lee's directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Spike Lee"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +who directed The Story of Louis Pasteur?,"db.movies.find({""title"": ""The Story of Louis Pasteur""}, {""directors"": 1})" +which person wrote Baby Face?,"db.movies.find({""title"": ""Baby Face""}, {""writers"": 1})" +what sort of movie is Make Way for Tomorrow?,"db.movies.find({""title"": ""Make Way for Tomorrow""}, {""genres"": 1})" +who directed the movie Earth?,"db.movies.find({""title"": ""Earth""}, {""directors"": 1})" +What is the text description of the movie Foolish Wives awards?,"db.movies.find({""title"":""Foolish Wives""}, {""awards.text"":1})" +who is the director that directed The Power and the Glory?,"db.movies.find({""title"": ""The Power and the Glory""}, {""directors"": 1})" +What is the production company behind the movie Night Must Fall ?,"db.movies.find({""title"": ""Night Must Fall""}, {""tomatoes.production"": 1})" +who is the director of The Last Command?,"db.movies.find({""title"": ""The Last Command""}, {""directors"": 1})" +the film The Public Enemy was directed by who?,"db.movies.find({""title"": ""The Public Enemy""}, {""directors"": 1})" +How long is the runtime of the movie These Three ?,"db.movies.find({""title"":""These Three""}, {""runtime"":1})" +what was the release year of Ella Cinders?,"db.movies.find({""title"": ""Ella Cinders""}, {""year"": 1})" +Which movies were directed by Clint Eastwood and were released in the 1990s?,"db.movies.find({""directors"": 'Clint Eastwood', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +what was the genre of the movie Everybody's Woman?,"db.movies.find({""title"": ""Everybody's Woman""}, {""genres"": 1})" +what is the genre for the movie Dodsworth?,"db.movies.find({""title"": ""Dodsworth""}, {""genres"": 1})" +When was the movie The 3 Penny Opera released in theaters?,"db.movies.find({""title"": ""The 3 Penny Opera""}, {""released"": 1})" +What is the MPAA rating of The Good Earth?,"db.movies.find({""title"":""The Good Earth""}, {""rated"":1})" +who starred in All Quiet on the Western Front?,"db.movies.find({""title"": ""All Quiet on the Western Front""}, {""cast"": 1})" +What is the website associated with the movie Napoleon on Rotten Tomatoes?,"db.movies.find({""title"": ""Napoleon""}, {""tomatoes.website"": 1})" +What is the IMDb rating for the movie The Thief of Bagdad ?,"db.movies.find({""title"":""The Thief of Bagdad""}, {""imdb.rating"":1})" +what type of movie is The Four Horsemen of the Apocalypse?,"db.movies.find({""title"": ""The Four Horsemen of the Apocalypse""}, {""genres"": 1})" +who was the film Men Without Women written by?,"db.movies.find({""title"": ""Men Without Women""}, {""writers"": 1})" +Was the movie La Grande Illusion well received by audiences and critics?,"db.movies.find({""title"":""La Grande Illusion""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the typical rating for all Coen Brothers movies in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Coen Brothers""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +What is the MPAA rating of the film Dishonored?,"db.movies.find({""title"":""Dishonored""}, {""rated"":1})" +what was the genre of the film The Blood of a Poet?,"db.movies.find({""title"": ""The Blood of a Poet""}, {""genres"": 1})" +What is the rating of the movie Top Hat according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Top Hat""}, {""tomatoes.viewer.rating"": 1})" +who are the actors in Mr. Deeds Goes to Town?,"db.movies.find({""title"": ""Mr. Deeds Goes to Town""}, {""cast"": 1})" +what type of movie is The Red Head?,"db.movies.find({""title"": ""The Red Head""}, {""genres"": 1})" +What is the full plot summary of the movie Zero for Conduct ?,"db.movies.find({""title"": ""Zero for Conduct""}, {""plot"": 1})" +what was the release year of Bad Girl?,"db.movies.find({""title"": ""Bad Girl""}, {""year"": 1})" +who was the writer of the film The Prince and the Pauper?,"db.movies.find({""title"": ""The Prince and the Pauper""}, {""writers"": 1})" +what was the genre of the movie Ella Cinders?,"db.movies.find({""title"": ""Ella Cinders""}, {""genres"": 1})" +How many wins did the movie One Night of Love receive?,"db.movies.find({""title"":""One Night of Love""}, {""awards.wins"":1})" +Has the movie The Life of Emile Zola won any awards?,"db.movies.find({""title"":""The Life of Emile Zola""}, {""awards.wins"":1})" +"who is the writer of the film Laugh, Clown, Laugh?","db.movies.find({""title"": ""Laugh, Clown, Laugh""}, {""writers"": 1})" +what sort of movie is Miss Lulu Bett?,"db.movies.find({""title"": ""Miss Lulu Bett""}, {""genres"": 1})" +Who are the actors in the movie Mayerling?,"db.movies.find({""title"":""Mayerling""}, {""cast"":1})" +What is the best-reviewed movie on Rotten Tomatoes that was directed by Wes Anderson?,"db.movies.find({""directors"": ""Wes Anderson"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +what sort of film is The Circus?,"db.movies.find({""title"": ""The Circus""}, {""genres"": 1})" +What is the production company of the film Salomè?,"db.movies.find({""title"":""Salomè""}, {""tomatoes.production"":1})" +How does the movie Napoleon rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Napoleon"" },{ ""tomatoes.critic.meter"": 1 })" +what is the movie In the Land of the Head Hunters about?,"db.movies.find({""title"": ""In the Land of the Head Hunters""}, {""plot"": 1})" +What is the production company of Ruggles of Red Gap?,"db.movies.find({""title"":""Ruggles of Red Gap""}, {""tomatoes.production"":1})" +what was the release date of The Blue Bird?,"db.movies.find({""title"": ""The Blue Bird""}, {""released"": 1})" +what is the genre for the movie Trouble in Paradise?,"db.movies.find({""title"": ""Trouble in Paradise""}, {""genres"": 1})" +What is the Rotten Tomatoes meter rating for the movie The Kid ?,"db.movies.find({""title"":""The Kid""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +who was the writer of the movie From Hand to Mouth?,"db.movies.find({""title"": ""From Hand to Mouth""}, {""writers"": 1})" +In which genre do the movies directed by Robert Bresson mainly fall under?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Robert Bresson"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What are the genres this movie Applause belongs to?,"db.movies.find({""title"":""Applause""}, {""genres"":1})" +Could you tell me the title of the movie with the shortest duration that was directed by Coen Brothers?,"db.movies.find({""directors"":""Coen Brothers""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +What movie directed by Yasujiro Ozu has the best Rotten Tomatoes score?,"db.movies.find({""directors"": ""Yasujiro Ozu"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +who is the author of The Cameraman?,"db.movies.find({""title"": ""The Cameraman""}, {""writers"": 1})" +who produced Skippy?,"db.movies.find({""title"":""Skippy""}, {""tomatoes.production"":1})" +What is the language of the movie Les vampires?,"db.movies.find({""title"":""Les vampires""}, {""languages"":1})" +What is the production company behind the movie è Nous la Libertè ?,"db.movies.find({""title"": ""è Nous la Libertè""}, { ""tomatoes.production"": 1})" +which person wrote the film Cavalcade?,"db.movies.find({""title"": ""Cavalcade""}, {""writers"": 1})" +What is the MPAA rating of The Life of Emile Zola?,"db.movies.find({""title"":""The Life of Emile Zola""}, {""rated"":1})" +what are the genres directed by Francois Truffaut?,"db.movies.distinct(""genres"", { ""directors"": ""Francois Truffaut"" })" +What is the website associated with the movie Bride of Frankenstein on Rotten Tomatoes?,"db.movies.find({""title"": ""Bride of Frankenstein""}, {""tomatoes.website"": 1})" +Can you provide more information about the languages spoken in the movie Skippy ?,"db.movies.find({""title"":""Skippy""}, {""languages"":1})" +What is the text description of the movie Metropolis awards?,"db.movies.find({""title"":""Metropolis""}, {""awards.text"":1})" +who starred in the film Theodora Goes Wild?,"db.movies.find({""title"": ""Theodora Goes Wild""}, {""cast"": 1})" +"Black Legion, was written by who?","db.movies.find({""title"": ""Black Legion""}, {""writers"": 1})" +What is the plot summary of the movie Sanders of the River ?,"db.movies.find({ ""title"": ""Sanders of the River"" }, { ""plot"": 1})" +"Now or Never, is written by who?","db.movies.find({""title"": ""Now or Never""}, {""writers"": 1})" +What is the production company of the movie The Ghost Goes West?,"db.movies.find({""title"":""The Ghost Goes West""}, {""tomatoes.production"":1})" +who are the actors in The Champ?,"db.movies.find({""title"": ""The Champ""}, {""cast"": 1})" +What is the box office revenue of the movie Cavalcade in dollars?,"db.movies.find({""title"": ""Cavalcade""}, {""tomatoes.boxOffice"": 1})" +what was the release year of the film The Hurricane?,"db.movies.find({""title"": ""The Hurricane""}, {""year"": 1})" +What is the box office revenue for the movie 'Shanghai Express'?,"db.movies.find({""title"": ""Shanghai Express""}, {""tomatoes.boxOffice"": 1})" +"who is the director that directed Steamboat Bill, Jr.?","db.movies.find({""title"": ""Steamboat Bill, Jr.""}, {""directors"": 1})" +the movie Tabu: A Story of the South Seas starred who?,"db.movies.find({""title"": ""Tabu: A Story of the South Seas""}, {""cast"": 1})" +What are the genres associated with the movie Maria Chapdelaine ?,"db.movies.find({ ""title"": ""Maria Chapdelaine"" }, { ""genres"": 1})" +Who are the writers of the movie Queen Christina ?,"db.movies.find({""title"": ""Queen Christina""}, { ""writers"": 1})" +what is the full plot for the film The Trail of the Lonesome Pine?,"db.movies.find({""title"": ""The Trail of the Lonesome Pine""}, {""fullplot"": 1})" +what is the film Der Kaiser von Kalifornien about?,"db.movies.find({""title"": ""Der Kaiser von Kalifornien""}, {""plot"": 1})" +How many awards did the movie win Love Me Tonight ?,"db.movies.find({ ""title"": ""Love Me Tonight"" },{ ""awards.wins"": 1 })" +who's the director of A Farewell to Arms?,"db.movies.find({""title"": ""A Farewell to Arms""}, {""directors"": 1})" +What was the release date for the movie The Spanish Earth?,"db.movies.find({""title"":""The Spanish Earth""}, {""released"":1})" +What is the MPAA rating of the film The Man Who Could Work Miracles?,"db.movies.find({""title"":""The Man Who Could Work Miracles""}, {""rated"":1})" +what was the genre of Scarface?,"db.movies.find({""title"": ""Scarface""}, {""genres"": 1})" +What is the runtime and rating for the movie 'The Pearls of the Crown'?,"db.movies.find({""title"": ""The Pearls of the Crown""}, {""runtime"": 1, ""rated"": 1})" +What is the movie Der Kaiser von Kalifornien about? Can you provide a brief summary?,"db.movies.find({""title"":""Der Kaiser von Kalifornien""}, {""plot"":1})" +How long is the movie Nosferatu in minutes?,"db.movies.find({""title"":""Nosferatu""}, {""runtime"":1})" +Can you provide a longer version of the movie City Streets plot?,"db.movies.find({""title"":""City Streets""}, {""fullplot"":1})" +who acted in the film Dodsworth?,"db.movies.find({""title"": ""Dodsworth""}, {""cast"": 1})" +Who are the starring actors/actresses in the movie The Crowd Roars?,"db.movies.find({""title"":""The Crowd Roars""}, {""cast"":1})" +How many wins did the movie Who Killed Cock Robin? receive?,"db.movies.find({""title"":""Who Killed Cock Robin?""}, {""awards.wins"":1})" +What is the language of The Charge of the Light Brigade?,"db.movies.find({""title"":""The Charge of the Light Brigade""}, {""languages"":1})" +who starred in The Spanish Earth?,"db.movies.find({""title"": ""The Spanish Earth""}, {""cast"": 1})" +What is the standard rating of Pedro Almodovar movies in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Pedro Almodovar""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +what was the release year of The Power and the Glory?,"db.movies.find({""title"": ""The Power and the Glory""}, {""year"": 1})" +the movie San Francisco starred which actors?,"db.movies.find({""title"": ""San Francisco""}, {""cast"": 1})" +How many awards did the movie win Stage Door ?,"db.movies.find({ ""title"": ""Stage Door"" },{ ""awards.wins"": 1 })" +Can you give me a brief summary of the movie Show People plot?,"db.movies.find({""title"":""Show People""}, {""plot"":1})" +How long is the runtime of the movie Make Way for Tomorrow ?,"db.movies.find({""title"":""Make Way for Tomorrow""}, {""runtime"":1})" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie The Charge of the Light Brigade ?,"db.movies.find({""title"":""The Charge of the Light Brigade""}, {""tomatoes.viewer.meter"":1})" +What is the production company of Mèdchen in Uniform?,"db.movies.find({""title"":""Mèdchen in Uniform""}, {""tomatoes.production"":1})" +what is the genre for the movie The Italian?,"db.movies.find({""title"": ""The Italian""}, {""genres"": 1})" +what was the release year of Curly Top?,"db.movies.find({""title"": ""Curly Top""}, {""year"": 1})" +Who is the lead actor of the movie Wild and Woolly ?,"db.movies.find({""title"": ""Wild and Woolly""}, {""cast"":{""$slice"": 1},""title"":1})" +What is the MPAA rating of Going Hollywood?,"db.movies.find({""title"":""Going Hollywood""}, {""rated"":1})" +what is the genre of Les Misèrables?,"db.movies.find({""title"": ""Les Misèrables""}, {""genres"": 1})" +"Steamboat Bill, Jr. was directed by who?","db.movies.find({""title"": ""Steamboat Bill, Jr.""}, {""directors"": 1})" +"the film These Three, was written by who?","db.movies.find({""title"": ""These Three""}, {""writers"": 1})" +What is the website associated with the movie Tsirk on Rotten Tomatoes?,"db.movies.find({""title"": ""Tsirk""}, {""tomatoes.website"": 1})" +the movie Little Women starred who?,"db.movies.find({""title"": ""Little Women""}, {""cast"": 1})" +How many audience reviews have been submitted for the movie The Prisoner of Zenda?,"db.movies.find({ ""title"": ""The Prisoner of Zenda"" }, { ""tomatoes.viewer.numReviews"": 1 })" +How many audience reviews have been submitted for the movie The Private Life of Henry VIII. ?,"db.movies.find({ ""title"": ""The Private Life of Henry VIII."" },{ ""tomatoes.viewer.numReviews"": 1 })" +How did the audience and critics receive the movie Ella Cinders?,"db.movies.find({""title"":""Ella Cinders""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the MPAA rating of the movie The Dark Angel?,"db.movies.find({""title"":""The Dark Angel""}, {""rated"":1})" +What is the rating of the movie Marked Woman on IMDb?,"db.movies.find({""title"":""Marked Woman""}, {""imdb.rating"":1})" +When was the information last updated for the movie It's a Gift ?,"db.movies.find({ ""title"": ""It's a Gift"" },{ ""lastupdated"": 1 })" +What is the production company of the movie The Lost World?,"db.movies.find({""title"":""The Lost World""}, {""tomatoes.production"":1})" +who's the director of The Poor Little Rich Girl?,"db.movies.find({""title"": ""The Poor Little Rich Girl""}, {""directors"": 1})" +Who is the lead actress of the movie The Broadway Melody ?,"db.movies.find({""title"": ""The Broadway Melody""}, {""cast"":{""$slice"": 1},""title"":1})" +The Big House is a film written by this person?,"db.movies.find({""title"": ""The Big House""}, {""writers"": 1})" +how many awards did Napoleon win?,"db.movies.find({""title"":""Napoleon""}, {""awards.wins"":1})" +what is the full plot for Bad Girl?,"db.movies.find({""title"": ""Bad Girl""}, {""fullplot"": 1})" +Captains Courageous is a film written by this person?,"db.movies.find({""title"": ""Captains Courageous""}, {""writers"": 1})" +who are the actors in the film Comradeship?,"db.movies.find({""title"": ""Comradeship""}, {""cast"": 1})" +Who is the lead actor of the movie The Guardsman ?,"db.movies.find({""title"": ""The Guardsman""}, {""cast"":{""$slice"": 1},""title"":1})" +the movie The Pearls of the Crown starred which actors?,"db.movies.find({""title"": ""The Pearls of the Crown""}, {""cast"": 1})" +What is the production company of the movie State Fair?,"db.movies.find({""title"":""State Fair""}, {""tomatoes.production"":1})" +who is the writer of Top Hat?,"db.movies.find({""title"": ""Top Hat""}, {""writers"": 1})" +the movie The Gilded Lily was directed by who?,"db.movies.find({""title"": ""The Gilded Lily""}, {""directors"": 1})" +who wrote the film Top Hat?,"db.movies.find({""title"": ""Top Hat""}, {""writers"": 1})" +Which actor has the greatest number of roles in Kenji Mizoguchi's directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Kenji Mizoguchi"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +Who are the actors in the movie Naughty Marietta?,"db.movies.find({""title"":""Naughty Marietta""}, {""cast"":1})" +who is the director of Robin Hood?,"db.movies.find({""title"": ""Robin Hood""}, {""directors"": 1})" +How many votes did the movie The Guardsman receive on IMDB?,"db.movies.find({""title"": ""The Guardsman""}, { ""imdb.votes"": 1})" +Could you tell me which movie that Alfred Hitchcock directed has the longest runtime?,"db.movies.find({""directors"":""Alfred Hitchcock""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +who was the writer of the film The Count of Monte Cristo?,"db.movies.find({""title"": ""The Count of Monte Cristo""}, {""writers"": 1})" +How many viewer reviews did the movie Forbidden receive on Rotten Tomatoes?,"db.movies.find({""title"":""Forbidden""}, {""tomatoes.viewer.numReviews"":1})" +who is the director that directed The Circus?,"db.movies.find({""title"": ""The Circus""}, {""directors"": 1})" +how many awards did the film Der Kaiser von Kalifornien win?,"db.movies.find({""title"":""Der Kaiser von Kalifornien""}, {""awards.wins"":1})" +How many reviews have been submitted by critics for the movie Regeneration?,"db.movies.find({ ""title"": ""Regeneration"" }, { ""tomatoes.critic.numReviews"": 1 })" +What is the rating of the movie The Man Who Knew Too Much according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""The Man Who Knew Too Much""}, {""tomatoes.viewer.rating"": 1})" +Who is the lead actress of the movie It's a Gift ?,"db.movies.find({""title"": ""It's a Gift""}, {""cast"":{""$slice"": 1},""title"":1})" +who produced the movie She?,"db.movies.find({""title"":""She""}, {""tomatoes.production"":1})" +What is the viewer rating for the movie Show People on Rotten Tomatoes?,"db.movies.find({""title"":""Show People""}, {""tomatoes.viewer.rating"":1})" +What type of media is White Shadows?,"db.movies.find({ ""title"": ""White Shadows"" }, { ""type"": 1})" +When was the movie Broadway Melody of 1936 released in theaters?,"db.movies.find({""title"": ""Broadway Melody of 1936""}, {""released"": 1})" +What is the Rotten Tomatoes meter rating for the movie Cavalcade ?,"db.movies.find({""title"":""Cavalcade""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +What is the production company of the film Wild Boys of the Road?,"db.movies.find({""title"":""Wild Boys of the Road""}, {""tomatoes.production"":1})" +What languages are spoken in the movie Show Boat ?,"db.movies.find({""title"": ""Show Boat""}, { ""languages"": 1})" +How did the audience and critics receive the film Night Must Fall?,"db.movies.find({""title"":""Night Must Fall""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what is the full plot for the film Naughty Marietta?,"db.movies.find({""title"": ""Naughty Marietta""}, {""fullplot"": 1})" +who are the actors in the film Broadway Bill?,"db.movies.find({""title"": ""Broadway Bill""}, {""cast"": 1})" +what is the movie A Midsummer Night's Dream about?,"db.movies.find({""title"": ""A Midsummer Night's Dream""}, {""plot"": 1})" +What is the MPAA rating of the film It Happened One Night?,"db.movies.find({""title"":""It Happened One Night""}, {""rated"":1})" +"the movie I Was Born, But... starred which actors?","db.movies.find({""title"": ""I Was Born, But...""}, {""cast"": 1})" +What is the plot summary of the movie The Guardsman ?,"db.movies.find({ ""title"": ""The Guardsman"" }, { ""plot"": 1})" +"On Rotten Tomatoes, what is the top-rated film directed by Akira Kurosawa?","db.movies.find({""directors"": ""Akira Kurosawa"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +what sort of movie is David Copperfield?,"db.movies.find({""title"": ""David Copperfield""}, {""genres"": 1})" +What is the text representation of the awards won and nominations received by the movie Les vampires?,"db.movies.find({""title"": ""Les vampires""}, { ""awards.text"": 1})" +what is the genre of Night Must Fall?,"db.movies.find({""title"": ""Night Must Fall""}, {""genres"": 1})" +who wrote the movie Four Sons?,"db.movies.find({""title"": ""Four Sons""}, {""writers"": 1})" +who produced the film Follow the Fleet?,"db.movies.find({""title"":""Follow the Fleet""}, {""tomatoes.production"":1})" +"Has Nosferatu won any awards? If so, which ones?","db.movies.find({""title"":""Nosferatu"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +who produced the film One Hundred Men and a Girl?,"db.movies.find({""title"":""One Hundred Men and a Girl""}, {""tomatoes.production"":1})" +who starred in the film Little Miss Marker?,"db.movies.find({""title"": ""Little Miss Marker""}, {""cast"": 1})" +"How long is the runtime of the movie I Was Born, But... ?","db.movies.find({""title"":""I Was Born, But...""}, {""runtime"":1})" +what was the genre of the film Dr. Jekyll and Mr. Hyde?,"db.movies.find({""title"": ""Dr. Jekyll and Mr. Hyde""}, {""genres"": 1})" +What is the rating of the movie The Wedding Night ?,"db.movies.find({ ""title"": ""The Wedding Night"" }, { ""rated"": 1})" +who is the writer of the film Modern Times?,"db.movies.find({""title"": ""Modern Times""}, {""writers"": 1})" +who was The Broadway Melody directed by?,"db.movies.find({""title"": ""The Broadway Melody""}, {""directors"": 1})" +What is the IMDb rating for The 39 Steps?,"db.movies.find({""title"": ""The 39 Steps""}, {""imdb.rating"": 1})" +who is the writer of White Shadows?,"db.movies.find({""title"": ""White Shadows""}, {""writers"": 1})" +what is the genre of Kid Galahad?,"db.movies.find({""title"": ""Kid Galahad""}, {""genres"": 1})" +What is the number of movies Francois Truffaut released per year?,"db.movies.aggregate([{ $match: { ""directors"": ""Francois Truffaut"" }},{""$group"": { ""_id"": ""$year"", ""count"": {""$sum"": 1}}}])" +Who is the lead actor of the movie Smilin' Through ?,"db.movies.find({""title"": ""Smilin' Through""}, {""cast"":{""$slice"": 1},""title"":1})" +In what language was the movie Broken Blossoms or The Yellow Man and the Girl released?,"db.movies.find({ ""title"": ""Broken Blossoms or The Yellow Man and the Girl"" }, { ""languages"": 1})" +What is the name of the director and cast for the movie 'The Invisible Ray'?,"db.movies.find({""title"": ""The Invisible Ray""}, {""directors"": 1, ""cast"": 1, ""_id"": 0})" +What is the language of the movie The Prince and the Pauper?,"db.movies.find({""title"":""The Prince and the Pauper""}, {""languages"":1})" +What is the average rating of all Comedy movies in the database?,"db.movies.aggregate([{""$match"": {""genres"": ""Comedy""}}, {""$group"": { ""_id"": ""null"", ""avgRating"": {""$avg"": ""$imdb.rating"":}}}])" +Who are the writers of the movie Flying Down to Rio ?,"db.movies.find({""title"": ""Flying Down to Rio""}, { ""writers"": 1})" +who is the writer of the film Pandora's Box?,"db.movies.find({""title"": ""Pandora's Box""}, {""writers"": 1})" +When was the information about the movie The Public Enemy last updated?,"db.movies.find({ ""title"": ""The Public Enemy"" }, { ""lastupdated"": 1})" +who directed the film Blacksmith Scene?,"db.movies.find({""title"": ""Blacksmith Scene""}, {""directors"": 1})" +what type of film is In Old Arizona?,"db.movies.find({""title"": ""In Old Arizona""}, {""genres"": 1})" +Who are the writers of the movie Flesh and the Devil ?,"db.movies.find({""title"": ""Flesh and the Devil""}, { ""writers"": 1})" +Which cinematic productions were directed by Abbas Kiarostami?,"db.movies.find({""directors"": ""Abbas Kiarostami""},{""title"":1})" +What are the genres this movie The Passion of Joan of Arc belongs to?,"db.movies.find({""title"":""The Passion of Joan of Arc""}, {""genres"":1})" +Who is the director of the movie Masquerade in Vienna?,"db.movies.find({""title"": ""Masquerade in Vienna""}, { ""directors"": 1})" +"On Rotten Tomatoes, what is the top-rated film directed by Yasujiro Ozu?","db.movies.find({""directors"": ""Yasujiro Ozu"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +who produced the film Payment Deferred?,"db.movies.find({""title"":""Payment Deferred""}, {""tomatoes.production"":1})" +who was the movie The Perils of Pauline written by?,"db.movies.find({""title"": ""The Perils of Pauline""}, {""writers"": 1})" +How many reviews have been submitted by critics for the movie The Champ ?,"db.movies.find({""title"": ""The Champ""}, {""tomatoes.critic.numReviews"": 1})" +What is the text description of the movie Beau Geste awards?,"db.movies.find({""title"":""Beau Geste""}, {""awards.text"":1})" +What is the IMDb rating for Les vampires?,"db.movies.find({""title"": ""Les vampires""}, {""imdb.rating"": 1})" +In what language was the movie Follow the Fleet released?,"db.movies.find({ ""title"": ""Follow the Fleet"" }, { ""languages"": 1})" +who is the author of Footlight Parade?,"db.movies.find({""title"": ""Footlight Parade""}, {""writers"": 1})" +How does the movie Frankenstein rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Frankenstein"" },{ ""tomatoes.critic.meter"": 1 })" +what is the film The Band Concert description ?,"db.movies.find({""title"": ""The Band Concert""}, {""plot"": 1})" +What is the production company of the movie Death Takes a Holiday?,"db.movies.find({""title"":""Death Takes a Holiday""}, {""tomatoes.production"":1})" +Who are the actors in the movie Where Are My Children??,"db.movies.find({""title"":""Where Are My Children?""}, {""cast"":1})" +What is the chief film category that Joel Coen's directed movies are classified under?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Joel Coen"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +who is the director that directed Dracula?,"db.movies.find({""title"": ""Dracula""}, {""directors"": 1})" +which company produced the film The General?,"db.movies.find({""title"":""The General""}, {""tomatoes.production"":1})" +What is the IMDb ID for the movie The Kid Brother?,"db.movies.find({""title"":""The Kid Brother""}, {""imdb.id"":1})" +When was the movie From Hand to Mouth released in theaters?,"db.movies.find({""title"": ""From Hand to Mouth""}, {""released"": 1})" +In which countries was the movie Pandora's Box produced?,"db.movies.find({""title"":""Pandora's Box""}, {""countries"":1})" +What is the freshness score of the movie A Farewell to Arms on Rotten Tomatoes?,"db.movies.find({""title"": ""A Farewell to Arms""}, {""tomatoes.fresh"": 1})" +who stars in Civilization?,"db.movies.find({""title"": ""Civilization""}, {""cast"": 1})" +What is the runtime and rating for the movie 'It's a Gift'?,"db.movies.find({""title"": ""It's a Gift""}, {""runtime"": 1, ""rated"": 1})" +the film Imitation of Life was directed by who?,"db.movies.find({""title"": ""Imitation of Life""}, {""directors"": 1})" +How did the audience and critics receive the film The Great Train Robbery?,"db.movies.find({""title"":""The Great Train Robbery""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +who is the writer of The Song of Night?,"db.movies.find({""title"": ""The Song of Night""}, {""writers"": 1})" +what is the genre of High and Dizzy?,"db.movies.find({""title"": ""High and Dizzy""}, {""genres"": 1})" +who wrote the film The Lost Patrol?,"db.movies.find({""title"": ""The Lost Patrol""}, {""writers"": 1})" +What is the MongoDB document ID of the movie Four Sons?,"db.movies.find({""title"": ""Four Sons""}, {""_id"": 1})" +who is the writer of Battling Butler?,"db.movies.find({""title"": ""Battling Butler""}, {""writers"": 1})" +who is the writer of the movie The New Gulliver?,"db.movies.find({""title"": ""The New Gulliver""}, {""writers"": 1})" +What is the Tomatometer score of the movie A Night at the Opera ?,"db.movies.find({ ""title"": ""A Night at the Opera"" },{ ""tomatoes.critic.meter"": 1 })" +How did the audience and critics receive The Docks of New York?,"db.movies.find({""title"":""The Docks of New York""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what was the release year of the movie The Prisoner of Zenda?,"db.movies.find({""title"": ""The Prisoner of Zenda""}, {""year"": 1})" +what is Gertie the Dinosaur about in details?,"db.movies.find({""title"": ""Gertie the Dinosaur""}, {""fullplot"": 1})" +How does the movie The Gilded Lily rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""The Gilded Lily"" },{ ""tomatoes.critic.meter"": 1 })" +The Emperor Jones is a film written by this person?,"db.movies.find({""title"": ""The Emperor Jones""}, {""writers"": 1})" +What is the overall length of all movies that Federico Fellini has directed?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Federico Fellini"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +what is the film David Copperfield imdb rating?,"db.movies.find({""title"": ""David Copperfield""}, {""imdb.rating"": 1})" +How many votes does the movie Three Little Pigs have on IMDb?,"db.movies.find({""title"":""Three Little Pigs""}, {""imdb.votes"":1})" +who stars in the movie Shanghai Express?,"db.movies.find({""title"": ""Shanghai Express""}, {""cast"": 1})" +How long is the movie Seven Chances in minutes?,"db.movies.find({""title"":""Seven Chances""}, {""runtime"":1})" +the movie The Immigrant starred who?,"db.movies.find({""title"": ""The Immigrant""}, {""cast"": 1})" +Could you tell me the title of the movie with the shortest duration that was directed by Orson Welles?,"db.movies.find({""directors"":""Orson Welles""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +who stars in the film Dante's Inferno?,"db.movies.find({""title"": ""Dante's Inferno""}, {""cast"": 1})" +Was the movie The Guardsman well received by audiences and critics?,"db.movies.find({""title"":""The Guardsman""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the IMDb rating for Cleopatra?,"db.movies.find({""title"": ""Cleopatra""}, {""imdb.rating"": 1})" +Which cinematic genres were directed by Roberto Rossellini?,"db.movies.distinct(""genres"", { ""directors"": ""Roberto Rossellini"" })" +who stars in the film The Jazz Singer?,"db.movies.find({""title"": ""The Jazz Singer""}, {""cast"": 1})" +What are the countries associated with the movie Dr. Jekyll and Mr. Hyde ?,"db.movies.find({""title"": ""Dr. Jekyll and Mr. Hyde""}, {""countries"": 1})" +Who are the actors in the movie Becky Sharp?,"db.movies.find({""title"":""Becky Sharp""}, {""cast"":1})" +what is the plot for the movie Come and Get It?,"db.movies.find({""title"": ""Come and Get It""}, {""plot"": 1})" +how many awards did the movie She Done Him Wrong win?,"db.movies.find({""title"":""She Done Him Wrong""}, {""awards.wins"":1})" +Who are the main actors/actresses in the movie A Midsummer Night's Dream?,"db.movies.find({""title"":""A Midsummer Night's Dream""}, {""cast"":1})" +How many viewer reviews did the movie Wild Oranges receive on Rotten Tomatoes?,"db.movies.find({""title"":""Wild Oranges""}, {""tomatoes.viewer.numReviews"":1})" +what was the genre of the film The Invisible Ray?,"db.movies.find({""title"": ""The Invisible Ray""}, {""genres"": 1})" +what kind of movie is The Iron Horse?,"db.movies.find({""title"": ""The Iron Horse""}, {""genres"": 1})" +What is the name of the director and cast for the movie 'King Kong'?,"db.movies.find({""title"": ""King Kong""}, {""directors"": 1, ""cast"": 1, ""_id"": 0})" +Can you give me a brief summary of the movie The Emperor Jones plot?,"db.movies.find({""title"":""The Emperor Jones""}, {""plot"":1})" +What is the typical rating for all Quentin Tarantino movies in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Quentin Tarantino""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +What is the consensus among critics about the movie Dr. Jekyll and Mr. Hyde ?,"db.movies.find({""title"": ""Dr. Jekyll and Mr. Hyde""}, {""tomatoes.consensus"": 1})" +Who is the lead actress of the movie Everybody's Woman ?,"db.movies.find({""title"": ""Everybody's Woman""}, {""cast"":{""$slice"": 1},""title"":1})" +How many nominations did the movie Zoo in Budapest receive?,"db.movies.find({""title"":""Zoo in Budapest""}, {""awards.nominations"":1})" +what is the genre of The Fall of the House of Usher?,"db.movies.find({""title"": ""The Fall of the House of Usher""}, {""genres"": 1})" +What is the MPAA rating of the film Come and Get It?,"db.movies.find({""title"":""Come and Get It""}, {""rated"":1})" +Could you tell me which movie that Ridley Scott directed has the longest runtime?,"db.movies.find({""directors"":""Ridley Scott""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +What is the running time of the movie Miss Lulu Bett?,"db.movies.find({""title"":""Miss Lulu Bett""}, {""runtime"":1})" +who was the movie Our Hospitality written by?,"db.movies.find({""title"": ""Our Hospitality""}, {""writers"": 1})" +"How long, in total, are all the movies that Christopher Nolan has directed?","db.movies.aggregate([{ ""$match"": { ""directors"": ""Christopher Nolan"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +How many reviews have been submitted by critics for the movie Topaze?,"db.movies.find({ ""title"": ""Topaze"" }, { ""tomatoes.critic.numReviews"": 1 })" +What is the movie Popeye the Sailor Meets Sindbad the Sailor about? Can you provide a brief summary?,"db.movies.find({""title"":""Popeye the Sailor Meets Sindbad the Sailor""}, {""plot"":1})" +What is the prevailing movie genre in Woody Allen's directed films?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Woody Allen"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +How did the audience and critics receive Dante's Inferno?,"db.movies.find({""title"":""Dante's Inferno""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the Rotten Tomatoes rating for Gus Van Sant's highest-rated movie?,"db.movies.find({""directors"": ""Gus Van Sant"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +what is the genre for the movie The Crowd Roars?,"db.movies.find({""title"": ""The Crowd Roars""}, {""genres"": 1})" +what genre is the film Little Caesar?,"db.movies.find({""title"": ""Little Caesar""}, {""genres"": 1})" +How many votes did the movie Flying Down to Rio receive on IMDB?,"db.movies.find({""title"": ""Flying Down to Rio""}, { ""imdb.votes"": 1})" +what is The Informer description?,"db.movies.find({""title"": ""The Informer""}, {""plot"": 1})" +Was the movie The Kid well received by audiences?,"db.movies.find({""title"":""The Kid""}, {""tomatoes.viewer"":1})" +what was the release date of the film Men Without Women?,"db.movies.find({""title"": ""Men Without Women""}, {""released"": 1})" +What is the production company behind the movie The 39 Steps ?,"db.movies.find({""title"": ""The 39 Steps""}, { ""tomatoes.production"": 1})" +"what genre of movie is I Was Born, But...?","db.movies.find({""title"": ""I Was Born, But...""}, {""genres"": 1})" +How many reviews have been submitted by critics for the movie La Grande Illusion?,"db.movies.find({ ""title"": ""La Grande Illusion"" }, { ""tomatoes.critic.numReviews"": 1 })" +what sort of film is Triumph of the Will?,"db.movies.find({""title"": ""Triumph of the Will""}, {""genres"": 1})" +What is the runtime and rating for the movie 'Le grand jeu'?,"db.movies.find({""title"": ""Le grand jeu""}, {""runtime"": 1, ""rated"": 1})" +What is the running time of the movie Earth?,"db.movies.find({""title"":""Earth""}, {""runtime"":1})" +who is the writer of the movie Robin Hood?,"db.movies.find({""title"": ""Robin Hood""}, {""writers"": 1})" +how many awards did Traffic in Souls win?,"db.movies.find({""title"":""Traffic in Souls""}, {""awards.wins"":1})" +who produced the movie Zero for Conduct?,"db.movies.find({""title"":""Zero for Conduct""}, {""tomatoes.production"":1})" +who is the writer of the film Cleopatra?,"db.movies.find({""title"": ""Cleopatra""}, {""writers"": 1})" +which company produced Secret Agent?,"db.movies.find({""title"":""Secret Agent""}, {""tomatoes.production"":1})" +When was the movie Footlight Parade released?,"db.movies.find({""title"":""Footlight Parade""}, {""released"":1})" +which person wrote the film Les Misèrables?,"db.movies.find({""title"": ""Les Misèrables""}, {""writers"": 1})" +What is the meter score of the movie Flesh and the Devil according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Flesh and the Devil""}, {""tomatoes.viewer.meter"": 1})" +What languages are spoken in the movie The 39 Steps ?,"db.movies.find({""title"": ""The 39 Steps""}, { ""languages"": 1})" +Who are the starring actors/actresses in the movie Stage Door?,"db.movies.find({""title"":""Stage Door""}, {""cast"":1})" +What is the running time of the film King of Jazz?,"db.movies.find({""title"":""King of Jazz""}, {""runtime"":1})" +What is the imdbID and year of release for the movie with a title of 'The Big Trail'?,"db.movies.find({""title"": ""The Big Trail""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +who produced Broadway Melody of 1936?,"db.movies.find({""title"":""Broadway Melody of 1936""}, {""tomatoes.production"":1})" +What is the freshness score of the movie Where Are My Children? on Rotten Tomatoes?,"db.movies.find({""title"": ""Where Are My Children?""}, {""tomatoes.fresh"": 1})" +what is the plot for the movie Skippy?,"db.movies.find({""title"": ""Skippy""}, {""plot"": 1})" +What type of media is The Song of Night?,"db.movies.find({ ""title"": ""The Song of Night"" }, { ""type"": 1})" +How did the audience and critics receive the film It?,"db.movies.find({""title"":""It""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the box office revenue of the movie Flash Gordon ?,"db.movies.find({""title"": ""Flash Gordon""}, { ""tomatoes.boxOffice"": 1})" +Which Kenji Mizoguchi-directed movie has the highest score on Rotten Tomatoes?,"db.movies.find({""directors"": ""Kenji Mizoguchi"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +How long is the runtime of the movie Snow White and the Seven Dwarfs ?,"db.movies.find({""title"":""Snow White and the Seven Dwarfs""}, {""runtime"":1})" +what is the plot for the film The Blood of a Poet?,"db.movies.find({""title"": ""The Blood of a Poet""}, {""plot"": 1})" +What is the production company behind the movie Les Misèrables ?,"db.movies.find({""title"": ""Les Misèrables""}, {""tomatoes.production"": 1})" +what type of movie is Les Misèrables?,"db.movies.find({""title"": ""Les Misèrables""}, {""genres"": 1})" +What is the consensus among critics about the movie Three Little Pigs?,"db.movies.find({""title"": ""Three Little Pigs""}, { ""tomatoes.consensus"": 1})" +What is the ID of the movie The Kid on IMDB?,"db.movies.find({""title"": ""The Kid""}, {""imdb.id"": 1})" +what is the film The Ace of Hearts about in details?,"db.movies.find({""title"": ""The Ace of Hearts""}, {""fullplot"": 1})" +what is the plot for the movie The Dark Angel?,"db.movies.find({""title"": ""The Dark Angel""}, {""plot"": 1})" +what is the movie The Red Head imdb rating?,"db.movies.find({""title"": ""The Red Head""}, {""imdb.rating"": 1})" +What is the audience rating of the movie The Circus ?,"db.movies.find({ ""title"": ""The Circus"" },{ ""tomatoes.viewer.rating"": 1 })" +What is the Metacritic score of the movie Nosferatu ?,"db.movies.find({ ""title"": ""Nosferatu"" }, { ""metacritic"": 1})" +What is the freshness score of the movie L'opèra de quat'sous on Rotten Tomatoes?,"db.movies.find({""title"": ""L'opèra de quat'sous""}, {""tomatoes.fresh"": 1})" +who wrote the screenplay for the film Battling Butler?,"db.movies.aggregate([ { ""$match"": { ""title"":""Battling Butler""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +What is the audience rating of the movie State Fair ?,"db.movies.find({ ""title"": ""State Fair"" },{ ""tomatoes.viewer.rating"": 1 })" +who directed the movie Beau Geste?,"db.movies.find({""title"": ""Beau Geste""}, {""directors"": 1})" +What is the MongoDB document ID of the movie The Jazz Singer?,"db.movies.find({""title"": ""The Jazz Singer""}, {""_id"": 1})" +who is the writer of the movie The Devil Is a Woman?,"db.movies.find({""title"": ""The Devil Is a Woman""}, {""writers"": 1})" +what is the genre for the film The Great Ziegfeld?,"db.movies.find({""title"": ""The Great Ziegfeld""}, {""genres"": 1})" +What is the runtime of the movie One Week ?,"db.movies.find({""title"": ""One Week""}, { ""runtime"": 1})" +who directed the film The Trail of the Lonesome Pine?,"db.movies.find({""title"": ""The Trail of the Lonesome Pine""}, {""directors"": 1})" +"Has the film Cleopatra won any awards? If so, which ones?","db.movies.find({""title"":""Cleopatra"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +how has Who Killed Cock Robin? been recieved by critics and audience?,"db.movies.find({""title"":""Who Killed Cock Robin?""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +Could you tell me the typical rating of Abbas Kiarostami movies in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Abbas Kiarostami""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +the film Applause starred who?,"db.movies.find({""title"": ""Applause""}, {""cast"": 1})" +"Disraeli, was written by who?","db.movies.find({""title"": ""Disraeli""}, {""writers"": 1})" +What type of movie is Black Fury ?,"db.movies.find({""title"":""Black Fury""}, {""genres"":1})" +How many reviews did the movie L'opèra de quat'sous receive on Rotten Tomatoes?,"db.movies.find({""title"":""L'opèra de quat'sous""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +who was Everybody's Woman written by?,"db.movies.find({""title"": ""Everybody's Woman""}, {""writers"": 1})" +What is the running time of Maria Chapdelaine?,"db.movies.find({""title"":""Maria Chapdelaine""}, {""runtime"":1})" +which person directed Tsirk?,"db.movies.find({""title"": ""Tsirk""}, {""directors"": 1})" +What is the imdbID and genre of the movie 'Little Women'?,"db.movies.find({""title"": ""Little Women""}, {""imdb.id"": 1, ""genres"": 1, ""_id"": 0})" +who was the writer of the movie Fury?,"db.movies.find({""title"": ""Fury""}, {""writers"": 1})" +who is the director for Toni?,"db.movies.find({""title"": ""Toni""}, {""directors"": 1})" +Who is the director of the movie The Immigrant?,"db.movies.find({""title"": ""The Immigrant""}, { ""directors"": 1})" +which company produced the movie Broken Blossoms or The Yellow Man and the Girl?,"db.movies.find({""title"":""Broken Blossoms or The Yellow Man and the Girl""}, {""tomatoes.production"":1})" +What is the production company of the movie The Freshman?,"db.movies.find({""title"":""The Freshman""}, {""tomatoes.production"":1})" +What is the critical reception of the movie In the Land of the Head Hunters?,"db.movies.find({""title"":""In the Land of the Head Hunters""}, {""tomatoes.critic"":1})" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie Captains Courageous ?,"db.movies.find({""title"":""Captains Courageous""}, {""tomatoes.viewer.meter"":1})" +Who is the lead actor of the movie The Blood of a Poet ?,"db.movies.find({""title"": ""The Blood of a Poet""}, {""cast"":{""$slice"": 1},""title"":1})" +Who are the actors that appear in the movie Intolerance: Love's Struggle Throughout the Ages ?,"db.movies.find({ ""title"": ""Intolerance: Love's Struggle Throughout the Ages"" },{ ""cast"": 1 })" +Can you share with me the film genres that were helmed by Tim Burton?,"db.movies.distinct(""genres"", { ""directors"": ""Tim Burton"" })" +"Man of Aran, is written by who?","db.movies.find({""title"": ""Man of Aran""}, {""writers"": 1})" +"How many reviews did the movie Laugh, Clown, Laugh receive on Rotten Tomatoes?","db.movies.find({""title"":""Laugh, Clown, Laugh""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +who starred in the movie Where Are My Children??,"db.movies.find({""title"": ""Where Are My Children?""}, {""cast"": 1})" +In what year was the movie Seven Chances released ?,"db.movies.find({ ""title"": ""Seven Chances"" }, { ""year"": 1})" +What is the plot summary of the movie The Last of the Mohicans ?,"db.movies.find({ ""title"": ""The Last of the Mohicans"" }, { ""plot"": 1})" +Can you provide more information about the Rotten Tomatoes rating for the movie Cavalcade?,"db.movies.find({""title"": ""Cavalcade""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +what is All Quiet on the Western Front imdb rating?,"db.movies.find({""title"": ""All Quiet on the Western Front""}, {""imdb.rating"": 1})" +How many votes does the movie Snow White and the Seven Dwarfs have on IMDb?,"db.movies.find({""title"":""Snow White and the Seven Dwarfs""}, {""imdb.votes"":1})" +What is the movie Foolish Wives about? Can you provide a brief summary?,"db.movies.find({""title"":""Foolish Wives""}, {""plot"":1})" +How many reviews have been submitted for the movie The Devil to Pay! on Rotten Tomatoes?,"db.movies.find({ ""title"": ""The Devil to Pay!"" },{ ""tomatoes.viewer.numReviews"": 1 })" +What is the IMDb rating for Stage Door?,"db.movies.find({""title"": ""Stage Door""}, {""imdb.rating"": 1})" +What is the rating of the movie Nosferatu ?,"db.movies.find({ ""title"": ""Nosferatu"" }, { ""rated"": 1})" +what is the movie The Unknown about?,"db.movies.find({""title"": ""The Unknown""}, {""plot"": 1})" +What is the imdbID and year of release for the movie with a title of 'Wonder Bar'?,"db.movies.find({""title"": ""Wonder Bar""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +Can you provide a longer version of the movie The Last of the Mohicans plot?,"db.movies.find({""title"":""The Last of the Mohicans""}, {""fullplot"":1})" +who acted in the movie The Saphead?,"db.movies.find({""title"": ""The Saphead""}, {""cast"": 1})" +What type of movie is The Good Earth ?,"db.movies.find({""title"":""The Good Earth""}, {""genres"":1})" +what is the film The Lives of a Bengal Lancer about?,"db.movies.find({""title"": ""The Lives of a Bengal Lancer""}, {""plot"": 1})" +What are the names of all the actors who starred in the movie 'Now or Never'?,"db.movies.find({""title"": ""Now or Never""}, {""cast"": 1})" +what is the full plot for Dante's Inferno?,"db.movies.find({""title"": ""Dante's Inferno""}, {""fullplot"": 1})" +what is the genre of She?,"db.movies.find({""title"": ""She""}, {""genres"": 1})" +who stars in the film The Emperor Jones?,"db.movies.find({""title"": ""The Emperor Jones""}, {""cast"": 1})" +What is the critical reception of the movie Footlight Parade?,"db.movies.find({""title"":""Footlight Parade""}, {""tomatoes.critic"":1})" +who is the writer of the film Tarzan and His Mate?,"db.movies.find({""title"": ""Tarzan and His Mate""}, {""writers"": 1})" +"In the 1990s, which movies were directed by Spike Lee and released?","db.movies.find({""directors"": 'Spike Lee', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +how many awards did the movie Nosferatu win?,"db.movies.find({""title"":""Nosferatu""}, {""awards.wins"":1})" +who directed the film The Cameraman?,"db.movies.find({""title"": ""The Cameraman""}, {""directors"": 1})" +what is Berkeley Square about in details?,"db.movies.find({""title"": ""Berkeley Square""}, {""fullplot"": 1})" +What is the box office revenue of the movie He Who Gets Slapped ?,"db.movies.find({""title"": ""He Who Gets Slapped""}, { ""tomatoes.boxOffice"": 1})" +what genre of movie is The Perils of Pauline?,"db.movies.find({""title"": ""The Perils of Pauline""}, {""genres"": 1})" +Was the movie A Free Soul well received by audiences?,"db.movies.find({""title"":""A Free Soul""}, {""tomatoes.viewer"":1})" +What is the IMDB rating of the movie The Land Beyond the Sunset ?,"db.movies.find({""title"": ""The Land Beyond the Sunset""}, { ""imdb.rating"": 1})" +what is the genre for the film The Last of the Mohicans?,"db.movies.find({""title"": ""The Last of the Mohicans""}, {""genres"": 1})" +who is the writer of the film The Chechahcos?,"db.movies.find({""title"": ""The Chechahcos""}, {""writers"": 1})" +who is listed as director for The Navigator?,"db.movies.find({""title"": ""The Navigator""}, {""directors"": 1})" +who is the director for Street Angel?,"db.movies.find({""title"": ""Street Angel""}, {""directors"": 1})" +what genre of film is Trouble in Paradise?,"db.movies.find({""title"": ""Trouble in Paradise""}, {""genres"": 1})" +who wrote the screenplay for the movie Blacksmith Scene?,"db.movies.aggregate([ { ""$match"": { ""title"":""Blacksmith Scene""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +who is the director of Tarzan the Ape Man?,"db.movies.find({""title"": ""Tarzan the Ape Man""}, {""directors"": 1})" +What is the freshness score of the movie Man with a Movie Camera on Rotten Tomatoes?,"db.movies.find({""title"": ""Man with a Movie Camera""}, {""tomatoes.fresh"": 1})" +who starred in the movie The Perils of Pauline?,"db.movies.find({""title"": ""The Perils of Pauline""}, {""cast"": 1})" +Was the movie Where Are My Children? well received by audiences?,"db.movies.find({""title"":""Where Are My Children?""}, {""tomatoes.viewer"":1})" +what is The Wedding March description?,"db.movies.find({""title"": ""The Wedding March""}, {""plot"": 1})" +who was This Is My Affair written by?,"db.movies.find({""title"": ""This Is My Affair""}, {""writers"": 1})" +What is the full plot summary of the movie Wild and Woolly ?,"db.movies.find({""title"": ""Wild and Woolly""}, {""plot"": 1})" +"Has Les vampires won any awards? If so, which ones?","db.movies.find({""title"":""Les vampires"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +Which of Luchino Visconti's directed films has the lengthiest duration?,"db.movies.find({""directors"":""Luchino Visconti""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +who is the writer of the movie Secret Agent?,"db.movies.find({""title"": ""Secret Agent""}, {""writers"": 1})" +What is the viewer rating for the movie The Prisoner of Shark Island on Rotten Tomatoes?,"db.movies.find({""title"":""The Prisoner of Shark Island""}, {""tomatoes.viewer.rating"":1})" +What is the production company behind the movie The Blue Bird ?,"db.movies.find({""title"": ""The Blue Bird""}, { ""tomatoes.production"": 1})" +How many reviews did the movie The Beloved Vagabond receive on Rotten Tomatoes?,"db.movies.find({""title"":""The Beloved Vagabond""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +what is the plot for the movie Morocco?,"db.movies.find({""title"": ""Morocco""}, {""plot"": 1})" +What is the MPAA rating of the film Elephant Boy?,"db.movies.find({""title"":""Elephant Boy""}, {""rated"":1})" +who was the writer of the film Modern Times?,"db.movies.find({""title"": ""Modern Times""}, {""writers"": 1})" +How many wins did the movie King of Jazz receive?,"db.movies.find({""title"":""King of Jazz""}, {""awards.wins"":1})" +What is the percentage of positive reviews among critics for the movie The Lives of a Bengal Lancer ?,"db.movies.find({ ""title"": ""The Lives of a Bengal Lancer"" },{ ""tomatoes.critic.meter"": 1 })" +Sergei Eisenstein directed which films in the 1990s?,"db.movies.find({""directors"": 'Sergei Eisenstein', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +What is the IMDb rating for the movie David Golder ?,"db.movies.find({""title"":""David Golder""}, {""imdb.rating"":1})" +How many votes does the movie Greed have on IMDb?,"db.movies.find({""title"":""Greed""}, {""imdb.votes"":1})" +How did the audience and critics receive Sherlock Jr.?,"db.movies.find({""title"":""Sherlock Jr.""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the IMDb ID for the movie Sons of the Desert?,"db.movies.find({""title"":""Sons of the Desert""}, {""imdb.id"":1})" +How many reviews have been submitted by critics for the movie Swing Time?,"db.movies.find({ ""title"": ""Swing Time"" }, { ""tomatoes.critic.numReviews"": 1 })" +What is the production company of the film Tarzan and His Mate?,"db.movies.find({""title"":""Tarzan and His Mate""}, {""tomatoes.production"":1})" +What is the Rotten Tomatoes meter rating for the movie The Good Earth ?,"db.movies.find({""title"":""The Good Earth""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +Which movies did Andrei Tarkovsky direct?,"db.movies.find({""directors"": ""Andrei Tarkovsky""},{""title"":1})" +who starred in Stage Door?,"db.movies.find({""title"": ""Stage Door""}, {""cast"": 1})" +who wrote the movie Frankenstein?,"db.movies.find({""title"": ""Frankenstein""}, {""writers"": 1})" +Can you inform me of the Yasujiro Ozu movie with the shortest duration?,"db.movies.find({""directors"":""Yasujiro Ozu""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +What is the runtime and rating for the movie 'Little Miss Marker'?,"db.movies.find({""title"": ""Little Miss Marker""}, {""runtime"": 1, ""rated"": 1})" +who was the writer of the film Nanook of the North?,"db.movies.find({""title"": ""Nanook of the North""}, {""writers"": 1})" +what year was Little Miss Marker released?,"db.movies.find({""title"": ""Little Miss Marker""}, {""year"": 1})" +What is the MPAA rating of the film The Last Command?,"db.movies.find({""title"":""The Last Command""}, {""rated"":1})" +What is the critical reception of the movie It's a Gift?,"db.movies.find({""title"":""It's a Gift""}, {""tomatoes.critic"":1})" +who was the film The Edge of the World written by?,"db.movies.find({""title"": ""The Edge of the World""}, {""writers"": 1})" +What is the production company of A Night at the Opera?,"db.movies.find({""title"":""A Night at the Opera""}, {""tomatoes.production"":1})" +what's the main genre of the movies directed by James Cameron ?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""James Cameron"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +"The Man Who Could Work Miracles, was written by who?","db.movies.find({""title"": ""The Man Who Could Work Miracles""}, {""writers"": 1})" +What is the Metacritic score of the movie The Edge of the World ?,"db.movies.find({ ""title"": ""The Edge of the World"" }, { ""metacritic"": 1})" +What are the genres this movie Men Without Women belongs to?,"db.movies.find({""title"":""Men Without Women""}, {""genres"":1})" +who starred in the movie The Big House?,"db.movies.find({""title"": ""The Big House""}, {""cast"": 1})" +what sort of movie is The Divorcee?,"db.movies.find({""title"": ""The Divorcee""}, {""genres"": 1})" +who is the writer of the movie Intolerance: Love's Struggle Throughout the Ages?,"db.movies.find({""title"": ""Intolerance: Love's Struggle Throughout the Ages""}, {""writers"": 1})" +which company produced the film Frankenstein?,"db.movies.find({""title"":""Frankenstein""}, {""tomatoes.production"":1})" +What is the IMDb rating for the film The Wind?,"db.movies.find({""title"": ""The Wind""}, {""imdb.rating"": 1})" +What is the running time of the film The Champ?,"db.movies.find({""title"":""The Champ""}, {""runtime"":1})" +who produced Battleship Potemkin?,"db.movies.find({""title"":""Battleship Potemkin""}, {""tomatoes.production"":1})" +Who are the writers of the movie The Kid Brother ?,"db.movies.find({""title"": ""The Kid Brother""}, { ""writers"": 1})" +the movie Theodora Goes Wild was directed by who?,"db.movies.find({""title"": ""Theodora Goes Wild""}, {""directors"": 1})" +What is the box office revenue for the movie 'The Crowd Roars'?,"db.movies.find({""title"": ""The Crowd Roars""}, {""tomatoes.boxOffice"": 1})" +who is the author of The Thief of Bagdad?,"db.movies.find({""title"": ""The Thief of Bagdad""}, {""writers"": 1})" +who acted in the film Now or Never?,"db.movies.find({""title"": ""Now or Never""}, {""cast"": 1})" +How many viewer reviews did the movie For Heaven's Sake receive on Rotten Tomatoes?,"db.movies.find({""title"":""For Heaven's Sake""}, {""tomatoes.viewer.numReviews"":1})" +Who is the director of the movie The Gold Rush?,"db.movies.find({""title"": ""The Gold Rush""}, { ""directors"": 1})" +how has Twentieth Century been recieved by critics and audience?,"db.movies.find({""title"":""Twentieth Century""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +How many awards did the movie win Three Little Pigs ?,"db.movies.find({ ""title"": ""Three Little Pigs"" },{ ""awards.wins"": 1 })" +In which countries was the movie The Private Life of Henry VIII. produced?,"db.movies.find({""title"":""The Private Life of Henry VIII.""}, {""countries"":1})" +who acted in the film Little Miss Marker?,"db.movies.find({""title"": ""Little Miss Marker""}, {""cast"": 1})" +How many audience reviews have been submitted for the movie The Son of Kong ?,"db.movies.find({ ""title"": ""The Son of Kong"" },{ ""tomatoes.viewer.numReviews"": 1 })" +In what language was the movie Murders in the Rue Morgue released?,"db.movies.find({ ""title"": ""Murders in the Rue Morgue"" }, { ""languages"": 1})" +What is the MongoDB document ID of the movie Follow the Fleet?,"db.movies.find({""title"": ""Follow the Fleet""}, {""_id"": 1})" +The Last Command was directed by who?,"db.movies.find({""title"": ""The Last Command""}, {""directors"": 1})" +who stars in the movie A Day in the Country?,"db.movies.find({""title"": ""A Day in the Country""}, {""cast"": 1})" +What is the IMDb rating for The Barretts of Wimpole Street?,"db.movies.find({""title"": ""The Barretts of Wimpole Street""}, {""imdb.rating"": 1})" +How many votes does the movie Captains Courageous have on IMDb?,"db.movies.find({""title"":""Captains Courageous""}, {""imdb.votes"":1})" +which person wrote the film The New Gulliver?,"db.movies.find({""title"": ""The New Gulliver""}, {""writers"": 1})" +When was the movie A Woman of Paris: A Drama of Fate released in theaters?,"db.movies.find({""title"": ""A Woman of Paris: A Drama of Fate""}, {""released"": 1})" +who was the film Imitation of Life written by?,"db.movies.find({""title"": ""Imitation of Life""}, {""writers"": 1})" +What languages are spoken in the movie Asphalt?,"db.movies.find({""title"":""Asphalt""}, {""languages"":1})" +what genre is è Nous la Libertè?,"db.movies.find({""title"": ""è Nous la Libertè""}, {""genres"": 1})" +What is the freshness score of the movie La Grande Illusion on Rotten Tomatoes?,"db.movies.find({""title"": ""La Grande Illusion""}, {""tomatoes.fresh"": 1})" +can you describe the plot of The Lost World?,"db.movies.find({""title"": ""The Lost World""}, {""plot"": 1})" +what is the film Sanders of the River imdb rating?,"db.movies.find({""title"": ""Sanders of the River""}, {""imdb.rating"": 1})" +what genre is the film La Grande Illusion?,"db.movies.find({""title"": ""La Grande Illusion""}, {""genres"": 1})" +who produced A Woman of Paris: A Drama of Fate?,"db.movies.find({""title"":""A Woman of Paris: A Drama of Fate""}, {""tomatoes.production"":1})" +"Has the movie China Seas won any awards? If so, which ones?","db.movies.find({""title"":""China Seas"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What languages are spoken in the movie Death Takes a Holiday ?,"db.movies.find({""title"": ""Death Takes a Holiday""}, { ""languages"": 1})" +How does the movie Murders in the Rue Morgue rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Murders in the Rue Morgue"" },{ ""tomatoes.critic.meter"": 1 })" +which company produced Berkeley Square?,"db.movies.find({""title"":""Berkeley Square""}, {""tomatoes.production"":1})" +What is the MongoDB document ID of the movie The Emperor Jones?,"db.movies.find({""title"": ""The Emperor Jones""}, {""_id"": 1})" +What type of media is Camille?,"db.movies.find({ ""title"": ""Camille"" }, { ""type"": 1})" +How many audience reviews have been submitted for the movie Imitation of Life ?,"db.movies.find({ ""title"": ""Imitation of Life"" },{ ""tomatoes.viewer.numReviews"": 1 })" +Who is the director of the movie Toni?,"db.movies.find({""title"": ""Toni""}, { ""directors"": 1})" +What is the rating of the movie Broken Lullaby according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Broken Lullaby""}, {""tomatoes.viewer.rating"": 1})" +"the movie Sherlock Jr., was written by who?","db.movies.find({""title"": ""Sherlock Jr.""}, {""writers"": 1})" +Can you provide more information about the languages spoken in the movie The Divine Lady ?,"db.movies.find({""title"":""The Divine Lady""}, {""languages"":1})" +who directed the film Harvest?,"db.movies.find({""title"": ""Harvest""}, {""directors"": 1})" +What is the production company behind the movie It Happened One Night ?,"db.movies.find({""title"": ""It Happened One Night""}, { ""tomatoes.production"": 1})" +how many awards did the movie Cleopatra win?,"db.movies.find({""title"":""Cleopatra""}, {""awards.wins"":1})" +What is the text representation of the awards won and nominations received by the movie Applause?,"db.movies.find({""title"": ""Applause""}, { ""awards.text"": 1})" +How did the audience and critics receive the movie Zero for Conduct?,"db.movies.find({""title"":""Zero for Conduct""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +How many votes does the movie Dishonored have on IMDb?,"db.movies.find({""title"":""Dishonored""}, {""imdb.votes"":1})" +The World Moves On was directed by who?,"db.movies.find({""title"": ""The World Moves On""}, {""directors"": 1})" +the movie Broken Lullaby starred which actors?,"db.movies.find({""title"": ""Broken Lullaby""}, {""cast"": 1})" +the film Traffic in Souls starred who?,"db.movies.find({""title"": ""Traffic in Souls""}, {""cast"": 1})" +who directed the film They Won't Forget?,"db.movies.find({""title"": ""They Won't Forget""}, {""directors"": 1})" +what is the movie Romeo and Juliet about in details?,"db.movies.find({""title"": ""Romeo and Juliet""}, {""fullplot"": 1})" +what is the plot for the movie Children in the Wind?,"db.movies.find({""title"": ""Children in the Wind""}, {""plot"": 1})" +What is the viewer rating for the movie Gertie the Dinosaur on Rotten Tomatoes?,"db.movies.find({""title"":""Gertie the Dinosaur""}, {""tomatoes.viewer.rating"":1})" +"Who is the lead actor of the movie Laugh, Clown, Laugh ?","db.movies.find({""title"": ""Laugh, Clown, Laugh""}, {""cast"":{""$slice"": 1},""title"":1})" +What is the running time of the movie Alice Adams?,"db.movies.find({""title"":""Alice Adams""}, {""runtime"":1})" +what is Night Must Fall imdb rating?,"db.movies.find({""title"": ""Night Must Fall""}, {""imdb.rating"": 1})" +Who are the main actors in The Black Cat ?,"db.movies.find({ ""title"": ""The Black Cat"" }, { ""cast"": 1})" +who stars in the film The Mummy?,"db.movies.find({""title"": ""The Mummy""}, {""cast"": 1})" +What is the website associated with the movie Rembrandt on Rotten Tomatoes?,"db.movies.find({""title"": ""Rembrandt""}, {""tomatoes.website"": 1})" +how many awards did the movie Sisters of the Gion win?,"db.movies.find({""title"":""Sisters of the Gion""}, {""awards.wins"":1})" +How long is the runtime of the movie The Kid ?,"db.movies.find({""title"":""The Kid""}, {""runtime"":1})" +what was the genre of the film The Sin of Madelon Claudet?,"db.movies.find({""title"": ""The Sin of Madelon Claudet""}, {""genres"": 1})" +"Can you give me a brief summary of the movie Steamboat Bill, Jr. plot?","db.movies.find({""title"":""Steamboat Bill, Jr.""}, {""plot"":1})" +"Who are the main actors in Steamboat Bill, Jr. ?","db.movies.find({ ""title"": ""Steamboat Bill, Jr."" }, { ""cast"": 1})" +who is the writer of the movie Top Hat?,"db.movies.find({""title"": ""Top Hat""}, {""writers"": 1})" +who wrote the screenplay for the movie The Birth of a Nation?,"db.movies.aggregate([ { ""$match"": { ""title"":""The Birth of a Nation""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +How long is the runtime of the movie Going Hollywood ?,"db.movies.find({""title"":""Going Hollywood""}, {""runtime"":1})" +When was the information last updated for the movie Cops ?,"db.movies.find({ ""title"": ""Cops"" },{ ""lastupdated"": 1 })" +In what language was the movie The Spanish Earth released?,"db.movies.find({ ""title"": ""The Spanish Earth"" }, { ""languages"": 1})" +What is the box office revenue of the movie The Music Box in dollars?,"db.movies.find({""title"": ""The Music Box""}, {""tomatoes.boxOffice"": 1})" +what was the genre of the movie Imitation of Life?,"db.movies.find({""title"": ""Imitation of Life""}, {""genres"": 1})" +What is the running time of the film Battleship Potemkin?,"db.movies.find({""title"":""Battleship Potemkin""}, {""runtime"":1})" +What are the countries associated with the movie Battleship Potemkin ?,"db.movies.find({""title"": ""Battleship Potemkin""}, {""countries"": 1})" +Can you provide me with a list of movies directed by Robert Bresson that were released in the 1990s?,"db.movies.find({""directors"": 'Robert Bresson', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +What is the critical reception of the movie A Farewell to Arms?,"db.movies.find({""title"":""A Farewell to Arms""}, {""tomatoes.critic"":1})" +what was the genre of The Barretts of Wimpole Street?,"db.movies.find({""title"": ""The Barretts of Wimpole Street""}, {""genres"": 1})" +Who is the lead actor of the movie From Hand to Mouth ?,"db.movies.find({""title"": ""From Hand to Mouth""}, {""cast"":{""$slice"": 1},""title"":1})" +what is the genre of Lloyd's of London?,"db.movies.find({""title"": ""Lloyd's of London""}, {""genres"": 1})" +who's the director of Berkeley Square?,"db.movies.find({""title"": ""Berkeley Square""}, {""directors"": 1})" +the movie Flash Gordon was directed by who?,"db.movies.find({""title"": ""Flash Gordon""}, {""directors"": 1})" +the movie Cops starred which actors?,"db.movies.find({""title"": ""Cops""}, {""cast"": 1})" +what type of movie is The Chechahcos?,"db.movies.find({""title"": ""The Chechahcos""}, {""genres"": 1})" +How does the movie Flesh and the Devil rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Flesh and the Devil"" },{ ""tomatoes.critic.meter"": 1 })" +who was the writer of Eskimo?,"db.movies.find({""title"": ""Eskimo""}, {""writers"": 1})" +What is the MPAA rating of Flying Down to Rio?,"db.movies.find({""title"":""Flying Down to Rio""}, {""rated"":1})" +who acted in the movie A Farewell to Arms?,"db.movies.find({""title"": ""A Farewell to Arms""}, {""cast"": 1})" +who was Masquerade in Vienna directed by?,"db.movies.find({""title"": ""Masquerade in Vienna""}, {""directors"": 1})" +what type of movie is Dante's Inferno?,"db.movies.find({""title"": ""Dante's Inferno""}, {""genres"": 1})" +what was the release year of the film The Broadway Melody?,"db.movies.find({""title"": ""The Broadway Melody""}, {""year"": 1})" +who produced the movie Sanders of the River?,"db.movies.find({""title"":""Sanders of the River""}, {""tomatoes.production"":1})" +what genre is the film Final Accord?,"db.movies.find({""title"": ""Final Accord""}, {""genres"": 1})" +Can you provide more information about the Rotten Tomatoes rating for the movie Red Dust?,"db.movies.find({""title"": ""Red Dust""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +What is the consensus among critics about the movie Show People ?,"db.movies.find({""title"": ""Show People""}, {""tomatoes.consensus"": 1})" +what is the genre for the movie Westfront 1918?,"db.movies.find({""title"": ""Westfront 1918""}, {""genres"": 1})" +Was the movie Anna Karenina well received by audiences?,"db.movies.find({""title"":""Anna Karenina""}, {""tomatoes.viewer"":1})" +what is the full plot for Theodora Goes Wild?,"db.movies.find({""title"": ""Theodora Goes Wild""}, {""fullplot"": 1})" +"Gertie the Dinosaur, is written by who?","db.movies.find({""title"": ""Gertie the Dinosaur""}, {""writers"": 1})" +What is the box office revenue of the movie Bride of Frankenstein in dollars?,"db.movies.find({""title"": ""Bride of Frankenstein""}, {""tomatoes.boxOffice"": 1})" +"How many reviews have been submitted by critics for the movie Steamboat Bill, Jr. ?","db.movies.find({""title"": ""Steamboat Bill, Jr.""}, {""tomatoes.critic.numReviews"": 1})" +what year was the movie The Jazz Singer released?,"db.movies.find({""title"": ""The Jazz Singer""}, {""year"": 1})" +who's the director of Love Me Tonight?,"db.movies.find({""title"": ""Love Me Tonight""}, {""directors"": 1})" +A Free Soul is written by this person?,"db.movies.find({""title"": ""A Free Soul""}, {""writers"": 1})" +the movie The Barretts of Wimpole Street was directed by who?,"db.movies.find({""title"": ""The Barretts of Wimpole Street""}, {""directors"": 1})" +what is The Thin Man imdb rating?,"db.movies.find({""title"": ""The Thin Man""}, {""imdb.rating"": 1})" +What is the production company of A Woman of Paris: A Drama of Fate?,"db.movies.find({""title"":""A Woman of Paris: A Drama of Fate""}, {""tomatoes.production"":1})" +Can you give me a brief summary of the movie A Midsummer Night's Dream plot?,"db.movies.find({""title"":""A Midsummer Night's Dream""}, {""plot"":1})" +Was the movie The Passion of Joan of Arc well received by audiences and critics?,"db.movies.find({""title"":""The Passion of Joan of Arc""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +Can you provide more information about the IMDb rating for the movie Cleopatra ?,"db.movies.find({""title"":""Cleopatra""}, {""imdb"":1})" +the film è Nous la Libertè starred who?,"db.movies.find({""title"": ""è Nous la Libertè""}, {""cast"": 1})" +what was the genre of Flesh and the Devil?,"db.movies.find({""title"": ""Flesh and the Devil""}, {""genres"": 1})" +who directed The Lost Patrol?,"db.movies.find({""title"": ""The Lost Patrol""}, {""directors"": 1})" +How many votes did the movie La Grande Illusion receive on IMDB?,"db.movies.find({""title"": ""La Grande Illusion""}, { ""imdb.votes"": 1})" +what is the movie The Life of Emile Zola imdb rating?,"db.movies.find({""title"": ""The Life of Emile Zola""}, {""imdb.rating"": 1})" +The Invisible Man is a film written by this person?,"db.movies.find({""title"": ""The Invisible Man""}, {""writers"": 1})" +What is the consensus among critics about the movie A Midsummer Night's Dream ?,"db.movies.find({""title"": ""A Midsummer Night's Dream""}, {""tomatoes.consensus"": 1})" +"the movie Snow White and the Seven Dwarfs, was written by who?","db.movies.find({""title"": ""Snow White and the Seven Dwarfs""}, {""writers"": 1})" +What is the running time of Romeo and Juliet?,"db.movies.find({""title"":""Romeo and Juliet""}, {""runtime"":1})" +what is the genre for the movie The Invisible Man?,"db.movies.find({""title"": ""The Invisible Man""}, {""genres"": 1})" +what year was the movie Follow the Fleet released?,"db.movies.find({""title"": ""Follow the Fleet""}, {""year"": 1})" +who stars in Gold Diggers of 1935?,"db.movies.find({""title"": ""Gold Diggers of 1935""}, {""cast"": 1})" +who starred in the film Alice Adams?,"db.movies.find({""title"": ""Alice Adams""}, {""cast"": 1})" +who wrote the film Rembrandt?,"db.movies.find({""title"": ""Rembrandt""}, {""writers"": 1})" +Who are the starring actors/actresses in the movie Der Kaiser von Kalifornien?,"db.movies.find({""title"":""Der Kaiser von Kalifornien""}, {""cast"":1})" +what is the movie Gold Diggers of 1933 about?,"db.movies.find({""title"": ""Gold Diggers of 1933""}, {""plot"": 1})" +What is the box office revenue of the movie Bad Girl in dollars?,"db.movies.find({""title"": ""Bad Girl""}, {""tomatoes.boxOffice"": 1})" +Can you give me a brief summary of the movie The Barretts of Wimpole Street plot?,"db.movies.find({""title"":""The Barretts of Wimpole Street""}, {""plot"":1})" +What type of media is The Poor Little Rich Girl?,"db.movies.find({ ""title"": ""The Poor Little Rich Girl"" }, { ""type"": 1})" +Who are the main actors/actresses in the movie Baby Face?,"db.movies.find({""title"":""Baby Face""}, {""cast"":1})" +What is the production company behind the movie Mr. Deeds Goes to Town ?,"db.movies.find({""title"": ""Mr. Deeds Goes to Town""}, { ""tomatoes.production"": 1})" +"On Rotten Tomatoes, what is the top-rated film directed by Jacques Rivette?","db.movies.find({""directors"": ""Jacques Rivette"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +What are the genres this movie Man of Aran belongs to?,"db.movies.find({""title"":""Man of Aran""}, {""genres"":1})" +who was the writer of the film Mèdchen in Uniform?,"db.movies.find({""title"": ""Mèdchen in Uniform""}, {""writers"": 1})" +What is the audience rating of the movie All Quiet on the Western Front ?,"db.movies.find({ ""title"": ""All Quiet on the Western Front"" },{ ""tomatoes.viewer.rating"": 1 })" +"the movie White Shadows, was written by who?","db.movies.find({""title"": ""White Shadows""}, {""writers"": 1})" +What is the language of Red Dust?,"db.movies.find({""title"":""Red Dust""}, {""languages"":1})" +What are the genres associated with the movie One Night of Love ?,"db.movies.find({ ""title"": ""One Night of Love"" }, { ""genres"": 1})" +what genre of film is In Old Arizona?,"db.movies.find({""title"": ""In Old Arizona""}, {""genres"": 1})" +the film The Great Ziegfeld was directed by who?,"db.movies.find({""title"": ""The Great Ziegfeld""}, {""directors"": 1})" +What is the rating of the movie The Wind according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""The Wind""}, {""tomatoes.viewer.rating"": 1})" +What is the plot summary of the movie Modern Times ?,"db.movies.find({ ""title"": ""Modern Times"" }, { ""plot"": 1})" +What is the box office revenue of the movie The Italian in dollars?,"db.movies.find({""title"": ""The Italian""}, {""tomatoes.boxOffice"": 1})" +What is the text description of the movie Flesh and the Devil awards?,"db.movies.find({""title"":""Flesh and the Devil""}, {""awards.text"":1})" +what is Dracula about?,"db.movies.find({""title"": ""Dracula""}, {""plot"": 1})" +What are the countries associated with the movie The Strong Man ?,"db.movies.find({""title"": ""The Strong Man""}, {""countries"": 1})" +What is the box office revenue of the movie The Passion of Joan of Arc ?,"db.movies.find({""title"": ""The Passion of Joan of Arc""}, { ""tomatoes.boxOffice"": 1})" +How many movies were directed by Woody Allen?,"db.movies.countDocuments({""directors"":""Woody Allen""})" +what is the full plot for the movie Little Women?,"db.movies.find({""title"": ""Little Women""}, {""fullplot"": 1})" +What is the plot summary of the movie The Fall of the House of Usher ?,"db.movies.find({ ""title"": ""The Fall of the House of Usher"" }, { ""plot"": 1})" +who are the actors in the movie Stage Door?,"db.movies.find({""title"": ""Stage Door""}, {""cast"": 1})" +which company produced the movie Dishonored?,"db.movies.find({""title"":""Dishonored""}, {""tomatoes.production"":1})" +"In Sergei Eisenstein's directed movies, which actor has made the most appearances?","db.movies.aggregate([ { ""$match"": { ""directors"": ""Sergei Eisenstein"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What is the production company of The Green Pastures?,"db.movies.find({""title"":""The Green Pastures""}, {""tomatoes.production"":1})" +What are the countries associated with the movie The Cameraman ?,"db.movies.find({""title"": ""The Cameraman""}, {""countries"": 1})" +What is the IMDb rating for Ella Cinders?,"db.movies.find({""title"": ""Ella Cinders""}, {""imdb.rating"": 1})" +who is the writer of the film Mèdchen in Uniform?,"db.movies.find({""title"": ""Mèdchen in Uniform""}, {""writers"": 1})" +who produced the movie High and Dizzy?,"db.movies.find({""title"":""High and Dizzy""}, {""tomatoes.production"":1})" +Was the movie Zero for Conduct well received by audiences?,"db.movies.find({""title"":""Zero for Conduct""}, {""tomatoes.viewer"":1})" +who is the director for Maria Chapdelaine?,"db.movies.find({""title"": ""Maria Chapdelaine""}, {""directors"": 1})" +"the film Mèdchen in Uniform, was written by who?","db.movies.find({""title"": ""Mèdchen in Uniform""}, {""writers"": 1})" +Who are the writers of the movie David Copperfield ?,"db.movies.find({""title"": ""David Copperfield""}, { ""writers"": 1})" +What is the box office revenue for the movie 'Marked Woman'?,"db.movies.find({""title"": ""Marked Woman""}, {""tomatoes.boxOffice"": 1})" +What languages are spoken in the movie Beau Geste?,"db.movies.find({""title"":""Beau Geste""}, {""languages"":1})" +Can you provide a longer version of the movie Popeye the Sailor Meets Sindbad the Sailor plot?,"db.movies.find({""title"":""Popeye the Sailor Meets Sindbad the Sailor""}, {""fullplot"":1})" +"Rembrandt, was written by who?","db.movies.find({""title"": ""Rembrandt""}, {""writers"": 1})" +who produced the movie The Devil to Pay!?,"db.movies.find({""title"":""The Devil to Pay!""}, {""tomatoes.production"":1})" +What's the title of the shortest David Fincher-directed movie?,"db.movies.find({""directors"":""David Fincher""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +What is the MPAA rating of the movie Children in the Wind?,"db.movies.find({""title"":""Children in the Wind""}, {""rated"":1})" +In what language was the movie Death Takes a Holiday released?,"db.movies.find({ ""title"": ""Death Takes a Holiday"" }, { ""languages"": 1})" +Safety Last! is a movie written by this person?,"db.movies.find({""title"": ""Safety Last!""}, {""writers"": 1})" +How did the audience and critics receive The Trail of the Lonesome Pine?,"db.movies.find({""title"":""The Trail of the Lonesome Pine""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +Who are the actors that appear in the movie Show Boat ?,"db.movies.find({ ""title"": ""Show Boat"" },{ ""cast"": 1 })" +what genre is Folies Bergère de Paris?,"db.movies.find({""title"": ""Folies Bergère de Paris""}, {""genres"": 1})" +In what language was the movie Rembrandt released?,"db.movies.find({ ""title"": ""Rembrandt"" }, { ""languages"": 1})" +what is the genre of The Hunchback of Notre Dame?,"db.movies.find({""title"": ""The Hunchback of Notre Dame""}, {""genres"": 1})" +Which cinematic genres were directed by Yasujiro Ozu?,"db.movies.distinct(""genres"", { ""directors"": ""Yasujiro Ozu"" })" +What is the quantity of movies that Abbas Kiarostami has directed?,"db.movies.countDocuments({""directors"":""Abbas Kiarostami""})" +What is the movie Gold Diggers of 1933 about? Can you provide a brief summary?,"db.movies.find({""title"":""Gold Diggers of 1933""}, {""plot"":1})" +In what year was the movie This Is My Affair released ?,"db.movies.find({ ""title"": ""This Is My Affair"" }, { ""year"": 1})" +what is the film Cavalcade description ?,"db.movies.find({""title"": ""Cavalcade""}, {""plot"": 1})" +What is the MPAA rating of The Unknown?,"db.movies.find({""title"":""The Unknown""}, {""rated"":1})" +Who is the lead actor of the movie Death Takes a Holiday ?,"db.movies.find({""title"": ""Death Takes a Holiday""}, {""cast"":{""$slice"": 1},""title"":1})" +When was the Tomatometer score and other Tomato-related information last updated for the movie The Good Earth?,"db.movies.find({""title"": ""The Good Earth""}, { ""tomatoes.lastUpdated"": 1})" +What is the production company behind the movie Black Legion ?,"db.movies.find({""title"": ""Black Legion""}, { ""tomatoes.production"": 1})" +who directed the movie Street Angel?,"db.movies.find({""title"": ""Street Angel""}, {""directors"": 1})" +Can you provide a longer version of the movie The Robber Symphony plot?,"db.movies.find({""title"":""The Robber Symphony""}, {""fullplot"":1})" +Who is the lead actor of the movie Man of Aran ?,"db.movies.find({""title"": ""Man of Aran""}, {""cast"":{""$slice"": 1},""title"":1})" +what is the plot for Flash Gordon?,"db.movies.find({""title"": ""Flash Gordon""}, {""plot"": 1})" +What is the language of Black Fury?,"db.movies.find({""title"":""Black Fury""}, {""languages"":1})" +What are the names of all the actors who starred in the movie 'My Man Godfrey'?,"db.movies.find({""title"": ""My Man Godfrey""}, {""cast"": 1})" +What is the IMDb rating for the film The Lower Depths?,"db.movies.find({""title"": ""The Lower Depths""}, {""imdb.rating"": 1})" +What is the running time of The Informer?,"db.movies.find({""title"":""The Informer""}, {""runtime"":1})" +How many reviews did the movie The Chechahcos receive on Rotten Tomatoes?,"db.movies.find({""title"":""The Chechahcos""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +What is the IMDB rating of the movie A Midsummer Night's Dream ?,"db.movies.find({""title"": ""A Midsummer Night's Dream""}, { ""imdb.rating"": 1})" +Can you provide a detailed summary of the movie China Seas plot?,"db.movies.find({ ""title"": ""China Seas"" }, { ""fullplot"": 1})" +who wrote the movie The Cameraman?,"db.movies.find({""title"": ""The Cameraman""}, {""writers"": 1})" +Who are the starring actors/actresses in the movie I Am a Fugitive from a Chain Gang?,"db.movies.find({""title"":""I Am a Fugitive from a Chain Gang""}, {""cast"":1})" +Who is the lead actor of the movie Zero for Conduct ?,"db.movies.find({""title"": ""Zero for Conduct""}, {""cast"":{""$slice"": 1},""title"":1})" +what was the genre of Ben-Hur: A Tale of the Christ?,"db.movies.find({""title"": ""Ben-Hur: A Tale of the Christ""}, {""genres"": 1})" +how many awards did the movie The Land Beyond the Sunset win?,"db.movies.find({""title"":""The Land Beyond the Sunset""}, {""awards.wins"":1})" +What are the movies directed by Stanley Kubrick?,"db.movies.find({""directors"": ""Stanley Kubrick""},{""title"":1})" +Who are the writers of the movie The Crowd ?,"db.movies.find({""title"": ""The Crowd""}, { ""writers"": 1})" +Who are the actors that appear in the movie Cavalcade ?,"db.movies.find({ ""title"": ""Cavalcade"" },{ ""cast"": 1 })" +What is the ID of the movie Dames on IMDB?,"db.movies.find({""title"": ""Dames""}, {""imdb.id"": 1})" +Wild and Woolly is a movie written by this person?,"db.movies.find({""title"": ""Wild and Woolly""}, {""writers"": 1})" +What is the imdbID and genre of the movie 'The Spanish Earth'?,"db.movies.find({""title"": ""The Spanish Earth""}, {""imdb.id"": 1, ""genres"": 1, ""_id"": 0})" +Who are the starring actors/actresses in the movie The Ghost Goes West?,"db.movies.find({""title"":""The Ghost Goes West""}, {""cast"":1})" +Which motion pictures were directed by Akira Kurosawa?,"db.movies.find({""directors"": ""Akira Kurosawa""},{""title"":1})" +what is the film Greed imdb rating?,"db.movies.find({""title"": ""Greed""}, {""imdb.rating"": 1})" +what is Fury about in details?,"db.movies.find({""title"": ""Fury""}, {""fullplot"": 1})" +what sort of movie is A Midsummer Night's Dream?,"db.movies.find({""title"": ""A Midsummer Night's Dream""}, {""genres"": 1})" +what is the plot for the movie Elephant Boy?,"db.movies.find({""title"": ""Elephant Boy""}, {""plot"": 1})" +What is the rating of the movie Comradeship ?,"db.movies.find({ ""title"": ""Comradeship"" }, { ""rated"": 1})" +the film Mayerling starred which actors?,"db.movies.find({""title"": ""Mayerling""}, {""cast"": 1})" +What is the IMDb rating for the movie Flesh and the Devil ?,"db.movies.find({""title"":""Flesh and the Devil""}, {""imdb.rating"":1})" +who is the director that directed The Broadway Melody?,"db.movies.find({""title"": ""The Broadway Melody""}, {""directors"": 1})" +Which Francois Truffaut film has the shortest duration?,"db.movies.find({""directors"":""Francois Truffaut""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +who acted in the film A Woman of Paris: A Drama of Fate?,"db.movies.find({""title"": ""A Woman of Paris: A Drama of Fate""}, {""cast"": 1})" +What is the rating of the movie Show Boat on IMDb?,"db.movies.find({""title"":""Show Boat""}, {""imdb.rating"":1})" +How long is the movie The Land Beyond the Sunset in minutes?,"db.movies.find({""title"":""The Land Beyond the Sunset""}, {""runtime"":1})" +who is the director for Fury?,"db.movies.find({""title"": ""Fury""}, {""directors"": 1})" +What is the name of the movie that Robert Bresson directed that has the longest duration?,"db.movies.find({""directors"":""Robert Bresson""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +the film King of Jazz was directed by who?,"db.movies.find({""title"": ""King of Jazz""}, {""directors"": 1})" +what kind of film is For Heaven's Sake?,"db.movies.find({""title"": ""For Heaven's Sake""}, {""genres"": 1})" +who directed the movie The Son of Kong?,"db.movies.find({""title"": ""The Son of Kong""}, {""directors"": 1})" +What is the running time of Regeneration?,"db.movies.find({""title"":""Regeneration""}, {""runtime"":1})" +What are the genres associated with the movie The Trail of the Lonesome Pine ?,"db.movies.find({ ""title"": ""The Trail of the Lonesome Pine"" }, { ""genres"": 1})" +How many reviews have been submitted by critics for the movie Sanders of the River?,"db.movies.find({ ""title"": ""Sanders of the River"" }, { ""tomatoes.critic.numReviews"": 1 })" +who produced the movie Love Me Tonight?,"db.movies.find({""title"":""Love Me Tonight""}, {""tomatoes.production"":1})" +What is the Tomatometer score of the movie Tabu: A Story of the South Seas ?,"db.movies.find({ ""title"": ""Tabu: A Story of the South Seas"" },{ ""tomatoes.critic.meter"": 1 })" +How many audience reviews have been submitted for the movie Greed ?,"db.movies.find({ ""title"": ""Greed"" },{ ""tomatoes.viewer.numReviews"": 1 })" +the movie Zero for Conduct was directed by who?,"db.movies.find({""title"": ""Zero for Conduct""}, {""directors"": 1})" +who was the writer of the movie David Copperfield?,"db.movies.find({""title"": ""David Copperfield""}, {""writers"": 1})" +how many awards did the movie The Blue Bird win?,"db.movies.find({""title"":""The Blue Bird""}, {""awards.wins"":1})" +In what language was the movie Little Caesar released?,"db.movies.find({ ""title"": ""Little Caesar"" }, { ""languages"": 1})" +what is the genre for the movie In Old Arizona?,"db.movies.find({""title"": ""In Old Arizona""}, {""genres"": 1})" +what is the movie It Happened One Night about?,"db.movies.find({""title"": ""It Happened One Night""}, {""plot"": 1})" +who wrote the movie Modern Times?,"db.movies.find({""title"": ""Modern Times""}, {""writers"": 1})" +What is the imdbID and year of release for the movie with a title of 'David Golder'?,"db.movies.find({""title"": ""David Golder""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +who wrote the film Chapayev?,"db.movies.find({""title"": ""Chapayev""}, {""writers"": 1})" +In what year was the movie Little Caesar released ?,"db.movies.find({ ""title"": ""Little Caesar"" }, { ""year"": 1})" +the movie Little Caesar starred which actors?,"db.movies.find({""title"": ""Little Caesar""}, {""cast"": 1})" +who wrote the screenplay for Scarface?,"db.movies.aggregate([ { ""$match"": { ""title"":""Scarface""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +How many comments have been posted by users on the movie The Kid Brother's page on the Mflix platform?,"db.movies.find({ ""title"": ""The Kid Brother"" }, { ""num_mflix_comments"": 1 })" +what is the genre for the film It?,"db.movies.find({""title"": ""It""}, {""genres"": 1})" +How many reviews have been submitted by critics for the movie For Heaven's Sake?,"db.movies.find({ ""title"": ""For Heaven's Sake"" }, { ""tomatoes.critic.numReviews"": 1 })" +Could you tell me the total runtime of all David Lynch movies he has directed?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""David Lynch"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +which person wrote the movie Hallelujah?,"db.movies.find({""title"": ""Hallelujah""}, {""writers"": 1})" +How did the audience and critics receive the movie Smilin' Through?,"db.movies.find({""title"":""Smilin' Through""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the MPAA rating of Black Fury?,"db.movies.find({""title"":""Black Fury""}, {""rated"":1})" +What is the box office revenue for the movie 'My Man Godfrey'?,"db.movies.find({""title"": ""My Man Godfrey""}, {""tomatoes.boxOffice"": 1})" +What is the imdbID and genre of the movie 'The Divine Lady'?,"db.movies.find({""title"": ""The Divine Lady""}, {""imdb.id"": 1, ""genres"": 1, ""_id"": 0})" +who was the film Grand Hotel written by?,"db.movies.find({""title"": ""Grand Hotel""}, {""writers"": 1})" +What is the IMDb ID for the movie The Big Trail?,"db.movies.find({""title"":""The Big Trail""}, {""imdb.id"":1})" +What is the runtime of the movie She ?,"db.movies.find({""title"": ""She""}, { ""runtime"": 1})" +"The Story of a Cheat, was written by who?","db.movies.find({""title"": ""The Story of a Cheat""}, {""writers"": 1})" +Could you tell me the total runtime of all Clint Eastwood movies he has directed?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Clint Eastwood"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +what type of film is Children in the Wind?,"db.movies.find({""title"": ""Children in the Wind""}, {""genres"": 1})" +In which genre do the movies directed by Alain Resnais mainly fall under?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Alain Resnais"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What was the release date for the movie Lonesome?,"db.movies.find({""title"":""Lonesome""}, {""released"":1})" +which person wrote The Birth of a Nation?,"db.movies.find({""title"": ""The Birth of a Nation""}, {""writers"": 1})" +The Scarlet Empress is written by this person?,"db.movies.find({""title"": ""The Scarlet Empress""}, {""writers"": 1})" +Could you share with me the titles of the films that Jacques Rivette directed?,"db.movies.find({""directors"": ""Jacques Rivette""},{""title"":1})" +"the director of Steamboat Bill, Jr. was?","db.movies.find({""title"": ""Steamboat Bill, Jr.""}, {""directors"": 1})" +what is the film Black Fury description ?,"db.movies.find({""title"": ""Black Fury""}, {""plot"": 1})" +What is the MPAA rating of Stage Door?,"db.movies.find({""title"":""Stage Door""}, {""rated"":1})" +How many audience reviews have been submitted for the movie Daughter of Shanghai ?,"db.movies.find({ ""title"": ""Daughter of Shanghai"" },{ ""tomatoes.viewer.numReviews"": 1 })" +What is the freshness score of the movie The Poor Little Rich Girl on Rotten Tomatoes?,"db.movies.find({""title"": ""The Poor Little Rich Girl""}, {""tomatoes.fresh"": 1})" +What is the freshness score of the movie Three Smart Girls on Rotten Tomatoes?,"db.movies.find({""title"": ""Three Smart Girls""}, {""tomatoes.fresh"": 1})" +who wrote the film The Wedding March?,"db.movies.find({""title"": ""The Wedding March""}, {""writers"": 1})" +what sort of movie is Kid Galahad?,"db.movies.find({""title"": ""Kid Galahad""}, {""genres"": 1})" +How many nominations did the movie One Week receive?,"db.movies.find({""title"":""One Week""}, {""awards.nominations"":1})" +What is the text representation of the awards won and nominations received by the movie Broadway Melody of 1936?,"db.movies.find({""title"": ""Broadway Melody of 1936""}, { ""awards.text"": 1})" +What is the running time of the movie Broken Lullaby?,"db.movies.find({""title"":""Broken Lullaby""}, {""runtime"":1})" +what is the movie The Son of Kong about in details?,"db.movies.find({""title"": ""The Son of Kong""}, {""fullplot"": 1})" +who produced the movie The Big Parade?,"db.movies.find({""title"":""The Big Parade""}, {""tomatoes.production"":1})" +What are the names of all the actors who starred in the movie 'The Iron Horse'?,"db.movies.find({""title"": ""The Iron Horse""}, {""cast"": 1})" +"Has the movie Anna Karenina won any awards? If so, which ones?","db.movies.find({""title"":""Anna Karenina"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +Was the movie Storm Over Asia well received by audiences?,"db.movies.find({""title"":""Storm Over Asia""}, {""tomatoes.viewer"":1})" +What is the runtime of the movie The Green Pastures ?,"db.movies.find({""title"": ""The Green Pastures""}, { ""runtime"": 1})" +What is the audience rating of the movie A Free Soul ?,"db.movies.find({ ""title"": ""A Free Soul"" },{ ""tomatoes.viewer.rating"": 1 })" +"the movie Napoleon, was written by who?","db.movies.find({""title"": ""Napoleon""}, {""writers"": 1})" +"Queen Christina, was written by who?","db.movies.find({""title"": ""Queen Christina""}, {""writers"": 1})" +"Has Harvest won any awards? If so, which ones?","db.movies.find({""title"":""Harvest"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What's the title of the Ingmar Bergman movie with the longest runtime?,"db.movies.find({""directors"":""Ingmar Bergman""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +Who are the starring actors/actresses in the movie 42nd Street?,"db.movies.find({""title"":""42nd Street""}, {""cast"":1})" +Who is the lead actress of the movie This Is My Affair ?,"db.movies.find({""title"": ""This Is My Affair""}, {""cast"":{""$slice"": 1},""title"":1})" +who wrote The Jazz Singer?,"db.movies.find({""title"": ""The Jazz Singer""}, {""writers"": 1})" +Who are the starring actors/actresses in the movie Tabu: A Story of the South Seas?,"db.movies.find({""title"":""Tabu: A Story of the South Seas""}, {""cast"":1})" +What is the language of the film Dodsworth?,"db.movies.find({""title"":""Dodsworth""}, {""languages"":1})" +what was the release date of the film Masquerade in Vienna?,"db.movies.find({""title"": ""Masquerade in Vienna""}, {""released"": 1})" +"the film Shanghai Express, was written by who?","db.movies.find({""title"": ""Shanghai Express""}, {""writers"": 1})" +what is the full plot for the movie Applause?,"db.movies.find({""title"": ""Applause""}, {""fullplot"": 1})" +who wrote the movie Little Women?,"db.movies.find({""title"": ""Little Women""}, {""writers"": 1})" +Can you give me a brief summary of the movie The Music Box plot?,"db.movies.find({""title"":""The Music Box""}, {""plot"":1})" +Was the movie The Big Trail well received by audiences?,"db.movies.find({""title"":""The Big Trail""}, {""tomatoes.viewer"":1})" +how many awards did the movie Death Takes a Holiday win?,"db.movies.find({""title"":""Death Takes a Holiday""}, {""awards.wins"":1})" +what sort of film is The Lost World?,"db.movies.find({""title"": ""The Lost World""}, {""genres"": 1})" +What is the number of movies Terrence Malick released per year?,"db.movies.aggregate([{ $match: { ""directors"": ""Terrence Malick"" }},{""$group"": { ""_id"": ""$year"", ""count"": {""$sum"": 1}}}])" +what is L'opèra de quat'sous imdb rating?,"db.movies.find({""title"": ""L'opèra de quat'sous""}, {""imdb.rating"": 1})" +What is the IMDB rating of the movie Napoleon ?,"db.movies.find({""title"": ""Napoleon""}, { ""imdb.rating"": 1})" +what are the genres directed by Luchino Visconti?,"db.movies.distinct(""genres"", { ""directors"": ""Luchino Visconti"" })" +Which films directed by David Fincher have the highest ratings?,"db.movies.find({""directors"": 'David Fincher', ""imdb.rating"": {""$gt"": 8.5}})" +Was the movie Everybody's Woman well received by audiences?,"db.movies.find({""title"":""Everybody's Woman""}, {""tomatoes.viewer"":1})" +What is the box office revenue for the movie 'King Kong'?,"db.movies.find({""title"": ""King Kong""}, {""tomatoes.boxOffice"": 1})" +who stars in the movie Sunrise?,"db.movies.find({""title"": ""Sunrise""}, {""cast"": 1})" +In what language was the movie The New Gulliver released?,"db.movies.find({ ""title"": ""The New Gulliver"" }, { ""languages"": 1})" +What is the running time of the film Flying Down to Rio?,"db.movies.find({""title"":""Flying Down to Rio""}, {""runtime"":1})" +how has Wild and Woolly been recieved by critics and audience?,"db.movies.find({""title"":""Wild and Woolly""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the viewer rating for the movie è Nous la Libertè on Rotten Tomatoes?,"db.movies.find({""title"":""è Nous la Libertè""}, {""tomatoes.viewer.rating"":1})" +what is Lonesome description?,"db.movies.find({""title"": ""Lonesome""}, {""plot"": 1})" +What is the rating of the movie The Scarlet Empress on IMDb?,"db.movies.find({""title"":""The Scarlet Empress""}, {""imdb.rating"":1})" +what is Three Ages imdb rating?,"db.movies.find({""title"": ""Three Ages""}, {""imdb.rating"": 1})" +When was the movie Regeneration released in theaters?,"db.movies.find({""title"": ""Regeneration""}, {""released"": 1})" +What is the production company of A Free Soul?,"db.movies.find({""title"":""A Free Soul""}, {""tomatoes.production"":1})" +What is the box office revenue of the movie Toni in dollars?,"db.movies.find({""title"": ""Toni""}, {""tomatoes.boxOffice"": 1})" +what is the movie The Ace of Hearts description ?,"db.movies.find({""title"": ""The Ace of Hearts""}, {""plot"": 1})" +What is the meter score of the movie Little Miss Marker according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Little Miss Marker""}, {""tomatoes.viewer.meter"": 1})" +how has Theodora Goes Wild been recieved by critics and audience?,"db.movies.find({""title"":""Theodora Goes Wild""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what kind of film is City Streets?,"db.movies.find({""title"": ""City Streets""}, {""genres"": 1})" +what is the full plot for the film Lonesome?,"db.movies.find({""title"": ""Lonesome""}, {""fullplot"": 1})" +what is the film Wild Boys of the Road about in details?,"db.movies.find({""title"": ""Wild Boys of the Road""}, {""fullplot"": 1})" +what is the movie San Francisco imdb rating?,"db.movies.find({""title"": ""San Francisco""}, {""imdb.rating"": 1})" +How long is the movie The Life of Emile Zola in minutes?,"db.movies.find({""title"":""The Life of Emile Zola""}, {""runtime"":1})" +What is the box office revenue for the movie 'I Am a Fugitive from a Chain Gang'?,"db.movies.find({""title"": ""I Am a Fugitive from a Chain Gang""}, {""tomatoes.boxOffice"": 1})" +how has Dante's Inferno been recieved by critics and audience?,"db.movies.find({""title"":""Dante's Inferno""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the production company behind the movie x?,"db.movies.find({""title"": ""Dr. Jekyll and Mr. Hyde""}, { ""tomatoes.production"": 1})" +Who is the lead actor of the movie Le grand jeu ?,"db.movies.find({""title"": ""Le grand jeu""}, {""cast"":{""$slice"": 1},""title"":1})" +What is the text description of the movie Skippy awards?,"db.movies.find({""title"":""Skippy""}, {""awards.text"":1})" +who acted in the film Swing Time?,"db.movies.find({""title"": ""Swing Time""}, {""cast"": 1})" +who stars in the movie Men Without Women?,"db.movies.find({""title"": ""Men Without Women""}, {""cast"": 1})" +What are the countries associated with the movie The Informer ?,"db.movies.find({""title"": ""The Informer""}, {""countries"": 1})" +who wrote the screenplay for Alice Adams?,"db.movies.aggregate([ { ""$match"": { ""title"":""Alice Adams""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +"Has the film Clash of the Wolves won any awards? If so, which ones?","db.movies.find({""title"":""Clash of the Wolves"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +can you describe the plot of Moscow Laughs?,"db.movies.find({""title"": ""Moscow Laughs""}, {""plot"": 1})" +How did the audience and critics receive the movie A Day in the Country?,"db.movies.find({""title"":""A Day in the Country""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what year was the movie High and Dizzy released?,"db.movies.find({""title"": ""High and Dizzy""}, {""year"": 1})" +In what year was the movie Carnival in Flanders released ?,"db.movies.find({ ""title"": ""Carnival in Flanders"" }, { ""year"": 1})" +"Has the film Rembrandt won any awards? If so, which ones?","db.movies.find({""title"":""Rembrandt"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +How many awards did the movie win Lost Horizon ?,"db.movies.find({ ""title"": ""Lost Horizon"" },{ ""awards.wins"": 1 })" +What type of media is Ella Cinders?,"db.movies.find({ ""title"": ""Ella Cinders"" }, { ""type"": 1})" +What is the box office revenue of the movie The Blue Bird ?,"db.movies.find({""title"": ""The Blue Bird""}, { ""tomatoes.boxOffice"": 1})" +What is the highest-rated movie directed by Woody Allen on rotten tomatoes?,"db.movies.find({""directors"": ""Woody Allen"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +the director of Greed was?,"db.movies.find({""title"": ""Greed""}, {""directors"": 1})" +What is the viewer rating for the movie Broadway Bill on Rotten Tomatoes?,"db.movies.find({""title"":""Broadway Bill""}, {""tomatoes.viewer.rating"":1})" +who starred in the movie Dames?,"db.movies.find({""title"": ""Dames""}, {""cast"": 1})" +what sort of movie is Everybody's Woman?,"db.movies.find({""title"": ""Everybody's Woman""}, {""genres"": 1})" +who produced The Broadway Melody?,"db.movies.find({""title"":""The Broadway Melody""}, {""tomatoes.production"":1})" +What is the production company behind the movie The Gay Divorcee ?,"db.movies.find({""title"": ""The Gay Divorcee""}, {""tomatoes.production"": 1})" +Has the movie Dr. Jekyll and Mr. Hyde won any awards?,"db.movies.find({""title"":""Dr. Jekyll and Mr. Hyde""}, {""awards.wins"":1})" +"Has the movie The Great Train Robbery won any awards? If so, which ones?","db.movies.find({""title"":""The Great Train Robbery"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What is the website associated with the movie A Damsel in Distress on Rotten Tomatoes?,"db.movies.find({""title"": ""A Damsel in Distress""}, {""tomatoes.website"": 1})" +How many nominations did the movie Harvest receive?,"db.movies.find({""title"":""Harvest""}, {""awards.nominations"":1})" +"What is the name of the director and cast for the movie 'I Was Born, But...'?","db.movies.find({""title"": ""I Was Born, But...""}, {""directors"": 1, ""cast"": 1, ""_id"": 0})" +what was the genre of the movie King of Jazz?,"db.movies.find({""title"": ""King of Jazz""}, {""genres"": 1})" +What is the meter score of the movie Three Ages according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Three Ages""}, {""tomatoes.viewer.meter"": 1})" +Which actor has the greatest number of roles in Joel Coen's directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Joel Coen"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +what type of film is The Story of Louis Pasteur?,"db.movies.find({""title"": ""The Story of Louis Pasteur""}, {""genres"": 1})" +what genre of movie is Black Legion?,"db.movies.find({""title"": ""Black Legion""}, {""genres"": 1})" +what genre is the film Tabu: A Story of the South Seas?,"db.movies.find({""title"": ""Tabu: A Story of the South Seas""}, {""genres"": 1})" +Who are the actors in the movie A Night at the Opera?,"db.movies.find({""title"":""A Night at the Opera""}, {""cast"":1})" +Has the movie Cavalcade won any awards?,"db.movies.find({""title"":""Cavalcade""}, {""awards.wins"":1})" +how has The Prince and the Pauper been recieved by critics and audience?,"db.movies.find({""title"":""The Prince and the Pauper""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +who are the actors in the film One Hundred Men and a Girl?,"db.movies.find({""title"": ""One Hundred Men and a Girl""}, {""cast"": 1})" +What languages are spoken in the movie Traffic in Souls?,"db.movies.find({""title"":""Traffic in Souls""}, {""languages"":1})" +What is the imdbID and year of release for the movie with a title of 'Murders in the Rue Morgue'?,"db.movies.find({""title"": ""Murders in the Rue Morgue""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +what is the full plot for the film Moscow Laughs?,"db.movies.find({""title"": ""Moscow Laughs""}, {""fullplot"": 1})" +who wrote Becky Sharp?,"db.movies.find({""title"": ""Becky Sharp""}, {""writers"": 1})" +Who are the writers of the movie Intolerance: Love's Struggle Throughout the Ages ?,"db.movies.find({""title"": ""Intolerance: Love's Struggle Throughout the Ages""}, { ""writers"": 1})" +When was the information about the movie He Who Gets Slapped last updated?,"db.movies.find({ ""title"": ""He Who Gets Slapped"" }, { ""lastupdated"": 1})" +Can you provide me with a list of movies directed by Ethan Coen that were released in the 1990s?,"db.movies.find({""directors"": 'Ethan Coen', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +who was The Unknown written by?,"db.movies.find({""title"": ""The Unknown""}, {""writers"": 1})" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie Swing Time ?,"db.movies.find({""title"":""Swing Time""}, {""tomatoes.viewer.meter"":1})" +What is the name of the director and cast for the movie 'Under the Roofs of Paris'?,"db.movies.find({""title"": ""Under the Roofs of Paris""}, {""directors"": 1, ""cast"": 1, ""_id"": 0})" +who was the writer of The Music Box?,"db.movies.find({""title"": ""The Music Box""}, {""writers"": 1})" +who's the director of Tsirk?,"db.movies.find({""title"": ""Tsirk""}, {""directors"": 1})" +what genre is the film High and Dizzy?,"db.movies.find({""title"": ""High and Dizzy""}, {""genres"": 1})" +the film Regeneration starred who?,"db.movies.find({""title"": ""Regeneration""}, {""cast"": 1})" +Can you give me a brief summary of the movie Becky Sharp plot?,"db.movies.find({""title"":""Becky Sharp""}, {""plot"":1})" +What is the runtime of the movie A Day in the Country ?,"db.movies.find({""title"": ""A Day in the Country""}, { ""runtime"": 1})" +what year was the movie She released?,"db.movies.find({""title"": ""She""}, {""year"": 1})" +how many awards did the film Gertie the Dinosaur win?,"db.movies.find({""title"":""Gertie the Dinosaur""}, {""awards.wins"":1})" +How long is the runtime of the movie A Story of Floating Weeds ?,"db.movies.find({""title"":""A Story of Floating Weeds""}, {""runtime"":1})" +What are the genres this movie Elephant Boy belongs to?,"db.movies.find({""title"":""Elephant Boy""}, {""genres"":1})" +who was the writer of the movie The Charge of the Light Brigade?,"db.movies.find({""title"": ""The Charge of the Light Brigade""}, {""writers"": 1})" +what genre is Masquerade in Vienna?,"db.movies.find({""title"": ""Masquerade in Vienna""}, {""genres"": 1})" +can you describe the plot of Ben-Hur: A Tale of the Christ?,"db.movies.find({""title"": ""Ben-Hur: A Tale of the Christ""}, {""plot"": 1})" +who starred in Frankenstein?,"db.movies.find({""title"": ""Frankenstein""}, {""cast"": 1})" +Can you provide more information about the languages spoken in the movie Ella Cinders ?,"db.movies.find({""title"":""Ella Cinders""}, {""languages"":1})" +what is the plot for the movie This Is My Affair?,"db.movies.find({""title"": ""This Is My Affair""}, {""plot"": 1})" +What is the production company of Scarface?,"db.movies.find({""title"":""Scarface""}, {""tomatoes.production"":1})" +what was the genre of the movie A Star Is Born?,"db.movies.find({""title"": ""A Star Is Born""}, {""genres"": 1})" +How many reviews have been submitted by critics for the movie Maria Chapdelaine?,"db.movies.find({ ""title"": ""Maria Chapdelaine"" }, { ""tomatoes.critic.numReviews"": 1 })" +How many votes does the movie Salomè have on IMDb?,"db.movies.find({""title"":""Salomè""}, {""imdb.votes"":1})" +Storm Over Asia was directed by who?,"db.movies.find({""title"": ""Storm Over Asia""}, {""directors"": 1})" +"what is the film Steamboat Bill, Jr. description ?","db.movies.find({""title"": ""Steamboat Bill, Jr.""}, {""plot"": 1})" +What is the production company behind the movie Flash Gordon ?,"db.movies.find({""title"": ""Flash Gordon""}, { ""tomatoes.production"": 1})" +can you describe the plot of Man with a Movie Camera?,"db.movies.find({""title"": ""Man with a Movie Camera""}, {""plot"": 1})" +the movie Popeye the Sailor Meets Sindbad the Sailor was directed by who?,"db.movies.find({""title"": ""Popeye the Sailor Meets Sindbad the Sailor""}, {""directors"": 1})" +What is the ID of the movie Lenin in October on IMDB?,"db.movies.find({""title"": ""Lenin in October""}, {""imdb.id"": 1})" +who is the director for Forbidden?,"db.movies.find({""title"": ""Forbidden""}, {""directors"": 1})" +what is the film One Hundred Men and a Girl about?,"db.movies.find({""title"": ""One Hundred Men and a Girl""}, {""plot"": 1})" +who directed Ella Cinders?,"db.movies.find({""title"": ""Ella Cinders""}, {""directors"": 1})" +who wrote the film Ruggles of Red Gap?,"db.movies.find({""title"": ""Ruggles of Red Gap""}, {""writers"": 1})" +What is the MPAA rating of Three Ages?,"db.movies.find({""title"":""Three Ages""}, {""rated"":1})" +what is the full plot for The Man Who Knew Too Much?,"db.movies.find({""title"": ""The Man Who Knew Too Much""}, {""fullplot"": 1})" +what is Red Dust imdb rating?,"db.movies.find({""title"": ""Red Dust""}, {""imdb.rating"": 1})" +who produced Cavalcade?,"db.movies.find({""title"":""Cavalcade""}, {""tomatoes.production"":1})" +What is the chief film category that Wes Anderson's directed movies are classified under?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Wes Anderson"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What is the box office revenue of the movie Seven Chances in dollars?,"db.movies.find({""title"": ""Seven Chances""}, {""tomatoes.boxOffice"": 1})" +What is the runtime and rating for the movie 'Come and Get It'?,"db.movies.find({""title"": ""Come and Get It""}, {""runtime"": 1, ""rated"": 1})" +What is the MongoDB document ID of the movie The Champ?,"db.movies.find({""title"": ""The Champ""}, {""_id"": 1})" +Could you tell me which Roberto Rossellini-directed film has the longest running time?,"db.movies.find({""directors"":""Roberto Rossellini""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +what was the release date of the film She Done Him Wrong?,"db.movies.find({""title"": ""She Done Him Wrong""}, {""released"": 1})" +What is the text representation of the awards won and nominations received by the movie The Hurricane?,"db.movies.find({""title"": ""The Hurricane""}, { ""awards.text"": 1})" +What is the rating of the movie My Man Godfrey on IMDb?,"db.movies.find({""title"":""My Man Godfrey""}, {""imdb.rating"":1})" +What is the box office revenue of the movie For Heaven's Sake in dollars?,"db.movies.find({""title"": ""For Heaven's Sake""}, {""tomatoes.boxOffice"": 1})" +what was the release year of the film The Big House?,"db.movies.find({""title"": ""The Big House""}, {""year"": 1})" +who produced the film The Man Who Could Work Miracles?,"db.movies.find({""title"":""The Man Who Could Work Miracles""}, {""tomatoes.production"":1})" +What is the meter score of the movie The Prisoner of Zenda according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""The Prisoner of Zenda""}, {""tomatoes.viewer.meter"": 1})" +what was the release year of Tarzan and His Mate?,"db.movies.find({""title"": ""Tarzan and His Mate""}, {""year"": 1})" +what kind of film is Wife! Be Like a Rose!?,"db.movies.find({""title"": ""Wife! Be Like a Rose!""}, {""genres"": 1})" +Which actor has the highest number of appearances in movies directed by Roberto Rossellini?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Roberto Rossellini"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +How did the audience and critics receive the film The Divine Lady?,"db.movies.find({""title"":""The Divine Lady""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +The Awful Truth is a film written by this person?,"db.movies.find({""title"": ""The Awful Truth""}, {""writers"": 1})" +Can you provide more information about the Rotten Tomatoes rating for the movie Nanook of the North?,"db.movies.find({""title"": ""Nanook of the North""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +What is the audience rating of the movie It ?,"db.movies.find({ ""title"": ""It"" },{ ""tomatoes.viewer.rating"": 1 })" +What was the release date for the movie Twentieth Century?,"db.movies.find({""title"":""Twentieth Century""}, {""released"":1})" +the director of The Big House was?,"db.movies.find({""title"": ""The Big House""}, {""directors"": 1})" +who is listed as director for Scarface?,"db.movies.find({""title"": ""Scarface""}, {""directors"": 1})" +Who is the director of the movie The Charge of the Light Brigade?,"db.movies.find({""title"": ""The Charge of the Light Brigade""}, { ""directors"": 1})" +who is the director of Metropolis?,"db.movies.find({""title"": ""Metropolis""}, {""directors"": 1})" +what is the full plot for the movie Scarface?,"db.movies.find({""title"": ""Scarface""}, {""fullplot"": 1})" +What is the rating of the movie The Divine Lady according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""The Divine Lady""}, {""tomatoes.viewer.rating"": 1})" +who are the actors in the movie Three Little Pigs?,"db.movies.find({""title"": ""Three Little Pigs""}, {""cast"": 1})" +How did the audience and critics receive the movie Metropolis?,"db.movies.find({""title"":""Metropolis""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +who is the author of Earth?,"db.movies.find({""title"": ""Earth""}, {""writers"": 1})" +who is the writer of Captains Courageous?,"db.movies.find({""title"": ""Captains Courageous""}, {""writers"": 1})" +Can you provide more information about the IMDb rating for the movie Applause ?,"db.movies.find({""title"":""Applause""}, {""imdb"":1})" +How long is the movie Cleopatra in minutes?,"db.movies.find({""title"":""Cleopatra""}, {""runtime"":1})" +what is the movie Viva Villa! imdb rating?,"db.movies.find({""title"": ""Viva Villa!""}, {""imdb.rating"": 1})" +what was the release date of the film One Week?,"db.movies.find({""title"": ""One Week""}, {""released"": 1})" +"who is listed as director for Laugh, Clown, Laugh?","db.movies.find({""title"": ""Laugh, Clown, Laugh""}, {""directors"": 1})" +Could you inform me of the total runtime of all Louis Malle-directed movies?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Louis Malle"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +What are some of the types of movies that David Lynch has directed?,"db.movies.distinct(""genres"", { ""directors"": ""David Lynch"" })" +the film The Big Parade was directed by who?,"db.movies.find({""title"": ""The Big Parade""}, {""directors"": 1})" +What is the imdbID and genre of the movie 'Queen Christina'?,"db.movies.find({""title"": ""Queen Christina""}, {""imdb.id"": 1, ""genres"": 1, ""_id"": 0})" +What is the website associated with the movie The Devil Is a Woman on Rotten Tomatoes?,"db.movies.find({""title"": ""The Devil Is a Woman""}, {""tomatoes.website"": 1})" +who was the movie The Barretts of Wimpole Street written by?,"db.movies.find({""title"": ""The Barretts of Wimpole Street""}, {""writers"": 1})" +What is the language of the movie Duck Soup?,"db.movies.find({""title"":""Duck Soup""}, {""languages"":1})" +Could you tell me the typical rating of Eric Rohmer movies in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Eric Rohmer""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +What is the imdbID and genre of the movie 'Robin Hood'?,"db.movies.find({""title"": ""Robin Hood""}, {""imdb.id"": 1, ""genres"": 1, ""_id"": 0})" +Was the movie Clash of the Wolves well received by audiences?,"db.movies.find({""title"":""Clash of the Wolves""}, {""tomatoes.viewer"":1})" +what was the release year of the movie In Old Chicago?,"db.movies.find({""title"": ""In Old Chicago""}, {""year"": 1})" +Who is the lead actress of the movie The Black Pirate ?,"db.movies.find({""title"": ""The Black Pirate""}, {""cast"":{""$slice"": 1},""title"":1})" +what was the release date of Dodsworth?,"db.movies.find({""title"": ""Dodsworth""}, {""released"": 1})" +who is the author of Dames?,"db.movies.find({""title"": ""Dames""}, {""writers"": 1})" +What is the running time of Dekigokoro?,"db.movies.find({""title"":""Dekigokoro""}, {""runtime"":1})" +"the film The Prince and the Pauper, was written by who?","db.movies.find({""title"": ""The Prince and the Pauper""}, {""writers"": 1})" +How many reviews did the movie Pandora's Box receive on Rotten Tomatoes?,"db.movies.find({""title"":""Pandora's Box""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +Who are the actors in the movie The Edge of the World?,"db.movies.find({""title"":""The Edge of the World""}, {""cast"":1})" +Can you provide more information about the Rotten Tomatoes rating for the movie Beau Geste?,"db.movies.find({""title"": ""Beau Geste""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +Which actor has the highest count of appearances in Coen Brothers's directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Coen Brothers"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What is the overall length of all movies that Francis Ford Coppola has directed?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Francis Ford Coppola"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +who wrote the screenplay for the film The Broadway Melody?,"db.movies.aggregate([ { ""$match"": { ""title"":""The Broadway Melody""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +who was the writer of The Iron Horse?,"db.movies.find({""title"": ""The Iron Horse""}, {""writers"": 1})" +who are the actors in the movie The Spanish Earth?,"db.movies.find({""title"": ""The Spanish Earth""}, {""cast"": 1})" +which person directed 42nd Street?,"db.movies.find({""title"": ""42nd Street""}, {""directors"": 1})" +How many award nominations did the movie receive Pèpè le Moko ?,"db.movies.find({ ""title"": ""Pèpè le Moko"" },{ ""awards.nominations"": 1 })" +Which actor has the highest count of appearances in Terrence Malick's directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Terrence Malick"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +what genre of movie is The Fall of the House of Usher?,"db.movies.find({""title"": ""The Fall of the House of Usher""}, {""genres"": 1})" +who starred in the film The Mummy?,"db.movies.find({""title"": ""The Mummy""}, {""cast"": 1})" +what is the full plot for the film The Iron Horse?,"db.movies.find({""title"": ""The Iron Horse""}, {""fullplot"": 1})" +what sort of movie is Swing Time?,"db.movies.find({""title"": ""Swing Time""}, {""genres"": 1})" +What is the number of movies Martin Scorsese released per year?,"db.movies.aggregate([{ $match: { ""directors"": ""Martin Scorsese"" }},{""$group"": { ""_id"": ""$year"", ""count"": {""$sum"": 1}}}])" +What is the website associated with the movie Broadway Melody of 1936 on Rotten Tomatoes?,"db.movies.find({""title"": ""Broadway Melody of 1936""}, {""tomatoes.website"": 1})" +"In Oliver Stone's directed movies, which actor has made the most appearances?","db.movies.aggregate([ { ""$match"": { ""directors"": ""Oliver Stone"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +which company produced the movie The Pearls of the Crown?,"db.movies.find({""title"":""The Pearls of the Crown""}, {""tomatoes.production"":1})" +Who is the lead actor of the movie Beau Geste ?,"db.movies.find({""title"": ""Beau Geste""}, {""cast"":{""$slice"": 1},""title"":1})" +what is 7th Heaven about?,"db.movies.find({""title"": ""7th Heaven""}, {""plot"": 1})" +which person directed The Lives of a Bengal Lancer?,"db.movies.find({""title"": ""The Lives of a Bengal Lancer""}, {""directors"": 1})" +In which countries was the movie The Freshman produced?,"db.movies.find({""title"":""The Freshman""}, {""countries"":1})" +What is the name of the director and cast for the movie 'Viva Villa!'?,"db.movies.find({""title"": ""Viva Villa!""}, {""directors"": 1, ""cast"": 1, ""_id"": 0})" +what was the release date of the film The Mummy?,"db.movies.find({""title"": ""The Mummy""}, {""released"": 1})" +How many movies by Coen Brothers were released in each year?,"db.movies.aggregate([{ $match: { ""directors"": ""Coen Brothers"" }},{""$group"": { ""_id"": ""$year"", ""count"": {""$sum"": 1}}}])" +what sort of movie is Secret Agent?,"db.movies.find({""title"": ""Secret Agent""}, {""genres"": 1})" +who wrote The Lost World?,"db.movies.find({""title"": ""The Lost World""}, {""writers"": 1})" +what kind of movie is The Awful Truth?,"db.movies.find({""title"": ""The Awful Truth""}, {""genres"": 1})" +What is the website associated with the movie The Music Box on Rotten Tomatoes?,"db.movies.find({""title"": ""The Music Box""}, {""tomatoes.website"": 1})" +"The Docks of New York, is written by who?","db.movies.find({""title"": ""The Docks of New York""}, {""writers"": 1})" +who directed the film State Fair?,"db.movies.find({""title"": ""State Fair""}, {""directors"": 1})" +What is the consensus among critics about the movie Tsirk ?,"db.movies.find({""title"": ""Tsirk""}, {""tomatoes.consensus"": 1})" +Which movie genres did Ridley Scott direct?,"db.movies.distinct(""genres"", { ""directors"": ""Ridley Scott"" })" +Which films did Tim Burton direct in the 1990s?,"db.movies.find({""directors"": 'Tim Burton', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +What is the movie The Crusades rating?,"db.movies.find({""title"":""The Crusades""}, {""rated"":1})" +Which actor has the highest count of appearances in Ridley Scott's directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Ridley Scott"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What is the plot summary of the movie Ben-Hur: A Tale of the Christ ?,"db.movies.find({ ""title"": ""Ben-Hur: A Tale of the Christ"" }, { ""plot"": 1})" +In what year was the movie Camille released?,"db.movies.find({""title"":""Camille""}, {""year"":1})" +The Trail of the Lonesome Pine was directed by who?,"db.movies.find({""title"": ""The Trail of the Lonesome Pine""}, {""directors"": 1})" +what is the film Broadway Bill imdb rating?,"db.movies.find({""title"": ""Broadway Bill""}, {""imdb.rating"": 1})" +what was the release year of The Saphead?,"db.movies.find({""title"": ""The Saphead""}, {""year"": 1})" +who wrote the screenplay for the film Black Fury?,"db.movies.aggregate([ { ""$match"": { ""title"":""Black Fury""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +When was the information about the movie Twentieth Century last updated?,"db.movies.find({ ""title"": ""Twentieth Century"" }, { ""lastupdated"": 1})" +who was Trouble in Paradise written by?,"db.movies.find({""title"": ""Trouble in Paradise""}, {""writers"": 1})" +the film The Big Trail starred which actors?,"db.movies.find({""title"": ""The Big Trail""}, {""cast"": 1})" +who wrote the film The Ace of Hearts?,"db.movies.find({""title"": ""The Ace of Hearts""}, {""writers"": 1})" +what type of film is The Perils of Pauline?,"db.movies.find({""title"": ""The Perils of Pauline""}, {""genres"": 1})" +Can you provide me with a list of movies directed by Jean Renoir that were released in the 1990s?,"db.movies.find({""directors"": 'Jean Renoir', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +who starred in They Won't Forget?,"db.movies.find({""title"": ""They Won't Forget""}, {""cast"": 1})" +which person wrote the movie Frankenstein?,"db.movies.find({""title"": ""Frankenstein""}, {""writers"": 1})" +Has the movie A Story of Floating Weeds won any awards?,"db.movies.find({""title"":""A Story of Floating Weeds""}, {""awards.wins"":1})" +When was the information last updated for the movie The Circus ?,"db.movies.find({ ""title"": ""The Circus"" },{ ""lastupdated"": 1 })" +What type of media is Miss Lulu Bett?,"db.movies.find({ ""title"": ""Miss Lulu Bett"" }, { ""type"": 1})" +the film Make Way for Tomorrow starred who?,"db.movies.find({""title"": ""Make Way for Tomorrow""}, {""cast"": 1})" +How many reviews did the movie Metropolis receive on Rotten Tomatoes?,"db.movies.find({""title"":""Metropolis""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +what was the release year of the movie The Pearls of the Crown?,"db.movies.find({""title"": ""The Pearls of the Crown""}, {""year"": 1})" +What is the website associated with the movie Twentieth Century on Rotten Tomatoes?,"db.movies.find({""title"": ""Twentieth Century""}, {""tomatoes.website"": 1})" +Can you provide more information about the Rotten Tomatoes rating for the movie The Navigator?,"db.movies.find({""title"": ""The Navigator""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +which person wrote the film Cleopatra?,"db.movies.find({""title"": ""Cleopatra""}, {""writers"": 1})" +What is the Metacritic score of the movie The Lives of a Bengal Lancer ?,"db.movies.find({ ""title"": ""The Lives of a Bengal Lancer"" }, { ""metacritic"": 1})" +What is the audience rating of the movie The Crowd ?,"db.movies.find({ ""title"": ""The Crowd"" },{ ""tomatoes.viewer.rating"": 1 })" +What movie directed by Terrence Malick has the longest duration?,"db.movies.find({""directors"":""Terrence Malick""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +how many awards did Wild Oranges win?,"db.movies.find({""title"":""Wild Oranges""}, {""awards.wins"":1})" +How many reviews did the movie Romeo and Juliet receive on Rotten Tomatoes?,"db.movies.find({""title"":""Romeo and Juliet""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +What is the IMDb rating for Shall We Dance?,"db.movies.find({""title"": ""Shall We Dance""}, {""imdb.rating"": 1})" +"Has the film Wings won any awards? If so, which ones?","db.movies.find({""title"":""Wings"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What is the Metacritic score of the movie The Hunchback of Notre Dame ?,"db.movies.find({ ""title"": ""The Hunchback of Notre Dame"" }, { ""metacritic"": 1})" +What are the genres this movie Ella Cinders belongs to?,"db.movies.find({""title"":""Ella Cinders""}, {""genres"":1})" +What languages are spoken in the movie Zero for Conduct?,"db.movies.find({""title"":""Zero for Conduct""}, {""languages"":1})" +What is the box office revenue of the movie A Damsel in Distress in dollars?,"db.movies.find({""title"": ""A Damsel in Distress""}, {""tomatoes.boxOffice"": 1})" +In what year was the movie Dishonored released?,"db.movies.find({""title"":""Dishonored""}, {""year"":1})" +which person directed Tabu: A Story of the South Seas?,"db.movies.find({""title"": ""Tabu: A Story of the South Seas""}, {""directors"": 1})" +the movie Tarzan the Ape Man starred who?,"db.movies.find({""title"": ""Tarzan the Ape Man""}, {""cast"": 1})" +What is the cumulative duration of all the films that Jean-Luc Godard directed?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Jean-Luc Godard"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +Who are the actors that appear in the movie Carnival in Flanders ?,"db.movies.find({ ""title"": ""Carnival in Flanders"" },{ ""cast"": 1 })" +How many reviews did the movie The Fall of the House of Usher receive on Rotten Tomatoes?,"db.movies.find({""title"":""The Fall of the House of Usher""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +What movie directed by Jacques Rivette has the best Rotten Tomatoes score?,"db.movies.find({""directors"": ""Jacques Rivette"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +What are the highest-rated movies directed by Terrence Malick?,"db.movies.find({""directors"": 'Terrence Malick', ""imdb.rating"": {""$gt"": 8.5}})" +what was the release date of the film Bride of Frankenstein?,"db.movies.find({""title"": ""Bride of Frankenstein""}, {""released"": 1})" +When was the Tomatometer score and other Tomato-related information last updated for the movie China Seas?,"db.movies.find({""title"": ""China Seas""}, { ""tomatoes.lastUpdated"": 1})" +What is the IMDb rating for the film The Big Parade?,"db.movies.find({""title"": ""The Big Parade""}, {""imdb.rating"": 1})" +what was the release date of the movie For Heaven's Sake?,"db.movies.find({""title"": ""For Heaven's Sake""}, {""released"": 1})" +what was the genre of the movie Love Me Tonight?,"db.movies.find({""title"": ""Love Me Tonight""}, {""genres"": 1})" +what is Naughty Marietta description?,"db.movies.find({""title"": ""Naughty Marietta""}, {""plot"": 1})" +who produced the film Duck Soup?,"db.movies.find({""title"":""Duck Soup""}, {""tomatoes.production"":1})" +what year was Man with a Movie Camera released?,"db.movies.find({""title"": ""Man with a Movie Camera""}, {""year"": 1})" +who's the director of The Jazz Singer?,"db.movies.find({""title"": ""The Jazz Singer""}, {""directors"": 1})" +what genre of film is Upstream?,"db.movies.find({""title"": ""Upstream""}, {""genres"": 1})" +What is the IMDb rating for the movie Toni?,"db.movies.find({""title"": ""Toni""}, {""imdb.rating"": 1})" +Could you tell me the total runtime of all Francis Ford Coppola movies he has directed?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Francis Ford Coppola"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +Can you provide me with a list of Francois Truffaut-directed movies with the highest ratings?,"db.movies.find({""directors"": 'Francois Truffaut', ""imdb.rating"": {""$gt"": 8.5}})" +How many reviews have been submitted by critics for the movie Wonder Bar ?,"db.movies.find({""title"": ""Wonder Bar""}, {""tomatoes.critic.numReviews"": 1})" +what is the film Three Little Pigs description ?,"db.movies.find({""title"": ""Three Little Pigs""}, {""plot"": 1})" +Can you tell me the total count of films that David Fincher has directed?,"db.movies.countDocuments({""directors"":""David Fincher""})" +what sort of film is Tarzan and His Mate?,"db.movies.find({""title"": ""Tarzan and His Mate""}, {""genres"": 1})" +how has China Seas been recieved by critics and audience?,"db.movies.find({""title"":""China Seas""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +who is listed as director for Morocco?,"db.movies.find({""title"": ""Morocco""}, {""directors"": 1})" +Could you inform me of the genres of films that Akira Kurosawa has directed?,"db.movies.distinct(""genres"", { ""directors"": ""Akira Kurosawa"" })" +who was the movie Earth written by?,"db.movies.find({""title"": ""Earth""}, {""writers"": 1})" +who acted in the movie The Life of Emile Zola?,"db.movies.find({""title"": ""The Life of Emile Zola""}, {""cast"": 1})" +What is the production company of the movie Movie Crazy?,"db.movies.find({""title"":""Movie Crazy""}, {""tomatoes.production"":1})" +When was the movie She released?,"db.movies.find({""title"":""She""}, {""released"":1})" +What is the production company behind the movie Scrooge ?,"db.movies.find({""title"": ""Scrooge""}, {""tomatoes.production"": 1})" +who was the writer of Asphalt?,"db.movies.find({""title"": ""Asphalt""}, {""writers"": 1})" +Which types of movies has Clint Eastwood directed?,"db.movies.distinct(""genres"", { ""directors"": ""Clint Eastwood"" })" +Can you give me a brief summary of the movie The Invisible Man plot?,"db.movies.find({""title"":""The Invisible Man""}, {""plot"":1})" +When was the Tomatometer score and other Tomato-related information last updated for the movie Sherlock Jr.?,"db.movies.find({""title"": ""Sherlock Jr.""}, { ""tomatoes.lastUpdated"": 1})" +who is the author of Popeye the Sailor Meets Sindbad the Sailor?,"db.movies.find({""title"": ""Popeye the Sailor Meets Sindbad the Sailor""}, {""writers"": 1})" +how many awards did Anna Karenina win?,"db.movies.find({""title"":""Anna Karenina""}, {""awards.wins"":1})" +Could you tell me which Alfred Hitchcock-directed film has the longest running time?,"db.movies.find({""directors"":""Alfred Hitchcock""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +Which Kenji Mizoguchi film has the shortest duration?,"db.movies.find({""directors"":""Kenji Mizoguchi""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +What is the production company of the movie The Docks of New York?,"db.movies.find({""title"":""The Docks of New York""}, {""tomatoes.production"":1})" +how has Sons of the Desert been recieved by critics and audience?,"db.movies.find({""title"":""Sons of the Desert""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +who are the actors in The Son of Kong?,"db.movies.find({""title"": ""The Son of Kong""}, {""cast"": 1})" +what type of movie is Night Must Fall?,"db.movies.find({""title"": ""Night Must Fall""}, {""genres"": 1})" +Which Gus Van Sant film has the shortest duration?,"db.movies.find({""directors"":""Gus Van Sant""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +Which actor has the most frequent appearances in Alain Resnais's directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Alain Resnais"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +which company produced the film A Story of Floating Weeds?,"db.movies.find({""title"":""A Story of Floating Weeds""}, {""tomatoes.production"":1})" +what kind of film is He Who Gets Slapped?,"db.movies.find({""title"": ""He Who Gets Slapped""}, {""genres"": 1})" +who wrote the film Now or Never?,"db.movies.find({""title"": ""Now or Never""}, {""writers"": 1})" +What is the runtime of the movie The Sin of Madelon Claudet ?,"db.movies.find({""title"": ""The Sin of Madelon Claudet""}, { ""runtime"": 1})" +What is the running time of State Fair?,"db.movies.find({""title"":""State Fair""}, {""runtime"":1})" +Can you provide more information about the IMDb rating for the movie Gold Diggers of 1933 ?,"db.movies.find({""title"":""Gold Diggers of 1933""}, {""imdb"":1})" +who was the movie Going Hollywood written by?,"db.movies.find({""title"": ""Going Hollywood""}, {""writers"": 1})" +what is the plot for The Broadway Melody?,"db.movies.find({""title"": ""The Broadway Melody""}, {""plot"": 1})" +What is the IMDb rating for the film Scarface?,"db.movies.find({""title"": ""Scarface""}, {""imdb.rating"": 1})" +What is the viewer rating for the movie The Cameraman on Rotten Tomatoes?,"db.movies.find({""title"":""The Cameraman""}, {""tomatoes.viewer.rating"":1})" +How does the movie Naughty Marietta rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Naughty Marietta"" },{ ""tomatoes.critic.meter"": 1 })" +who acted in the film Folies Bergère de Paris?,"db.movies.find({""title"": ""Folies Bergère de Paris""}, {""cast"": 1})" +what genre of film is The Invisible Ray?,"db.movies.find({""title"": ""The Invisible Ray""}, {""genres"": 1})" +What is the viewer rating for the movie Kid Galahad on Rotten Tomatoes?,"db.movies.find({""title"":""Kid Galahad""}, {""tomatoes.viewer.rating"":1})" +How does the movie Street Angel rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Street Angel"" },{ ""tomatoes.critic.meter"": 1 })" +In what year was the movie The Invisible Man released ?,"db.movies.find({ ""title"": ""The Invisible Man"" }, { ""year"": 1})" +who are the actors in Show People?,"db.movies.find({""title"": ""Show People""}, {""cast"": 1})" +Was the movie The Red Head well received by audiences and critics?,"db.movies.find({""title"":""The Red Head""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +who starred in the film Steamboat Willie?,"db.movies.find({""title"": ""Steamboat Willie""}, {""cast"": 1})" +Can you provide more information about the Rotten Tomatoes rating for the movie The Birth of a Nation?,"db.movies.find({""title"": ""The Birth of a Nation""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +what sort of movie is Under the Roofs of Paris?,"db.movies.find({""title"": ""Under the Roofs of Paris""}, {""genres"": 1})" +who was the writer of the film Safety Last!?,"db.movies.find({""title"": ""Safety Last!""}, {""writers"": 1})" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie Show People ?,"db.movies.find({""title"":""Show People""}, {""tomatoes.viewer.meter"":1})" +who is the writer of the film The Edge of the World?,"db.movies.find({""title"": ""The Edge of the World""}, {""writers"": 1})" +what is David Copperfield about in details?,"db.movies.find({""title"": ""David Copperfield""}, {""fullplot"": 1})" +Who is the lead actor of the movie The Trail of the Lonesome Pine ?,"db.movies.find({""title"": ""The Trail of the Lonesome Pine""}, {""cast"":{""$slice"": 1},""title"":1})" +What languages are spoken in the movie Marked Woman ?,"db.movies.find({""title"": ""Marked Woman""}, { ""languages"": 1})" +In what year was the movie The Son of Kong released ?,"db.movies.find({ ""title"": ""The Son of Kong"" }, { ""year"": 1})" +which company produced the film Red Dust?,"db.movies.find({""title"":""Red Dust""}, {""tomatoes.production"":1})" +who was the writer of Sisters of the Gion?,"db.movies.find({""title"": ""Sisters of the Gion""}, {""writers"": 1})" +who starred in the film Lost Horizon?,"db.movies.find({""title"": ""Lost Horizon""}, {""cast"": 1})" +What is the critical reception of the movie Love Me Tonight?,"db.movies.find({""title"":""Love Me Tonight""}, {""tomatoes.critic"":1})" +What is the running time of the movie Fury?,"db.movies.find({""title"":""Fury""}, {""runtime"":1})" +What is the IMDb rating for the movie Dodsworth?,"db.movies.find({""title"": ""Dodsworth""}, {""imdb.rating"": 1})" +What is the language of the film Murders in the Rue Morgue?,"db.movies.find({""title"":""Murders in the Rue Morgue""}, {""languages"":1})" +who acted in the film Forbidden?,"db.movies.find({""title"": ""Forbidden""}, {""cast"": 1})" +In what year was the movie Der Kaiser von Kalifornien released ?,"db.movies.find({ ""title"": ""Der Kaiser von Kalifornien"" }, { ""year"": 1})" +How many reviews have been submitted by critics for the movie Pèpè le Moko?,"db.movies.find({ ""title"": ""Pèpè le Moko"" }, { ""tomatoes.critic.numReviews"": 1 })" +When was the information last updated for the movie The Informer ?,"db.movies.find({ ""title"": ""The Informer"" },{ ""lastupdated"": 1 })" +"In the 1990s, which movies were directed by Ridley Scott and released?","db.movies.find({""directors"": 'Ridley Scott', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +What is the movie Masquerade in Vienna about? Can you provide a brief summary?,"db.movies.find({""title"":""Masquerade in Vienna""}, {""plot"":1})" +From Hand to Mouth was directed by who?,"db.movies.find({""title"": ""From Hand to Mouth""}, {""directors"": 1})" +What is the chief film category that Darren Aronofsky's directed movies are classified under?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Darren Aronofsky"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What are the top-rated movies directed by Martin Scorsese?,"db.movies.find({""directors"": 'Martin Scorsese', ""imdb.rating"": {""$gt"": 8.5}})" +What are the genres this movie Romeo and Juliet belongs to?,"db.movies.find({""title"":""Romeo and Juliet""}, {""genres"":1})" +how many awards did the movie Love Me Tonight win?,"db.movies.find({""title"":""Love Me Tonight""}, {""awards.wins"":1})" +Who is the lead actor of the movie Regeneration ?,"db.movies.find({""title"": ""Regeneration""}, {""cast"":{""$slice"": 1},""title"":1})" +Who are the actors that appear in the movie Mary of Scotland ?,"db.movies.find({ ""title"": ""Mary of Scotland"" },{ ""cast"": 1 })" +what is the movie A Night at the Opera about in details?,"db.movies.find({""title"": ""A Night at the Opera""}, {""fullplot"": 1})" +In what language was the movie Grass: A Nation's Battle for Life released?,"db.movies.find({ ""title"": ""Grass: A Nation's Battle for Life"" }, { ""languages"": 1})" +what is the full plot for The Birth of a Nation?,"db.movies.find({""title"": ""The Birth of a Nation""}, {""fullplot"": 1})" +what genre of film is Chapayev?,"db.movies.find({""title"": ""Chapayev""}, {""genres"": 1})" +What is the runtime and rating for the movie 'Queen Kelly'?,"db.movies.find({""title"": ""Queen Kelly""}, {""runtime"": 1, ""rated"": 1})" +What is the percentage of positive reviews among critics for the movie Greed ?,"db.movies.find({ ""title"": ""Greed"" },{ ""tomatoes.critic.meter"": 1 })" +What is the text description of the movie Four Sons awards?,"db.movies.find({""title"":""Four Sons""}, {""awards.text"":1})" +who is the author of Zoo in Budapest?,"db.movies.find({""title"": ""Zoo in Budapest""}, {""writers"": 1})" +which company produced the film The Green Pastures?,"db.movies.find({""title"":""The Green Pastures""}, {""tomatoes.production"":1})" +What is the running time of the film Camille?,"db.movies.find({""title"":""Camille""}, {""runtime"":1})" +What type of movie is Make Way for Tomorrow ?,"db.movies.find({""title"":""Make Way for Tomorrow""}, {""genres"":1})" +Who are the main actors in The Garden of Allah ?,"db.movies.find({ ""title"": ""The Garden of Allah"" }, { ""cast"": 1})" +Which cinematic productions were directed by Ethan Coen?,"db.movies.find({""directors"": ""Ethan Coen""},{""title"":1})" +What is the name of the Federico Fellini-directed movie with the briefest runtime?,"db.movies.find({""directors"":""Federico Fellini""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +the film The Divorcee was directed by who?,"db.movies.find({""title"": ""The Divorcee""}, {""directors"": 1})" +What languages are spoken in the movie Tol'able David ?,"db.movies.find({""title"": ""Tol'able David""}, { ""languages"": 1})" +What languages are spoken in the movie Duck Soup?,"db.movies.find({""title"":""Duck Soup""}, {""languages"":1})" +When was the information about the movie The Last of the Mohicans last updated?,"db.movies.find({ ""title"": ""The Last of the Mohicans"" }, { ""lastupdated"": 1})" +What is the movie Lloyd's of London rating?,"db.movies.find({""title"":""Lloyd's of London""}, {""rated"":1})" +Intolerance: Love's Struggle Throughout the Ages is written by this person?,"db.movies.find({""title"": ""Intolerance: Love's Struggle Throughout the Ages""}, {""writers"": 1})" +What is the MPAA rating of Wild Boys of the Road?,"db.movies.find({""title"":""Wild Boys of the Road""}, {""rated"":1})" +who stars in the film Foolish Wives?,"db.movies.find({""title"": ""Foolish Wives""}, {""cast"": 1})" +Has the movie The Mummy won any awards?,"db.movies.find({""title"":""The Mummy""}, {""awards.wins"":1})" +How many reviews have been submitted by critics for the movie The Last of the Mohicans ?,"db.movies.find({""title"": ""The Last of the Mohicans""}, {""tomatoes.critic.numReviews"": 1})" +What is the average score assigned to all Jacques Rivette movies in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Jacques Rivette""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +who was the writer of the movie City Streets?,"db.movies.find({""title"": ""City Streets""}, {""writers"": 1})" +who starred in the movie Berkeley Square?,"db.movies.find({""title"": ""Berkeley Square""}, {""cast"": 1})" +Morocco is written by this person?,"db.movies.find({""title"": ""Morocco""}, {""writers"": 1})" +who starred in the movie The Front Page?,"db.movies.find({""title"": ""The Front Page""}, {""cast"": 1})" +what was the release year of the movie He Who Gets Slapped?,"db.movies.find({""title"": ""He Who Gets Slapped""}, {""year"": 1})" +What is the text representation of the awards won and nominations received by the movie The Garden of Allah?,"db.movies.find({""title"": ""The Garden of Allah""}, { ""awards.text"": 1})" +"Has the film Mayerling won any awards? If so, which ones?","db.movies.find({""title"":""Mayerling"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +the film Lloyd's of London starred which actors?,"db.movies.find({""title"": ""Lloyd's of London""}, {""cast"": 1})" +I'm curious about the films that were directed by Pedro Almodovar. Can you name them?,"db.movies.find({""directors"": ""Pedro Almodovar""},{""title"":1})" +What is the website associated with the movie The World Moves On on Rotten Tomatoes?,"db.movies.find({""title"": ""The World Moves On""}, {""tomatoes.website"": 1})" +what was the release year of City Streets?,"db.movies.find({""title"": ""City Streets""}, {""year"": 1})" +the film The Story of a Cheat starred who?,"db.movies.find({""title"": ""The Story of a Cheat""}, {""cast"": 1})" +who stars in The Public Enemy?,"db.movies.find({""title"": ""The Public Enemy""}, {""cast"": 1})" +who wrote the film Naughty Marietta?,"db.movies.find({""title"": ""Naughty Marietta""}, {""writers"": 1})" +How many reviews have been submitted for the movie Everybody's Woman on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Everybody's Woman"" },{ ""tomatoes.viewer.numReviews"": 1 })" +What are the countries associated with the movie The Private Life of Don Juan ?,"db.movies.find({""title"": ""The Private Life of Don Juan""}, {""countries"": 1})" +who stars in the film The Passion of Joan of Arc?,"db.movies.find({""title"": ""The Passion of Joan of Arc""}, {""cast"": 1})" +Can you provide a longer version of the movie The Blue Bird plot?,"db.movies.find({""title"":""The Blue Bird""}, {""fullplot"":1})" +what was the release year of Going Hollywood?,"db.movies.find({""title"": ""Going Hollywood""}, {""year"": 1})" +who wrote the film Gold Diggers of 1935?,"db.movies.find({""title"": ""Gold Diggers of 1935""}, {""writers"": 1})" +what is the plot for A Corner in Wheat?,"db.movies.find({""title"": ""A Corner in Wheat""}, {""plot"": 1})" +which company produced the movie In Old Arizona?,"db.movies.find({""title"":""In Old Arizona""}, {""tomatoes.production"":1})" +which company produced the movie Within Our Gates?,"db.movies.find({""title"":""Within Our Gates""}, {""tomatoes.production"":1})" +What is the IMDb rating for the movie Three Ages?,"db.movies.find({""title"": ""Three Ages""}, {""imdb.rating"": 1})" +What is the language of the movie Little Miss Marker?,"db.movies.find({""title"":""Little Miss Marker""}, {""languages"":1})" +what was the release date of the film College?,"db.movies.find({""title"": ""College""}, {""released"": 1})" +What is the website associated with the movie Two Seconds on Rotten Tomatoes?,"db.movies.find({""title"": ""Two Seconds""}, {""tomatoes.website"": 1})" +what type of movie is A Midsummer Night's Dream?,"db.movies.find({""title"": ""A Midsummer Night's Dream""}, {""genres"": 1})" +Eric Rohmer directed which films in the 1990s?,"db.movies.find({""directors"": 'Eric Rohmer', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +who is the director that directed The Charge of the Light Brigade?,"db.movies.find({""title"": ""The Charge of the Light Brigade""}, {""directors"": 1})" +What is the language of the film Gold Diggers of 1933?,"db.movies.find({""title"":""Gold Diggers of 1933""}, {""languages"":1})" +what was the release year of the movie Men Without Women?,"db.movies.find({""title"": ""Men Without Women""}, {""year"": 1})" +How many viewer reviews did the movie The Divorcee receive on Rotten Tomatoes?,"db.movies.find({""title"":""The Divorcee""}, {""tomatoes.viewer.numReviews"":1})" +what was the release date of the film The Blue Bird?,"db.movies.find({""title"": ""The Blue Bird""}, {""released"": 1})" +How many awards did the movie win L'opèra de quat'sous ?,"db.movies.find({ ""title"": ""L'opèra de quat'sous"" },{ ""awards.wins"": 1 })" +what kind of movie is Children in the Wind?,"db.movies.find({""title"": ""Children in the Wind""}, {""genres"": 1})" +who stars in Curly Top?,"db.movies.find({""title"": ""Curly Top""}, {""cast"": 1})" +How many viewer reviews did the movie The Spanish Earth receive on Rotten Tomatoes?,"db.movies.find({""title"":""The Spanish Earth""}, {""tomatoes.viewer.numReviews"":1})" +the film Baby Face starred who?,"db.movies.find({""title"": ""Baby Face""}, {""cast"": 1})" +Can you provide a detailed summary of the movie The Awful Truth plot?,"db.movies.find({ ""title"": ""The Awful Truth"" }, { ""fullplot"": 1})" +who is the director that directed The Ace of Hearts?,"db.movies.find({""title"": ""The Ace of Hearts""}, {""directors"": 1})" +which company produced the film Popeye the Sailor Meets Sindbad the Sailor?,"db.movies.find({""title"":""Popeye the Sailor Meets Sindbad the Sailor""}, {""tomatoes.production"":1})" +"Has the film The Band Concert won any awards? If so, which ones?","db.movies.find({""title"":""The Band Concert"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +who is the author of The Crowd?,"db.movies.find({""title"": ""The Crowd""}, {""writers"": 1})" +What is the website associated with the movie The Kid on Rotten Tomatoes?,"db.movies.find({""title"": ""The Kid""}, {""tomatoes.website"": 1})" +In what language was the movie Final Accord released?,"db.movies.find({ ""title"": ""Final Accord"" }, { ""languages"": 1})" +what was the genre of David Golder?,"db.movies.find({""title"": ""David Golder""}, {""genres"": 1})" +who was the writer of the film The Phantom of the Opera?,"db.movies.find({""title"": ""The Phantom of the Opera""}, {""writers"": 1})" +who acted in the film Regeneration?,"db.movies.find({""title"": ""Regeneration""}, {""cast"": 1})" +How many wins did the movie Upstream receive?,"db.movies.find({""title"":""Upstream""}, {""awards.wins"":1})" +Which movies from the 1990s were directed by Clint Eastwood?,"db.movies.find({""directors"": 'Clint Eastwood', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +Can you provide a detailed summary of the movie Scrooge plot?,"db.movies.find({ ""title"": ""Scrooge"" }, { ""fullplot"": 1})" +which company produced The Lost World?,"db.movies.find({""title"":""The Lost World""}, {""tomatoes.production"":1})" +what was the genre of the movie A Damsel in Distress?,"db.movies.find({""title"": ""A Damsel in Distress""}, {""genres"": 1})" +how many awards did Nanook of the North win?,"db.movies.find({""title"":""Nanook of the North""}, {""awards.wins"":1})" +"what is the genre for the film Laugh, Clown, Laugh?","db.movies.find({""title"": ""Laugh, Clown, Laugh""}, {""genres"": 1})" +How did the audience and critics receive The Ghost Goes West?,"db.movies.find({""title"":""The Ghost Goes West""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +When was the information about the movie Love Me Tonight last updated?,"db.movies.find({ ""title"": ""Love Me Tonight"" }, { ""lastupdated"": 1})" +what is Morocco description?,"db.movies.find({""title"": ""Morocco""}, {""plot"": 1})" +How many nominations did the movie Three Smart Girls receive?,"db.movies.find({""title"":""Three Smart Girls""}, {""awards.nominations"":1})" +How many reviews have been submitted by critics for the movie The Kid ?,"db.movies.find({""title"": ""The Kid""}, {""tomatoes.critic.numReviews"": 1})" +What are the top-rated movies directed by Jean Renoir?,"db.movies.find({""directors"": 'Jean Renoir', ""imdb.rating"": {""$gt"": 8.5}})" +how many awards did The Music Box win?,"db.movies.find({""title"":""The Music Box""}, {""awards.wins"":1})" +how many awards did the movie Under the Roofs of Paris win?,"db.movies.find({""title"":""Under the Roofs of Paris""}, {""awards.wins"":1})" +what kind of movie is Regeneration?,"db.movies.find({""title"": ""Regeneration""}, {""genres"": 1})" +Which film directed by Jacques Rivette has the longest running time?,"db.movies.find({""directors"":""Jacques Rivette""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +Who is the lead actor of the movie White Shadows ?,"db.movies.find({""title"": ""White Shadows""}, {""cast"":{""$slice"": 1},""title"":1})" +What is the running time of the movie A Story of Floating Weeds?,"db.movies.find({""title"":""A Story of Floating Weeds""}, {""runtime"":1})" +What is the text description of the movie Robin Hood awards?,"db.movies.find({""title"":""Robin Hood""}, {""awards.text"":1})" +who stars in The Invisible Ray?,"db.movies.find({""title"": ""The Invisible Ray""}, {""cast"": 1})" +What is the production company behind the movie Pandora's Box ?,"db.movies.find({""title"": ""Pandora's Box""}, {""tomatoes.production"": 1})" +What is the box office revenue of the movie The Lost World in dollars?,"db.movies.find({""title"": ""The Lost World""}, {""tomatoes.boxOffice"": 1})" +the director of Naughty Marietta was?,"db.movies.find({""title"": ""Naughty Marietta""}, {""directors"": 1})" +who is the author of Mary of Scotland?,"db.movies.find({""title"": ""Mary of Scotland""}, {""writers"": 1})" +What are the countries associated with the movie Camille ?,"db.movies.find({""title"": ""Camille""}, {""countries"": 1})" +What is the MPAA rating of Miss Lulu Bett?,"db.movies.find({""title"":""Miss Lulu Bett""}, {""rated"":1})" +What is the MPAA rating of the movie Kid Galahad?,"db.movies.find({""title"":""Kid Galahad""}, {""rated"":1})" +the film The Garden of Allah starred which actors?,"db.movies.find({""title"": ""The Garden of Allah""}, {""cast"": 1})" +Can you name the movie genres that Andrei Tarkovsky has directed?,"db.movies.distinct(""genres"", { ""directors"": ""Andrei Tarkovsky"" })" +Who are the actors in the movie A Corner in Wheat?,"db.movies.find({""title"":""A Corner in Wheat""}, {""cast"":1})" +"How long is the movie Steamboat Bill, Jr. in minutes?","db.movies.find({""title"":""Steamboat Bill, Jr.""}, {""runtime"":1})" +Which of Andrei Tarkovsky's directed films has the briefest duration?,"db.movies.find({""directors"":""Andrei Tarkovsky""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +who produced the movie The Informer?,"db.movies.find({""title"":""The Informer""}, {""tomatoes.production"":1})" +How did the audience and critics receive Lloyd's of London?,"db.movies.find({""title"":""Lloyd's of London""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +"A Free Soul, is written by who?","db.movies.find({""title"": ""A Free Soul""}, {""writers"": 1})" +Who are the actors in the movie The Count of Monte Cristo?,"db.movies.find({""title"":""The Count of Monte Cristo""}, {""cast"":1})" +what sort of film is The Four Horsemen of the Apocalypse?,"db.movies.find({""title"": ""The Four Horsemen of the Apocalypse""}, {""genres"": 1})" +which person wrote the movie The Ghost Goes West?,"db.movies.find({""title"": ""The Ghost Goes West""}, {""writers"": 1})" +What is the movie Asphalt about? Can you provide a brief summary?,"db.movies.find({""title"":""Asphalt""}, {""plot"":1})" +What are the names of all the actors who starred in the movie 'The Immigrant'?,"db.movies.find({""title"": ""The Immigrant""}, {""cast"": 1})" +What is the percentage of positive reviews among critics for the movie The Thin Man ?,"db.movies.find({ ""title"": ""The Thin Man"" },{ ""tomatoes.critic.meter"": 1 })" +What is the name of the director and cast for the movie 'The Prisoner of Shark Island'?,"db.movies.find({""title"": ""The Prisoner of Shark Island""}, {""directors"": 1, ""cast"": 1, ""_id"": 0})" +"Has Show Boat won any awards? If so, which ones?","db.movies.find({""title"":""Show Boat"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +How many viewer reviews did the movie The Lower Depths receive on Rotten Tomatoes?,"db.movies.find({""title"":""The Lower Depths""}, {""tomatoes.viewer.numReviews"":1})" +the movie The Fall of the House of Usher was directed by who?,"db.movies.find({""title"": ""The Fall of the House of Usher""}, {""directors"": 1})" +How many audience reviews have been submitted for the movie Captains Courageous?,"db.movies.find({ ""title"": ""Captains Courageous"" }, { ""tomatoes.viewer.numReviews"": 1 })" +Can you provide more information about the Rotten Tomatoes rating for the movie Flesh and the Devil?,"db.movies.find({""title"": ""Flesh and the Devil""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +What is the MPAA rating of the movie Harvest?,"db.movies.find({""title"":""Harvest""}, {""rated"":1})" +Was the movie Bad Girl well received by audiences and critics?,"db.movies.find({""title"":""Bad Girl""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what is the full plot for the film The Kid Brother?,"db.movies.find({""title"": ""The Kid Brother""}, {""fullplot"": 1})" +"Has the movie The Spanish Earth won any awards? If so, which ones?","db.movies.find({""title"":""The Spanish Earth"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What is the rating of the movie Greed on IMDb?,"db.movies.find({""title"":""Greed""}, {""imdb.rating"":1})" +How many viewer reviews did the movie Cops receive on Rotten Tomatoes?,"db.movies.find({""title"":""Cops""}, {""tomatoes.viewer.numReviews"":1})" +In what language was the movie The Strong Man released?,"db.movies.find({ ""title"": ""The Strong Man"" }, { ""languages"": 1})" +what is the film Mutiny on the Bounty about?,"db.movies.find({""title"": ""Mutiny on the Bounty""}, {""plot"": 1})" +"In movies directed by Robert Bresson, which actor has the highest number of performances?","db.movies.aggregate([ { ""$match"": { ""directors"": ""Robert Bresson"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +who stars in the movie Romeo and Juliet?,"db.movies.find({""title"": ""Romeo and Juliet""}, {""cast"": 1})" +what was the genre of The Trail of the Lonesome Pine?,"db.movies.find({""title"": ""The Trail of the Lonesome Pine""}, {""genres"": 1})" +What are the names of the films that were directed by Jean-Pierre Melville and released in the 1990s?,"db.movies.find({""directors"": 'Jean-Pierre Melville', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +"In the database, what is the usual rating given to Claude Chabrol's movies on average?","db.movies.aggregate([{""$match"": {""directors"":""Claude Chabrol""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +What are the films directed by Stanley Kubrick?,"db.movies.find({""directors"": ""Stanley Kubrick""},{""title"":1})" +Who are the actors in the movie Man with a Movie Camera?,"db.movies.find({""title"":""Man with a Movie Camera""}, {""cast"":1})" +which company produced the film Secret Agent?,"db.movies.find({""title"":""Secret Agent""}, {""tomatoes.production"":1})" +what is the plot for It Happened One Night?,"db.movies.find({""title"": ""It Happened One Night""}, {""plot"": 1})" +What is the IMDb rating for the movie Storm Over Asia?,"db.movies.find({""title"": ""Storm Over Asia""}, {""imdb.rating"": 1})" +What is the production company of Naughty Marietta?,"db.movies.find({""title"":""Naughty Marietta""}, {""tomatoes.production"":1})" +What is the viewer rating for the movie Battleship Potemkin on Rotten Tomatoes?,"db.movies.find({""title"":""Battleship Potemkin""}, {""tomatoes.viewer.rating"":1})" +How did the audience and critics receive Curly Top?,"db.movies.find({""title"":""Curly Top""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what year was Skippy released?,"db.movies.find({""title"": ""Skippy""}, {""year"": 1})" +What is the IMDb ID for the movie The Blue Light?,"db.movies.find({""title"":""The Blue Light""}, {""imdb.id"":1})" +What is the production company behind the movie x?,"db.movies.find({""title"": ""Swedenhielms Family""}, { ""tomatoes.production"": 1})" +who directed The Power and the Glory?,"db.movies.find({""title"": ""The Power and the Glory""}, {""directors"": 1})" +what genre of movie is Wild and Woolly?,"db.movies.find({""title"": ""Wild and Woolly""}, {""genres"": 1})" +Can you provide a longer version of the movie The Awful Truth plot?,"db.movies.find({""title"":""The Awful Truth""}, {""fullplot"":1})" +who starred in Gertie the Dinosaur?,"db.movies.find({""title"": ""Gertie the Dinosaur""}, {""cast"": 1})" +What is the website associated with the movie The Pearls of the Crown on Rotten Tomatoes?,"db.movies.find({""title"": ""The Pearls of the Crown""}, {""tomatoes.website"": 1})" +In what year was the movie Elephant Boy released ?,"db.movies.find({ ""title"": ""Elephant Boy"" }, { ""year"": 1})" +"the movie Scarface, was written by who?","db.movies.find({""title"": ""Scarface""}, {""writers"": 1})" +How many votes did the movie The Wind receive on IMDB?,"db.movies.find({""title"": ""The Wind""}, { ""imdb.votes"": 1})" +who is the writer of the movie The Divine Lady?,"db.movies.find({""title"": ""The Divine Lady""}, {""writers"": 1})" +What are the countries associated with the movie Three Little Pigs ?,"db.movies.find({""title"": ""Three Little Pigs""}, {""countries"": 1})" +what is the movie The Pearls of the Crown imdb rating?,"db.movies.find({""title"": ""The Pearls of the Crown""}, {""imdb.rating"": 1})" +what is the full plot for Murders in the Rue Morgue?,"db.movies.find({""title"": ""Murders in the Rue Morgue""}, {""fullplot"": 1})" +who wrote the screenplay for the movie 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"" } } } } } }])" +Gold Diggers of 1933 is a movie written by this person?,"db.movies.find({""title"": ""Gold Diggers of 1933""}, {""writers"": 1})" +What is the percentage of positive reviews among critics for the movie Swing Time ?,"db.movies.find({ ""title"": ""Swing Time"" },{ ""tomatoes.critic.meter"": 1 })" +what was the release date of Flying Down to Rio?,"db.movies.find({""title"": ""Flying Down to Rio""}, {""released"": 1})" +which person wrote They Won't Forget?,"db.movies.find({""title"": ""They Won't Forget""}, {""writers"": 1})" +How does the movie The Devil Is a Woman rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""The Devil Is a Woman"" },{ ""tomatoes.critic.meter"": 1 })" +the film He Who Gets Slapped starred who?,"db.movies.find({""title"": ""He Who Gets Slapped""}, {""cast"": 1})" +what is the genre for the movie Tarzan and His Mate?,"db.movies.find({""title"": ""Tarzan and His Mate""}, {""genres"": 1})" +the movie Chapayev starred which actors?,"db.movies.find({""title"": ""Chapayev""}, {""cast"": 1})" +who wrote the screenplay for I Am a Fugitive from a Chain Gang?,"db.movies.aggregate([ { ""$match"": { ""title"":""I Am a Fugitive from a Chain Gang""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +How many nominations did the movie Traffic in Souls receive?,"db.movies.find({""title"":""Traffic in Souls""}, {""awards.nominations"":1})" +In which genre do the movies directed by Pedro Almodovar mainly fall under?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Pedro Almodovar"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What is the audience rating of the movie The Charge of the Light Brigade ?,"db.movies.find({ ""title"": ""The Charge of the Light Brigade"" },{ ""tomatoes.viewer.rating"": 1 })" +Who are the main actors/actresses in the movie Battleship Potemkin?,"db.movies.find({""title"":""Battleship Potemkin""}, {""cast"":1})" +the movie The Gay Divorcee starred which actors?,"db.movies.find({""title"": ""The Gay Divorcee""}, {""cast"": 1})" +"the movie Les Misèrables, was written by who?","db.movies.find({""title"": ""Les Misèrables""}, {""writers"": 1})" +Could you tell me the typical rating of Christopher Nolan movies in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Christopher Nolan""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +what type of film is Baby Face?,"db.movies.find({""title"": ""Baby Face""}, {""genres"": 1})" +What is the meter score of the movie Napoleon according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Napoleon""}, {""tomatoes.viewer.meter"": 1})" +Which Gus Van Sant-directed movie has the highest score on Rotten Tomatoes?,"db.movies.find({""directors"": ""Gus Van Sant"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +what genre is the movie The Mummy?,"db.movies.find({""title"": ""The Mummy""}, {""genres"": 1})" +What is the IMDb rating for Tarzan and His Mate?,"db.movies.find({""title"": ""Tarzan and His Mate""}, {""imdb.rating"": 1})" +"Has the film Twentieth Century won any awards? If so, which ones?","db.movies.find({""title"":""Twentieth Century"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +who starred in the film The Crowd?,"db.movies.find({""title"": ""The Crowd""}, {""cast"": 1})" +Who are the actors in the movie Metropolis?,"db.movies.find({""title"":""Metropolis""}, {""cast"":1})" +What is the Tomatometer score of the movie Battleship Potemkin ?,"db.movies.find({ ""title"": ""Battleship Potemkin"" },{ ""tomatoes.critic.meter"": 1 })" +What is the movie Bride of Frankenstein about? Can you provide a brief summary?,"db.movies.find({""title"":""Bride of Frankenstein""}, {""plot"":1})" +what is the film Freaks about in details?,"db.movies.find({""title"": ""Freaks""}, {""fullplot"": 1})" +what sort of movie is The Public Enemy?,"db.movies.find({""title"": ""The Public Enemy""}, {""genres"": 1})" +Can you provide a detailed summary of the movie Four Sons plot?,"db.movies.find({ ""title"": ""Four Sons"" }, { ""fullplot"": 1})" +In what year was the movie Dracula released ?,"db.movies.find({ ""title"": ""Dracula"" }, { ""year"": 1})" +In what year was the movie The New Gulliver released?,"db.movies.find({""title"":""The New Gulliver""}, {""year"":1})" +What is the viewer rating for the movie Wild Boys of the Road on Rotten Tomatoes?,"db.movies.find({""title"":""Wild Boys of the Road""}, {""tomatoes.viewer.rating"":1})" +which company produced the movie They Won't Forget?,"db.movies.find({""title"":""They Won't Forget""}, {""tomatoes.production"":1})" +What is the MPAA rating of The Big Parade?,"db.movies.find({""title"":""The Big Parade""}, {""rated"":1})" +What is the box office revenue for the movie 'Mutiny on the Bounty'?,"db.movies.find({""title"": ""Mutiny on the Bounty""}, {""tomatoes.boxOffice"": 1})" +Who are the writers of the movie The Music Box ?,"db.movies.find({""title"": ""The Music Box""}, { ""writers"": 1})" +Who are the actors in the movie King Solomon's Mines?,"db.movies.find({""title"":""King Solomon's Mines""}, {""cast"":1})" +who is the author of For Heaven's Sake?,"db.movies.find({""title"": ""For Heaven's Sake""}, {""writers"": 1})" +What is the ID of the movie Camille on IMDB?,"db.movies.find({""title"": ""Camille""}, {""imdb.id"": 1})" +the movie Men Without Women starred which actors?,"db.movies.find({""title"": ""Men Without Women""}, {""cast"": 1})" +what is the genre of The Story of Louis Pasteur?,"db.movies.find({""title"": ""The Story of Louis Pasteur""}, {""genres"": 1})" +what is the full plot for The Last of the Mohicans?,"db.movies.find({""title"": ""The Last of the Mohicans""}, {""fullplot"": 1})" +Forbidden is a movie written by this person?,"db.movies.find({""title"": ""Forbidden""}, {""writers"": 1})" +what was the release year of the movie Flying Down to Rio?,"db.movies.find({""title"": ""Flying Down to Rio""}, {""year"": 1})" +who directed the film Theodora Goes Wild?,"db.movies.find({""title"": ""Theodora Goes Wild""}, {""directors"": 1})" +what year was the movie Smilin' Through released?,"db.movies.find({""title"": ""Smilin' Through""}, {""year"": 1})" +what was the genre of The Beloved Vagabond?,"db.movies.find({""title"": ""The Beloved Vagabond""}, {""genres"": 1})" +what sort of movie is The Band Concert?,"db.movies.find({""title"": ""The Band Concert""}, {""genres"": 1})" +Can you give me a brief summary of the movie L'opèra de quat'sous plot?,"db.movies.find({""title"":""L'opèra de quat'sous""}, {""plot"":1})" +what is the genre of The Lost World?,"db.movies.find({""title"": ""The Lost World""}, {""genres"": 1})" +who stars in the film Dodsworth?,"db.movies.find({""title"": ""Dodsworth""}, {""cast"": 1})" +What is the audience rating of the movie The Awful Truth ?,"db.movies.find({ ""title"": ""The Awful Truth"" },{ ""tomatoes.viewer.rating"": 1 })" +What is the box office revenue for the movie 'Civilization'?,"db.movies.find({""title"": ""Civilization""}, {""tomatoes.boxOffice"": 1})" +what year was Intolerance: Love's Struggle Throughout the Ages released?,"db.movies.find({""title"": ""Intolerance: Love's Struggle Throughout the Ages""}, {""year"": 1})" +What is the audience rating of the movie The Good Earth ?,"db.movies.find({ ""title"": ""The Good Earth"" },{ ""tomatoes.viewer.rating"": 1 })" +"who is the writer of the film I Was Born, But...?","db.movies.find({""title"": ""I Was Born, But...""}, {""writers"": 1})" +what is the genre for the film The Black Pirate?,"db.movies.find({""title"": ""The Black Pirate""}, {""genres"": 1})" +When was the information last updated for the movie Robin Hood ?,"db.movies.find({ ""title"": ""Robin Hood"" },{ ""lastupdated"": 1 })" +"How many reviews did the movie Winsor McCay, the Famous Cartoonist of the N.Y. Herald and His Moving Comics receive on Rotten Tomatoes?","db.movies.find({""title"":""Winsor McCay, the Famous Cartoonist of the N.Y. Herald and His Moving Comics""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +who are the actors in Wild Boys of the Road?,"db.movies.find({""title"": ""Wild Boys of the Road""}, {""cast"": 1})" +who produced the film The Phantom of the Opera?,"db.movies.find({""title"":""The Phantom of the Opera""}, {""tomatoes.production"":1})" +What is the ID of the movie Mèdchen in Uniform on IMDB?,"db.movies.find({""title"": ""Mèdchen in Uniform""}, {""imdb.id"": 1})" +What is the ID of the movie Modern Times on IMDB?,"db.movies.find({""title"": ""Modern Times""}, {""imdb.id"": 1})" +Can you provide a detailed summary of the movie King Kong plot?,"db.movies.find({ ""title"": ""King Kong"" }, { ""fullplot"": 1})" +Can you share with me the film genres that were helmed by Eric Rohmer?,"db.movies.distinct(""genres"", { ""directors"": ""Eric Rohmer"" })" +What are the names of all the actors who starred in the movie 'She Done Him Wrong'?,"db.movies.find({""title"": ""She Done Him Wrong""}, {""cast"": 1})" +who was the writer of the movie Everybody's Woman?,"db.movies.find({""title"": ""Everybody's Woman""}, {""writers"": 1})" +When was the Tomatometer score and other Tomato-related information last updated for the movie Man with a Movie Camera?,"db.movies.find({""title"": ""Man with a Movie Camera""}, { ""tomatoes.lastUpdated"": 1})" +What is the running time of the film A Woman of Paris: A Drama of Fate?,"db.movies.find({""title"":""A Woman of Paris: A Drama of Fate""}, {""runtime"":1})" +Which of Jean-Luc Godard's movies has the highest Rotten Tomatoes rating?,"db.movies.find({""directors"": ""Jean-Luc Godard"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +What is the MPAA rating of the film Go West?,"db.movies.find({""title"":""Go West""}, {""rated"":1})" +How long is the movie The Beloved Vagabond in minutes?,"db.movies.find({""title"":""The Beloved Vagabond""}, {""runtime"":1})" +How many nominations did the movie Sunrise receive?,"db.movies.find({""title"":""Sunrise""}, {""awards.nominations"":1})" +what type of film is The Blood of a Poet?,"db.movies.find({""title"": ""The Blood of a Poet""}, {""genres"": 1})" +How many votes does the movie San Francisco have on IMDb?,"db.movies.find({""title"":""San Francisco""}, {""imdb.votes"":1})" +Can you provide a longer version of the movie In Old Chicago plot?,"db.movies.find({""title"":""In Old Chicago""}, {""fullplot"":1})" +"what was the release date of the film Steamboat Bill, Jr.?","db.movies.find({""title"": ""Steamboat Bill, Jr.""}, {""released"": 1})" +What languages are spoken in the movie Lost Horizon ?,"db.movies.find({""title"": ""Lost Horizon""}, { ""languages"": 1})" +What is the box office revenue for the movie 'Men Without Women'?,"db.movies.find({""title"": ""Men Without Women""}, {""tomatoes.boxOffice"": 1})" +which company produced the film The Band Concert?,"db.movies.find({""title"":""The Band Concert""}, {""tomatoes.production"":1})" +What is the overall length of all movies that Joel Coen has directed?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Joel Coen"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +the movie Traffic in Souls was directed by who?,"db.movies.find({""title"": ""Traffic in Souls""}, {""directors"": 1})" +who stars in the film The Life of Emile Zola?,"db.movies.find({""title"": ""The Life of Emile Zola""}, {""cast"": 1})" +who stars in the film Scrooge?,"db.movies.find({""title"": ""Scrooge""}, {""cast"": 1})" +What is the Metacritic score of the movie The Broadway Melody ?,"db.movies.find({ ""title"": ""The Broadway Melody"" }, { ""metacritic"": 1})" +How did the audience and critics receive the movie Who Killed Cock Robin??,"db.movies.find({""title"":""Who Killed Cock Robin?""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +Which of Federico Fellini's directed films has the lengthiest duration?,"db.movies.find({""directors"":""Federico Fellini""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +How many reviews have been submitted by critics for the movie Naughty Marietta ?,"db.movies.find({""title"": ""Naughty Marietta""}, {""tomatoes.critic.numReviews"": 1})" +Who are the actors in the movie Lloyd's of London?,"db.movies.find({""title"":""Lloyd's of London""}, {""cast"":1})" +What is the language of Dracula?,"db.movies.find({""title"":""Dracula""}, {""languages"":1})" +How many nominations did the movie The Front Page receive?,"db.movies.find({""title"":""The Front Page""}, {""awards.nominations"":1})" +what genre of film is Beau Geste?,"db.movies.find({""title"": ""Beau Geste""}, {""genres"": 1})" +who starred in The Son of Kong?,"db.movies.find({""title"": ""The Son of Kong""}, {""cast"": 1})" +How many reviews have been submitted for the movie Black Fury on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Black Fury"" },{ ""tomatoes.viewer.numReviews"": 1 })" +who directed the movie Dekigokoro?,"db.movies.find({""title"": ""Dekigokoro""}, {""directors"": 1})" +In what year was the movie Trouble in Paradise released?,"db.movies.find({""title"":""Trouble in Paradise""}, {""year"":1})" +What is the audience rating of the movie The Kid ?,"db.movies.find({ ""title"": ""The Kid"" },{ ""tomatoes.viewer.rating"": 1 })" +what kind of film is In Old Arizona?,"db.movies.find({""title"": ""In Old Arizona""}, {""genres"": 1})" +What is the sum of the runtimes of all the films directed by Yasujiro Ozu?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Yasujiro Ozu"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +What is the movie A Woman of Paris: A Drama of Fate about? Can you provide a brief summary?,"db.movies.find({""title"":""A Woman of Paris: A Drama of Fate""}, {""plot"":1})" +what genre of film is Kid Galahad?,"db.movies.find({""title"": ""Kid Galahad""}, {""genres"": 1})" +who was The Edge of the World written by?,"db.movies.find({""title"": ""The Edge of the World""}, {""writers"": 1})" +what is Roberta about in details?,"db.movies.find({""title"": ""Roberta""}, {""fullplot"": 1})" +How many award nominations did the movie receive Going Hollywood ?,"db.movies.find({ ""title"": ""Going Hollywood"" },{ ""awards.nominations"": 1 })" +who was the film Stage Door written by?,"db.movies.find({""title"": ""Stage Door""}, {""writers"": 1})" +Who are the writers of the movie Westfront 1918 ?,"db.movies.find({""title"": ""Westfront 1918""}, { ""writers"": 1})" +"the film Flesh and the Devil, was written by who?","db.movies.find({""title"": ""Flesh and the Devil""}, {""writers"": 1})" +what is the film Napoleon about?,"db.movies.find({""title"": ""Napoleon""}, {""plot"": 1})" +"the film Carnival in Flanders, was written by who?","db.movies.find({""title"": ""Carnival in Flanders""}, {""writers"": 1})" +What is the consensus among critics about the movie The Big House ?,"db.movies.find({""title"": ""The Big House""}, {""tomatoes.consensus"": 1})" +who wrote the movie Moscow Laughs?,"db.movies.find({""title"": ""Moscow Laughs""}, {""writers"": 1})" +How many votes does the movie Napoleon have on IMDb?,"db.movies.find({""title"":""Napoleon""}, {""imdb.votes"":1})" +I'm curious about the films that were directed by Oliver Stone. Can you name them?,"db.movies.find({""directors"": ""Oliver Stone""},{""title"":1})" +How many award nominations did the movie receive The Front Page ?,"db.movies.find({ ""title"": ""The Front Page"" },{ ""awards.nominations"": 1 })" +When was the movie The Lower Depths released?,"db.movies.find({""title"":""The Lower Depths""}, {""released"":1})" +What is the movie The Awful Truth rating?,"db.movies.find({""title"":""The Awful Truth""}, {""rated"":1})" +Who are the writers of the movie In the Land of the Head Hunters ?,"db.movies.find({""title"": ""In the Land of the Head Hunters""}, { ""writers"": 1})" +what is the full plot for the film Shall We Dance?,"db.movies.find({""title"": ""Shall We Dance""}, {""fullplot"": 1})" +what is the full plot for the film Sherlock Jr.?,"db.movies.find({""title"": ""Sherlock Jr.""}, {""fullplot"": 1})" +In what language was the movie Civilization released?,"db.movies.find({ ""title"": ""Civilization"" }, { ""languages"": 1})" +the movie Swing Time was directed by who?,"db.movies.find({""title"": ""Swing Time""}, {""directors"": 1})" +How many nominations did the movie Cavalcade receive?,"db.movies.find({""title"":""Cavalcade""}, {""awards.nominations"":1})" +What is the box office revenue of the movie The Garden of Allah ?,"db.movies.find({""title"": ""The Garden of Allah""}, { ""tomatoes.boxOffice"": 1})" +what is the movie Fury imdb rating?,"db.movies.find({""title"": ""Fury""}, {""imdb.rating"": 1})" +"the film The Big Trail, was written by who?","db.movies.find({""title"": ""The Big Trail""}, {""writers"": 1})" +Who are the actors that appear in the movie The Invisible Man ?,"db.movies.find({ ""title"": ""The Invisible Man"" },{ ""cast"": 1 })" +Can you give me a brief summary of the movie Little Women plot?,"db.movies.find({""title"":""Little Women""}, {""plot"":1})" +What is the language of the movie City Streets?,"db.movies.find({""title"":""City Streets""}, {""languages"":1})" +What is the runtime and rating for the movie 'Blacksmith Scene'?,"db.movies.find({""title"": ""Blacksmith Scene""}, {""runtime"": 1, ""rated"": 1})" +When was the information last updated for the movie The Big Parade ?,"db.movies.find({ ""title"": ""The Big Parade"" },{ ""lastupdated"": 1 })" +what year was the movie David Golder released?,"db.movies.find({""title"": ""David Golder""}, {""year"": 1})" +what was the release date of the movie Captains Courageous?,"db.movies.find({""title"": ""Captains Courageous""}, {""released"": 1})" +can you describe the plot of Carnival in Flanders?,"db.movies.find({""title"": ""Carnival in Flanders""}, {""plot"": 1})" +what was the release year of the film The Thin Man?,"db.movies.find({""title"": ""The Thin Man""}, {""year"": 1})" +What is the audience rating of the movie Greed ?,"db.movies.find({ ""title"": ""Greed"" },{ ""tomatoes.viewer.rating"": 1 })" +What is the production company of the movie A Story of Floating Weeds?,"db.movies.find({""title"":""A Story of Floating Weeds""}, {""tomatoes.production"":1})" +What is the language of the movie In the Land of the Head Hunters?,"db.movies.find({""title"":""In the Land of the Head Hunters""}, {""languages"":1})" +what year was the movie King Kong released?,"db.movies.find({""title"": ""King Kong""}, {""year"": 1})" +What is the language of the film The Gay Divorcee?,"db.movies.find({""title"":""The Gay Divorcee""}, {""languages"":1})" +what is Death Takes a Holiday description?,"db.movies.find({""title"": ""Death Takes a Holiday""}, {""plot"": 1})" +who was Wonder Bar written by?,"db.movies.find({""title"": ""Wonder Bar""}, {""writers"": 1})" +what is the plot for the movie Tarzan and His Mate?,"db.movies.find({""title"": ""Tarzan and His Mate""}, {""plot"": 1})" +what is Skippy about?,"db.movies.find({""title"": ""Skippy""}, {""plot"": 1})" +"How long, in total, are all the movies that Wes Anderson has directed?","db.movies.aggregate([{ ""$match"": { ""directors"": ""Wes Anderson"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +Could you share with me the titles of the films that Abbas Kiarostami directed?,"db.movies.find({""directors"": ""Abbas Kiarostami""},{""title"":1})" +"Has The Mummy won any awards? If so, which ones?","db.movies.find({""title"":""The Mummy"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +Who is the lead actress of the movie The Unknown ?,"db.movies.find({""title"": ""The Unknown""}, {""cast"":{""$slice"": 1},""title"":1})" +what is the full plot for the film Baby Face?,"db.movies.find({""title"": ""Baby Face""}, {""fullplot"": 1})" +What is the rating of the movie Sanders of the River on IMDb?,"db.movies.find({""title"":""Sanders of the River""}, {""imdb.rating"":1})" +what was the genre of The Broadway Melody?,"db.movies.find({""title"": ""The Broadway Melody""}, {""genres"": 1})" +Which movie genre does David Fincher mainly specialize in as a director?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""David Fincher"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +Can you provide a longer version of the movie The Crusades plot?,"db.movies.find({""title"":""The Crusades""}, {""fullplot"":1})" +What is the name of the director and cast for the movie 'Gold Diggers of 1933'?,"db.movies.find({""title"": ""Gold Diggers of 1933""}, {""directors"": 1, ""cast"": 1, ""_id"": 0})" +In what year was the movie The Wind released ?,"db.movies.find({ ""title"": ""The Wind"" }, { ""year"": 1})" +What is the IMDb rating for The Red Head?,"db.movies.find({""title"": ""The Red Head""}, {""imdb.rating"": 1})" +What is the added duration of all movies directed by Jean-Luc Godard?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Jean-Luc Godard"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +Who is the actor that appears the most in movies directed by Andrei Tarkovsky?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Andrei Tarkovsky"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +who acted in the film The Power and the Glory?,"db.movies.find({""title"": ""The Power and the Glory""}, {""cast"": 1})" +When was the information about the movie Ruggles of Red Gap last updated?,"db.movies.find({ ""title"": ""Ruggles of Red Gap"" }, { ""lastupdated"": 1})" +"Has The Count of Monte Cristo won any awards? If so, which ones?","db.movies.find({""title"":""The Count of Monte Cristo"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +what was the genre of Regeneration?,"db.movies.find({""title"": ""Regeneration""}, {""genres"": 1})" +What is the movie The Navigator about? Can you provide a brief summary?,"db.movies.find({""title"":""The Navigator""}, {""plot"":1})" +what is It's a Gift about?,"db.movies.find({""title"": ""It's a Gift""}, {""plot"": 1})" +who is the writer of the movie Eskimo?,"db.movies.find({""title"": ""Eskimo""}, {""writers"": 1})" +How many reviews have been submitted for the movie Dekigokoro on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Dekigokoro"" },{ ""tomatoes.viewer.numReviews"": 1 })" +what sort of film is Mutiny on the Bounty?,"db.movies.find({""title"": ""Mutiny on the Bounty""}, {""genres"": 1})" +What is the audience rating of the movie The Music Box ?,"db.movies.find({ ""title"": ""The Music Box"" },{ ""tomatoes.viewer.rating"": 1 })" +what is the movie A Damsel in Distress imdb rating?,"db.movies.find({""title"": ""A Damsel in Distress""}, {""imdb.rating"": 1})" +What is the production company of the film The Saphead?,"db.movies.find({""title"":""The Saphead""}, {""tomatoes.production"":1})" +who are the actors in Harvest?,"db.movies.find({""title"": ""Harvest""}, {""cast"": 1})" +who produced the film Morocco?,"db.movies.find({""title"":""Morocco""}, {""tomatoes.production"":1})" +What languages are spoken in the movie Man with a Movie Camera?,"db.movies.find({""title"":""Man with a Movie Camera""}, {""languages"":1})" +What is the prevailing movie genre in David Fincher's directed films?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""David Fincher"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +what was the release year of Love Me Tonight?,"db.movies.find({""title"": ""Love Me Tonight""}, {""year"": 1})" +What type of movie is Tsirk ?,"db.movies.find({""title"":""Tsirk""}, {""genres"":1})" +how many awards did Elephant Boy win?,"db.movies.find({""title"":""Elephant Boy""}, {""awards.wins"":1})" +who was the writer of the film The Private Life of Don Juan?,"db.movies.find({""title"": ""The Private Life of Don Juan""}, {""writers"": 1})" +Who are the actors that appear in the movie Final Accord ?,"db.movies.find({ ""title"": ""Final Accord"" },{ ""cast"": 1 })" +Can you provide a longer version of the movie The Red Head plot?,"db.movies.find({""title"":""The Red Head""}, {""fullplot"":1})" +What is the MPAA rating of the film Show People?,"db.movies.find({""title"":""Show People""}, {""rated"":1})" +what kind of movie is Trouble in Paradise?,"db.movies.find({""title"": ""Trouble in Paradise""}, {""genres"": 1})" +Could you tell me the total runtime of all Jean-Luc Godard movies he has directed?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Jean-Luc Godard"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +the film The Crusades was directed by who?,"db.movies.find({""title"": ""The Crusades""}, {""directors"": 1})" +what is the film Lost Horizon description ?,"db.movies.find({""title"": ""Lost Horizon""}, {""plot"": 1})" +What is the imdbID and genre of the movie 'Four Sons'?,"db.movies.find({""title"": ""Four Sons""}, {""imdb.id"": 1, ""genres"": 1, ""_id"": 0})" +Wild Boys of the Road is written by this person?,"db.movies.find({""title"": ""Wild Boys of the Road""}, {""writers"": 1})" +which company produced Salomè?,"db.movies.find({""title"":""Salomè""}, {""tomatoes.production"":1})" +What is the text description of the movie Cleopatra awards?,"db.movies.find({""title"":""Cleopatra""}, {""awards.text"":1})" +what is the plot for the film Battling Butler?,"db.movies.find({""title"": ""Battling Butler""}, {""plot"": 1})" +what kind of movie is Camille?,"db.movies.find({""title"": ""Camille""}, {""genres"": 1})" +who are the actors in the movie Beau Geste?,"db.movies.find({""title"": ""Beau Geste""}, {""cast"": 1})" +What is the name of the Francois Truffaut-directed movie with the briefest runtime?,"db.movies.find({""directors"":""Francois Truffaut""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +who wrote Lost Horizon?,"db.movies.find({""title"": ""Lost Horizon""}, {""writers"": 1})" +what genre is the movie Little Miss Marker?,"db.movies.find({""title"": ""Little Miss Marker""}, {""genres"": 1})" +What is the production company behind the movie x?,"db.movies.find({""title"": ""The Passion of Joan of Arc""}, { ""tomatoes.production"": 1})" +In what year was the movie All Quiet on the Western Front released?,"db.movies.find({""title"":""All Quiet on the Western Front""}, {""year"":1})" +what is the film Greed about in details?,"db.movies.find({""title"": ""Greed""}, {""fullplot"": 1})" +which person wrote Lost Horizon?,"db.movies.find({""title"": ""Lost Horizon""}, {""writers"": 1})" +How many award nominations did the movie receive Footlight Parade ?,"db.movies.find({ ""title"": ""Footlight Parade"" },{ ""awards.nominations"": 1 })" +what is the plot for the film Daughter of Shanghai?,"db.movies.find({""title"": ""Daughter of Shanghai""}, {""plot"": 1})" +the film The Life of Emile Zola was directed by who?,"db.movies.find({""title"": ""The Life of Emile Zola""}, {""directors"": 1})" +who is the director that directed The Red Head?,"db.movies.find({""title"": ""The Red Head""}, {""directors"": 1})" +How many reviews have been submitted by critics for the movie The Barretts of Wimpole Street?,"db.movies.find({ ""title"": ""The Barretts of Wimpole Street"" }, { ""tomatoes.critic.numReviews"": 1 })" +what is The Barretts of Wimpole Street imdb rating?,"db.movies.find({""title"": ""The Barretts of Wimpole Street""}, {""imdb.rating"": 1})" +The Dark Angel was directed by who?,"db.movies.find({""title"": ""The Dark Angel""}, {""directors"": 1})" +How many viewer reviews did the movie Broken Lullaby receive on Rotten Tomatoes?,"db.movies.find({""title"":""Broken Lullaby""}, {""tomatoes.viewer.numReviews"":1})" +Can you provide more information about the languages spoken in the movie Fury ?,"db.movies.find({""title"":""Fury""}, {""languages"":1})" +"the film The Unknown, was written by who?","db.movies.find({""title"": ""The Unknown""}, {""writers"": 1})" +what genre of film is Movie Crazy?,"db.movies.find({""title"": ""Movie Crazy""}, {""genres"": 1})" +What is the production company behind the movie x?,"db.movies.find({""title"": ""The Chechahcos""}, { ""tomatoes.production"": 1})" +Can you provide more information about the IMDb rating for the movie Greed ?,"db.movies.find({""title"":""Greed""}, {""imdb"":1})" +What languages are spoken in the movie Masquerade in Vienna?,"db.movies.find({""title"":""Masquerade in Vienna""}, {""languages"":1})" +How many reviews did the movie A Story of Floating Weeds receive on Rotten Tomatoes?,"db.movies.find({""title"":""A Story of Floating Weeds""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +Can you provide a detailed summary of the movie Regeneration plot?,"db.movies.find({ ""title"": ""Regeneration"" }, { ""fullplot"": 1})" +Can you provide a longer version of the movie I Am a Fugitive from a Chain Gang plot?,"db.movies.find({""title"":""I Am a Fugitive from a Chain Gang""}, {""fullplot"":1})" +What is the box office revenue of the movie Wild Boys of the Road ?,"db.movies.find({""title"": ""Wild Boys of the Road""}, { ""tomatoes.boxOffice"": 1})" +Which actor has the greatest number of roles in Wes Anderson's directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Wes Anderson"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What are the genres this movie A Night at the Opera belongs to?,"db.movies.find({""title"":""A Night at the Opera""}, {""genres"":1})" +which person wrote the film Napoleon?,"db.movies.find({""title"": ""Napoleon""}, {""writers"": 1})" +In what year was the movie Marked Woman released?,"db.movies.find({""title"":""Marked Woman""}, {""year"":1})" +who is the director for Wild Boys of the Road?,"db.movies.find({""title"": ""Wild Boys of the Road""}, {""directors"": 1})" +what is The Unknown imdb rating?,"db.movies.find({""title"": ""The Unknown""}, {""imdb.rating"": 1})" +what kind of film is Wings?,"db.movies.find({""title"": ""Wings""}, {""genres"": 1})" +What is the running time of the movie The Thief of Bagdad?,"db.movies.find({""title"":""The Thief of Bagdad""}, {""runtime"":1})" +In what language was the movie Flesh and the Devil released?,"db.movies.find({ ""title"": ""Flesh and the Devil"" }, { ""languages"": 1})" +How many wins did the movie The Sin of Madelon Claudet receive?,"db.movies.find({""title"":""The Sin of Madelon Claudet""}, {""awards.wins"":1})" +What is the plot summary of the movie The Lost World ?,"db.movies.find({ ""title"": ""The Lost World"" }, { ""plot"": 1})" +"who produced Steamboat Bill, Jr.?","db.movies.find({""title"":""Steamboat Bill, Jr.""}, {""tomatoes.production"":1})" +the film The Passion of Joan of Arc starred who?,"db.movies.find({""title"": ""The Passion of Joan of Arc""}, {""cast"": 1})" +who are the actors in the movie Freaks?,"db.movies.find({""title"": ""Freaks""}, {""cast"": 1})" +what was the release date of the movie Gertie the Dinosaur?,"db.movies.find({""title"": ""Gertie the Dinosaur""}, {""released"": 1})" +who stars in A Night at the Opera?,"db.movies.find({""title"": ""A Night at the Opera""}, {""cast"": 1})" +who stars in the movie The Devil Is a Woman?,"db.movies.find({""title"": ""The Devil Is a Woman""}, {""cast"": 1})" +who directed the film King Solomon's Mines?,"db.movies.find({""title"": ""King Solomon's Mines""}, {""directors"": 1})" +what is the plot for the film Eskimo?,"db.movies.find({""title"": ""Eskimo""}, {""plot"": 1})" +The Song of Night is a film written by this person?,"db.movies.find({""title"": ""The Song of Night""}, {""writers"": 1})" +What are the names of all the actors who starred in the movie 'Skippy'?,"db.movies.find({""title"": ""Skippy""}, {""cast"": 1})" +How many votes does the movie Dracula have on IMDb?,"db.movies.find({""title"":""Dracula""}, {""imdb.votes"":1})" +the director of State Fair was?,"db.movies.find({""title"": ""State Fair""}, {""directors"": 1})" +How many reviews have been submitted for the movie The General on Rotten Tomatoes?,"db.movies.find({ ""title"": ""The General"" },{ ""tomatoes.viewer.numReviews"": 1 })" +what genre is the film A Free Soul?,"db.movies.find({""title"": ""A Free Soul""}, {""genres"": 1})" +What is the full plot summary of the movie Where Are My Children? ?,"db.movies.find({""title"": ""Where Are My Children?""}, {""plot"": 1})" +When was the Tomatometer score and other Tomato-related information last updated for the movie Flying Down to Rio?,"db.movies.find({""title"": ""Flying Down to Rio""}, { ""tomatoes.lastUpdated"": 1})" +What is the audience rating of the movie Our Hospitality ?,"db.movies.find({ ""title"": ""Our Hospitality"" },{ ""tomatoes.viewer.rating"": 1 })" +what is the full plot for the movie The Strong Man?,"db.movies.find({""title"": ""The Strong Man""}, {""fullplot"": 1})" +What is the movie She rating?,"db.movies.find({""title"":""She""}, {""rated"":1})" +what is the genre for the movie The Last Command?,"db.movies.find({""title"": ""The Last Command""}, {""genres"": 1})" +Was the movie A Day in the Country well received by audiences and critics?,"db.movies.find({""title"":""A Day in the Country""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What movie directed by Martin Scorsese has the shortest running time?,"db.movies.find({""directors"":""Martin Scorsese""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +What is the audience rating of the movie The Last of the Mohicans ?,"db.movies.find({ ""title"": ""The Last of the Mohicans"" },{ ""tomatoes.viewer.rating"": 1 })" +which person directed Camille?,"db.movies.find({""title"": ""Camille""}, {""directors"": 1})" +What are the names of all the actors who starred in the movie 'Cimarron'?,"db.movies.find({""title"": ""Cimarron""}, {""cast"": 1})" +who acted in the movie Zero for Conduct?,"db.movies.find({""title"": ""Zero for Conduct""}, {""cast"": 1})" +Who are the starring actors/actresses in the movie Toni?,"db.movies.find({""title"":""Toni""}, {""cast"":1})" +who produced the movie Flying Down to Rio?,"db.movies.find({""title"":""Flying Down to Rio""}, {""tomatoes.production"":1})" +Who are the main actors in Steamboat Willie ?,"db.movies.find({ ""title"": ""Steamboat Willie"" }, { ""cast"": 1})" +What is the Rotten Tomatoes meter rating for the movie Frankenstein ?,"db.movies.find({""title"":""Frankenstein""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +what was the release year of the film Wild Boys of the Road?,"db.movies.find({""title"": ""Wild Boys of the Road""}, {""year"": 1})" +which company produced the movie A Farewell to Arms?,"db.movies.find({""title"":""A Farewell to Arms""}, {""tomatoes.production"":1})" +Can you give me a brief summary of the movie Nosferatu plot?,"db.movies.find({""title"":""Nosferatu""}, {""plot"":1})" +"A Farewell to Arms, was written by who?","db.movies.find({""title"": ""A Farewell to Arms""}, {""writers"": 1})" +What is the imdbID and year of release for the movie with a title of 'In the Land of the Head Hunters'?,"db.movies.find({""title"": ""In the Land of the Head Hunters""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +what type of movie is Sons of the Desert?,"db.movies.find({""title"": ""Sons of the Desert""}, {""genres"": 1})" +what genre of film is The Good Earth?,"db.movies.find({""title"": ""The Good Earth""}, {""genres"": 1})" +What is the production company behind the movie The Chechahcos ?,"db.movies.find({""title"": ""The Chechahcos""}, {""tomatoes.production"": 1})" +who was the writer of The Four Horsemen of the Apocalypse?,"db.movies.find({""title"": ""The Four Horsemen of the Apocalypse""}, {""writers"": 1})" +who is listed as director for Grass: A Nation's Battle for Life?,"db.movies.find({""title"": ""Grass: A Nation's Battle for Life""}, {""directors"": 1})" +In what language was the movie Lonesome released?,"db.movies.find({ ""title"": ""Lonesome"" }, { ""languages"": 1})" +Who are the main actors in For Heaven's Sake ?,"db.movies.find({ ""title"": ""For Heaven's Sake"" }, { ""cast"": 1})" +What are the names of all the actors who starred in the movie 'Nosferatu'?,"db.movies.find({""title"": ""Nosferatu""}, {""cast"": 1})" +"Has the film Traffic in Souls won any awards? If so, which ones?","db.movies.find({""title"":""Traffic in Souls"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What is the movie Dishonored about? Can you provide a brief summary?,"db.movies.find({""title"":""Dishonored""}, {""plot"":1})" +what genre is Wonder Bar?,"db.movies.find({""title"": ""Wonder Bar""}, {""genres"": 1})" +How many wins did the movie Peter Pan receive?,"db.movies.find({""title"":""Peter Pan""}, {""awards.wins"":1})" +"the movie Greed, was written by who?","db.movies.find({""title"": ""Greed""}, {""writers"": 1})" +what is the film The Son of Kong about in details?,"db.movies.find({""title"": ""The Son of Kong""}, {""fullplot"": 1})" +Can you tell me which film genres Orson Welles has directed?,"db.movies.distinct(""genres"", { ""directors"": ""Orson Welles"" })" +Can you tell me which film genres Francois Truffaut has directed?,"db.movies.distinct(""genres"", { ""directors"": ""Francois Truffaut"" })" +who is the author of The Spanish Earth?,"db.movies.find({""title"": ""The Spanish Earth""}, {""writers"": 1})" +what was the release date of the film Two Seconds?,"db.movies.find({""title"": ""Two Seconds""}, {""released"": 1})" +what is Shanghai Express description?,"db.movies.find({""title"": ""Shanghai Express""}, {""plot"": 1})" +What is the critical reception of the movie Eskimo?,"db.movies.find({""title"":""Eskimo""}, {""tomatoes.critic"":1})" +Can you provide a longer version of the movie Our Hospitality plot?,"db.movies.find({""title"":""Our Hospitality""}, {""fullplot"":1})" +What are the countries associated with the movie The General ?,"db.movies.find({""title"": ""The General""}, {""countries"": 1})" +What is the cumulative duration of all the films that Gus Van Sant directed?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Gus Van Sant"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +What is the consensus among critics about the movie Sisters of the Gion ?,"db.movies.find({""title"": ""Sisters of the Gion""}, {""tomatoes.consensus"": 1})" +What is the name of the actor who appears most frequently in movies directed by Federico Fellini?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Federico Fellini"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +who are the actors in The Docks of New York?,"db.movies.find({""title"": ""The Docks of New York""}, {""cast"": 1})" +who are the actors in the film Smilin' Through?,"db.movies.find({""title"": ""Smilin' Through""}, {""cast"": 1})" +who was the movie This Is My Affair written by?,"db.movies.find({""title"": ""This Is My Affair""}, {""writers"": 1})" +the movie Flesh and the Devil was directed by who?,"db.movies.find({""title"": ""Flesh and the Devil""}, {""directors"": 1})" +What is the running time of the film The Life of Emile Zola?,"db.movies.find({""title"":""The Life of Emile Zola""}, {""runtime"":1})" +which company produced the film One Hundred Men and a Girl?,"db.movies.find({""title"":""One Hundred Men and a Girl""}, {""tomatoes.production"":1})" +the movie Lloyd's of London was directed by who?,"db.movies.find({""title"": ""Lloyd's of London""}, {""directors"": 1})" +How many reviews did the movie Flying Down to Rio receive on Rotten Tomatoes?,"db.movies.find({""title"":""Flying Down to Rio""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +what genre of movie is The Great Train Robbery?,"db.movies.find({""title"": ""The Great Train Robbery""}, {""genres"": 1})" +What is the ID of the movie The Divine Lady on IMDB?,"db.movies.find({""title"": ""The Divine Lady""}, {""imdb.id"": 1})" +Who are the starring actors/actresses in the movie David Golder?,"db.movies.find({""title"":""David Golder""}, {""cast"":1})" +When was the information about the movie The Iron Horse last updated?,"db.movies.find({ ""title"": ""The Iron Horse"" }, { ""lastupdated"": 1})" +Can you provide more information about the IMDb rating for the movie Curly Top ?,"db.movies.find({""title"":""Curly Top""}, {""imdb"":1})" +who produced The Kid?,"db.movies.find({""title"":""The Kid""}, {""tomatoes.production"":1})" +A Day in the Country is written by this person?,"db.movies.find({""title"": ""A Day in the Country""}, {""writers"": 1})" +What is the imdbID and year of release for the movie with a title of 'The Emperor Jones'?,"db.movies.find({""title"": ""The Emperor Jones""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +who was the film The Divorcee written by?,"db.movies.find({""title"": ""The Divorcee""}, {""writers"": 1})" +how many awards did the movie A Farewell to Arms win?,"db.movies.find({""title"":""A Farewell to Arms""}, {""awards.wins"":1})" +How many viewer reviews did the movie Les Misèrables receive on Rotten Tomatoes?,"db.movies.find({""title"":""Les Misèrables""}, {""tomatoes.viewer.numReviews"":1})" +what type of movie is Dodsworth?,"db.movies.find({""title"": ""Dodsworth""}, {""genres"": 1})" +who acted in the film Little Caesar?,"db.movies.find({""title"": ""Little Caesar""}, {""cast"": 1})" +What is the plot summary of the movie The Private Life of Don Juan ?,"db.movies.find({ ""title"": ""The Private Life of Don Juan"" }, { ""plot"": 1})" +who are the actors in the movie Peter Pan?,"db.movies.find({""title"": ""Peter Pan""}, {""cast"": 1})" +what year was The 39 Steps released?,"db.movies.find({""title"": ""The 39 Steps""}, {""year"": 1})" +who wrote the film Earth?,"db.movies.find({""title"": ""Earth""}, {""writers"": 1})" +Can you provide more information about the Rotten Tomatoes rating for the movie Les Misèrables?,"db.movies.find({""title"": ""Les Misèrables""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +"what is the movie Laugh, Clown, Laugh imdb rating?","db.movies.find({""title"": ""Laugh, Clown, Laugh""}, {""imdb.rating"": 1})" +How many movies has Wes Anderson directed in total?,"db.movies.countDocuments({""directors"":""Wes Anderson""})" +How many reviews have been submitted by critics for the movie Seven Chances ?,"db.movies.find({""title"": ""Seven Chances""}, {""tomatoes.critic.numReviews"": 1})" +what was the genre of the film The Prisoner of Zenda?,"db.movies.find({""title"": ""The Prisoner of Zenda""}, {""genres"": 1})" +Can you tell me which Terrence Malick movie has the longest length?,"db.movies.find({""directors"":""Terrence Malick""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +What is the production company behind the movie x?,"db.movies.find({""title"": ""Our Hospitality""}, { ""tomatoes.production"": 1})" +What is the IMDb rating for the movie College?,"db.movies.find({""title"": ""College""}, {""imdb.rating"": 1})" +How did the audience and critics receive the movie The Thin Man?,"db.movies.find({""title"":""The Thin Man""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +How many reviews did the movie The Wind receive on Rotten Tomatoes?,"db.movies.find({""title"":""The Wind""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +who wrote the screenplay for the film High and Dizzy?,"db.movies.aggregate([ { ""$match"": { ""title"":""High and Dizzy""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +the film She Done Him Wrong starred who?,"db.movies.find({""title"": ""She Done Him Wrong""}, {""cast"": 1})" +Which types of movies has Alain Resnais directed?,"db.movies.distinct(""genres"", { ""directors"": ""Alain Resnais"" })" +what is the film Morocco about?,"db.movies.find({""title"": ""Morocco""}, {""plot"": 1})" +which person directed She?,"db.movies.find({""title"": ""She""}, {""directors"": 1})" +the movie Street Angel was directed by who?,"db.movies.find({""title"": ""Street Angel""}, {""directors"": 1})" +What is the Metacritic score of the movie Fury ?,"db.movies.find({ ""title"": ""Fury"" }, { ""metacritic"": 1})" +What is the MongoDB document ID of the movie The Lives of a Bengal Lancer?,"db.movies.find({""title"": ""The Lives of a Bengal Lancer""}, {""_id"": 1})" +how many awards did the film Seven Chances win?,"db.movies.find({""title"":""Seven Chances""}, {""awards.wins"":1})" +What is the MPAA rating of The 39 Steps?,"db.movies.find({""title"":""The 39 Steps""}, {""rated"":1})" +what was the release year of Napoleon?,"db.movies.find({""title"": ""Napoleon""}, {""year"": 1})" +What is the language of the film Street Angel?,"db.movies.find({""title"":""Street Angel""}, {""languages"":1})" +what year was the movie Masquerade in Vienna released?,"db.movies.find({""title"": ""Masquerade in Vienna""}, {""year"": 1})" +What is the production company of the movie China Seas?,"db.movies.find({""title"":""China Seas""}, {""tomatoes.production"":1})" +Can you provide more information about the IMDb rating for the movie In the Land of the Head Hunters ?,"db.movies.find({""title"":""In the Land of the Head Hunters""}, {""imdb"":1})" +What is the movie The Private Life of Don Juan about? Can you provide a brief summary?,"db.movies.find({""title"":""The Private Life of Don Juan""}, {""plot"":1})" +Who are the writers of the movie Zoo in Budapest ?,"db.movies.find({""title"": ""Zoo in Budapest""}, { ""writers"": 1})" +what genre is the film Under the Roofs of Paris?,"db.movies.find({""title"": ""Under the Roofs of Paris""}, {""genres"": 1})" +what is the plot for the film Dante's Inferno?,"db.movies.find({""title"": ""Dante's Inferno""}, {""plot"": 1})" +who directed the film The Passion of Joan of Arc?,"db.movies.find({""title"": ""The Passion of Joan of Arc""}, {""directors"": 1})" +Who are the main actors in Smilin' Through ?,"db.movies.find({ ""title"": ""Smilin' Through"" }, { ""cast"": 1})" +what was the release year of the film Zoo in Budapest?,"db.movies.find({""title"": ""Zoo in Budapest""}, {""year"": 1})" +What is the Metacritic score of the movie The Story of a Cheat ?,"db.movies.find({ ""title"": ""The Story of a Cheat"" }, { ""metacritic"": 1})" +When was the Tomatometer score and other Tomato-related information last updated for the movie The Lost Patrol?,"db.movies.find({""title"": ""The Lost Patrol""}, { ""tomatoes.lastUpdated"": 1})" +In what year was the movie All Quiet on the Western Front released ?,"db.movies.find({ ""title"": ""All Quiet on the Western Front"" }, { ""year"": 1})" +What is the IMDB rating of the movie In Old Chicago ?,"db.movies.find({""title"": ""In Old Chicago""}, { ""imdb.rating"": 1})" +Who is the director of the movie Scarface?,"db.movies.find({""title"": ""Scarface""}, { ""directors"": 1})" +Can you provide more information about the IMDb rating for the movie Comradeship ?,"db.movies.find({""title"":""Comradeship""}, {""imdb"":1})" +what is the movie They Won't Forget about?,"db.movies.find({""title"": ""They Won't Forget""}, {""plot"": 1})" +What is the ID of the movie Marked Woman on IMDB?,"db.movies.find({""title"": ""Marked Woman""}, {""imdb.id"": 1})" +what was the genre of A Story of Floating Weeds?,"db.movies.find({""title"": ""A Story of Floating Weeds""}, {""genres"": 1})" +what is the plot for the film The Crowd Roars?,"db.movies.find({""title"": ""The Crowd Roars""}, {""plot"": 1})" +who acted in the movie Folies Bergère de Paris?,"db.movies.find({""title"": ""Folies Bergère de Paris""}, {""cast"": 1})" +what is the full plot for the film Intolerance: Love's Struggle Throughout the Ages?,"db.movies.find({""title"": ""Intolerance: Love's Struggle Throughout the Ages""}, {""fullplot"": 1})" +who is the director that directed The Great Train Robbery?,"db.movies.find({""title"": ""The Great Train Robbery""}, {""directors"": 1})" +What are the genres associated with the movie The Last Command ?,"db.movies.find({ ""title"": ""The Last Command"" }, { ""genres"": 1})" +which company produced the movie Anthony Adverse?,"db.movies.find({""title"":""Anthony Adverse""}, {""tomatoes.production"":1})" +How many audience reviews have been submitted for the movie Toni ?,"db.movies.find({ ""title"": ""Toni"" },{ ""tomatoes.viewer.numReviews"": 1 })" +Can you tell me which movie that Francois Truffaut directed has the shortest running time?,"db.movies.find({""directors"":""Francois Truffaut""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +What type of movie is The Circus ?,"db.movies.find({""title"":""The Circus""}, {""genres"":1})" +What is the runtime and rating for the movie 'City Streets'?,"db.movies.find({""title"": ""City Streets""}, {""runtime"": 1, ""rated"": 1})" +what genre is Battleship Potemkin?,"db.movies.find({""title"": ""Battleship Potemkin""}, {""genres"": 1})" +What is the rating of the movie Flying Down to Rio on IMDb?,"db.movies.find({""title"":""Flying Down to Rio""}, {""imdb.rating"":1})" +Was the movie Becky Sharp well received by audiences and critics?,"db.movies.find({""title"":""Becky Sharp""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what is the film Scarface about in details?,"db.movies.find({""title"": ""Scarface""}, {""fullplot"": 1})" +"Has the movie Daughter of Shanghai won any awards? If so, which ones?","db.movies.find({""title"":""Daughter of Shanghai"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +who is the writer of the film Cimarron?,"db.movies.find({""title"": ""Cimarron""}, {""writers"": 1})" +the film The Charge of the Light Brigade was directed by who?,"db.movies.find({""title"": ""The Charge of the Light Brigade""}, {""directors"": 1})" +What languages are spoken in the movie In Old Chicago?,"db.movies.find({""title"":""In Old Chicago""}, {""languages"":1})" +the film Sisters of the Gion starred who?,"db.movies.find({""title"": ""Sisters of the Gion""}, {""cast"": 1})" +which person wrote The Great Ziegfeld?,"db.movies.find({""title"": ""The Great Ziegfeld""}, {""writers"": 1})" +who wrote Safety Last!?,"db.movies.find({""title"": ""Safety Last!""}, {""writers"": 1})" +Who is the director of the movie Follow the Fleet?,"db.movies.find({""title"": ""Follow the Fleet""}, { ""directors"": 1})" +What is the MPAA rating of Lenin in October?,"db.movies.find({""title"":""Lenin in October""}, {""rated"":1})" +what was the release date of the film Three Smart Girls?,"db.movies.find({""title"": ""Three Smart Girls""}, {""released"": 1})" +Which movies were directed by David Fincher and were released in the 1990s?,"db.movies.find({""directors"": 'David Fincher', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +How many viewer reviews did the movie Mèdchen in Uniform receive on Rotten Tomatoes?,"db.movies.find({""title"":""Mèdchen in Uniform""}, {""tomatoes.viewer.numReviews"":1})" +How many audience reviews have been submitted for the movie Eskimo ?,"db.movies.find({ ""title"": ""Eskimo"" },{ ""tomatoes.viewer.numReviews"": 1 })" +When was the information about the movie Where Are My Children? last updated?,"db.movies.find({ ""title"": ""Where Are My Children?"" }, { ""lastupdated"": 1})" +who produced the film The Big House?,"db.movies.find({""title"":""The Big House""}, {""tomatoes.production"":1})" +what is the film San Francisco imdb rating?,"db.movies.find({""title"": ""San Francisco""}, {""imdb.rating"": 1})" +what is the full plot for The Lives of a Bengal Lancer?,"db.movies.find({""title"": ""The Lives of a Bengal Lancer""}, {""fullplot"": 1})" +What is the IMDB rating of the movie Steamboat Willie ?,"db.movies.find({""title"": ""Steamboat Willie""}, { ""imdb.rating"": 1})" +In what year was the movie Topaze released ?,"db.movies.find({ ""title"": ""Topaze"" }, { ""year"": 1})" +In what language was the movie Scrooge released?,"db.movies.find({ ""title"": ""Scrooge"" }, { ""languages"": 1})" +who is the director of The Last of the Mohicans?,"db.movies.find({""title"": ""The Last of the Mohicans""}, {""directors"": 1})" +What is the full plot summary of the movie The Invisible Man ?,"db.movies.find({""title"": ""The Invisible Man""}, {""plot"": 1})" +What is the freshness score of the movie Storm Over Asia on Rotten Tomatoes?,"db.movies.find({""title"": ""Storm Over Asia""}, {""tomatoes.fresh"": 1})" +Which genre does Sergei Eisenstein's directed movies predominantly belong to?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Sergei Eisenstein"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +Who are the main actors/actresses in the movie Movie Crazy?,"db.movies.find({""title"":""Movie Crazy""}, {""cast"":1})" +What is the runtime of the movie Who Killed Cock Robin? ?,"db.movies.find({""title"": ""Who Killed Cock Robin?""}, { ""runtime"": 1})" +who is the director for Les vampires?,"db.movies.find({""title"": ""Les vampires""}, {""directors"": 1})" +what was the release year of The Poor Little Rich Girl?,"db.movies.find({""title"": ""The Poor Little Rich Girl""}, {""year"": 1})" +who was the movie Black Fury written by?,"db.movies.find({""title"": ""Black Fury""}, {""writers"": 1})" +What are the names of all the actors who starred in the movie 'The Life of Emile Zola'?,"db.movies.find({""title"": ""The Life of Emile Zola""}, {""cast"": 1})" +which company produced Bride of Frankenstein?,"db.movies.find({""title"":""Bride of Frankenstein""}, {""tomatoes.production"":1})" +What is the text description of the movie Sunrise awards?,"db.movies.find({""title"":""Sunrise""}, {""awards.text"":1})" +What is the imdbID and year of release for the movie with a title of 'Shall We Dance'?,"db.movies.find({""title"": ""Shall We Dance""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +what is Bad Girl description?,"db.movies.find({""title"": ""Bad Girl""}, {""plot"": 1})" +What is the name of the director and cast for the movie 'Where Are My Children?'?,"db.movies.find({""title"": ""Where Are My Children?""}, {""directors"": 1, ""cast"": 1, ""_id"": 0})" +how many awards did the film Top Hat win?,"db.movies.find({""title"":""Top Hat""}, {""awards.wins"":1})" +which company produced The Story of a Cheat?,"db.movies.find({""title"":""The Story of a Cheat""}, {""tomatoes.production"":1})" +How many audience reviews have been submitted for the movie The Blood of a Poet ?,"db.movies.find({ ""title"": ""The Blood of a Poet"" },{ ""tomatoes.viewer.numReviews"": 1 })" +"the movie Children in the Wind, was written by who?","db.movies.find({""title"": ""Children in the Wind""}, {""writers"": 1})" +What is the audience rating of the movie A Night at the Opera ?,"db.movies.find({ ""title"": ""A Night at the Opera"" },{ ""tomatoes.viewer.rating"": 1 })" +which person wrote the movie Who Killed Cock Robin??,"db.movies.find({""title"": ""Who Killed Cock Robin?""}, {""writers"": 1})" +When was the movie Follow the Fleet released?,"db.movies.find({""title"":""Follow the Fleet""}, {""released"":1})" +What languages are spoken in the movie A Night at the Opera?,"db.movies.find({""title"":""A Night at the Opera""}, {""languages"":1})" +What is the website associated with the movie The Son of the Sheik on Rotten Tomatoes?,"db.movies.find({""title"": ""The Son of the Sheik""}, {""tomatoes.website"": 1})" +"Has Popeye the Sailor Meets Sindbad the Sailor won any awards? If so, which ones?","db.movies.find({""title"":""Popeye the Sailor Meets Sindbad the Sailor"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +who stars in the film The Blue Bird?,"db.movies.find({""title"": ""The Blue Bird""}, {""cast"": 1})" +what is the genre for the movie A Day in the Country?,"db.movies.find({""title"": ""A Day in the Country""}, {""genres"": 1})" +What is the production company of Broadway Bill?,"db.movies.find({""title"":""Broadway Bill""}, {""tomatoes.production"":1})" +who are the actors in the movie The Beloved Vagabond?,"db.movies.find({""title"": ""The Beloved Vagabond""}, {""cast"": 1})" +In what year was the movie College released ?,"db.movies.find({ ""title"": ""College"" }, { ""year"": 1})" +How many reviews have been submitted by critics for the movie Tol'able David?,"db.movies.find({ ""title"": ""Tol'able David"" }, { ""tomatoes.critic.numReviews"": 1 })" +who is the director that directed The Front Page?,"db.movies.find({""title"": ""The Front Page""}, {""directors"": 1})" +What is the website associated with the movie The Big Parade on Rotten Tomatoes?,"db.movies.find({""title"": ""The Big Parade""}, {""tomatoes.website"": 1})" +What is the plot summary of the movie Love Me Tonight ?,"db.movies.find({ ""title"": ""Love Me Tonight"" }, { ""plot"": 1})" +What is the box office revenue for the movie 'The Invisible Ray'?,"db.movies.find({""title"": ""The Invisible Ray""}, {""tomatoes.boxOffice"": 1})" +What is the full plot summary of the movie The Birth of a Nation ?,"db.movies.find({""title"": ""The Birth of a Nation""}, {""plot"": 1})" +who wrote the screenplay for the movie The Man Who Could Work Miracles?,"db.movies.aggregate([ { ""$match"": { ""title"":""The Man Who Could Work Miracles""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +"Has the movie A Free Soul won any awards? If so, which ones?","db.movies.find({""title"":""A Free Soul"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +how many awards did the film The Red Head win?,"db.movies.find({""title"":""The Red Head""}, {""awards.wins"":1})" +What is the name of the Coen Brothers-directed movie with the least runtime?,"db.movies.find({""directors"":""Coen Brothers""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +Who are the actors that appear in the movie Gertie the Dinosaur ?,"db.movies.find({ ""title"": ""Gertie the Dinosaur"" },{ ""cast"": 1 })" +what kind of movie is Tabu: A Story of the South Seas?,"db.movies.find({""title"": ""Tabu: A Story of the South Seas""}, {""genres"": 1})" +what is the genre of Safety Last!?,"db.movies.find({""title"": ""Safety Last!""}, {""genres"": 1})" +What type of movie is The Edge of the World ?,"db.movies.find({""title"":""The Edge of the World""}, {""genres"":1})" +What is the runtime and rating for the movie 'The Lower Depths'?,"db.movies.find({""title"": ""The Lower Depths""}, {""runtime"": 1, ""rated"": 1})" +who wrote the screenplay for the movie The Navigator?,"db.movies.aggregate([ { ""$match"": { ""title"":""The Navigator""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +who produced The Poor Little Rich Girl?,"db.movies.find({""title"":""The Poor Little Rich Girl""}, {""tomatoes.production"":1})" +who was Broken Lullaby written by?,"db.movies.find({""title"": ""Broken Lullaby""}, {""writers"": 1})" +Which of Jean-Pierre Melville's directed films has the briefest duration?,"db.movies.find({""directors"":""Jean-Pierre Melville""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +what was the release year of the film Tarzan and His Mate?,"db.movies.find({""title"": ""Tarzan and His Mate""}, {""year"": 1})" +who starred in Anthony Adverse?,"db.movies.find({""title"": ""Anthony Adverse""}, {""cast"": 1})" +"Has the film Children in the Wind won any awards? If so, which ones?","db.movies.find({""title"":""Children in the Wind"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What is the ID of the movie Dr. Jekyll and Mr. Hyde on IMDB?,"db.movies.find({""title"": ""Dr. Jekyll and Mr. Hyde""}, {""imdb.id"": 1})" +"Dishonored, was written by who?","db.movies.find({""title"": ""Dishonored""}, {""writers"": 1})" +what was the release year of The Four Horsemen of the Apocalypse?,"db.movies.find({""title"": ""The Four Horsemen of the Apocalypse""}, {""year"": 1})" +How many votes did the movie The Story of Louis Pasteur receive on IMDB?,"db.movies.find({""title"": ""The Story of Louis Pasteur""}, { ""imdb.votes"": 1})" +What languages are spoken in the movie 7th Heaven ?,"db.movies.find({""title"": ""7th Heaven""}, { ""languages"": 1})" +In what year was the movie Dr. Jekyll and Mr. Hyde released ?,"db.movies.find({ ""title"": ""Dr. Jekyll and Mr. Hyde"" }, { ""year"": 1})" +What languages are spoken in the movie Murders in the Rue Morgue ?,"db.movies.find({""title"": ""Murders in the Rue Morgue""}, { ""languages"": 1})" +who produced the film The Fall of the House of Usher?,"db.movies.find({""title"":""The Fall of the House of Usher""}, {""tomatoes.production"":1})" +What is the website associated with the movie Topaze on Rotten Tomatoes?,"db.movies.find({""title"": ""Topaze""}, {""tomatoes.website"": 1})" +who stars in the movie Lloyd's of London?,"db.movies.find({""title"": ""Lloyd's of London""}, {""cast"": 1})" +What languages are spoken in the movie Under the Roofs of Paris?,"db.movies.find({""title"":""Under the Roofs of Paris""}, {""languages"":1})" +What is the rating of the movie Dante's Inferno ?,"db.movies.find({ ""title"": ""Dante's Inferno"" }, { ""rated"": 1})" +who is the writer of the movie It's a Gift?,"db.movies.find({""title"": ""It's a Gift""}, {""writers"": 1})" +what kind of film is Flying Down to Rio?,"db.movies.find({""title"": ""Flying Down to Rio""}, {""genres"": 1})" +In which countries was the movie Lloyd's of London produced?,"db.movies.find({""title"":""Lloyd's of London""}, {""countries"":1})" +How many nominations did the movie The Gay Divorcee receive?,"db.movies.find({""title"":""The Gay Divorcee""}, {""awards.nominations"":1})" +who are the actors in the film Robin Hood?,"db.movies.find({""title"": ""Robin Hood""}, {""cast"": 1})" +What is the freshness score of the movie Dante's Inferno on Rotten Tomatoes?,"db.movies.find({""title"": ""Dante's Inferno""}, {""tomatoes.fresh"": 1})" +what genre of film is The Great Train Robbery?,"db.movies.find({""title"": ""The Great Train Robbery""}, {""genres"": 1})" +The Crusades is a film written by this person?,"db.movies.find({""title"": ""The Crusades""}, {""writers"": 1})" +Who is the director of the movie The Freshman?,"db.movies.find({""title"": ""The Freshman""}, { ""directors"": 1})" +What is the language of the movie Ruggles of Red Gap?,"db.movies.find({""title"":""Ruggles of Red Gap""}, {""languages"":1})" +who stars in the movie China Seas?,"db.movies.find({""title"": ""China Seas""}, {""cast"": 1})" +Upstream is written by this person?,"db.movies.find({""title"": ""Upstream""}, {""writers"": 1})" +What is the rating of the movie One Night of Love ?,"db.movies.find({ ""title"": ""One Night of Love"" }, { ""rated"": 1})" +who was Foolish Wives written by?,"db.movies.find({""title"": ""Foolish Wives""}, {""writers"": 1})" +Can you provide more information about the IMDb rating for the movie Kid Galahad ?,"db.movies.find({""title"":""Kid Galahad""}, {""imdb"":1})" +What is the viewer rating for the movie In Old Chicago on Rotten Tomatoes?,"db.movies.find({""title"":""In Old Chicago""}, {""tomatoes.viewer.rating"":1})" +What is the production company of Black Fury?,"db.movies.find({""title"":""Black Fury""}, {""tomatoes.production"":1})" +which company produced the film Where Are My Children??,"db.movies.find({""title"":""Where Are My Children?""}, {""tomatoes.production"":1})" +How long is the runtime of the movie Dracula ?,"db.movies.find({""title"":""Dracula""}, {""runtime"":1})" +What is the runtime and rating for the movie 'Street Angel'?,"db.movies.find({""title"": ""Street Angel""}, {""runtime"": 1, ""rated"": 1})" +What is the audience rating of the movie Red Dust ?,"db.movies.find({ ""title"": ""Red Dust"" },{ ""tomatoes.viewer.rating"": 1 })" +what is The Son of Kong about?,"db.movies.find({""title"": ""The Son of Kong""}, {""plot"": 1})" +What is the runtime of the movie Lloyd's of London ?,"db.movies.find({""title"": ""Lloyd's of London""}, { ""runtime"": 1})" +what is the genre for the film The Cameraman?,"db.movies.find({""title"": ""The Cameraman""}, {""genres"": 1})" +Has the movie The Lost World won any awards?,"db.movies.find({""title"":""The Lost World""}, {""awards.wins"":1})" +What is the IMDB rating of the movie Gold Diggers of 1935 ?,"db.movies.find({""title"": ""Gold Diggers of 1935""}, { ""imdb.rating"": 1})" +What is the production company of Applause?,"db.movies.find({""title"":""Applause""}, {""tomatoes.production"":1})" +How many award nominations did the movie receive Street Angel ?,"db.movies.find({ ""title"": ""Street Angel"" },{ ""awards.nominations"": 1 })" +What is the plot summary of the movie Everybody's Woman ?,"db.movies.find({ ""title"": ""Everybody's Woman"" }, { ""plot"": 1})" +who produced the movie The World Moves On?,"db.movies.find({""title"":""The World Moves On""}, {""tomatoes.production"":1})" +what is the plot for the film Payment Deferred?,"db.movies.find({""title"": ""Payment Deferred""}, {""plot"": 1})" +who is the director of The Emperor Jones?,"db.movies.find({""title"": ""The Emperor Jones""}, {""directors"": 1})" +In what year was the movie The Thief of Bagdad released ?,"db.movies.find({ ""title"": ""The Thief of Bagdad"" }, { ""year"": 1})" +who are the actors in the film Intolerance: Love's Struggle Throughout the Ages?,"db.movies.find({""title"": ""Intolerance: Love's Struggle Throughout the Ages""}, {""cast"": 1})" +What is the IMDb rating for Tarzan the Ape Man?,"db.movies.find({""title"": ""Tarzan the Ape Man""}, {""imdb.rating"": 1})" +what type of movie is City Lights?,"db.movies.find({""title"": ""City Lights""}, {""genres"": 1})" +Who are the actors in the movie She?,"db.movies.find({""title"":""She""}, {""cast"":1})" +How many comments have been posted by users on the movie A Damsel in Distress's page on the Mflix platform?,"db.movies.find({ ""title"": ""A Damsel in Distress"" }, { ""num_mflix_comments"": 1 })" +who are the actors in the film Street Angel?,"db.movies.find({""title"": ""Street Angel""}, {""cast"": 1})" +What is the box office revenue 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""}, { ""tomatoes.boxOffice"": 1})" +who directed the film Nosferatu?,"db.movies.find({""title"": ""Nosferatu""}, {""directors"": 1})" +Can you provide more information about the languages spoken in the movie Anna Karenina ?,"db.movies.find({""title"":""Anna Karenina""}, {""languages"":1})" +who is the writer of the film Black Fury?,"db.movies.find({""title"": ""Black Fury""}, {""writers"": 1})" +who was the writer of Hallelujah?,"db.movies.find({""title"": ""Hallelujah""}, {""writers"": 1})" +What is the prevailing movie genre in Joel Coen's directed films?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Joel Coen"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +How many audience reviews have been submitted for the movie It?,"db.movies.find({ ""title"": ""It"" }, { ""tomatoes.viewer.numReviews"": 1 })" +How did the audience and critics receive Grass: A Nation's Battle for Life?,"db.movies.find({""title"":""Grass: A Nation's Battle for Life""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +Has the movie The Front Page won any awards?,"db.movies.find({""title"":""The Front Page""}, {""awards.wins"":1})" +what year was Fury released?,"db.movies.find({""title"": ""Fury""}, {""year"": 1})" +What languages are spoken in the movie Street Angel ?,"db.movies.find({""title"": ""Street Angel""}, { ""languages"": 1})" +What is the IMDB rating of the movie Marked Woman ?,"db.movies.find({""title"": ""Marked Woman""}, { ""imdb.rating"": 1})" +What is the audience rating of the movie Footlight Parade ?,"db.movies.find({ ""title"": ""Footlight Parade"" },{ ""tomatoes.viewer.rating"": 1 })" +who wrote Pèpè le Moko?,"db.movies.find({""title"": ""Pèpè le Moko""}, {""writers"": 1})" +What is the plot summary of the movie Wife! Be Like a Rose! ?,"db.movies.find({ ""title"": ""Wife! Be Like a Rose!"" }, { ""plot"": 1})" +which company produced the movie Battling Butler?,"db.movies.find({""title"":""Battling Butler""}, {""tomatoes.production"":1})" +who was Street Angel directed by?,"db.movies.find({""title"": ""Street Angel""}, {""directors"": 1})" +When was the movie The Prisoner of Zenda released in theaters?,"db.movies.find({""title"": ""The Prisoner of Zenda""}, {""released"": 1})" +What are the genres this movie A Story of Floating Weeds belongs to?,"db.movies.find({""title"":""A Story of Floating Weeds""}, {""genres"":1})" +What type of movie is Broken Lullaby ?,"db.movies.find({""title"":""Broken Lullaby""}, {""genres"":1})" +What is the MongoDB document ID of the movie The Italian?,"db.movies.find({""title"": ""The Italian""}, {""_id"": 1})" +what was the release date of Blacksmith Scene?,"db.movies.find({""title"": ""Blacksmith Scene""}, {""released"": 1})" +What movie directed by James Cameron has the longest duration?,"db.movies.find({""directors"":""James Cameron""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +who are the actors in the film The Public Enemy?,"db.movies.find({""title"": ""The Public Enemy""}, {""cast"": 1})" +Who is the lead actress of the movie In Old Chicago ?,"db.movies.find({""title"": ""In Old Chicago""}, {""cast"":{""$slice"": 1},""title"":1})" +the film Le grand jeu starred who?,"db.movies.find({""title"": ""Le grand jeu""}, {""cast"": 1})" +What is the MPAA rating of the movie My Man Godfrey?,"db.movies.find({""title"":""My Man Godfrey""}, {""rated"":1})" +What is the website associated with the movie Final Accord on Rotten Tomatoes?,"db.movies.find({""title"": ""Final Accord""}, {""tomatoes.website"": 1})" +what genre of film is Daughter of Shanghai?,"db.movies.find({""title"": ""Daughter of Shanghai""}, {""genres"": 1})" +who wrote the film Wings?,"db.movies.find({""title"": ""Wings""}, {""writers"": 1})" +"Has The Robber Symphony won any awards? If so, which ones?","db.movies.find({""title"":""The Robber Symphony"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +Who are the main actors/actresses in the movie Earth?,"db.movies.find({""title"":""Earth""}, {""cast"":1})" +What languages are spoken in the movie The Public Enemy?,"db.movies.find({""title"":""The Public Enemy""}, {""languages"":1})" +what is the movie The Four Horsemen of the Apocalypse imdb rating?,"db.movies.find({""title"": ""The Four Horsemen of the Apocalypse""}, {""imdb.rating"": 1})" +who wrote the screenplay for the film Ruggles of Red Gap?,"db.movies.aggregate([ { ""$match"": { ""title"":""Ruggles of Red Gap""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +who is the author of The Italian?,"db.movies.find({""title"": ""The Italian""}, {""writers"": 1})" +What is the meter score of the movie For Heaven's Sake according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""For Heaven's Sake""}, {""tomatoes.viewer.meter"": 1})" +Who is the lead actress of the movie Within Our Gates ?,"db.movies.find({""title"": ""Within Our Gates""}, {""cast"":{""$slice"": 1},""title"":1})" +What is the runtime of the movie The 3 Penny Opera ?,"db.movies.find({""title"": ""The 3 Penny Opera""}, { ""runtime"": 1})" +which company produced the movie The General?,"db.movies.find({""title"":""The General""}, {""tomatoes.production"":1})" +what is the genre for the film The Birth of a Nation?,"db.movies.find({""title"": ""The Birth of a Nation""}, {""genres"": 1})" +who's the director of The Black Pirate?,"db.movies.find({""title"": ""The Black Pirate""}, {""directors"": 1})" +What are the genres associated with the movie Applause ?,"db.movies.find({ ""title"": ""Applause"" }, { ""genres"": 1})" +who is the director of The Son of Kong?,"db.movies.find({""title"": ""The Son of Kong""}, {""directors"": 1})" +How does the movie Duck Soup rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Duck Soup"" },{ ""tomatoes.critic.meter"": 1 })" +what is the movie Three Smart Girls imdb rating?,"db.movies.find({""title"": ""Three Smart Girls""}, {""imdb.rating"": 1})" +What is the Rotten Tomatoes meter rating for the movie A Night at the Opera ?,"db.movies.find({""title"":""A Night at the Opera""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +What is the runtime and rating for the movie 'Sherlock Jr.'?,"db.movies.find({""title"": ""Sherlock Jr.""}, {""runtime"": 1, ""rated"": 1})" +Which Akira Kurosawa film has the shortest duration?,"db.movies.find({""directors"":""Akira Kurosawa""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +What is the IMDb ID for the movie Dishonored?,"db.movies.find({""title"":""Dishonored""}, {""imdb.id"":1})" +Who are the writers of the movie A Day in the Country ?,"db.movies.find({""title"": ""A Day in the Country""}, { ""writers"": 1})" +what's the main genre of the movies directed by Ridley Scott ?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Ridley Scott"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +what is Gold Diggers of 1935 description?,"db.movies.find({""title"": ""Gold Diggers of 1935""}, {""plot"": 1})" +what was the release year of the film The Edge of the World?,"db.movies.find({""title"": ""The Edge of the World""}, {""year"": 1})" +"the movie Grass: A Nation's Battle for Life, was written by who?","db.movies.find({""title"": ""Grass: A Nation's Battle for Life""}, {""writers"": 1})" +which person wrote Going Hollywood?,"db.movies.find({""title"": ""Going Hollywood""}, {""writers"": 1})" +How many reviews have been submitted for the movie Upstream on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Upstream"" },{ ""tomatoes.viewer.numReviews"": 1 })" +What is the rating of the movie The 39 Steps according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""The 39 Steps""}, {""tomatoes.viewer.rating"": 1})" +who is the director for Little Caesar?,"db.movies.find({""title"": ""Little Caesar""}, {""directors"": 1})" +Who are the actors in the movie Black Fury?,"db.movies.find({""title"":""Black Fury""}, {""cast"":1})" +the film The Spanish Earth starred who?,"db.movies.find({""title"": ""The Spanish Earth""}, {""cast"": 1})" +how many awards did the movie All Quiet on the Western Front win?,"db.movies.find({""title"":""All Quiet on the Western Front""}, {""awards.wins"":1})" +What type of movie is The Dark Angel ?,"db.movies.find({""title"":""The Dark Angel""}, {""genres"":1})" +what was the release year of Two Seconds?,"db.movies.find({""title"": ""Two Seconds""}, {""year"": 1})" +who directed the film Tsirk?,"db.movies.find({""title"": ""Tsirk""}, {""directors"": 1})" +How many audience reviews have been submitted for the movie Dante's Inferno?,"db.movies.find({ ""title"": ""Dante's Inferno"" }, { ""tomatoes.viewer.numReviews"": 1 })" +Who are the main actors/actresses in the movie The Power and the Glory?,"db.movies.find({""title"":""The Power and the Glory""}, {""cast"":1})" +who produced The Immigrant?,"db.movies.find({""title"":""The Immigrant""}, {""tomatoes.production"":1})" +what year was the movie The Kid Brother released?,"db.movies.find({""title"": ""The Kid Brother""}, {""year"": 1})" +which company produced the film She?,"db.movies.find({""title"":""She""}, {""tomatoes.production"":1})" +who produced the movie The Robber Symphony?,"db.movies.find({""title"":""The Robber Symphony""}, {""tomatoes.production"":1})" +What is the critical reception of the movie Dames?,"db.movies.find({""title"":""Dames""}, {""tomatoes.critic"":1})" +what is the full plot for the movie Battleship Potemkin?,"db.movies.find({""title"": ""Battleship Potemkin""}, {""fullplot"": 1})" +who produced The Iron Horse?,"db.movies.find({""title"":""The Iron Horse""}, {""tomatoes.production"":1})" +which company produced the film Triumph of the Will?,"db.movies.find({""title"":""Triumph of the Will""}, {""tomatoes.production"":1})" +"Has the movie Les Misèrables won any awards? If so, which ones?","db.movies.find({""title"":""Les Misèrables"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What are the genres associated with the movie Going Hollywood ?,"db.movies.find({ ""title"": ""Going Hollywood"" }, { ""genres"": 1})" +the movie Little Miss Marker was directed by who?,"db.movies.find({""title"": ""Little Miss Marker""}, {""directors"": 1})" +what kind of film is The Circus?,"db.movies.find({""title"": ""The Circus""}, {""genres"": 1})" +What is the viewer rating for the movie The Gold Rush on Rotten Tomatoes?,"db.movies.find({""title"":""The Gold Rush""}, {""tomatoes.viewer.rating"":1})" +What is the audience rating of the movie Murders in the Rue Morgue ?,"db.movies.find({ ""title"": ""Murders in the Rue Morgue"" },{ ""tomatoes.viewer.rating"": 1 })" +which company produced the movie Murders in the Rue Morgue?,"db.movies.find({""title"":""Murders in the Rue Morgue""}, {""tomatoes.production"":1})" +which company produced Topaze?,"db.movies.find({""title"":""Topaze""}, {""tomatoes.production"":1})" +who produced This Is My Affair?,"db.movies.find({""title"":""This Is My Affair""}, {""tomatoes.production"":1})" +Which actor has the highest count of appearances in Roman Polanski's directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Roman Polanski"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +How does the movie Gertie the Dinosaur rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Gertie the Dinosaur"" },{ ""tomatoes.critic.meter"": 1 })" +What is the runtime of the movie Gold Diggers of 1933 ?,"db.movies.find({""title"": ""Gold Diggers of 1933""}, { ""runtime"": 1})" +what was the release year of the movie Little Miss Marker?,"db.movies.find({""title"": ""Little Miss Marker""}, {""year"": 1})" +what sort of film is Sunrise?,"db.movies.find({""title"": ""Sunrise""}, {""genres"": 1})" +"Has In Old Chicago won any awards? If so, which ones?","db.movies.find({""title"":""In Old Chicago"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What is the Metacritic score of the movie Mèdchen in Uniform ?,"db.movies.find({ ""title"": ""Mèdchen in Uniform"" }, { ""metacritic"": 1})" +"The Blue Light, was written by who?","db.movies.find({""title"": ""The Blue Light""}, {""writers"": 1})" +"Has the film Regeneration won any awards? If so, which ones?","db.movies.find({""title"":""Regeneration"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +"Has the film Wild and Woolly won any awards? If so, which ones?","db.movies.find({""title"":""Wild and Woolly"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +Was the movie The Wind well received by audiences and critics?,"db.movies.find({""title"":""The Wind""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +who was the writer of She?,"db.movies.find({""title"": ""She""}, {""writers"": 1})" +The New Gulliver is a film written by this person?,"db.movies.find({""title"": ""The New Gulliver""}, {""writers"": 1})" +what genre is the film Moscow Laughs?,"db.movies.find({""title"": ""Moscow Laughs""}, {""genres"": 1})" +What are the highest-rated movies directed by Woody Allen?,"db.movies.find({""directors"": 'Woody Allen', ""imdb.rating"": {""$gt"": 8.5}})" +How did the audience and critics receive Broadway Bill?,"db.movies.find({""title"":""Broadway Bill""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +How many audience reviews have been submitted for the movie The Unknown?,"db.movies.find({ ""title"": ""The Unknown"" }, { ""tomatoes.viewer.numReviews"": 1 })" +What is the consensus among critics about the movie Queen Kelly?,"db.movies.find({""title"": ""Queen Kelly""}, { ""tomatoes.consensus"": 1})" +What is the running time of the film Dekigokoro?,"db.movies.find({""title"":""Dekigokoro""}, {""runtime"":1})" +What is the plot summary of the movie The Black Pirate ?,"db.movies.find({ ""title"": ""The Black Pirate"" }, { ""plot"": 1})" +What is the IMDb rating for the film Final Accord?,"db.movies.find({""title"": ""Final Accord""}, {""imdb.rating"": 1})" +What is the meter score of the movie Gertie the Dinosaur according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Gertie the Dinosaur""}, {""tomatoes.viewer.meter"": 1})" +What is the box office revenue of the movie Our Hospitality ?,"db.movies.find({""title"": ""Our Hospitality""}, { ""tomatoes.boxOffice"": 1})" +what was the release date of Come and Get It?,"db.movies.find({""title"": ""Come and Get It""}, {""released"": 1})" +what kind of movie is Street Angel?,"db.movies.find({""title"": ""Street Angel""}, {""genres"": 1})" +which person wrote He Who Gets Slapped?,"db.movies.find({""title"": ""He Who Gets Slapped""}, {""writers"": 1})" +the film The Red Head was directed by who?,"db.movies.find({""title"": ""The Red Head""}, {""directors"": 1})" +what is the full plot for Mèdchen in Uniform?,"db.movies.find({""title"": ""Mèdchen in Uniform""}, {""fullplot"": 1})" +which person wrote Beau Geste?,"db.movies.find({""title"": ""Beau Geste""}, {""writers"": 1})" +who are the actors in Der Kaiser von Kalifornien?,"db.movies.find({""title"": ""Der Kaiser von Kalifornien""}, {""cast"": 1})" +What are the names of the films that were directed by Vittorio De Sica and released in the 1990s?,"db.movies.find({""directors"": 'Vittorio De Sica', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +What is the IMDb rating for the movie Men Without Women ?,"db.movies.find({""title"":""Men Without Women""}, {""imdb.rating"":1})" +What is the language of Curly Top?,"db.movies.find({""title"":""Curly Top""}, {""languages"":1})" +What is the viewer rating for the movie Tsirk on Rotten Tomatoes?,"db.movies.find({""title"":""Tsirk""}, {""tomatoes.viewer.rating"":1})" +What is the viewer rating for the movie The Fall of the House of Usher on Rotten Tomatoes?,"db.movies.find({""title"":""The Fall of the House of Usher""}, {""tomatoes.viewer.rating"":1})" +What is the IMDb rating for the film Regeneration?,"db.movies.find({""title"": ""Regeneration""}, {""imdb.rating"": 1})" +In what year was the movie Broken Blossoms or The Yellow Man and the Girl released?,"db.movies.find({""title"":""Broken Blossoms or The Yellow Man and the Girl""}, {""year"":1})" +who wrote the screenplay for the movie Lenin in October?,"db.movies.aggregate([ { ""$match"": { ""title"":""Lenin in October""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +What are the genres this movie The Last of the Mohicans belongs to?,"db.movies.find({""title"":""The Last of the Mohicans""}, {""genres"":1})" +who directed Mr. Deeds Goes to Town?,"db.movies.find({""title"": ""Mr. Deeds Goes to Town""}, {""directors"": 1})" +who is the author of Les Misèrables?,"db.movies.find({""title"": ""Les Misèrables""}, {""writers"": 1})" +What type of movie is Harvest ?,"db.movies.find({""title"":""Harvest""}, {""genres"":1})" +What is the movie The Hunchback of Notre Dame rating?,"db.movies.find({""title"":""The Hunchback of Notre Dame""}, {""rated"":1})" +What is the ID of the movie The Lives of a Bengal Lancer on IMDB?,"db.movies.find({""title"": ""The Lives of a Bengal Lancer""}, {""imdb.id"": 1})" +who wrote The Last of the Mohicans?,"db.movies.find({""title"": ""The Last of the Mohicans""}, {""writers"": 1})" +What type of media is Theodora Goes Wild?,"db.movies.find({ ""title"": ""Theodora Goes Wild"" }, { ""type"": 1})" +what is the genre for the film Pèpè le Moko?,"db.movies.find({""title"": ""Pèpè le Moko""}, {""genres"": 1})" +"What is the general rating of Louis Malle's films in the database, calculated as an average?","db.movies.aggregate([{""$match"": {""directors"":""Louis Malle""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +"Has the movie Broken Lullaby won any awards? If so, which ones?","db.movies.find({""title"":""Broken Lullaby"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What is the ID of the movie The Lost Patrol on IMDB?,"db.movies.find({""title"": ""The Lost Patrol""}, {""imdb.id"": 1})" +Who are the actors in the movie Little Women?,"db.movies.find({""title"":""Little Women""}, {""cast"":1})" +who was The Chechahcos written by?,"db.movies.find({""title"": ""The Chechahcos""}, {""writers"": 1})" +The Chechahcos was directed by who?,"db.movies.find({""title"": ""The Chechahcos""}, {""directors"": 1})" +who produced the film Dante's Inferno?,"db.movies.find({""title"":""Dante's Inferno""}, {""tomatoes.production"":1})" +What is the consensus among critics about the movie The 39 Steps ?,"db.movies.find({""title"": ""The 39 Steps""}, {""tomatoes.consensus"": 1})" +What is the rating of the movie Everybody's Woman on IMDb?,"db.movies.find({""title"":""Everybody's Woman""}, {""imdb.rating"":1})" +What is the MongoDB document ID of the movie Skippy?,"db.movies.find({""title"": ""Skippy""}, {""_id"": 1})" +what was the genre of the movie Two Seconds?,"db.movies.find({""title"": ""Two Seconds""}, {""genres"": 1})" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie Dishonored ?,"db.movies.find({""title"":""Dishonored""}, {""tomatoes.viewer.meter"":1})" +What is the meter score of the movie Peter Pan according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Peter Pan""}, {""tomatoes.viewer.meter"": 1})" +what year was the movie Chapayev released?,"db.movies.find({""title"": ""Chapayev""}, {""year"": 1})" +What is the consensus among critics about the movie Payment Deferred ?,"db.movies.find({""title"": ""Payment Deferred""}, {""tomatoes.consensus"": 1})" +What is the running time of the movie Modern Times?,"db.movies.find({""title"":""Modern Times""}, {""runtime"":1})" +what type of movie is Harvest?,"db.movies.find({""title"": ""Harvest""}, {""genres"": 1})" +Was the movie The Crusades well received by audiences?,"db.movies.find({""title"":""The Crusades""}, {""tomatoes.viewer"":1})" +What is the production company of the movie Clash of the Wolves?,"db.movies.find({""title"":""Clash of the Wolves""}, {""tomatoes.production"":1})" +what was the release year of the movie Westfront 1918?,"db.movies.find({""title"": ""Westfront 1918""}, {""year"": 1})" +What is the running time of Zero for Conduct?,"db.movies.find({""title"":""Zero for Conduct""}, {""runtime"":1})" +who is listed as director for Three Ages?,"db.movies.find({""title"": ""Three Ages""}, {""directors"": 1})" +What is the meter score of the movie The Lost World according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""The Lost World""}, {""tomatoes.viewer.meter"": 1})" +Which films directed by Woody Allen have the highest ratings?,"db.movies.find({""directors"": 'Woody Allen', ""imdb.rating"": {""$gt"": 8.5}})" +What is the average score assigned to all Spike Lee movies in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Spike Lee""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +which person wrote the film A Midsummer Night's Dream?,"db.movies.find({""title"": ""A Midsummer Night's Dream""}, {""writers"": 1})" +When was the information last updated for the movie The Black Cat ?,"db.movies.find({ ""title"": ""The Black Cat"" },{ ""lastupdated"": 1 })" +who stars in the film The Guardsman?,"db.movies.find({""title"": ""The Guardsman""}, {""cast"": 1})" +What is the Metacritic score of the movie The General ?,"db.movies.find({ ""title"": ""The General"" }, { ""metacritic"": 1})" +who is the writer of The Last of the Mohicans?,"db.movies.find({""title"": ""The Last of the Mohicans""}, {""writers"": 1})" +What is the full plot summary of the movie A Midsummer Night's Dream ?,"db.movies.find({""title"": ""A Midsummer Night's Dream""}, {""plot"": 1})" +the movie These Three was directed by who?,"db.movies.find({""title"": ""These Three""}, {""directors"": 1})" +What is the production company of the film The Cheat?,"db.movies.find({""title"":""The Cheat""}, {""tomatoes.production"":1})" +what is the genre of The Invisible Ray?,"db.movies.find({""title"": ""The Invisible Ray""}, {""genres"": 1})" +What is the production company behind the movie Man of Aran ?,"db.movies.find({""title"": ""Man of Aran""}, {""tomatoes.production"": 1})" +who acted in the film Wonder Bar?,"db.movies.find({""title"": ""Wonder Bar""}, {""cast"": 1})" +What is the runtime of the movie Daughter of Shanghai ?,"db.movies.find({""title"": ""Daughter of Shanghai""}, { ""runtime"": 1})" +What is the Rotten Tomatoes meter rating for the movie Camille ?,"db.movies.find({""title"":""Camille""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +What is the complete length of all movies directed by Jean Renoir?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Jean Renoir"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +which person wrote The Saphead?,"db.movies.find({""title"": ""The Saphead""}, {""writers"": 1})" +who wrote the movie The Last Command?,"db.movies.find({""title"": ""The Last Command""}, {""writers"": 1})" +What is the audience rating of the movie Little Caesar ?,"db.movies.find({ ""title"": ""Little Caesar"" },{ ""tomatoes.viewer.rating"": 1 })" +What is the audience rating of the movie Moscow Laughs ?,"db.movies.find({ ""title"": ""Moscow Laughs"" },{ ""tomatoes.viewer.rating"": 1 })" +who wrote the screenplay for Forbidden?,"db.movies.aggregate([ { ""$match"": { ""title"":""Forbidden""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +what is the full plot for Duck Soup?,"db.movies.find({""title"": ""Duck Soup""}, {""fullplot"": 1})" +who directed the movie Gertie the Dinosaur?,"db.movies.find({""title"": ""Gertie the Dinosaur""}, {""directors"": 1})" +What is the plot summary of the movie King Solomon's Mines ?,"db.movies.find({ ""title"": ""King Solomon's Mines"" }, { ""plot"": 1})" +Can you provide a longer version of the movie Nanook of the North plot?,"db.movies.find({""title"":""Nanook of the North""}, {""fullplot"":1})" +Who are the writers of the movie Metropolis ?,"db.movies.find({""title"": ""Metropolis""}, { ""writers"": 1})" +"What is the general rating of Orson Welles's films in the database, calculated as an average?","db.movies.aggregate([{""$match"": {""directors"":""Orson Welles""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +What are the countries associated with the movie Come and Get It ?,"db.movies.find({""title"": ""Come and Get It""}, {""countries"": 1})" +how has The Cheat been recieved by critics and audience?,"db.movies.find({""title"":""The Cheat""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +who wrote the screenplay for the movie The Garden of Allah?,"db.movies.aggregate([ { ""$match"": { ""title"":""The Garden of Allah""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +A Farewell to Arms was directed by who?,"db.movies.find({""title"": ""A Farewell to Arms""}, {""directors"": 1})" +what is The Garden of Allah about in details?,"db.movies.find({""title"": ""The Garden of Allah""}, {""fullplot"": 1})" +What is the box office revenue of the movie A Free Soul ?,"db.movies.find({""title"": ""A Free Soul""}, { ""tomatoes.boxOffice"": 1})" +How many award nominations did the movie receive The Blue Light ?,"db.movies.find({ ""title"": ""The Blue Light"" },{ ""awards.nominations"": 1 })" +the film Man with a Movie Camera starred who?,"db.movies.find({""title"": ""Man with a Movie Camera""}, {""cast"": 1})" +what kind of movie is Pandora's Box?,"db.movies.find({""title"": ""Pandora's Box""}, {""genres"": 1})" +What are the top-rated movies directed by Steven Spielberg?,"db.movies.find({""directors"": 'Steven Spielberg', ""imdb.rating"": {""$gt"": 8.5}})" +what was the genre of the movie Les Misèrables?,"db.movies.find({""title"": ""Les Misèrables""}, {""genres"": 1})" +What is the language of the film They Won't Forget?,"db.movies.find({""title"":""They Won't Forget""}, {""languages"":1})" +What is the IMDB rating of the movie The Docks of New York ?,"db.movies.find({""title"": ""The Docks of New York""}, { ""imdb.rating"": 1})" +what is the genre for the movie The Mummy?,"db.movies.find({""title"": ""The Mummy""}, {""genres"": 1})" +what was the release year of the film Earth?,"db.movies.find({""title"": ""Earth""}, {""year"": 1})" +what is the genre for the film Mary of Scotland?,"db.movies.find({""title"": ""Mary of Scotland""}, {""genres"": 1})" +what genre of movie is The Song of Night?,"db.movies.find({""title"": ""The Song of Night""}, {""genres"": 1})" +What is the production company of the film Miss Lulu Bett?,"db.movies.find({""title"":""Miss Lulu Bett""}, {""tomatoes.production"":1})" +what is Dante's Inferno imdb rating?,"db.movies.find({""title"": ""Dante's Inferno""}, {""imdb.rating"": 1})" +Who are the main actors in Cavalcade ?,"db.movies.find({ ""title"": ""Cavalcade"" }, { ""cast"": 1})" +What is the percentage of positive reviews among critics for the movie Zero for Conduct ?,"db.movies.find({ ""title"": ""Zero for Conduct"" },{ ""tomatoes.critic.meter"": 1 })" +What are the genres this movie The Saphead belongs to?,"db.movies.find({""title"":""The Saphead""}, {""genres"":1})" +what is the full plot for the film Footlight Parade?,"db.movies.find({""title"": ""Footlight Parade""}, {""fullplot"": 1})" +who is the director for Zoo in Budapest?,"db.movies.find({""title"": ""Zoo in Budapest""}, {""directors"": 1})" +Has the movie Peter Pan won any awards?,"db.movies.find({""title"":""Peter Pan""}, {""awards.wins"":1})" +what was the genre of the movie Final Accord?,"db.movies.find({""title"": ""Final Accord""}, {""genres"": 1})" +"What is the text description of the movie Steamboat Bill, Jr. awards?","db.movies.find({""title"":""Steamboat Bill, Jr.""}, {""awards.text"":1})" +"What type of media is Laugh, Clown, Laugh?","db.movies.find({ ""title"": ""Laugh, Clown, Laugh"" }, { ""type"": 1})" +What is the freshness score of the movie Under the Roofs of Paris on Rotten Tomatoes?,"db.movies.find({""title"": ""Under the Roofs of Paris""}, {""tomatoes.fresh"": 1})" +who is the writer of the film Kid Galahad?,"db.movies.find({""title"": ""Kid Galahad""}, {""writers"": 1})" +What is the principal film genre that David Lynch focuses on in his directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""David Lynch"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +Which films directed by Stanley Kubrick have the highest ratings?,"db.movies.find({""directors"": 'Stanley Kubrick', ""imdb.rating"": {""$gt"": 8.5}})" +How many reviews did the movie M receive on Rotten Tomatoes?,"db.movies.find({""title"":""M""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +Can you provide more information about the Rotten Tomatoes rating for the movie The Beloved Vagabond?,"db.movies.find({""title"": ""The Beloved Vagabond""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +what is the movie Night Must Fall imdb rating?,"db.movies.find({""title"": ""Night Must Fall""}, {""imdb.rating"": 1})" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie Black Fury ?,"db.movies.find({""title"":""Black Fury""}, {""tomatoes.viewer.meter"":1})" +Who is the lead actress of the movie The Divorcee ?,"db.movies.find({""title"": ""The Divorcee""}, {""cast"":{""$slice"": 1},""title"":1})" +who starred in the movie The Birth of a Nation?,"db.movies.find({""title"": ""The Birth of a Nation""}, {""cast"": 1})" +which person wrote the movie The Public Enemy?,"db.movies.find({""title"": ""The Public Enemy""}, {""writers"": 1})" +What is the production company of the movie The Poor Little Rich Girl?,"db.movies.find({""title"":""The Poor Little Rich Girl""}, {""tomatoes.production"":1})" +who was the writer of the film The Four Horsemen of the Apocalypse?,"db.movies.find({""title"": ""The Four Horsemen of the Apocalypse""}, {""writers"": 1})" +What is the language of Wild Oranges?,"db.movies.find({""title"":""Wild Oranges""}, {""languages"":1})" +who produced the film The Gold Rush?,"db.movies.find({""title"":""The Gold Rush""}, {""tomatoes.production"":1})" +How many votes did the movie This Is My Affair receive on IMDB?,"db.movies.find({""title"": ""This Is My Affair""}, { ""imdb.votes"": 1})" +What is the ID of the movie The Wind on IMDB?,"db.movies.find({""title"": ""The Wind""}, {""imdb.id"": 1})" +who was The World Moves On directed by?,"db.movies.find({""title"": ""The World Moves On""}, {""directors"": 1})" +who starred in The Prince and the Pauper?,"db.movies.find({""title"": ""The Prince and the Pauper""}, {""cast"": 1})" +How many nominations did the movie Wild Boys of the Road receive?,"db.movies.find({""title"":""Wild Boys of the Road""}, {""awards.nominations"":1})" +Who is the lead actress of the movie Going Hollywood ?,"db.movies.find({""title"": ""Going Hollywood""}, {""cast"":{""$slice"": 1},""title"":1})" +How many award nominations did the movie receive Under the Roofs of Paris ?,"db.movies.find({ ""title"": ""Under the Roofs of Paris"" },{ ""awards.nominations"": 1 })" +Who is the director of the movie Triumph of the Will?,"db.movies.find({""title"": ""Triumph of the Will""}, { ""directors"": 1})" +What is the audience rating of the movie Three Smart Girls ?,"db.movies.find({ ""title"": ""Three Smart Girls"" },{ ""tomatoes.viewer.rating"": 1 })" +what is the film Beau Geste description ?,"db.movies.find({""title"": ""Beau Geste""}, {""plot"": 1})" +What are the genres this movie The Prisoner of Zenda belongs to?,"db.movies.find({""title"":""The Prisoner of Zenda""}, {""genres"":1})" +the movie Greed starred who?,"db.movies.find({""title"": ""Greed""}, {""cast"": 1})" +Who is the lead actor of the movie Salomè ?,"db.movies.find({""title"": ""Salomè""}, {""cast"":{""$slice"": 1},""title"":1})" +What is the consensus among critics about the movie A Day in the Country?,"db.movies.find({""title"": ""A Day in the Country""}, { ""tomatoes.consensus"": 1})" +who directed Chapayev?,"db.movies.find({""title"": ""Chapayev""}, {""directors"": 1})" +what genre is My Man Godfrey?,"db.movies.find({""title"": ""My Man Godfrey""}, {""genres"": 1})" +How many nominations did the movie Pandora's Box receive?,"db.movies.find({""title"":""Pandora's Box""}, {""awards.nominations"":1})" +Who are the main actors/actresses in the movie The Awful Truth?,"db.movies.find({""title"":""The Awful Truth""}, {""cast"":1})" +How long is the movie The Cameraman in minutes?,"db.movies.find({""title"":""The Cameraman""}, {""runtime"":1})" +what was the release year of the movie Footlight Parade?,"db.movies.find({""title"": ""Footlight Parade""}, {""year"": 1})" +In which countries was the movie Applause produced?,"db.movies.find({""title"":""Applause""}, {""countries"":1})" +When was the movie Within Our Gates released?,"db.movies.find({""title"":""Within Our Gates""}, {""released"":1})" +the film Night Must Fall starred who?,"db.movies.find({""title"": ""Night Must Fall""}, {""cast"": 1})" +what is the genre for the movie The World Moves On?,"db.movies.find({""title"": ""The World Moves On""}, {""genres"": 1})" +who was Popeye the Sailor Meets Sindbad the Sailor directed by?,"db.movies.find({""title"": ""Popeye the Sailor Meets Sindbad the Sailor""}, {""directors"": 1})" +"Has The Good Earth won any awards? If so, which ones?","db.movies.find({""title"":""The Good Earth"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What is the meter score of the movie 42nd Street according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""42nd Street""}, {""tomatoes.viewer.meter"": 1})" +what was the release year of the film Wife! Be Like a Rose!?,"db.movies.find({""title"": ""Wife! Be Like a Rose!""}, {""year"": 1})" +What was the release date for the movie Folies Bergère de Paris?,"db.movies.find({""title"":""Folies Bergère de Paris""}, {""released"":1})" +Can you provide more information about the Rotten Tomatoes rating for the movie Dekigokoro?,"db.movies.find({""title"": ""Dekigokoro""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +Was the movie Cimarron well received by audiences and critics?,"db.movies.find({""title"":""Cimarron""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the movie Dracula about? Can you provide a brief summary?,"db.movies.find({""title"":""Dracula""}, {""plot"":1})" +Who are the main actors in Sanders of the River ?,"db.movies.find({ ""title"": ""Sanders of the River"" }, { ""cast"": 1})" +what kind of film is The Blood of a Poet?,"db.movies.find({""title"": ""The Blood of a Poet""}, {""genres"": 1})" +the film It was directed by who?,"db.movies.find({""title"": ""It""}, {""directors"": 1})" +What is the production company behind the movie x?,"db.movies.find({""title"": ""The Thin Man""}, { ""tomatoes.production"": 1})" +Can you give me a brief summary of the movie Cleopatra plot?,"db.movies.find({""title"":""Cleopatra""}, {""plot"":1})" +Which cinematic productions were directed by Andrei Tarkovsky?,"db.movies.find({""directors"": ""Andrei Tarkovsky""},{""title"":1})" +who wrote the screenplay for the film Broadway Melody of 1936?,"db.movies.aggregate([ { ""$match"": { ""title"":""Broadway Melody of 1936""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +who are the actors in The Man Who Could Work Miracles?,"db.movies.find({""title"": ""The Man Who Could Work Miracles""}, {""cast"": 1})" +"Has the film Sons of the Desert won any awards? If so, which ones?","db.movies.find({""title"":""Sons of the Desert"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +How many comments have been posted by users on the movie The Dark Angel's page on the Mflix platform?,"db.movies.find({ ""title"": ""The Dark Angel"" }, { ""num_mflix_comments"": 1 })" +In what year was the movie Alice Adams released ?,"db.movies.find({ ""title"": ""Alice Adams"" }, { ""year"": 1})" +What is the IMDb rating for the movie Ella Cinders?,"db.movies.find({""title"": ""Ella Cinders""}, {""imdb.rating"": 1})" +San Francisco is written by this person?,"db.movies.find({""title"": ""San Francisco""}, {""writers"": 1})" +What was the release date for the movie The Trail of the Lonesome Pine?,"db.movies.find({""title"":""The Trail of the Lonesome Pine""}, {""released"":1})" +Can you provide more information about the languages spoken in the movie Broadway Melody of 1936 ?,"db.movies.find({""title"":""Broadway Melody of 1936""}, {""languages"":1})" +Who is the lead actress of the movie Flying Down to Rio ?,"db.movies.find({""title"": ""Flying Down to Rio""}, {""cast"":{""$slice"": 1},""title"":1})" +What is the Tomatometer score of the movie Viva Villa! ?,"db.movies.find({ ""title"": ""Viva Villa!"" },{ ""tomatoes.critic.meter"": 1 })" +who was Broken Blossoms or The Yellow Man and the Girl written by?,"db.movies.find({""title"": ""Broken Blossoms or The Yellow Man and the Girl""}, {""writers"": 1})" +who are the actors in Anna Karenina?,"db.movies.find({""title"": ""Anna Karenina""}, {""cast"": 1})" +what is the full plot for La Grande Illusion?,"db.movies.find({""title"": ""La Grande Illusion""}, {""fullplot"": 1})" +what is Nosferatu about?,"db.movies.find({""title"": ""Nosferatu""}, {""plot"": 1})" +what kind of film is The Hunchback of Notre Dame?,"db.movies.find({""title"": ""The Hunchback of Notre Dame""}, {""genres"": 1})" +which company produced the film The Great Ziegfeld?,"db.movies.find({""title"":""The Great Ziegfeld""}, {""tomatoes.production"":1})" +who acted in the movie The Gold Rush?,"db.movies.find({""title"": ""The Gold Rush""}, {""cast"": 1})" +What is the Tomatometer score of the movie Death Takes a Holiday ?,"db.movies.find({ ""title"": ""Death Takes a Holiday"" },{ ""tomatoes.critic.meter"": 1 })" +How does the movie Blacksmith Scene rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Blacksmith Scene"" },{ ""tomatoes.critic.meter"": 1 })" +who is the director for Gold Diggers of 1935?,"db.movies.find({""title"": ""Gold Diggers of 1935""}, {""directors"": 1})" +What is the title of the movie with the shortest duration that Louis Malle directed?,"db.movies.find({""directors"":""Louis Malle""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +what sort of film is Le grand jeu?,"db.movies.find({""title"": ""Le grand jeu""}, {""genres"": 1})" +How many reviews have been submitted by critics for the movie The Emperor Jones?,"db.movies.find({ ""title"": ""The Emperor Jones"" }, { ""tomatoes.critic.numReviews"": 1 })" +When was the Tomatometer score and other Tomato-related information last updated for the movie Dr. Jekyll and Mr. Hyde?,"db.movies.find({""title"": ""Dr. Jekyll and Mr. Hyde""}, { ""tomatoes.lastUpdated"": 1})" +What is the website associated with the movie The Lives of a Bengal Lancer on Rotten Tomatoes?,"db.movies.find({""title"": ""The Lives of a Bengal Lancer""}, {""tomatoes.website"": 1})" +What is the IMDb rating for Viva Villa!?,"db.movies.find({""title"": ""Viva Villa!""}, {""imdb.rating"": 1})" +What is the production company of the film It Happened One Night?,"db.movies.find({""title"":""It Happened One Night""}, {""tomatoes.production"":1})" +Which movies from the 1990s were directed by Roberto Rossellini?,"db.movies.find({""directors"": 'Roberto Rossellini', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +"In Eric Rohmer's directed movies, which actor has made the most appearances?","db.movies.aggregate([ { ""$match"": { ""directors"": ""Eric Rohmer"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What type of media is The Blue Light?,"db.movies.find({ ""title"": ""The Blue Light"" }, { ""type"": 1})" +What is the production company of the film The Blue Bird?,"db.movies.find({""title"":""The Blue Bird""}, {""tomatoes.production"":1})" +who are the actors in the film The Spanish Earth?,"db.movies.find({""title"": ""The Spanish Earth""}, {""cast"": 1})" +the film She was directed by who?,"db.movies.find({""title"": ""She""}, {""directors"": 1})" +What is the running time of the movie Where Are My Children??,"db.movies.find({""title"":""Where Are My Children?""}, {""runtime"":1})" +What is the IMDb rating for the movie The Prisoner of Shark Island ?,"db.movies.find({""title"":""The Prisoner of Shark Island""}, {""imdb.rating"":1})" +What is the viewer rating for the movie The Hurricane on Rotten Tomatoes?,"db.movies.find({""title"":""The Hurricane""}, {""tomatoes.viewer.rating"":1})" +what is the plot for the movie The Robber Symphony?,"db.movies.find({""title"": ""The Robber Symphony""}, {""plot"": 1})" +What is the MongoDB document ID of the movie Top Hat?,"db.movies.find({""title"": ""Top Hat""}, {""_id"": 1})" +"what is I Was Born, But... description?","db.movies.find({""title"": ""I Was Born, But...""}, {""plot"": 1})" +Can you provide me with a list of movies directed by Alfred Hitchcock that were released in the 1990s?,"db.movies.find({""directors"": 'Alfred Hitchcock', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +What is the rating of the movie Flying Down to Rio according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Flying Down to Rio""}, {""tomatoes.viewer.rating"": 1})" +How many audience reviews have been submitted for the movie Four Sons ?,"db.movies.find({ ""title"": ""Four Sons"" },{ ""tomatoes.viewer.numReviews"": 1 })" +How many votes did the movie Disraeli receive on IMDB?,"db.movies.find({""title"": ""Disraeli""}, { ""imdb.votes"": 1})" +What type of media is The Strong Man?,"db.movies.find({ ""title"": ""The Strong Man"" }, { ""type"": 1})" +what genre is the film The Passion of Joan of Arc?,"db.movies.find({""title"": ""The Passion of Joan of Arc""}, {""genres"": 1})" +How did the audience and critics receive the film Wild Boys of the Road?,"db.movies.find({""title"":""Wild Boys of the Road""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +Who is the lead actress of the movie Curly Top ?,"db.movies.find({""title"": ""Curly Top""}, {""cast"":{""$slice"": 1},""title"":1})" +who is the director for The Cheat?,"db.movies.find({""title"": ""The Cheat""}, {""directors"": 1})" +How many votes does the movie The Perils of Pauline have on IMDb?,"db.movies.find({""title"":""The Perils of Pauline""}, {""imdb.votes"":1})" +What is the language of Frankenstein?,"db.movies.find({""title"":""Frankenstein""}, {""languages"":1})" +who starred in the movie The Blue Bird?,"db.movies.find({""title"": ""The Blue Bird""}, {""cast"": 1})" +Can you provide more information about the Rotten Tomatoes rating for the movie Triumph of the Will?,"db.movies.find({""title"": ""Triumph of the Will""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +What is the text description of the movie The Big Parade awards?,"db.movies.find({""title"":""The Big Parade""}, {""awards.text"":1})" +What is the ID of the movie The Big House on IMDB?,"db.movies.find({""title"": ""The Big House""}, {""imdb.id"": 1})" +who was the writer of the film Broken Lullaby?,"db.movies.find({""title"": ""Broken Lullaby""}, {""writers"": 1})" +what kind of film is She Done Him Wrong?,"db.movies.find({""title"": ""She Done Him Wrong""}, {""genres"": 1})" +When was the Tomatometer score and other Tomato-related information last updated for the movie Swedenhielms Family?,"db.movies.find({""title"": ""Swedenhielms Family""}, { ""tomatoes.lastUpdated"": 1})" +What are some of the types of movies that Satyajit Ray has directed?,"db.movies.distinct(""genres"", { ""directors"": ""Satyajit Ray"" })" +In what year was the movie Who Killed Cock Robin? released ?,"db.movies.find({ ""title"": ""Who Killed Cock Robin?"" }, { ""year"": 1})" +What is the IMDb ID for the movie The Land Beyond the Sunset?,"db.movies.find({""title"":""The Land Beyond the Sunset""}, {""imdb.id"":1})" +What is the MongoDB document ID of the movie Men Without Women?,"db.movies.find({""title"": ""Men Without Women""}, {""_id"": 1})" +How many wins did the movie The Thief of Bagdad receive?,"db.movies.find({""title"":""The Thief of Bagdad""}, {""awards.wins"":1})" +what was the release year of Gold Diggers of 1935?,"db.movies.find({""title"": ""Gold Diggers of 1935""}, {""year"": 1})" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie From Hand to Mouth ?,"db.movies.find({""title"":""From Hand to Mouth""}, {""tomatoes.viewer.meter"":1})" +who is listed as director for Wild and Woolly?,"db.movies.find({""title"": ""Wild and Woolly""}, {""directors"": 1})" +what is the full plot for the movie The Immigrant?,"db.movies.find({""title"": ""The Immigrant""}, {""fullplot"": 1})" +What is the audience rating of the movie In Old Arizona ?,"db.movies.find({ ""title"": ""In Old Arizona"" },{ ""tomatoes.viewer.rating"": 1 })" +What is the production company behind the movie Black Fury ?,"db.movies.find({""title"": ""Black Fury""}, { ""tomatoes.production"": 1})" +When was the movie Maria Chapdelaine released?,"db.movies.find({""title"":""Maria Chapdelaine""}, {""released"":1})" +what is the full plot for the film The Kid?,"db.movies.find({""title"": ""The Kid""}, {""fullplot"": 1})" +"Les Misèrables, is written by who?","db.movies.find({""title"": ""Les Misèrables""}, {""writers"": 1})" +the film The Music Box starred which actors?,"db.movies.find({""title"": ""The Music Box""}, {""cast"": 1})" +What are the highest-rated movies directed by Tim Burton?,"db.movies.find({""directors"": 'Tim Burton', ""imdb.rating"": {""$gt"": 8.5}})" +what is the genre for the movie Dames?,"db.movies.find({""title"": ""Dames""}, {""genres"": 1})" +who wrote the screenplay for the movie Dracula?,"db.movies.aggregate([ { ""$match"": { ""title"":""Dracula""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +In what year was the movie Little Caesar released?,"db.movies.find({""title"":""Little Caesar""}, {""year"":1})" +When was the movie Black Legion released in theaters?,"db.movies.find({""title"": ""Black Legion""}, {""released"": 1})" +which person wrote the movie The Edge of the World?,"db.movies.find({""title"": ""The Edge of the World""}, {""writers"": 1})" +When was the information last updated for the movie Applause ?,"db.movies.find({ ""title"": ""Applause"" },{ ""lastupdated"": 1 })" +What is the IMDb ID for the movie I Am a Fugitive from a Chain Gang?,"db.movies.find({""title"":""I Am a Fugitive from a Chain Gang""}, {""imdb.id"":1})" +Spike Lee directed which films in the 1990s?,"db.movies.find({""directors"": 'Spike Lee', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +Could you tell me which Gus Van Sant-directed film has the longest running time?,"db.movies.find({""directors"":""Gus Van Sant""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +When was the Tomatometer score and other Tomato-related information last updated for the movie Modern Times?,"db.movies.find({""title"": ""Modern Times""}, { ""tomatoes.lastUpdated"": 1})" +What is the production company of the movie Popeye the Sailor Meets Sindbad the Sailor?,"db.movies.find({""title"":""Popeye the Sailor Meets Sindbad the Sailor""}, {""tomatoes.production"":1})" +What is the audience rating of the movie Curly Top ?,"db.movies.find({ ""title"": ""Curly Top"" },{ ""tomatoes.viewer.rating"": 1 })" +who acted in the film The Divine Lady?,"db.movies.find({""title"": ""The Divine Lady""}, {""cast"": 1})" +Who is the lead actor of the movie Lloyd's of London ?,"db.movies.find({""title"": ""Lloyd's of London""}, {""cast"":{""$slice"": 1},""title"":1})" +When was the Tomatometer score and other Tomato-related information last updated for the movie The Band Concert?,"db.movies.find({""title"": ""The Band Concert""}, { ""tomatoes.lastUpdated"": 1})" +What was the release date for the movie They Won't Forget?,"db.movies.find({""title"":""They Won't Forget""}, {""released"":1})" +the movie The Thin Man starred who?,"db.movies.find({""title"": ""The Thin Man""}, {""cast"": 1})" +what was the genre of the film Metropolis?,"db.movies.find({""title"": ""Metropolis""}, {""genres"": 1})" +which person wrote The Crowd?,"db.movies.find({""title"": ""The Crowd""}, {""writers"": 1})" +What is the imdbID and year of release for the movie with a title of 'The Divine Lady'?,"db.movies.find({""title"": ""The Divine Lady""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +"In movies directed by Yasujiro Ozu, which actor has the highest number of performances?","db.movies.aggregate([ { ""$match"": { ""directors"": ""Yasujiro Ozu"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What was the release date for the movie The Beloved Vagabond?,"db.movies.find({""title"":""The Beloved Vagabond""}, {""released"":1})" +what kind of movie is College?,"db.movies.find({""title"": ""College""}, {""genres"": 1})" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie The Cameraman ?,"db.movies.find({""title"":""The Cameraman""}, {""tomatoes.viewer.meter"":1})" +what genre of film is City Streets?,"db.movies.find({""title"": ""City Streets""}, {""genres"": 1})" +What is the production company behind the movie Theodora Goes Wild ?,"db.movies.find({""title"": ""Theodora Goes Wild""}, {""tomatoes.production"": 1})" +What is the audience rating of the movie Movie Crazy ?,"db.movies.find({ ""title"": ""Movie Crazy"" },{ ""tomatoes.viewer.rating"": 1 })" +who is the director for The Great Ziegfeld?,"db.movies.find({""title"": ""The Great Ziegfeld""}, {""directors"": 1})" +What is the meter score of the movie The Red Head according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""The Red Head""}, {""tomatoes.viewer.meter"": 1})" +who was the movie The Song of Night written by?,"db.movies.find({""title"": ""The Song of Night""}, {""writers"": 1})" +"the film The Prisoner of Zenda, was written by who?","db.movies.find({""title"": ""The Prisoner of Zenda""}, {""writers"": 1})" +who acted in the film Anna Karenina?,"db.movies.find({""title"": ""Anna Karenina""}, {""cast"": 1})" +who wrote the screenplay for the movie For Heaven's Sake?,"db.movies.aggregate([ { ""$match"": { ""title"":""For Heaven's Sake""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +What are the names of the films that were directed by Michelangelo Antonioni and released in the 1990s?,"db.movies.find({""directors"": 'Michelangelo Antonioni', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +who is the writer of the movie Mary of Scotland?,"db.movies.find({""title"": ""Mary of Scotland""}, {""writers"": 1})" +What is the full plot summary of the movie Tarzan the Ape Man ?,"db.movies.find({""title"": ""Tarzan the Ape Man""}, {""plot"": 1})" +In what language was the movie Earth released?,"db.movies.find({ ""title"": ""Earth"" }, { ""languages"": 1})" +what is the plot for the movie The Wedding March?,"db.movies.find({""title"": ""The Wedding March""}, {""plot"": 1})" +the movie The Crusades starred who?,"db.movies.find({""title"": ""The Crusades""}, {""cast"": 1})" +How many awards did the movie win 42nd Street ?,"db.movies.find({ ""title"": ""42nd Street"" },{ ""awards.wins"": 1 })" +who was the writer of the film Hallelujah?,"db.movies.find({""title"": ""Hallelujah""}, {""writers"": 1})" +who stars in the film The Gilded Lily?,"db.movies.find({""title"": ""The Gilded Lily""}, {""cast"": 1})" +what was the genre of the movie The Wedding March?,"db.movies.find({""title"": ""The Wedding March""}, {""genres"": 1})" +Can you provide more information about the languages spoken in the movie M ?,"db.movies.find({""title"":""M""}, {""languages"":1})" +How long is the runtime of the movie The Count of Monte Cristo ?,"db.movies.find({""title"":""The Count of Monte Cristo""}, {""runtime"":1})" +the film Little Miss Marker starred who?,"db.movies.find({""title"": ""Little Miss Marker""}, {""cast"": 1})" +What is the audience rating of the movie Civilization ?,"db.movies.find({ ""title"": ""Civilization"" },{ ""tomatoes.viewer.rating"": 1 })" +What is the IMDB rating of the movie The Last Command ?,"db.movies.find({""title"": ""The Last Command""}, { ""imdb.rating"": 1})" +What is the chief film category that Vittorio De Sica's directed movies are classified under?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Vittorio De Sica"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +what type of movie is Earth?,"db.movies.find({""title"": ""Earth""}, {""genres"": 1})" +who stars in The Italian?,"db.movies.find({""title"": ""The Italian""}, {""cast"": 1})" +who was the writer of the movie Regeneration?,"db.movies.find({""title"": ""Regeneration""}, {""writers"": 1})" +Could you tell me the exact number of films that have been directed by Steven Spielberg?,"db.movies.countDocuments({""directors"":""Steven Spielberg""})" +Which cinematic productions were directed by Claude Chabrol?,"db.movies.find({""directors"": ""Claude Chabrol""},{""title"":1})" +What is the rating of the movie The Unknown on IMDb?,"db.movies.find({""title"":""The Unknown""}, {""imdb.rating"":1})" +What is the ID of the movie San Francisco on IMDB?,"db.movies.find({""title"": ""San Francisco""}, {""imdb.id"": 1})" +who starred in La Grande Illusion?,"db.movies.find({""title"": ""La Grande Illusion""}, {""cast"": 1})" +what is Metropolis imdb rating?,"db.movies.find({""title"": ""Metropolis""}, {""imdb.rating"": 1})" +who is the director of The Passion of Joan of Arc?,"db.movies.find({""title"": ""The Passion of Joan of Arc""}, {""directors"": 1})" +who starred in the film The Blue Bird?,"db.movies.find({""title"": ""The Blue Bird""}, {""cast"": 1})" +who is the writer of the movie Four Sons?,"db.movies.find({""title"": ""Four Sons""}, {""writers"": 1})" +Was the movie Shall We Dance well received by audiences?,"db.movies.find({""title"":""Shall We Dance""}, {""tomatoes.viewer"":1})" +"how many awards did the film Laugh, Clown, Laugh win?","db.movies.find({""title"":""Laugh, Clown, Laugh""}, {""awards.wins"":1})" +What is the audience rating of the movie The Circus ?,"db.movies.find({ ""title"": ""The Circus"" },{ ""tomatoes.viewer.rating"": 1 })" +what is the movie A Night at the Opera about?,"db.movies.find({""title"": ""A Night at the Opera""}, {""plot"": 1})" +Who are the main actors in Alice Adams ?,"db.movies.find({ ""title"": ""Alice Adams"" }, { ""cast"": 1})" +What type of movie is The World Moves On ?,"db.movies.find({""title"":""The World Moves On""}, {""genres"":1})" +What are the genres this movie They Won't Forget belongs to?,"db.movies.find({""title"":""They Won't Forget""}, {""genres"":1})" +What is the production company of A Farewell to Arms?,"db.movies.find({""title"":""A Farewell to Arms""}, {""tomatoes.production"":1})" +who starred in The Story of Louis Pasteur?,"db.movies.find({""title"": ""The Story of Louis Pasteur""}, {""cast"": 1})" +What is the language of the film One Week?,"db.movies.find({""title"":""One Week""}, {""languages"":1})" +who was the writer of the movie Rembrandt?,"db.movies.find({""title"": ""Rembrandt""}, {""writers"": 1})" +What is the language of the film A Damsel in Distress?,"db.movies.find({""title"":""A Damsel in Distress""}, {""languages"":1})" +which actor appeared in most of the movies directed by David Fincher?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""David Fincher"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What's the title of the Francois Truffaut movie with the longest runtime?,"db.movies.find({""directors"":""Francois Truffaut""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +When was the movie Wild Boys of the Road released?,"db.movies.find({""title"":""Wild Boys of the Road""}, {""released"":1})" +"Has Who Killed Cock Robin? won any awards? If so, which ones?","db.movies.find({""title"":""Who Killed Cock Robin?"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +what sort of film is Cavalcade?,"db.movies.find({""title"": ""Cavalcade""}, {""genres"": 1})" +What is the ID of the movie Storm Over Asia on IMDB?,"db.movies.find({""title"": ""Storm Over Asia""}, {""imdb.id"": 1})" +How many reviews have been submitted by critics for the movie Stage Door ?,"db.movies.find({""title"": ""Stage Door""}, {""tomatoes.critic.numReviews"": 1})" +What are the countries associated with the movie Earth ?,"db.movies.find({""title"": ""Earth""}, {""countries"": 1})" +Could you inform me of the genres of films that Woody Allen has directed?,"db.movies.distinct(""genres"", { ""directors"": ""Woody Allen"" })" +What is the website associated with the movie Wild Boys of the Road on Rotten Tomatoes?,"db.movies.find({""title"": ""Wild Boys of the Road""}, {""tomatoes.website"": 1})" +who is the director for The Land Beyond the Sunset?,"db.movies.find({""title"": ""The Land Beyond the Sunset""}, {""directors"": 1})" +What is the full plot summary of the movie Ruggles of Red Gap ?,"db.movies.find({""title"": ""Ruggles of Red Gap""}, {""plot"": 1})" +who was the writer of The Power and the Glory?,"db.movies.find({""title"": ""The Power and the Glory""}, {""writers"": 1})" +What is the rating of the movie The Ghost Goes West on IMDb?,"db.movies.find({""title"":""The Ghost Goes West""}, {""imdb.rating"":1})" +who are the actors in the film Nosferatu?,"db.movies.find({""title"": ""Nosferatu""}, {""cast"": 1})" +What are the names of all the actors who starred in the movie 'The Lower Depths'?,"db.movies.find({""title"": ""The Lower Depths""}, {""cast"": 1})" +What was the release date for the movie Street Angel?,"db.movies.find({""title"":""Street Angel""}, {""released"":1})" +what genre of movie is Men Without Women?,"db.movies.find({""title"": ""Men Without Women""}, {""genres"": 1})" +What is the meter score of the movie The Kid according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""The Kid""}, {""tomatoes.viewer.meter"": 1})" +What is the IMDb rating for the movie Viva Villa! ?,"db.movies.find({""title"":""Viva Villa!""}, {""imdb.rating"":1})" +When was the Tomatometer score and other Tomato-related information last updated for the movie Berkeley Square?,"db.movies.find({""title"": ""Berkeley Square""}, { ""tomatoes.lastUpdated"": 1})" +Payment Deferred is a movie written by this person?,"db.movies.find({""title"": ""Payment Deferred""}, {""writers"": 1})" +Who is the director of the movie Nosferatu?,"db.movies.find({""title"": ""Nosferatu""}, { ""directors"": 1})" +"What is the general rating of Claude Chabrol's films in the database, calculated as an average?","db.movies.aggregate([{""$match"": {""directors"":""Claude Chabrol""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +who is the writer of Cimarron?,"db.movies.find({""title"": ""Cimarron""}, {""writers"": 1})" +What is the language of Everybody's Woman?,"db.movies.find({""title"":""Everybody's Woman""}, {""languages"":1})" +who acted in the film The Lives of a Bengal Lancer?,"db.movies.find({""title"": ""The Lives of a Bengal Lancer""}, {""cast"": 1})" +what type of film is Come and Get It?,"db.movies.find({""title"": ""Come and Get It""}, {""genres"": 1})" +How many wins did the movie The Count of Monte Cristo receive?,"db.movies.find({""title"":""The Count of Monte Cristo""}, {""awards.wins"":1})" +What are the countries associated with the movie Ruggles of Red Gap ?,"db.movies.find({""title"": ""Ruggles of Red Gap""}, {""countries"": 1})" +what was the release date of the movie The Mummy?,"db.movies.find({""title"": ""The Mummy""}, {""released"": 1})" +who is the director of The Crowd Roars?,"db.movies.find({""title"": ""The Crowd Roars""}, {""directors"": 1})" +In which countries was the movie Top Hat produced?,"db.movies.find({""title"":""Top Hat""}, {""countries"":1})" +What is the IMDB rating of the movie The Big House ?,"db.movies.find({""title"": ""The Big House""}, { ""imdb.rating"": 1})" +what is the film Shanghai Express description ?,"db.movies.find({""title"": ""Shanghai Express""}, {""plot"": 1})" +What type of movie is Der Kaiser von Kalifornien ?,"db.movies.find({""title"":""Der Kaiser von Kalifornien""}, {""genres"":1})" +What is the text representation of the awards won and nominations received by the movie Sherlock Jr.?,"db.movies.find({""title"": ""Sherlock Jr.""}, { ""awards.text"": 1})" +Can you provide more information about the languages spoken in the movie Le grand jeu ?,"db.movies.find({""title"":""Le grand jeu""}, {""languages"":1})" +who wrote the movie The Story of a Cheat?,"db.movies.find({""title"": ""The Story of a Cheat""}, {""writers"": 1})" +What is the primary genre of the movies directed by Stanley Kubrick?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Stanley Kubrick"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +Who is the lead actor of the movie Triumph of the Will ?,"db.movies.find({""title"": ""Triumph of the Will""}, {""cast"":{""$slice"": 1},""title"":1})" +In what year was the movie The Guardsman released?,"db.movies.find({""title"":""The Guardsman""}, {""year"":1})" +What is the box office revenue of the movie Gold Diggers of 1933 in dollars?,"db.movies.find({""title"": ""Gold Diggers of 1933""}, {""tomatoes.boxOffice"": 1})" +what is the movie The Ghost Goes West imdb rating?,"db.movies.find({""title"": ""The Ghost Goes West""}, {""imdb.rating"": 1})" +What is the freshness score of the movie He Who Gets Slapped on Rotten Tomatoes?,"db.movies.find({""title"": ""He Who Gets Slapped""}, {""tomatoes.fresh"": 1})" +What are the names of all the actors who starred in the movie 'Dodsworth'?,"db.movies.find({""title"": ""Dodsworth""}, {""cast"": 1})" +What is the full plot summary of the movie Lenin in October ?,"db.movies.find({""title"": ""Lenin in October""}, {""plot"": 1})" +What is the imdbID and genre of the movie 'Wings'?,"db.movies.find({""title"": ""Wings""}, {""imdb.id"": 1, ""genres"": 1, ""_id"": 0})" +the film The Emperor Jones starred who?,"db.movies.find({""title"": ""The Emperor Jones""}, {""cast"": 1})" +The Great Train Robbery is a film written by this person?,"db.movies.find({""title"": ""The Great Train Robbery""}, {""writers"": 1})" +How many comments have been posted by users on the movie Chapayev's page on the Mflix platform?,"db.movies.find({ ""title"": ""Chapayev"" }, { ""num_mflix_comments"": 1 })" +which company produced Le grand jeu?,"db.movies.find({""title"":""Le grand jeu""}, {""tomatoes.production"":1})" +what is the full plot for The Music Box?,"db.movies.find({""title"": ""The Music Box""}, {""fullplot"": 1})" +who is the writer of the movie Sons of the Desert?,"db.movies.find({""title"": ""Sons of the Desert""}, {""writers"": 1})" +What is the name of the Abbas Kiarostami-directed movie with the briefest runtime?,"db.movies.find({""directors"":""Abbas Kiarostami""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +who wrote Lloyd's of London?,"db.movies.find({""title"": ""Lloyd's of London""}, {""writers"": 1})" +Has the movie Intolerance: Love's Struggle Throughout the Ages won any awards?,"db.movies.find({""title"":""Intolerance: Love's Struggle Throughout the Ages""}, {""awards.wins"":1})" +What is the IMDB rating of the movie Lady Windermere's Fan ?,"db.movies.find({""title"": ""Lady Windermere's Fan""}, { ""imdb.rating"": 1})" +In what year was the movie City Streets released?,"db.movies.find({""title"":""City Streets""}, {""year"":1})" +What is the ID of the movie Wonder Bar on IMDB?,"db.movies.find({""title"": ""Wonder Bar""}, {""imdb.id"": 1})" +who was A Corner in Wheat written by?,"db.movies.find({""title"": ""A Corner in Wheat""}, {""writers"": 1})" +How many audience reviews have been submitted for the movie Sisters of the Gion ?,"db.movies.find({ ""title"": ""Sisters of the Gion"" },{ ""tomatoes.viewer.numReviews"": 1 })" +"What was the release date for the movie I Was Born, But...?","db.movies.find({""title"":""I Was Born, But...""}, {""released"":1})" +which person directed Top Hat?,"db.movies.find({""title"": ""Top Hat""}, {""directors"": 1})" +who is the director for Westfront 1918?,"db.movies.find({""title"": ""Westfront 1918""}, {""directors"": 1})" +who are the actors in Roberta?,"db.movies.find({""title"": ""Roberta""}, {""cast"": 1})" +What is the box office revenue of the movie Les Misèrables in dollars?,"db.movies.find({""title"": ""Les Misèrables""}, {""tomatoes.boxOffice"": 1})" +What is the production company of Follow the Fleet?,"db.movies.find({""title"":""Follow the Fleet""}, {""tomatoes.production"":1})" +What is the language of the film Les Misèrables?,"db.movies.find({""title"":""Les Misèrables""}, {""languages"":1})" +Who is the lead actress of the movie Secret Agent ?,"db.movies.find({""title"": ""Secret Agent""}, {""cast"":{""$slice"": 1},""title"":1})" +What is the ID of the movie The Ace of Hearts on IMDB?,"db.movies.find({""title"": ""The Ace of Hearts""}, {""imdb.id"": 1})" +What is the consensus among critics about the movie Ella Cinders?,"db.movies.find({""title"": ""Ella Cinders""}, { ""tomatoes.consensus"": 1})" +who's the director of The Wind?,"db.movies.find({""title"": ""The Wind""}, {""directors"": 1})" +What is the website associated with the movie The Cheat on Rotten Tomatoes?,"db.movies.find({""title"": ""The Cheat""}, {""tomatoes.website"": 1})" +What is the imdbID and genre of the movie 'King Kong'?,"db.movies.find({""title"": ""King Kong""}, {""imdb.id"": 1, ""genres"": 1, ""_id"": 0})" +What is the critical reception of the movie Cleopatra?,"db.movies.find({""title"":""Cleopatra""}, {""tomatoes.critic"":1})" +which company produced the movie Camille?,"db.movies.find({""title"":""Camille""}, {""tomatoes.production"":1})" +How many audience reviews have been submitted for the movie The Invisible Man ?,"db.movies.find({ ""title"": ""The Invisible Man"" },{ ""tomatoes.viewer.numReviews"": 1 })" +what is Dante's Inferno about in details?,"db.movies.find({""title"": ""Dante's Inferno""}, {""fullplot"": 1})" +What is the production company behind the movie x?,"db.movies.find({""title"": ""Eskimo""}, { ""tomatoes.production"": 1})" +who is the writer of the film Murders in the Rue Morgue?,"db.movies.find({""title"": ""Murders in the Rue Morgue""}, {""writers"": 1})" +What is the IMDb rating for The Unknown?,"db.movies.find({""title"": ""The Unknown""}, {""imdb.rating"": 1})" +who wrote the screenplay for the movie Toni?,"db.movies.aggregate([ { ""$match"": { ""title"":""Toni""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +How did the audience and critics receive the movie Make Way for Tomorrow?,"db.movies.find({""title"":""Make Way for Tomorrow""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the runtime of the movie Top Hat ?,"db.movies.find({""title"": ""Top Hat""}, { ""runtime"": 1})" +What is the MPAA rating of Mr. Deeds Goes to Town?,"db.movies.find({""title"":""Mr. Deeds Goes to Town""}, {""rated"":1})" +What is the runtime of the movie Three Smart Girls ?,"db.movies.find({""title"": ""Three Smart Girls""}, { ""runtime"": 1})" +What is the Rotten Tomatoes meter rating for the movie Bride of Frankenstein ?,"db.movies.find({""title"":""Bride of Frankenstein""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +Was the movie The Charge of the Light Brigade well received by audiences?,"db.movies.find({""title"":""The Charge of the Light Brigade""}, {""tomatoes.viewer"":1})" +What is the name of the Satyajit Ray-directed movie with the least runtime?,"db.movies.find({""directors"":""Satyajit Ray""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +what genre is the film The Sin of Madelon Claudet?,"db.movies.find({""title"": ""The Sin of Madelon Claudet""}, {""genres"": 1})" +What is the dominant genre of Orson Welles's directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Orson Welles"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +How many movies by David Fincher were released in each year?,"db.movies.aggregate([{ $match: { ""directors"": ""David Fincher"" }},{""$group"": { ""_id"": ""$year"", ""count"": {""$sum"": 1}}}])" +The Guardsman is a movie written by this person?,"db.movies.find({""title"": ""The Guardsman""}, {""writers"": 1})" +who is the author of Night Must Fall?,"db.movies.find({""title"": ""Night Must Fall""}, {""writers"": 1})" +What is the runtime of the movie The Broadway Melody ?,"db.movies.find({""title"": ""The Broadway Melody""}, { ""runtime"": 1})" +When was the information about the movie Blacksmith Scene last updated?,"db.movies.find({ ""title"": ""Blacksmith Scene"" }, { ""lastupdated"": 1})" +what sort of movie is Wings?,"db.movies.find({""title"": ""Wings""}, {""genres"": 1})" +what is the full plot for the movie The Divine Lady?,"db.movies.find({""title"": ""The Divine Lady""}, {""fullplot"": 1})" +What is the percentage of positive reviews among critics for the movie Gold Diggers of 1935 ?,"db.movies.find({ ""title"": ""Gold Diggers of 1935"" },{ ""tomatoes.critic.meter"": 1 })" +what is the movie The Wind about in details?,"db.movies.find({""title"": ""The Wind""}, {""fullplot"": 1})" +What is the IMDB rating of the movie Follow the Fleet ?,"db.movies.find({""title"": ""Follow the Fleet""}, { ""imdb.rating"": 1})" +Can you provide more information about the Rotten Tomatoes rating for the movie Miss Lulu Bett?,"db.movies.find({""title"": ""Miss Lulu Bett""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +What are the highest-rated movies directed by Michelangelo Antonioni?,"db.movies.find({""directors"": 'Michelangelo Antonioni', ""imdb.rating"": {""$gt"": 8.5}})" +which person wrote the film Murders in the Rue Morgue?,"db.movies.find({""title"": ""Murders in the Rue Morgue""}, {""writers"": 1})" +"Has the movie The Crusades won any awards? If so, which ones?","db.movies.find({""title"":""The Crusades"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +the film The Robber Symphony starred who?,"db.movies.find({""title"": ""The Robber Symphony""}, {""cast"": 1})" +How does the movie It Happened One Night rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""It Happened One Night"" },{ ""tomatoes.critic.meter"": 1 })" +"Has This Is My Affair won any awards? If so, which ones?","db.movies.find({""title"":""This Is My Affair"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What is the MongoDB document ID of the movie Traffic in Souls?,"db.movies.find({""title"": ""Traffic in Souls""}, {""_id"": 1})" +what was the release date of the film The Lost Patrol?,"db.movies.find({""title"": ""The Lost Patrol""}, {""released"": 1})" +What is the IMDb rating for the film Flesh and the Devil?,"db.movies.find({""title"": ""Flesh and the Devil""}, {""imdb.rating"": 1})" +which person wrote Broadway Bill?,"db.movies.find({""title"": ""Broadway Bill""}, {""writers"": 1})" +who wrote the screenplay for the film Go West?,"db.movies.aggregate([ { ""$match"": { ""title"":""Go West""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +"the film Wonder Bar, was written by who?","db.movies.find({""title"": ""Wonder Bar""}, {""writers"": 1})" +Can you provide more information about the Rotten Tomatoes rating for the movie Where Are My Children??,"db.movies.find({""title"": ""Where Are My Children?""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +What is the IMDb rating for the movie Where Are My Children??,"db.movies.find({""title"": ""Where Are My Children?""}, {""imdb.rating"": 1})" +what kind of movie is The Blood of a Poet?,"db.movies.find({""title"": ""The Blood of a Poet""}, {""genres"": 1})" +what genre is the film The Kid?,"db.movies.find({""title"": ""The Kid""}, {""genres"": 1})" +what is the film Harvest imdb rating?,"db.movies.find({""title"": ""Harvest""}, {""imdb.rating"": 1})" +what is the plot for the movie The Wedding Night?,"db.movies.find({""title"": ""The Wedding Night""}, {""plot"": 1})" +What is the running time of the film Sons of the Desert?,"db.movies.find({""title"":""Sons of the Desert""}, {""runtime"":1})" +what genre is the movie Scarface?,"db.movies.find({""title"": ""Scarface""}, {""genres"": 1})" +who directed the film The Wedding March?,"db.movies.find({""title"": ""The Wedding March""}, {""directors"": 1})" +who stars in the film Lenin in October?,"db.movies.find({""title"": ""Lenin in October""}, {""cast"": 1})" +When was the movie Mèdchen in Uniform released?,"db.movies.find({""title"":""Mèdchen in Uniform""}, {""released"":1})" +What is the rating of the movie The General ?,"db.movies.find({ ""title"": ""The General"" }, { ""rated"": 1})" +what is the full plot for the movie Tarzan the Ape Man?,"db.movies.find({""title"": ""Tarzan the Ape Man""}, {""fullplot"": 1})" +Who are the main actors in The Song of Night ?,"db.movies.find({ ""title"": ""The Song of Night"" }, { ""cast"": 1})" +who is the director of Ella Cinders?,"db.movies.find({""title"": ""Ella Cinders""}, {""directors"": 1})" +the movie A Free Soul starred which actors?,"db.movies.find({""title"": ""A Free Soul""}, {""cast"": 1})" +What is the Rotten Tomatoes meter rating for the movie Harvest ?,"db.movies.find({""title"":""Harvest""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +what type of film is The Barretts of Wimpole Street?,"db.movies.find({""title"": ""The Barretts of Wimpole Street""}, {""genres"": 1})" +what was the release year of the movie The Trail of the Lonesome Pine?,"db.movies.find({""title"": ""The Trail of the Lonesome Pine""}, {""year"": 1})" +In which countries was the movie For Heaven's Sake produced?,"db.movies.find({""title"":""For Heaven's Sake""}, {""countries"":1})" +who starred in the film A Damsel in Distress?,"db.movies.find({""title"": ""A Damsel in Distress""}, {""cast"": 1})" +who produced the film Ben-Hur: A Tale of the Christ?,"db.movies.find({""title"":""Ben-Hur: A Tale of the Christ""}, {""tomatoes.production"":1})" +what is The Land Beyond the Sunset about in details?,"db.movies.find({""title"": ""The Land Beyond the Sunset""}, {""fullplot"": 1})" +What is the production company of the movie Greed?,"db.movies.find({""title"":""Greed""}, {""tomatoes.production"":1})" +Which films directed by Alfred Hitchcock have the highest ratings?,"db.movies.find({""directors"": 'Alfred Hitchcock', ""imdb.rating"": {""$gt"": 8.5}})" +which company produced the film Baby Face?,"db.movies.find({""title"":""Baby Face""}, {""tomatoes.production"":1})" +In what language was the movie The Trail of the Lonesome Pine released?,"db.movies.find({ ""title"": ""The Trail of the Lonesome Pine"" }, { ""languages"": 1})" +Could you tell me the title of the movie with the shortest duration that was directed by David Lynch?,"db.movies.find({""directors"":""David Lynch""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +what was the release date of the film Sons of the Desert?,"db.movies.find({""title"": ""Sons of the Desert""}, {""released"": 1})" +How many award nominations did the movie receive The Great Train Robbery ?,"db.movies.find({ ""title"": ""The Great Train Robbery"" },{ ""awards.nominations"": 1 })" +what genre is Naughty Marietta?,"db.movies.find({""title"": ""Naughty Marietta""}, {""genres"": 1})" +Who are the actors that appear in the movie David Copperfield ?,"db.movies.find({ ""title"": ""David Copperfield"" },{ ""cast"": 1 })" +When was the Tomatometer score and other Tomato-related information last updated for the movie Anna Karenina?,"db.movies.find({""title"": ""Anna Karenina""}, { ""tomatoes.lastUpdated"": 1})" +the movie Mr. Deeds Goes to Town was directed by who?,"db.movies.find({""title"": ""Mr. Deeds Goes to Town""}, {""directors"": 1})" +"the movie Clash of the Wolves, was written by who?","db.movies.find({""title"": ""Clash of the Wolves""}, {""writers"": 1})" +What is the IMDb rating for the movie The Black Pirate?,"db.movies.find({""title"": ""The Black Pirate""}, {""imdb.rating"": 1})" +When was the Tomatometer score and other Tomato-related information last updated for the movie Curly Top?,"db.movies.find({""title"": ""Curly Top""}, { ""tomatoes.lastUpdated"": 1})" +who wrote the movie Dodsworth?,"db.movies.find({""title"": ""Dodsworth""}, {""writers"": 1})" +what is the film The Prisoner of Shark Island about?,"db.movies.find({""title"": ""The Prisoner of Shark Island""}, {""plot"": 1})" +which company produced Battleship Potemkin?,"db.movies.find({""title"":""Battleship Potemkin""}, {""tomatoes.production"":1})" +How many votes does the movie Romeo and Juliet have on IMDb?,"db.movies.find({""title"":""Romeo and Juliet""}, {""imdb.votes"":1})" +who was the film The Kid written by?,"db.movies.find({""title"": ""The Kid""}, {""writers"": 1})" +Has the movie Snow White and the Seven Dwarfs won any awards?,"db.movies.find({""title"":""Snow White and the Seven Dwarfs""}, {""awards.wins"":1})" +"the film Wild and Woolly, was written by who?","db.movies.find({""title"": ""Wild and Woolly""}, {""writers"": 1})" +who starred in A Damsel in Distress?,"db.movies.find({""title"": ""A Damsel in Distress""}, {""cast"": 1})" +what is the full plot for the movie The Birth of a Nation?,"db.movies.find({""title"": ""The Birth of a Nation""}, {""fullplot"": 1})" +How many audience reviews have been submitted for the movie Trouble in Paradise?,"db.movies.find({ ""title"": ""Trouble in Paradise"" }, { ""tomatoes.viewer.numReviews"": 1 })" +which person wrote The Gay Divorcee?,"db.movies.find({""title"": ""The Gay Divorcee""}, {""writers"": 1})" +What is the text representation of the awards won and nominations received by the movie The Informer?,"db.movies.find({""title"": ""The Informer""}, { ""awards.text"": 1})" +What is the MPAA rating of the film The Thief of Bagdad?,"db.movies.find({""title"":""The Thief of Bagdad""}, {""rated"":1})" +How many votes did the movie Metropolis receive on IMDB?,"db.movies.find({""title"": ""Metropolis""}, { ""imdb.votes"": 1})" +who directed Der Kaiser von Kalifornien?,"db.movies.find({""title"": ""Der Kaiser von Kalifornien""}, {""directors"": 1})" +the film The World Moves On starred who?,"db.movies.find({""title"": ""The World Moves On""}, {""cast"": 1})" +How many awards did the movie win Becky Sharp ?,"db.movies.find({ ""title"": ""Becky Sharp"" },{ ""awards.wins"": 1 })" +What is the IMDb rating for the movie Lady Windermere's Fan ?,"db.movies.find({""title"":""Lady Windermere's Fan""}, {""imdb.rating"":1})" +"Can you give me a brief summary of the movie Winsor McCay, the Famous Cartoonist of the N.Y. Herald and His Moving Comics plot?","db.movies.find({""title"":""Winsor McCay, the Famous Cartoonist of the N.Y. Herald and His Moving Comics""}, {""plot"":1})" +Who is the lead actor of the movie Snow White and the Seven Dwarfs ?,"db.movies.find({""title"": ""Snow White and the Seven Dwarfs""}, {""cast"":{""$slice"": 1},""title"":1})" +What is the Tomatometer score of the movie Becky Sharp ?,"db.movies.find({ ""title"": ""Becky Sharp"" },{ ""tomatoes.critic.meter"": 1 })" +What is the rating of the movie Gold Diggers of 1935 ?,"db.movies.find({ ""title"": ""Gold Diggers of 1935"" }, { ""rated"": 1})" +which company produced The World Moves On?,"db.movies.find({""title"":""The World Moves On""}, {""tomatoes.production"":1})" +What are the countries associated with the movie Westfront 1918 ?,"db.movies.find({""title"": ""Westfront 1918""}, {""countries"": 1})" +When was the Tomatometer score and other Tomato-related information last updated for the movie Applause?,"db.movies.find({""title"": ""Applause""}, { ""tomatoes.lastUpdated"": 1})" +"The Unknown, was written by who?","db.movies.find({""title"": ""The Unknown""}, {""writers"": 1})" +who was Safety Last! written by?,"db.movies.find({""title"": ""Safety Last!""}, {""writers"": 1})" +How did the audience and critics receive the film L'opèra de quat'sous?,"db.movies.find({""title"":""L'opèra de quat'sous""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the primary genre of the movies directed by Jean Renoir?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Jean Renoir"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +who is the writer of the film The Great Train Robbery?,"db.movies.find({""title"": ""The Great Train Robbery""}, {""writers"": 1})" +"In Alain Resnais's directed movies, which actor has made the most appearances?","db.movies.aggregate([ { ""$match"": { ""directors"": ""Alain Resnais"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +who was the movie è Nous la Libertè written by?,"db.movies.find({""title"": ""è Nous la Libertè""}, {""writers"": 1})" +which company produced Les Misèrables?,"db.movies.find({""title"":""Les Misèrables""}, {""tomatoes.production"":1})" +who starred in City Lights?,"db.movies.find({""title"": ""City Lights""}, {""cast"": 1})" +"Has Three Ages won any awards? If so, which ones?","db.movies.find({""title"":""Three Ages"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +who produced the movie Topaze?,"db.movies.find({""title"":""Topaze""}, {""tomatoes.production"":1})" +whats the total runtime of all the movies directed by James Cameron ?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""James Cameron"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +How many awards did the movie win Nosferatu ?,"db.movies.find({ ""title"": ""Nosferatu"" },{ ""awards.wins"": 1 })" +What are the films directed by Ingmar Bergman?,"db.movies.find({""directors"": ""Ingmar Bergman""},{""title"":1})" +who was the writer of the film A Midsummer Night's Dream?,"db.movies.find({""title"": ""A Midsummer Night's Dream""}, {""writers"": 1})" +Scarface was directed by who?,"db.movies.find({""title"": ""Scarface""}, {""directors"": 1})" +What are the genres this movie The Private Life of Don Juan belongs to?,"db.movies.find({""title"":""The Private Life of Don Juan""}, {""genres"":1})" +What is the IMDB rating of the movie Sunrise ?,"db.movies.find({""title"": ""Sunrise""}, { ""imdb.rating"": 1})" +"Has the movie 42nd Street won any awards? If so, which ones?","db.movies.find({""title"":""42nd Street"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +what is the plot for the movie Earth?,"db.movies.find({""title"": ""Earth""}, {""plot"": 1})" +what was the genre of the movie Wife! Be Like a Rose!?,"db.movies.find({""title"": ""Wife! Be Like a Rose!""}, {""genres"": 1})" +What is the audience rating of the movie Upstream ?,"db.movies.find({ ""title"": ""Upstream"" },{ ""tomatoes.viewer.rating"": 1 })" +Which motion pictures were directed by Jean-Pierre Melville?,"db.movies.find({""directors"": ""Jean-Pierre Melville""},{""title"":1})" +the film The Cameraman starred who?,"db.movies.find({""title"": ""The Cameraman""}, {""cast"": 1})" +what was the genre of the movie Lloyd's of London?,"db.movies.find({""title"": ""Lloyd's of London""}, {""genres"": 1})" +What type of media is The Big House?,"db.movies.find({ ""title"": ""The Big House"" }, { ""type"": 1})" +who was the film The General written by?,"db.movies.find({""title"": ""The General""}, {""writers"": 1})" +What are the names of all the actors who starred in the movie 'A Star Is Born'?,"db.movies.find({""title"": ""A Star Is Born""}, {""cast"": 1})" +what was the release date of College?,"db.movies.find({""title"": ""College""}, {""released"": 1})" +What are the genres this movie Ruggles of Red Gap belongs to?,"db.movies.find({""title"":""Ruggles of Red Gap""}, {""genres"":1})" +what is the film A Woman of Paris: A Drama of Fate description ?,"db.movies.find({""title"": ""A Woman of Paris: A Drama of Fate""}, {""plot"": 1})" +What are the countries associated with the movie Comradeship ?,"db.movies.find({""title"": ""Comradeship""}, {""countries"": 1})" +which company produced Zoo in Budapest?,"db.movies.find({""title"":""Zoo in Budapest""}, {""tomatoes.production"":1})" +Has the movie Nosferatu won any awards?,"db.movies.find({""title"":""Nosferatu""}, {""awards.wins"":1})" +When was the information last updated for the movie Two Seconds ?,"db.movies.find({ ""title"": ""Two Seconds"" },{ ""lastupdated"": 1 })" +what is the genre of The Strong Man?,"db.movies.find({""title"": ""The Strong Man""}, {""genres"": 1})" +Who is the lead actor of the movie Trouble in Paradise ?,"db.movies.find({""title"": ""Trouble in Paradise""}, {""cast"":{""$slice"": 1},""title"":1})" +What is the freshness score of the movie Ruggles of Red Gap on Rotten Tomatoes?,"db.movies.find({""title"": ""Ruggles of Red Gap""}, {""tomatoes.fresh"": 1})" +What are the genres associated with the movie The Robber Symphony ?,"db.movies.find({ ""title"": ""The Robber Symphony"" }, { ""genres"": 1})" +what is A Day in the Country description?,"db.movies.find({""title"": ""A Day in the Country""}, {""plot"": 1})" +what type of film is The Story of a Cheat?,"db.movies.find({""title"": ""The Story of a Cheat""}, {""genres"": 1})" +what type of film is The Guardsman?,"db.movies.find({""title"": ""The Guardsman""}, {""genres"": 1})" +What is the rating of the movie He Who Gets Slapped on IMDb?,"db.movies.find({""title"":""He Who Gets Slapped""}, {""imdb.rating"":1})" +who wrote Lenin in October?,"db.movies.find({""title"": ""Lenin in October""}, {""writers"": 1})" +Can you give me a brief summary of the movie Chapayev plot?,"db.movies.find({""title"":""Chapayev""}, {""plot"":1})" +What is the cumulative duration of all the films that Roman Polanski directed?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Roman Polanski"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +When was the Tomatometer score and other Tomato-related information last updated for the movie The Birth of a Nation?,"db.movies.find({""title"": ""The Birth of a Nation""}, { ""tomatoes.lastUpdated"": 1})" +the movie The Great Ziegfeld was directed by who?,"db.movies.find({""title"": ""The Great Ziegfeld""}, {""directors"": 1})" +How many wins did the movie The Land Beyond the Sunset receive?,"db.movies.find({""title"":""The Land Beyond the Sunset""}, {""awards.wins"":1})" +who is listed as director for Shanghai Express?,"db.movies.find({""title"": ""Shanghai Express""}, {""directors"": 1})" +How did the audience and critics receive the film Sanders of the River?,"db.movies.find({""title"":""Sanders of the River""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +who produced the movie The General?,"db.movies.find({""title"":""The General""}, {""tomatoes.production"":1})" +What is the website associated with the movie è Nous la Libertè on Rotten Tomatoes?,"db.movies.find({""title"": ""è Nous la Libertè""}, {""tomatoes.website"": 1})" +what is the movie The Wedding March imdb rating?,"db.movies.find({""title"": ""The Wedding March""}, {""imdb.rating"": 1})" +what was the genre of Gold Diggers of 1935?,"db.movies.find({""title"": ""Gold Diggers of 1935""}, {""genres"": 1})" +"what was the genre of I Was Born, But...?","db.movies.find({""title"": ""I Was Born, But...""}, {""genres"": 1})" +which company produced the movie Dracula?,"db.movies.find({""title"":""Dracula""}, {""tomatoes.production"":1})" +What is the name of the director and cast for the movie 'The Garden of Allah'?,"db.movies.find({""title"": ""The Garden of Allah""}, {""directors"": 1, ""cast"": 1, ""_id"": 0})" +what was the release year of Harvest?,"db.movies.find({""title"": ""Harvest""}, {""year"": 1})" +How many audience reviews have been submitted for the movie The Blue Bird ?,"db.movies.find({ ""title"": ""The Blue Bird"" },{ ""tomatoes.viewer.numReviews"": 1 })" +How does the movie Mutiny on the Bounty rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Mutiny on the Bounty"" },{ ""tomatoes.critic.meter"": 1 })" +who wrote the screenplay for The Son of the Sheik?,"db.movies.aggregate([ { ""$match"": { ""title"":""The Son of the Sheik""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie Zoo in Budapest ?,"db.movies.find({""title"":""Zoo in Budapest""}, {""tomatoes.viewer.meter"":1})" +what is the movie Naughty Marietta about?,"db.movies.find({""title"": ""Naughty Marietta""}, {""plot"": 1})" +Who is the lead actress of the movie Three Smart Girls ?,"db.movies.find({""title"": ""Three Smart Girls""}, {""cast"":{""$slice"": 1},""title"":1})" +"the movie Becky Sharp, was written by who?","db.movies.find({""title"": ""Becky Sharp""}, {""writers"": 1})" +How many votes does the movie The Devil to Pay! have on IMDb?,"db.movies.find({""title"":""The Devil to Pay!""}, {""imdb.votes"":1})" +what is The Gilded Lily about?,"db.movies.find({""title"": ""The Gilded Lily""}, {""plot"": 1})" +What is the best-reviewed movie on Rotten Tomatoes that was directed by Jean-Luc Godard?,"db.movies.find({""directors"": ""Jean-Luc Godard"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +what sort of film is Love Me Tonight?,"db.movies.find({""title"": ""Love Me Tonight""}, {""genres"": 1})" +What is the IMDb rating for Carnival in Flanders?,"db.movies.find({""title"": ""Carnival in Flanders""}, {""imdb.rating"": 1})" +who starred in the film Ruggles of Red Gap?,"db.movies.find({""title"": ""Ruggles of Red Gap""}, {""cast"": 1})" +what is the plot for the movie Gold Diggers of 1933?,"db.movies.find({""title"": ""Gold Diggers of 1933""}, {""plot"": 1})" +What is the production company behind the movie Ben-Hur: A Tale of the Christ ?,"db.movies.find({""title"": ""Ben-Hur: A Tale of the Christ""}, {""tomatoes.production"": 1})" +I'm curious about the films that were directed by David Fincher. Can you name them?,"db.movies.find({""directors"": ""David Fincher""},{""title"":1})" +What is the consensus among critics about the movie The Wedding Night?,"db.movies.find({""title"": ""The Wedding Night""}, { ""tomatoes.consensus"": 1})" +who was Anthony Adverse directed by?,"db.movies.find({""title"": ""Anthony Adverse""}, {""directors"": 1})" +Who are the starring actors/actresses in the movie It's a Gift?,"db.movies.find({""title"":""It's a Gift""}, {""cast"":1})" +How many audience reviews have been submitted for the movie The Black Cat ?,"db.movies.find({ ""title"": ""The Black Cat"" },{ ""tomatoes.viewer.numReviews"": 1 })" +who is the writer of the film Romeo and Juliet?,"db.movies.find({""title"": ""Romeo and Juliet""}, {""writers"": 1})" +what is the full plot for the film The Crowd?,"db.movies.find({""title"": ""The Crowd""}, {""fullplot"": 1})" +what is the genre of Wife! Be Like a Rose!?,"db.movies.find({""title"": ""Wife! Be Like a Rose!""}, {""genres"": 1})" +"the film Berkeley Square, was written by who?","db.movies.find({""title"": ""Berkeley Square""}, {""writers"": 1})" +what is the genre for the movie Grass: A Nation's Battle for Life?,"db.movies.find({""title"": ""Grass: A Nation's Battle for Life""}, {""genres"": 1})" +who directed the movie The Story of a Cheat?,"db.movies.find({""title"": ""The Story of a Cheat""}, {""directors"": 1})" +Who is the director of the movie The Awful Truth?,"db.movies.find({""title"": ""The Awful Truth""}, { ""directors"": 1})" +How many viewer reviews did the movie Dames receive on Rotten Tomatoes?,"db.movies.find({""title"":""Dames""}, {""tomatoes.viewer.numReviews"":1})" +what genre is Footlight Parade?,"db.movies.find({""title"": ""Footlight Parade""}, {""genres"": 1})" +What is the production company of The Lost World?,"db.movies.find({""title"":""The Lost World""}, {""tomatoes.production"":1})" +who was the writer of the film Sanders of the River?,"db.movies.find({""title"": ""Sanders of the River""}, {""writers"": 1})" +What is the text representation of the awards won and nominations received by the movie Steamboat Willie?,"db.movies.find({""title"": ""Steamboat Willie""}, { ""awards.text"": 1})" +what genre of film is Berkeley Square?,"db.movies.find({""title"": ""Berkeley Square""}, {""genres"": 1})" +what is the plot for the film Peter Pan?,"db.movies.find({""title"": ""Peter Pan""}, {""plot"": 1})" +"Come and Get It, was written by who?","db.movies.find({""title"": ""Come and Get It""}, {""writers"": 1})" +What is the Tomatometer score of the movie Our Hospitality ?,"db.movies.find({ ""title"": ""Our Hospitality"" },{ ""tomatoes.critic.meter"": 1 })" +How many audience reviews have been submitted for the movie The Public Enemy?,"db.movies.find({ ""title"": ""The Public Enemy"" }, { ""tomatoes.viewer.numReviews"": 1 })" +The Divine Lady was directed by who?,"db.movies.find({""title"": ""The Divine Lady""}, {""directors"": 1})" +What is the critical reception of the movie The Lost Patrol?,"db.movies.find({""title"":""The Lost Patrol""}, {""tomatoes.critic"":1})" +Who are the actors in the movie Lenin in October?,"db.movies.find({""title"":""Lenin in October""}, {""cast"":1})" +What is the rating of the movie Chapayev ?,"db.movies.find({ ""title"": ""Chapayev"" }, { ""rated"": 1})" +What is the language of Stage Door?,"db.movies.find({""title"":""Stage Door""}, {""languages"":1})" +"the movie Asphalt, was written by who?","db.movies.find({""title"": ""Asphalt""}, {""writers"": 1})" +who was the writer of The Docks of New York?,"db.movies.find({""title"": ""The Docks of New York""}, {""writers"": 1})" +When was the information last updated for the movie King of Jazz ?,"db.movies.find({ ""title"": ""King of Jazz"" },{ ""lastupdated"": 1 })" +What is the production company of the film Zoo in Budapest?,"db.movies.find({""title"":""Zoo in Budapest""}, {""tomatoes.production"":1})" +what was the release year of the movie David Copperfield?,"db.movies.find({""title"": ""David Copperfield""}, {""year"": 1})" +Which actor has the most frequent appearances in Ridley Scott's directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Ridley Scott"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +"the movie Laugh, Clown, Laugh, was written by who?","db.movies.find({""title"": ""Laugh, Clown, Laugh""}, {""writers"": 1})" +what was the release year of the movie The Green Pastures?,"db.movies.find({""title"": ""The Green Pastures""}, {""year"": 1})" +"What is the general rating of Alain Resnais's films in the database, calculated as an average?","db.movies.aggregate([{""$match"": {""directors"":""Alain Resnais""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +What is the audience rating of the movie The Lost World ?,"db.movies.find({ ""title"": ""The Lost World"" },{ ""tomatoes.viewer.rating"": 1 })" +who wrote the screenplay for the film The Scarlet Empress?,"db.movies.aggregate([ { ""$match"": { ""title"":""The Scarlet Empress""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +Which of Eric Rohmer's directed films has the lengthiest duration?,"db.movies.find({""directors"":""Eric Rohmer""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +Bride of Frankenstein was directed by who?,"db.movies.find({""title"": ""Bride of Frankenstein""}, {""directors"": 1})" +"I Am a Fugitive from a Chain Gang, was written by who?","db.movies.find({""title"": ""I Am a Fugitive from a Chain Gang""}, {""writers"": 1})" +"which person wrote Winsor McCay, the Famous Cartoonist of the N.Y. Herald and His Moving Comics?","db.movies.find({""title"": ""Winsor McCay, the Famous Cartoonist of the N.Y. Herald and His Moving Comics""}, {""writers"": 1})" +What is the IMDB rating of the movie Cleopatra ?,"db.movies.find({""title"": ""Cleopatra""}, { ""imdb.rating"": 1})" +who was the movie The Last Command written by?,"db.movies.find({""title"": ""The Last Command""}, {""writers"": 1})" +who was the writer of the movie Payment Deferred?,"db.movies.find({""title"": ""Payment Deferred""}, {""writers"": 1})" +what was the release year of Beau Geste?,"db.movies.find({""title"": ""Beau Geste""}, {""year"": 1})" +How many audience reviews have been submitted for the movie The Passion of Joan of Arc ?,"db.movies.find({ ""title"": ""The Passion of Joan of Arc"" },{ ""tomatoes.viewer.numReviews"": 1 })" +What is the box office revenue of the movie The Strong Man in dollars?,"db.movies.find({""title"": ""The Strong Man""}, {""tomatoes.boxOffice"": 1})" +What is the Rotten Tomatoes rating for Sergei Eisenstein's highest-rated movie?,"db.movies.find({""directors"": ""Sergei Eisenstein"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +who is the director for Movie Crazy?,"db.movies.find({""title"": ""Movie Crazy""}, {""directors"": 1})" +how has Tol'able David been recieved by critics and audience?,"db.movies.find({""title"":""Tol'able David""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what was the release date of the film Pèpè le Moko?,"db.movies.find({""title"": ""Pèpè le Moko""}, {""released"": 1})" +When was the information last updated for the movie A Corner in Wheat ?,"db.movies.find({ ""title"": ""A Corner in Wheat"" },{ ""lastupdated"": 1 })" +What is the freshness score of the movie The Crusades on Rotten Tomatoes?,"db.movies.find({""title"": ""The Crusades""}, {""tomatoes.fresh"": 1})" +What is the IMDb rating for the movie A Damsel in Distress?,"db.movies.find({""title"": ""A Damsel in Distress""}, {""imdb.rating"": 1})" +What is the cumulative duration of all the films that Francois Truffaut directed?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Francois Truffaut"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +which person directed Wings?,"db.movies.find({""title"": ""Wings""}, {""directors"": 1})" +which company produced the film Napoleon?,"db.movies.find({""title"":""Napoleon""}, {""tomatoes.production"":1})" +what was the release date of the film Becky Sharp?,"db.movies.find({""title"": ""Becky Sharp""}, {""released"": 1})" +Who is the lead actress of the movie A Damsel in Distress ?,"db.movies.find({""title"": ""A Damsel in Distress""}, {""cast"":{""$slice"": 1},""title"":1})" +what was the genre of the movie Theodora Goes Wild?,"db.movies.find({""title"": ""Theodora Goes Wild""}, {""genres"": 1})" +Who is the lead actress of the movie Sanders of the River ?,"db.movies.find({""title"": ""Sanders of the River""}, {""cast"":{""$slice"": 1},""title"":1})" +What is the title of the movie with the longest duration that Alfred Hitchcock directed?,"db.movies.find({""directors"":""Alfred Hitchcock""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +How long is the movie The Front Page in minutes?,"db.movies.find({""title"":""The Front Page""}, {""runtime"":1})" +who was the writer of the film Broken Blossoms or The Yellow Man and the Girl?,"db.movies.find({""title"": ""Broken Blossoms or The Yellow Man and the Girl""}, {""writers"": 1})" +What is the language of the film The Mummy?,"db.movies.find({""title"":""The Mummy""}, {""languages"":1})" +who was Little Miss Marker written by?,"db.movies.find({""title"": ""Little Miss Marker""}, {""writers"": 1})" +When was the movie The Unknown released?,"db.movies.find({""title"":""The Unknown""}, {""released"":1})" +what is the film Mary of Scotland about in details?,"db.movies.find({""title"": ""Mary of Scotland""}, {""fullplot"": 1})" +What is the production company behind the movie Roberta ?,"db.movies.find({""title"": ""Roberta""}, {""tomatoes.production"": 1})" +What is the Rotten Tomatoes meter rating for the movie Red Dust ?,"db.movies.find({""title"":""Red Dust""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +What languages are spoken in the movie The Song of Night ?,"db.movies.find({""title"": ""The Song of Night""}, { ""languages"": 1})" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie The Crowd Roars ?,"db.movies.find({""title"":""The Crowd Roars""}, {""tomatoes.viewer.meter"":1})" +what is the genre for the movie Payment Deferred?,"db.movies.find({""title"": ""Payment Deferred""}, {""genres"": 1})" +How long is the runtime of the movie The Lost World ?,"db.movies.find({""title"":""The Lost World""}, {""runtime"":1})" +how has Dames been recieved by critics and audience?,"db.movies.find({""title"":""Dames""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the MPAA rating of the movie Westfront 1918?,"db.movies.find({""title"":""Westfront 1918""}, {""rated"":1})" +Can you provide more information about the Rotten Tomatoes rating for the movie Lenin in October?,"db.movies.find({""title"": ""Lenin in October""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +Can you provide more information about the IMDb rating for the movie Foolish Wives ?,"db.movies.find({""title"":""Foolish Wives""}, {""imdb"":1})" +what was the genre of the film Grass: A Nation's Battle for Life?,"db.movies.find({""title"": ""Grass: A Nation's Battle for Life""}, {""genres"": 1})" +who starred in The Big Trail?,"db.movies.find({""title"": ""The Big Trail""}, {""cast"": 1})" +What are the genres this movie The Invisible Ray belongs to?,"db.movies.find({""title"":""The Invisible Ray""}, {""genres"":1})" +Who are the main actors/actresses in the movie The Barretts of Wimpole Street?,"db.movies.find({""title"":""The Barretts of Wimpole Street""}, {""cast"":1})" +What is the full plot summary of the movie Traffic in Souls ?,"db.movies.find({""title"": ""Traffic in Souls""}, {""plot"": 1})" +"The Edge of the World, was written by who?","db.movies.find({""title"": ""The Edge of the World""}, {""writers"": 1})" +What is the IMDb ID for the movie The Man Who Could Work Miracles?,"db.movies.find({""title"":""The Man Who Could Work Miracles""}, {""imdb.id"":1})" +what was the release date of the film The Navigator?,"db.movies.find({""title"": ""The Navigator""}, {""released"": 1})" +what is The Land Beyond the Sunset description?,"db.movies.find({""title"": ""The Land Beyond the Sunset""}, {""plot"": 1})" +What is the plot summary of the movie Dr. Jekyll and Mr. Hyde ?,"db.movies.find({ ""title"": ""Dr. Jekyll and Mr. Hyde"" }, { ""plot"": 1})" +what is the movie Alice Adams imdb rating?,"db.movies.find({""title"": ""Alice Adams""}, {""imdb.rating"": 1})" +what is the full plot for the movie She Done Him Wrong?,"db.movies.find({""title"": ""She Done Him Wrong""}, {""fullplot"": 1})" +what is the movie Roberta about in details?,"db.movies.find({""title"": ""Roberta""}, {""fullplot"": 1})" +what was the genre of the movie Ruggles of Red Gap?,"db.movies.find({""title"": ""Ruggles of Red Gap""}, {""genres"": 1})" +What is the average rating of all of David Lynch movies in the database?,"db.movies.aggregate([{""$match"": {""directors"":""David Lynch""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +When was the information last updated for the movie Three Ages ?,"db.movies.find({ ""title"": ""Three Ages"" },{ ""lastupdated"": 1 })" +Can you provide more information about the IMDb rating for the movie The Charge of the Light Brigade ?,"db.movies.find({""title"":""The Charge of the Light Brigade""}, {""imdb"":1})" +what is the plot for the film Metropolis?,"db.movies.find({""title"": ""Metropolis""}, {""plot"": 1})" +who are the actors in The Big Trail?,"db.movies.find({""title"": ""The Big Trail""}, {""cast"": 1})" +the film The New Gulliver was directed by who?,"db.movies.find({""title"": ""The New Gulliver""}, {""directors"": 1})" +How many audience reviews have been submitted for the movie King of Jazz ?,"db.movies.find({ ""title"": ""King of Jazz"" },{ ""tomatoes.viewer.numReviews"": 1 })" +who was the writer of Flash Gordon?,"db.movies.find({""title"": ""Flash Gordon""}, {""writers"": 1})" +who are the actors in the movie The Big Parade?,"db.movies.find({""title"": ""The Big Parade""}, {""cast"": 1})" +What is the freshness score of the movie Children in the Wind on Rotten Tomatoes?,"db.movies.find({""title"": ""Children in the Wind""}, {""tomatoes.fresh"": 1})" +What is the MPAA rating of the film The Private Life of Don Juan?,"db.movies.find({""title"":""The Private Life of Don Juan""}, {""rated"":1})" +what is The Fall of the House of Usher description?,"db.movies.find({""title"": ""The Fall of the House of Usher""}, {""plot"": 1})" +who are the actors in the movie Civilization?,"db.movies.find({""title"": ""Civilization""}, {""cast"": 1})" +Anna Karenina is a film written by this person?,"db.movies.find({""title"": ""Anna Karenina""}, {""writers"": 1})" +who is the writer of Dames?,"db.movies.find({""title"": ""Dames""}, {""writers"": 1})" +When was the information about the movie The Band Concert last updated?,"db.movies.find({ ""title"": ""The Band Concert"" }, { ""lastupdated"": 1})" +which person wrote Romance?,"db.movies.find({""title"": ""Romance""}, {""writers"": 1})" +who is the author of Hallelujah?,"db.movies.find({""title"": ""Hallelujah""}, {""writers"": 1})" +What is Satyajit Ray's highest-rated movie on Rotten Tomatoes?,"db.movies.find({""directors"": ""Satyajit Ray"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +Who are the main actors in Wife! Be Like a Rose! ?,"db.movies.find({ ""title"": ""Wife! Be Like a Rose!"" }, { ""cast"": 1})" +Has the movie Smilin' Through won any awards?,"db.movies.find({""title"":""Smilin' Through""}, {""awards.wins"":1})" +How many comments have been posted by users on the movie Wild Oranges's page on the Mflix platform?,"db.movies.find({ ""title"": ""Wild Oranges"" }, { ""num_mflix_comments"": 1 })" +How many reviews have been submitted for the movie Westfront 1918 on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Westfront 1918"" },{ ""tomatoes.viewer.numReviews"": 1 })" +who wrote the film Sisters of the Gion?,"db.movies.find({""title"": ""Sisters of the Gion""}, {""writers"": 1})" +"How long, in total, are all the movies that David Fincher has directed?","db.movies.aggregate([{ ""$match"": { ""directors"": ""David Fincher"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +Who is the lead actress of the movie The Awful Truth ?,"db.movies.find({""title"": ""The Awful Truth""}, {""cast"":{""$slice"": 1},""title"":1})" +What is the IMDb rating for Chapayev?,"db.movies.find({""title"": ""Chapayev""}, {""imdb.rating"": 1})" +What languages are spoken in the movie 42nd Street?,"db.movies.find({""title"":""42nd Street""}, {""languages"":1})" +What languages are spoken in the movie The Saphead?,"db.movies.find({""title"":""The Saphead""}, {""languages"":1})" +What is the IMDb ID for the movie Follow the Fleet?,"db.movies.find({""title"":""Follow the Fleet""}, {""imdb.id"":1})" +who are the actors in China Seas?,"db.movies.find({""title"": ""China Seas""}, {""cast"": 1})" +what is The Power and the Glory description?,"db.movies.find({""title"": ""The Power and the Glory""}, {""plot"": 1})" +what is the movie The Champ about in details?,"db.movies.find({""title"": ""The Champ""}, {""fullplot"": 1})" +what is the plot for the movie The Barretts of Wimpole Street?,"db.movies.find({""title"": ""The Barretts of Wimpole Street""}, {""plot"": 1})" +What is the production company of the movie The Private Life of Henry VIII.?,"db.movies.find({""title"":""The Private Life of Henry VIII.""}, {""tomatoes.production"":1})" +In what year was the movie Man of Aran released?,"db.movies.find({""title"":""Man of Aran""}, {""year"":1})" +What is the imdbID and year of release for the movie with a title of 'The Trail of the Lonesome Pine'?,"db.movies.find({""title"": ""The Trail of the Lonesome Pine""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +How many reviews have been submitted by critics for the movie Street Angel?,"db.movies.find({ ""title"": ""Street Angel"" }, { ""tomatoes.critic.numReviews"": 1 })" +what kind of film is Sisters of the Gion?,"db.movies.find({""title"": ""Sisters of the Gion""}, {""genres"": 1})" +What is the consensus among critics about the movie Frankenstein ?,"db.movies.find({""title"": ""Frankenstein""}, {""tomatoes.consensus"": 1})" +what is The Front Page about?,"db.movies.find({""title"": ""The Front Page""}, {""plot"": 1})" +What is the imdbID and genre of the movie 'Anna Karenina'?,"db.movies.find({""title"": ""Anna Karenina""}, {""imdb.id"": 1, ""genres"": 1, ""_id"": 0})" +what is Follow the Fleet about?,"db.movies.find({""title"": ""Follow the Fleet""}, {""plot"": 1})" +what is the genre of Zoo in Budapest?,"db.movies.find({""title"": ""Zoo in Budapest""}, {""genres"": 1})" +What is the IMDb rating for the movie Footlight Parade?,"db.movies.find({""title"": ""Footlight Parade""}, {""imdb.rating"": 1})" +which person wrote the movie King Solomon's Mines?,"db.movies.find({""title"": ""King Solomon's Mines""}, {""writers"": 1})" +who is the writer of The Hurricane?,"db.movies.find({""title"": ""The Hurricane""}, {""writers"": 1})" +who produced the movie The Last of the Mohicans?,"db.movies.find({""title"":""The Last of the Mohicans""}, {""tomatoes.production"":1})" +What is the Metacritic score of the movie Sanders of the River ?,"db.movies.find({ ""title"": ""Sanders of the River"" }, { ""metacritic"": 1})" +what is the movie The Man Who Knew Too Much about in details?,"db.movies.find({""title"": ""The Man Who Knew Too Much""}, {""fullplot"": 1})" +What is the IMDb rating for Make Way for Tomorrow?,"db.movies.find({""title"": ""Make Way for Tomorrow""}, {""imdb.rating"": 1})" +"A Corner in Wheat, is written by who?","db.movies.find({""title"": ""A Corner in Wheat""}, {""writers"": 1})" +What is the language of The Big House?,"db.movies.find({""title"":""The Big House""}, {""languages"":1})" +the movie The Music Box starred which actors?,"db.movies.find({""title"": ""The Music Box""}, {""cast"": 1})" +who is the director for Within Our Gates?,"db.movies.find({""title"": ""Within Our Gates""}, {""directors"": 1})" +What languages are spoken in the movie The Hunchback of Notre Dame ?,"db.movies.find({""title"": ""The Hunchback of Notre Dame""}, { ""languages"": 1})" +What is the added duration of all movies directed by James Cameron?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""James Cameron"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +what is the genre for the movie Dracula?,"db.movies.find({""title"": ""Dracula""}, {""genres"": 1})" +who was the writer of the movie Little Miss Marker?,"db.movies.find({""title"": ""Little Miss Marker""}, {""writers"": 1})" +Was the movie Cops well received by audiences?,"db.movies.find({""title"":""Cops""}, {""tomatoes.viewer"":1})" +What is the IMDb rating for the movie Trouble in Paradise?,"db.movies.find({""title"": ""Trouble in Paradise""}, {""imdb.rating"": 1})" +who stars in the movie Broadway Melody of 1936?,"db.movies.find({""title"": ""Broadway Melody of 1936""}, {""cast"": 1})" +Who are the writers of the movie Folies Bergère de Paris ?,"db.movies.find({""title"": ""Folies Bergère de Paris""}, { ""writers"": 1})" +What is the MongoDB document ID of the movie High and Dizzy?,"db.movies.find({""title"": ""High and Dizzy""}, {""_id"": 1})" +Was the movie The Son of the Sheik well received by audiences and critics?,"db.movies.find({""title"":""The Son of the Sheik""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +Who is the director of the movie Grand Hotel?,"db.movies.find({""title"": ""Grand Hotel""}, { ""directors"": 1})" +What is the IMDb rating for the film Salomè?,"db.movies.find({""title"": ""Salomè""}, {""imdb.rating"": 1})" +which company produced the movie Lloyd's of London?,"db.movies.find({""title"":""Lloyd's of London""}, {""tomatoes.production"":1})" +which person directed Carnival in Flanders?,"db.movies.find({""title"": ""Carnival in Flanders""}, {""directors"": 1})" +what is the film Berkeley Square description ?,"db.movies.find({""title"": ""Berkeley Square""}, {""plot"": 1})" +what genre is The Freshman?,"db.movies.find({""title"": ""The Freshman""}, {""genres"": 1})" +How many films did Woody Allen direct in each year they were released?,"db.movies.aggregate([{ $match: { ""directors"": ""Woody Allen"" }},{""$group"": { ""_id"": ""$year"", ""count"": {""$sum"": 1}}}])" +What is the name of the Vittorio De Sica-directed movie with the least runtime?,"db.movies.find({""directors"":""Vittorio De Sica""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +How many viewer reviews did the movie These Three receive on Rotten Tomatoes?,"db.movies.find({""title"":""These Three""}, {""tomatoes.viewer.numReviews"":1})" +What is the box office revenue for the movie 'Battling Butler'?,"db.movies.find({""title"": ""Battling Butler""}, {""tomatoes.boxOffice"": 1})" +In what year was the movie Queen Christina released?,"db.movies.find({""title"":""Queen Christina""}, {""year"":1})" +How many votes did the movie All Quiet on the Western Front receive on IMDB?,"db.movies.find({""title"": ""All Quiet on the Western Front""}, { ""imdb.votes"": 1})" +what is the genre for the movie She?,"db.movies.find({""title"": ""She""}, {""genres"": 1})" +who stars in Carnival in Flanders?,"db.movies.find({""title"": ""Carnival in Flanders""}, {""cast"": 1})" +What is the text representation of the awards won and nominations received by the movie Wild Boys of the Road?,"db.movies.find({""title"": ""Wild Boys of the Road""}, { ""awards.text"": 1})" +What is the IMDb ID for the movie Flying Down to Rio?,"db.movies.find({""title"":""Flying Down to Rio""}, {""imdb.id"":1})" +Can you provide more information about the IMDb rating for the movie She ?,"db.movies.find({""title"":""She""}, {""imdb"":1})" +who are the actors in the movie The Power and the Glory?,"db.movies.find({""title"": ""The Power and the Glory""}, {""cast"": 1})" +which company produced the movie A Story of Floating Weeds?,"db.movies.find({""title"":""A Story of Floating Weeds""}, {""tomatoes.production"":1})" +What is the consensus among critics about the movie Carnival in Flanders ?,"db.movies.find({""title"": ""Carnival in Flanders""}, {""tomatoes.consensus"": 1})" +how many awards did the film Baby Face win?,"db.movies.find({""title"":""Baby Face""}, {""awards.wins"":1})" +Who is the lead actress of the movie Salomè ?,"db.movies.find({""title"": ""Salomè""}, {""cast"":{""$slice"": 1},""title"":1})" +which person wrote Final Accord?,"db.movies.find({""title"": ""Final Accord""}, {""writers"": 1})" +what is the movie Les vampires about?,"db.movies.find({""title"": ""Les vampires""}, {""plot"": 1})" +who directed the movie Stage Door?,"db.movies.find({""title"": ""Stage Door""}, {""directors"": 1})" +What is the language of the movie The Blue Light?,"db.movies.find({""title"":""The Blue Light""}, {""languages"":1})" +what is the film Earth imdb rating?,"db.movies.find({""title"": ""Earth""}, {""imdb.rating"": 1})" +How many reviews have been submitted by critics for the movie The Land Beyond the Sunset ?,"db.movies.find({""title"": ""The Land Beyond the Sunset""}, {""tomatoes.critic.numReviews"": 1})" +Can you provide a detailed summary of the movie The 39 Steps plot?,"db.movies.find({ ""title"": ""The 39 Steps"" }, { ""fullplot"": 1})" +What is the runtime and rating for the movie 'Rembrandt'?,"db.movies.find({""title"": ""Rembrandt""}, {""runtime"": 1, ""rated"": 1})" +who is the writer of the film Swing Time?,"db.movies.find({""title"": ""Swing Time""}, {""writers"": 1})" +what kind of movie is Upstream?,"db.movies.find({""title"": ""Upstream""}, {""genres"": 1})" +What is the MongoDB document ID of the movie Little Caesar?,"db.movies.find({""title"": ""Little Caesar""}, {""_id"": 1})" +"Has the movie Captains Courageous won any awards? If so, which ones?","db.movies.find({""title"":""Captains Courageous"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +what is the full plot for Love Me Tonight?,"db.movies.find({""title"": ""Love Me Tonight""}, {""fullplot"": 1})" +How many wins did the movie Dr. Jekyll and Mr. Hyde receive?,"db.movies.find({""title"":""Dr. Jekyll and Mr. Hyde""}, {""awards.wins"":1})" +what was the release date of the film Dishonored?,"db.movies.find({""title"": ""Dishonored""}, {""released"": 1})" +What is the meter score of the movie Going Hollywood according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Going Hollywood""}, {""tomatoes.viewer.meter"": 1})" +How does the movie The Black Pirate rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""The Black Pirate"" },{ ""tomatoes.critic.meter"": 1 })" +"the movie College, was written by who?","db.movies.find({""title"": ""College""}, {""writers"": 1})" +what was the genre of A Night at the Opera?,"db.movies.find({""title"": ""A Night at the Opera""}, {""genres"": 1})" +which actor appeared in most of the movies directed by Alfred Hitchcock?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Alfred Hitchcock"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What is the freshness score of the movie The Lower Depths on Rotten Tomatoes?,"db.movies.find({""title"": ""The Lower Depths""}, {""tomatoes.fresh"": 1})" +which company produced The 3 Penny Opera?,"db.movies.find({""title"":""The 3 Penny Opera""}, {""tomatoes.production"":1})" +Has the movie The Awful Truth won any awards?,"db.movies.find({""title"":""The Awful Truth""}, {""awards.wins"":1})" +what was the release year of College?,"db.movies.find({""title"": ""College""}, {""year"": 1})" +what is Duck Soup about?,"db.movies.find({""title"": ""Duck Soup""}, {""plot"": 1})" +What is the text representation of the awards won and nominations received by the movie The Invisible Man?,"db.movies.find({""title"": ""The Invisible Man""}, { ""awards.text"": 1})" +what is the plot for the film The Chechahcos?,"db.movies.find({""title"": ""The Chechahcos""}, {""plot"": 1})" +In which countries was the movie Miss Lulu Bett produced?,"db.movies.find({""title"":""Miss Lulu Bett""}, {""countries"":1})" +Who are the writers of the movie Peter Pan ?,"db.movies.find({""title"": ""Peter Pan""}, { ""writers"": 1})" +how many awards did the movie The Devil Is a Woman win?,"db.movies.find({""title"":""The Devil Is a Woman""}, {""awards.wins"":1})" +What are the names of all the actors who starred in the movie 'A Free Soul'?,"db.movies.find({""title"": ""A Free Soul""}, {""cast"": 1})" +Who are the starring actors/actresses in the movie The Fall of the House of Usher?,"db.movies.find({""title"":""The Fall of the House of Usher""}, {""cast"":1})" +what is the genre of Shanghai Express?,"db.movies.find({""title"": ""Shanghai Express""}, {""genres"": 1})" +What is the overall length of all movies that Ridley Scott has directed?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Ridley Scott"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +what is the genre for the film The Kid Brother?,"db.movies.find({""title"": ""The Kid Brother""}, {""genres"": 1})" +What is the Rotten Tomatoes meter rating for the movie He Who Gets Slapped ?,"db.movies.find({""title"":""He Who Gets Slapped""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +what is the full plot for The Blue Bird?,"db.movies.find({""title"": ""The Blue Bird""}, {""fullplot"": 1})" +who produced Topaze?,"db.movies.find({""title"":""Topaze""}, {""tomatoes.production"":1})" +Can you provide a detailed summary of the movie Wild and Woolly plot?,"db.movies.find({ ""title"": ""Wild and Woolly"" }, { ""fullplot"": 1})" +which company produced the film The Black Cat?,"db.movies.find({""title"":""The Black Cat""}, {""tomatoes.production"":1})" +how has All Quiet on the Western Front been recieved by critics and audience?,"db.movies.find({""title"":""All Quiet on the Western Front""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what was the genre of the movie The Crowd?,"db.movies.find({""title"": ""The Crowd""}, {""genres"": 1})" +what was the genre of In the Land of the Head Hunters?,"db.movies.find({""title"": ""In the Land of the Head Hunters""}, {""genres"": 1})" +which company produced the film L'opèra de quat'sous?,"db.movies.find({""title"":""L'opèra de quat'sous""}, {""tomatoes.production"":1})" +what is Sisters of the Gion description?,"db.movies.find({""title"": ""Sisters of the Gion""}, {""plot"": 1})" +What is the Rotten Tomatoes meter rating for the movie Four Sons ?,"db.movies.find({""title"":""Four Sons""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +When was the Tomatometer score and other Tomato-related information last updated for the movie King Solomon's Mines?,"db.movies.find({""title"": ""King Solomon's Mines""}, { ""tomatoes.lastUpdated"": 1})" +Who are the writers of the movie Lenin in October ?,"db.movies.find({""title"": ""Lenin in October""}, { ""writers"": 1})" +What is the production company of the film For Heaven's Sake?,"db.movies.find({""title"":""For Heaven's Sake""}, {""tomatoes.production"":1})" +Who is the director of the movie Elephant Boy?,"db.movies.find({""title"": ""Elephant Boy""}, { ""directors"": 1})" +who is the writer of the movie Three Smart Girls?,"db.movies.find({""title"": ""Three Smart Girls""}, {""writers"": 1})" +What is the name of the director and cast for the movie 'The Hunchback of Notre Dame'?,"db.movies.find({""title"": ""The Hunchback of Notre Dame""}, {""directors"": 1, ""cast"": 1, ""_id"": 0})" +Who are the main actors in Wild Oranges ?,"db.movies.find({ ""title"": ""Wild Oranges"" }, { ""cast"": 1})" +Can you provide more information about the IMDb rating for the movie The Sin of Madelon Claudet ?,"db.movies.find({""title"":""The Sin of Madelon Claudet""}, {""imdb"":1})" +what was the release year of the film Les Misèrables?,"db.movies.find({""title"": ""Les Misèrables""}, {""year"": 1})" +what was the genre of the movie The Docks of New York?,"db.movies.find({""title"": ""The Docks of New York""}, {""genres"": 1})" +In what year was the movie The Birth of a Nation released ?,"db.movies.find({ ""title"": ""The Birth of a Nation"" }, { ""year"": 1})" +What is the MPAA rating of the movie The Land Beyond the Sunset?,"db.movies.find({""title"":""The Land Beyond the Sunset""}, {""rated"":1})" +In what year was the movie The Strong Man released ?,"db.movies.find({ ""title"": ""The Strong Man"" }, { ""year"": 1})" +What is the text description of the movie Love Me Tonight awards?,"db.movies.find({""title"":""Love Me Tonight""}, {""awards.text"":1})" +How many votes did the movie The Hurricane receive on IMDB?,"db.movies.find({""title"": ""The Hurricane""}, { ""imdb.votes"": 1})" +who acted in the film The Dark Angel?,"db.movies.find({""title"": ""The Dark Angel""}, {""cast"": 1})" +Who are the main actors in The Story of Louis Pasteur ?,"db.movies.find({ ""title"": ""The Story of Louis Pasteur"" }, { ""cast"": 1})" +"Everybody's Woman, was written by who?","db.movies.find({""title"": ""Everybody's Woman""}, {""writers"": 1})" +"Has the film Shall We Dance won any awards? If so, which ones?","db.movies.find({""title"":""Shall We Dance"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +what is the full plot for the film La Grande Illusion?,"db.movies.find({""title"": ""La Grande Illusion""}, {""fullplot"": 1})" +What is the language of King Kong?,"db.movies.find({""title"":""King Kong""}, {""languages"":1})" +what is the full plot for the movie Grand Hotel?,"db.movies.find({""title"": ""Grand Hotel""}, {""fullplot"": 1})" +what is the film In Old Arizona description ?,"db.movies.find({""title"": ""In Old Arizona""}, {""plot"": 1})" +What is the MPAA rating of the film Blacksmith Scene?,"db.movies.find({""title"":""Blacksmith Scene""}, {""rated"":1})" +who acted in the film The Song of Night?,"db.movies.find({""title"": ""The Song of Night""}, {""cast"": 1})" +What is the box office revenue of the movie The Birth of a Nation in dollars?,"db.movies.find({""title"": ""The Birth of a Nation""}, {""tomatoes.boxOffice"": 1})" +How many votes did the movie Under the Roofs of Paris receive on IMDB?,"db.movies.find({""title"": ""Under the Roofs of Paris""}, { ""imdb.votes"": 1})" +who wrote the screenplay for the movie The Crusades?,"db.movies.aggregate([ { ""$match"": { ""title"":""The Crusades""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +the movie The Charge of the Light Brigade was directed by who?,"db.movies.find({""title"": ""The Charge of the Light Brigade""}, {""directors"": 1})" +What is the box office revenue of the movie The 39 Steps in dollars?,"db.movies.find({""title"": ""The 39 Steps""}, {""tomatoes.boxOffice"": 1})" +what is the plot for the movie Battleship Potemkin?,"db.movies.find({""title"": ""Battleship Potemkin""}, {""plot"": 1})" +how many awards did the movie Hallelujah win?,"db.movies.find({""title"":""Hallelujah""}, {""awards.wins"":1})" +what genre is the film The Crowd Roars?,"db.movies.find({""title"": ""The Crowd Roars""}, {""genres"": 1})" +the movie Elephant Boy starred which actors?,"db.movies.find({""title"": ""Elephant Boy""}, {""cast"": 1})" +what is the plot for the film The Last Command?,"db.movies.find({""title"": ""The Last Command""}, {""plot"": 1})" +the movie Mary of Scotland was directed by who?,"db.movies.find({""title"": ""Mary of Scotland""}, {""directors"": 1})" +"The Black Pirate, is written by who?","db.movies.find({""title"": ""The Black Pirate""}, {""writers"": 1})" +What is the highest-ranking Alain Resnais-directed film on Rotten Tomatoes?,"db.movies.find({""directors"": ""Alain Resnais"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +What is the running time of Children in the Wind?,"db.movies.find({""title"":""Children in the Wind""}, {""runtime"":1})" +What is the principal film genre that Jean-Pierre Melville focuses on in his directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Jean-Pierre Melville"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What is the box office revenue of the movie One Hundred Men and a Girl in dollars?,"db.movies.find({""title"": ""One Hundred Men and a Girl""}, {""tomatoes.boxOffice"": 1})" +How many reviews have been submitted by critics for the movie The Hurricane?,"db.movies.find({ ""title"": ""The Hurricane"" }, { ""tomatoes.critic.numReviews"": 1 })" +What is the running time of the movie The Son of Kong?,"db.movies.find({""title"":""The Son of Kong""}, {""runtime"":1})" +Could you tell me the total runtime of all Woody Allen movies he has directed?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Woody Allen"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +what genre of movie is Ruggles of Red Gap?,"db.movies.find({""title"": ""Ruggles of Red Gap""}, {""genres"": 1})" +What is the IMDb rating for The Garden of Allah?,"db.movies.find({""title"": ""The Garden of Allah""}, {""imdb.rating"": 1})" +who wrote the screenplay for the movie Skippy?,"db.movies.aggregate([ { ""$match"": { ""title"":""Skippy""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +How did the audience and critics receive Skippy?,"db.movies.find({""title"":""Skippy""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +How many reviews did the movie A Woman of Paris: A Drama of Fate receive on Rotten Tomatoes?,"db.movies.find({""title"":""A Woman of Paris: A Drama of Fate""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +what genre of movie is è Nous la Libertè?,"db.movies.find({""title"": ""è Nous la Libertè""}, {""genres"": 1})" +what was the release year of Zoo in Budapest?,"db.movies.find({""title"": ""Zoo in Budapest""}, {""year"": 1})" +what is The Unknown description?,"db.movies.find({""title"": ""The Unknown""}, {""plot"": 1})" +How many audience reviews have been submitted for the movie Two Seconds?,"db.movies.find({ ""title"": ""Two Seconds"" }, { ""tomatoes.viewer.numReviews"": 1 })" +what is the plot for the movie The Immigrant?,"db.movies.find({""title"": ""The Immigrant""}, {""plot"": 1})" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie Les Misèrables ?,"db.movies.find({""title"":""Les Misèrables""}, {""tomatoes.viewer.meter"":1})" +who wrote the screenplay for the film Becky Sharp?,"db.movies.aggregate([ { ""$match"": { ""title"":""Becky Sharp""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +which person wrote the film Two Seconds?,"db.movies.find({""title"": ""Two Seconds""}, {""writers"": 1})" +what kind of film is L'opèra de quat'sous?,"db.movies.find({""title"": ""L'opèra de quat'sous""}, {""genres"": 1})" +Cleopatra is a film written by this person?,"db.movies.find({""title"": ""Cleopatra""}, {""writers"": 1})" +what kind of film is Curly Top?,"db.movies.find({""title"": ""Curly Top""}, {""genres"": 1})" +who are the actors in the movie Gertie the Dinosaur?,"db.movies.find({""title"": ""Gertie the Dinosaur""}, {""cast"": 1})" +what is the plot for College?,"db.movies.find({""title"": ""College""}, {""plot"": 1})" +the movie The Sin of Madelon Claudet starred who?,"db.movies.find({""title"": ""The Sin of Madelon Claudet""}, {""cast"": 1})" +What is the average rating of all of Ethan Coen movies in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Ethan Coen""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +What is the running time of the film The Music Box?,"db.movies.find({""title"":""The Music Box""}, {""runtime"":1})" +the director of A Midsummer Night's Dream was?,"db.movies.find({""title"": ""A Midsummer Night's Dream""}, {""directors"": 1})" +what genre of movie is Freaks?,"db.movies.find({""title"": ""Freaks""}, {""genres"": 1})" +what was the release date of the movie The Emperor Jones?,"db.movies.find({""title"": ""The Emperor Jones""}, {""released"": 1})" +What is the IMDb rating for the film Imitation of Life?,"db.movies.find({""title"": ""Imitation of Life""}, {""imdb.rating"": 1})" +What is the imdbID and year of release for the movie with a title of 'The Saphead'?,"db.movies.find({""title"": ""The Saphead""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +Could you tell me which Pedro Almodovar-directed film has the longest running time?,"db.movies.find({""directors"":""Pedro Almodovar""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +What is the text description of the movie The Divorcee awards?,"db.movies.find({""title"":""The Divorcee""}, {""awards.text"":1})" +who is the writer of the movie Show People?,"db.movies.find({""title"": ""Show People""}, {""writers"": 1})" +what genre of film is Snow White and the Seven Dwarfs?,"db.movies.find({""title"": ""Snow White and the Seven Dwarfs""}, {""genres"": 1})" +"Triumph of the Will, is written by who?","db.movies.find({""title"": ""Triumph of the Will""}, {""writers"": 1})" +How many audience reviews have been submitted for the movie The Guardsman?,"db.movies.find({ ""title"": ""The Guardsman"" }, { ""tomatoes.viewer.numReviews"": 1 })" +What is the full plot summary of the movie The Hurricane ?,"db.movies.find({""title"": ""The Hurricane""}, {""plot"": 1})" +How did the audience and critics receive the film Mayerling?,"db.movies.find({""title"":""Mayerling""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +How many nominations did the movie The Power and the Glory receive?,"db.movies.find({""title"":""The Power and the Glory""}, {""awards.nominations"":1})" +what genre of film is The Last of the Mohicans?,"db.movies.find({""title"": ""The Last of the Mohicans""}, {""genres"": 1})" +What is the runtime and rating for the movie 'Civilization'?,"db.movies.find({""title"": ""Civilization""}, {""runtime"": 1, ""rated"": 1})" +What is the consensus among critics about the movie Flash Gordon?,"db.movies.find({""title"": ""Flash Gordon""}, { ""tomatoes.consensus"": 1})" +What is the ID of the movie Cops on IMDB?,"db.movies.find({""title"": ""Cops""}, {""imdb.id"": 1})" +What is the IMDb rating for the movie They Won't Forget ?,"db.movies.find({""title"":""They Won't Forget""}, {""imdb.rating"":1})" +the film Broken Blossoms or The Yellow Man and the Girl starred which actors?,"db.movies.find({""title"": ""Broken Blossoms or The Yellow Man and the Girl""}, {""cast"": 1})" +what is The Phantom of the Opera description?,"db.movies.find({""title"": ""The Phantom of the Opera""}, {""plot"": 1})" +what type of film is Mutiny on the Bounty?,"db.movies.find({""title"": ""Mutiny on the Bounty""}, {""genres"": 1})" +In what year was the movie 7th Heaven released ?,"db.movies.find({ ""title"": ""7th Heaven"" }, { ""year"": 1})" +What is the MongoDB document ID of the movie Marked Woman?,"db.movies.find({""title"": ""Marked Woman""}, {""_id"": 1})" +what is the genre for the movie Shanghai Express?,"db.movies.find({""title"": ""Shanghai Express""}, {""genres"": 1})" +What languages are spoken in the movie The Great Ziegfeld ?,"db.movies.find({""title"": ""The Great Ziegfeld""}, { ""languages"": 1})" +who is the writer of the movie Blacksmith Scene?,"db.movies.find({""title"": ""Blacksmith Scene""}, {""writers"": 1})" +Has the movie Salomè won any awards?,"db.movies.find({""title"":""Salomè""}, {""awards.wins"":1})" +What is the production company of the film The Immigrant?,"db.movies.find({""title"":""The Immigrant""}, {""tomatoes.production"":1})" +How many votes does the movie The Son of the Sheik have on IMDb?,"db.movies.find({""title"":""The Son of the Sheik""}, {""imdb.votes"":1})" +Could you share with me the titles of the films that Ridley Scott directed?,"db.movies.find({""directors"": ""Ridley Scott""},{""title"":1})" +who acted in the movie Triumph of the Will?,"db.movies.find({""title"": ""Triumph of the Will""}, {""cast"": 1})" +In which countries was the movie Freaks produced?,"db.movies.find({""title"":""Freaks""}, {""countries"":1})" +What is the IMDb rating for the movie Disraeli ?,"db.movies.find({""title"":""Disraeli""}, {""imdb.rating"":1})" +what is the genre for the movie Miss Lulu Bett?,"db.movies.find({""title"": ""Miss Lulu Bett""}, {""genres"": 1})" +How many votes did the movie Maria Chapdelaine receive on IMDB?,"db.movies.find({""title"": ""Maria Chapdelaine""}, { ""imdb.votes"": 1})" +who is the author of The Red Head?,"db.movies.find({""title"": ""The Red Head""}, {""writers"": 1})" +What is the Rotten Tomatoes meter rating for the movie The Son of the Sheik ?,"db.movies.find({""title"":""The Son of the Sheik""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +which company produced the film King Kong?,"db.movies.find({""title"":""King Kong""}, {""tomatoes.production"":1})" +can you describe the plot of Frankenstein?,"db.movies.find({""title"": ""Frankenstein""}, {""plot"": 1})" +"How many comments have been posted by users on the movie Winsor McCay, the Famous Cartoonist of the N.Y. Herald and His Moving Comics's page on the Mflix platform?","db.movies.find({ ""title"": ""Winsor McCay, the Famous Cartoonist of the N.Y. Herald and His Moving Comics"" }, { ""num_mflix_comments"": 1 })" +What is the runtime of the movie Stage Door ?,"db.movies.find({""title"": ""Stage Door""}, { ""runtime"": 1})" +what was the release date of the movie Sons of the Desert?,"db.movies.find({""title"": ""Sons of the Desert""}, {""released"": 1})" +How many awards did the movie win The Black Cat ?,"db.movies.find({ ""title"": ""The Black Cat"" },{ ""awards.wins"": 1 })" +Who are the actors that appear in the movie Naughty Marietta ?,"db.movies.find({ ""title"": ""Naughty Marietta"" },{ ""cast"": 1 })" +the movie The Spanish Earth was directed by who?,"db.movies.find({""title"": ""The Spanish Earth""}, {""directors"": 1})" +How many viewer reviews did the movie One Night of Love receive on Rotten Tomatoes?,"db.movies.find({""title"":""One Night of Love""}, {""tomatoes.viewer.numReviews"":1})" +"Has the film Red Dust won any awards? If so, which ones?","db.movies.find({""title"":""Red Dust"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +How many nominations did the movie The Sin of Madelon Claudet receive?,"db.movies.find({""title"":""The Sin of Madelon Claudet""}, {""awards.nominations"":1})" +How many reviews have been submitted by critics for the movie Broadway Bill?,"db.movies.find({ ""title"": ""Broadway Bill"" }, { ""tomatoes.critic.numReviews"": 1 })" +Could you inform me of the movies that Yasujiro Ozu directed?,"db.movies.find({""directors"": ""Yasujiro Ozu""},{""title"":1})" +What is the movie Steamboat Willie about? Can you provide a brief summary?,"db.movies.find({""title"":""Steamboat Willie""}, {""plot"":1})" +What is the consensus among critics about the movie Camille?,"db.movies.find({""title"": ""Camille""}, { ""tomatoes.consensus"": 1})" +who is the director for The Edge of the World?,"db.movies.find({""title"": ""The Edge of the World""}, {""directors"": 1})" +what is Snow White and the Seven Dwarfs about in details?,"db.movies.find({""title"": ""Snow White and the Seven Dwarfs""}, {""fullplot"": 1})" +What is the IMDB rating of the movie The Music Box ?,"db.movies.find({""title"": ""The Music Box""}, { ""imdb.rating"": 1})" +what is Nosferatu imdb rating?,"db.movies.find({""title"": ""Nosferatu""}, {""imdb.rating"": 1})" +what is the movie Applause about in details?,"db.movies.find({""title"": ""Applause""}, {""fullplot"": 1})" +how many awards did the movie Man of Aran win?,"db.movies.find({""title"":""Man of Aran""}, {""awards.wins"":1})" +what is the full plot for the movie The Last of the Mohicans?,"db.movies.find({""title"": ""The Last of the Mohicans""}, {""fullplot"": 1})" +which person wrote the movie Daughter of Shanghai?,"db.movies.find({""title"": ""Daughter of Shanghai""}, {""writers"": 1})" +Who are the actors in the movie Lonesome?,"db.movies.find({""title"":""Lonesome""}, {""cast"":1})" +who are the actors in the film Flesh and the Devil?,"db.movies.find({""title"": ""Flesh and the Devil""}, {""cast"": 1})" +what genre is the movie The Perils of Pauline?,"db.movies.find({""title"": ""The Perils of Pauline""}, {""genres"": 1})" +What is the Metacritic score of the movie Dr. Jekyll and Mr. Hyde ?,"db.movies.find({ ""title"": ""Dr. Jekyll and Mr. Hyde"" }, { ""metacritic"": 1})" +How many awards did the movie win A Story of Floating Weeds ?,"db.movies.find({ ""title"": ""A Story of Floating Weeds"" },{ ""awards.wins"": 1 })" +who is the writer of the film Le grand jeu?,"db.movies.find({""title"": ""Le grand jeu""}, {""writers"": 1})" +What is the viewer rating for the movie Safety Last! on Rotten Tomatoes?,"db.movies.find({""title"":""Safety Last!""}, {""tomatoes.viewer.rating"":1})" +who was the movie Lost Horizon written by?,"db.movies.find({""title"": ""Lost Horizon""}, {""writers"": 1})" +what is the film Top Hat about?,"db.movies.find({""title"": ""Top Hat""}, {""plot"": 1})" +How many audience reviews have been submitted for the movie Tarzan and His Mate?,"db.movies.find({ ""title"": ""Tarzan and His Mate"" }, { ""tomatoes.viewer.numReviews"": 1 })" +who was the writer of the film The Gay Divorcee?,"db.movies.find({""title"": ""The Gay Divorcee""}, {""writers"": 1})" +what genre is Regeneration?,"db.movies.find({""title"": ""Regeneration""}, {""genres"": 1})" +how many awards did the movie The Private Life of Henry VIII. win?,"db.movies.find({""title"":""The Private Life of Henry VIII.""}, {""awards.wins"":1})" +What is the production company behind the movie The Prince and the Pauper ?,"db.movies.find({""title"": ""The Prince and the Pauper""}, { ""tomatoes.production"": 1})" +what is the full plot for The Guardsman?,"db.movies.find({""title"": ""The Guardsman""}, {""fullplot"": 1})" +What are some of the films that Michelangelo Antonioni has directed?,"db.movies.find({""directors"": ""Michelangelo Antonioni""},{""title"":1})" +who directed The Big House?,"db.movies.find({""title"": ""The Big House""}, {""directors"": 1})" +who directed the movie A Damsel in Distress?,"db.movies.find({""title"": ""A Damsel in Distress""}, {""directors"": 1})" +what is the genre for the film The Man Who Knew Too Much?,"db.movies.find({""title"": ""The Man Who Knew Too Much""}, {""genres"": 1})" +What is the audience rating of the movie San Francisco ?,"db.movies.find({ ""title"": ""San Francisco"" },{ ""tomatoes.viewer.rating"": 1 })" +Which film directed by Spike Lee has the longest running time?,"db.movies.find({""directors"":""Spike Lee""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +what genre is the film The Circus?,"db.movies.find({""title"": ""The Circus""}, {""genres"": 1})" +What is the IMDb rating for the film The Great Ziegfeld?,"db.movies.find({""title"": ""The Great Ziegfeld""}, {""imdb.rating"": 1})" +A Free Soul is a movie written by this person?,"db.movies.find({""title"": ""A Free Soul""}, {""writers"": 1})" +What is the production company behind the movie The Charge of the Light Brigade ?,"db.movies.find({""title"": ""The Charge of the Light Brigade""}, { ""tomatoes.production"": 1})" +what type of film is These Three?,"db.movies.find({""title"": ""These Three""}, {""genres"": 1})" +Comradeship was directed by who?,"db.movies.find({""title"": ""Comradeship""}, {""directors"": 1})" +what was the release date of The Good Earth?,"db.movies.find({""title"": ""The Good Earth""}, {""released"": 1})" +What is the imdbID and year of release for the movie with a title of 'The Garden of Allah'?,"db.movies.find({""title"": ""The Garden of Allah""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +Which movie genres did Terrence Malick direct?,"db.movies.distinct(""genres"", { ""directors"": ""Terrence Malick"" })" +who starred in the movie The Barretts of Wimpole Street?,"db.movies.find({""title"": ""The Barretts of Wimpole Street""}, {""cast"": 1})" +the director of This Is My Affair was?,"db.movies.find({""title"": ""This Is My Affair""}, {""directors"": 1})" +the film China Seas starred which actors?,"db.movies.find({""title"": ""China Seas""}, {""cast"": 1})" +who was the writer of Berkeley Square?,"db.movies.find({""title"": ""Berkeley Square""}, {""writers"": 1})" +How many nominations did the movie Come and Get It receive?,"db.movies.find({""title"":""Come and Get It""}, {""awards.nominations"":1})" +What movie directed by Francois Truffaut has the best Rotten Tomatoes score?,"db.movies.find({""directors"": ""Francois Truffaut"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +what is the film Clash of the Wolves about?,"db.movies.find({""title"": ""Clash of the Wolves""}, {""plot"": 1})" +"Has the film The Son of Kong won any awards? If so, which ones?","db.movies.find({""title"":""The Son of Kong"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +what sort of film is Steamboat Willie?,"db.movies.find({""title"": ""Steamboat Willie""}, {""genres"": 1})" +Who is the director of the movie Wonder Bar?,"db.movies.find({""title"": ""Wonder Bar""}, { ""directors"": 1})" +What is the text representation of the awards won and nominations received by the movie The Son of Kong?,"db.movies.find({""title"": ""The Son of Kong""}, { ""awards.text"": 1})" +which person directed One Week?,"db.movies.find({""title"": ""One Week""}, {""directors"": 1})" +who produced the movie This Is My Affair?,"db.movies.find({""title"":""This Is My Affair""}, {""tomatoes.production"":1})" +Who is the lead actor of the movie David Copperfield ?,"db.movies.find({""title"": ""David Copperfield""}, {""cast"":{""$slice"": 1},""title"":1})" +Can you provide a detailed summary of the movie The Lives of a Bengal Lancer plot?,"db.movies.find({ ""title"": ""The Lives of a Bengal Lancer"" }, { ""fullplot"": 1})" +What is the viewer rating for the movie Sherlock Jr. on Rotten Tomatoes?,"db.movies.find({""title"":""Sherlock Jr.""}, {""tomatoes.viewer.rating"":1})" +What are the names of all the actors who starred in the movie 'A Midsummer Night's Dream'?,"db.movies.find({""title"": ""A Midsummer Night's Dream""}, {""cast"": 1})" +which company produced the movie A Woman of Paris: A Drama of Fate?,"db.movies.find({""title"":""A Woman of Paris: A Drama of Fate""}, {""tomatoes.production"":1})" +What are some of the types of movies that James Cameron has directed?,"db.movies.distinct(""genres"", { ""directors"": ""James Cameron"" })" +What is the running time of the film Scarface?,"db.movies.find({""title"":""Scarface""}, {""runtime"":1})" +who was the writer of the movie The Green Pastures?,"db.movies.find({""title"": ""The Green Pastures""}, {""writers"": 1})" +what is the full plot for the movie San Francisco?,"db.movies.find({""title"": ""San Francisco""}, {""fullplot"": 1})" +What is the plot summary of the movie The Wedding Night ?,"db.movies.find({ ""title"": ""The Wedding Night"" }, { ""plot"": 1})" +Who are the actors that appear in the movie The Barretts of Wimpole Street ?,"db.movies.find({ ""title"": ""The Barretts of Wimpole Street"" },{ ""cast"": 1 })" +What is the language of the film The Big Trail?,"db.movies.find({""title"":""The Big Trail""}, {""languages"":1})" +How many reviews have been submitted by critics for the movie Three Ages ?,"db.movies.find({""title"": ""Three Ages""}, {""tomatoes.critic.numReviews"": 1})" +what was the release year of Wild and Woolly?,"db.movies.find({""title"": ""Wild and Woolly""}, {""year"": 1})" +what sort of movie is Tarzan the Ape Man?,"db.movies.find({""title"": ""Tarzan the Ape Man""}, {""genres"": 1})" +How did the audience and critics receive Romance?,"db.movies.find({""title"":""Romance""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what is the film Top Hat about in details?,"db.movies.find({""title"": ""Top Hat""}, {""fullplot"": 1})" +what is the genre for the film The Invisible Ray?,"db.movies.find({""title"": ""The Invisible Ray""}, {""genres"": 1})" +the film College starred who?,"db.movies.find({""title"": ""College""}, {""cast"": 1})" +who was Metropolis written by?,"db.movies.find({""title"": ""Metropolis""}, {""writers"": 1})" +What is the rating of the movie Come and Get It according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Come and Get It""}, {""tomatoes.viewer.rating"": 1})" +Curly Top was directed by who?,"db.movies.find({""title"": ""Curly Top""}, {""directors"": 1})" +What type of media is M?,"db.movies.find({ ""title"": ""M"" }, { ""type"": 1})" +what is the plot for The Blue Bird?,"db.movies.find({""title"": ""The Blue Bird""}, {""plot"": 1})" +The Trail of the Lonesome Pine is a film written by this person?,"db.movies.find({""title"": ""The Trail of the Lonesome Pine""}, {""writers"": 1})" +what kind of movie is A Star Is Born?,"db.movies.find({""title"": ""A Star Is Born""}, {""genres"": 1})" +can you describe the plot of Viva Villa!?,"db.movies.find({""title"": ""Viva Villa!""}, {""plot"": 1})" +What is the MongoDB document ID of the movie Mutiny on the Bounty?,"db.movies.find({""title"": ""Mutiny on the Bounty""}, {""_id"": 1})" +who produced the movie Masquerade in Vienna?,"db.movies.find({""title"":""Masquerade in Vienna""}, {""tomatoes.production"":1})" +What is the language of Little Miss Marker?,"db.movies.find({""title"":""Little Miss Marker""}, {""languages"":1})" +who is the writer of Men Without Women?,"db.movies.find({""title"": ""Men Without Women""}, {""writers"": 1})" +what is Cops imdb rating?,"db.movies.find({""title"": ""Cops""}, {""imdb.rating"": 1})" +what is the full plot for the film Top Hat?,"db.movies.find({""title"": ""Top Hat""}, {""fullplot"": 1})" +What is the audience rating of the movie Trouble in Paradise ?,"db.movies.find({ ""title"": ""Trouble in Paradise"" },{ ""tomatoes.viewer.rating"": 1 })" +what is the film The Cheat about?,"db.movies.find({""title"": ""The Cheat""}, {""plot"": 1})" +Could you share with me the titles of the films that Yasujiro Ozu directed?,"db.movies.find({""directors"": ""Yasujiro Ozu""},{""title"":1})" +Has the movie Storm Over Asia won any awards?,"db.movies.find({""title"":""Storm Over Asia""}, {""awards.wins"":1})" +what year was the movie The Divorcee released?,"db.movies.find({""title"": ""The Divorcee""}, {""year"": 1})" +Who are the main actors in The 3 Penny Opera ?,"db.movies.find({ ""title"": ""The 3 Penny Opera"" }, { ""cast"": 1})" +Which actor has the greatest number of roles in Coen Brothers's directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Coen Brothers"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +In what language was the movie The Phantom of the Opera released?,"db.movies.find({ ""title"": ""The Phantom of the Opera"" }, { ""languages"": 1})" +How many viewer reviews did the movie The Four Horsemen of the Apocalypse receive on Rotten Tomatoes?,"db.movies.find({""title"":""The Four Horsemen of the Apocalypse""}, {""tomatoes.viewer.numReviews"":1})" +what genre is Going Hollywood?,"db.movies.find({""title"": ""Going Hollywood""}, {""genres"": 1})" +What is the number of movies Yasujiro Ozu released per year?,"db.movies.aggregate([{ $match: { ""directors"": ""Yasujiro Ozu"" }},{""$group"": { ""_id"": ""$year"", ""count"": {""$sum"": 1}}}])" +what is the film Camille about in details?,"db.movies.find({""title"": ""Camille""}, {""fullplot"": 1})" +How many awards did the movie win The Pearls of the Crown ?,"db.movies.find({ ""title"": ""The Pearls of the Crown"" },{ ""awards.wins"": 1 })" +who was the writer of the movie The Man Who Could Work Miracles?,"db.movies.find({""title"": ""The Man Who Could Work Miracles""}, {""writers"": 1})" +who wrote the screenplay for Pandora's Box?,"db.movies.aggregate([ { ""$match"": { ""title"":""Pandora's Box""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +who acted in the movie The Beloved Vagabond?,"db.movies.find({""title"": ""The Beloved Vagabond""}, {""cast"": 1})" +What is the movie Shanghai Express rating?,"db.movies.find({""title"":""Shanghai Express""}, {""rated"":1})" +what sort of film is Berkeley Square?,"db.movies.find({""title"": ""Berkeley Square""}, {""genres"": 1})" +What is the audience rating of the movie Tarzan the Ape Man ?,"db.movies.find({ ""title"": ""Tarzan the Ape Man"" },{ ""tomatoes.viewer.rating"": 1 })" +what is the film The Lost World about?,"db.movies.find({""title"": ""The Lost World""}, {""plot"": 1})" +In what language was the movie Topaze released?,"db.movies.find({ ""title"": ""Topaze"" }, { ""languages"": 1})" +"Shall We Dance, is written by who?","db.movies.find({""title"": ""Shall We Dance""}, {""writers"": 1})" +What is the text description of the movie Wild Boys of the Road awards?,"db.movies.find({""title"":""Wild Boys of the Road""}, {""awards.text"":1})" +When was the information about the movie Les vampires last updated?,"db.movies.find({ ""title"": ""Les vampires"" }, { ""lastupdated"": 1})" +what is the full plot for The Wedding Night?,"db.movies.find({""title"": ""The Wedding Night""}, {""fullplot"": 1})" +What is the viewer rating for the movie The Chechahcos on Rotten Tomatoes?,"db.movies.find({""title"":""The Chechahcos""}, {""tomatoes.viewer.rating"":1})" +who produced Footlight Parade?,"db.movies.find({""title"":""Footlight Parade""}, {""tomatoes.production"":1})" +How many reviews have been submitted for the movie Wife! Be Like a Rose! on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Wife! Be Like a Rose!"" },{ ""tomatoes.viewer.numReviews"": 1 })" +who wrote the screenplay for the movie Triumph of the Will?,"db.movies.aggregate([ { ""$match"": { ""title"":""Triumph of the Will""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +How many votes did the movie Carnival in Flanders receive on IMDB?,"db.movies.find({""title"": ""Carnival in Flanders""}, { ""imdb.votes"": 1})" +what is the movie Chapayev about?,"db.movies.find({""title"": ""Chapayev""}, {""plot"": 1})" +Who are the actors that appear in the movie Romeo and Juliet ?,"db.movies.find({ ""title"": ""Romeo and Juliet"" },{ ""cast"": 1 })" +what kind of film is One Week?,"db.movies.find({""title"": ""One Week""}, {""genres"": 1})" +What is the language of the movie Disraeli?,"db.movies.find({""title"":""Disraeli""}, {""languages"":1})" +who was the writer of China Seas?,"db.movies.find({""title"": ""China Seas""}, {""writers"": 1})" +What is the running time of Little Caesar?,"db.movies.find({""title"":""Little Caesar""}, {""runtime"":1})" +What is the full plot summary of the movie Camille ?,"db.movies.find({""title"": ""Camille""}, {""plot"": 1})" +which company produced the film Zero for Conduct?,"db.movies.find({""title"":""Zero for Conduct""}, {""tomatoes.production"":1})" +what was the release year of the film The Front Page?,"db.movies.find({""title"": ""The Front Page""}, {""year"": 1})" +What is the running time of the film The Cheat?,"db.movies.find({""title"":""The Cheat""}, {""runtime"":1})" +who was Show Boat directed by?,"db.movies.find({""title"": ""Show Boat""}, {""directors"": 1})" +Can you provide more information about the IMDb rating for the movie Clash of the Wolves ?,"db.movies.find({""title"":""Clash of the Wolves""}, {""imdb"":1})" +who was the writer of the movie Broken Lullaby?,"db.movies.find({""title"": ""Broken Lullaby""}, {""writers"": 1})" +what was the release date of the movie The Power and the Glory?,"db.movies.find({""title"": ""The Power and the Glory""}, {""released"": 1})" +can you describe the plot of The Thin Man?,"db.movies.find({""title"": ""The Thin Man""}, {""plot"": 1})" +who are the actors in the movie The Blood of a Poet?,"db.movies.find({""title"": ""The Blood of a Poet""}, {""cast"": 1})" +what genre is the movie The Good Earth?,"db.movies.find({""title"": ""The Good Earth""}, {""genres"": 1})" +What is the MPAA rating of the movie Zero for Conduct?,"db.movies.find({""title"":""Zero for Conduct""}, {""rated"":1})" +the film The Red Head starred who?,"db.movies.find({""title"": ""The Red Head""}, {""cast"": 1})" +What are the genres this movie Dishonored belongs to?,"db.movies.find({""title"":""Dishonored""}, {""genres"":1})" +What is the running time of Duck Soup?,"db.movies.find({""title"":""Duck Soup""}, {""runtime"":1})" +When was the movie The Gilded Lily released?,"db.movies.find({""title"":""The Gilded Lily""}, {""released"":1})" +who wrote the movie Safety Last!?,"db.movies.find({""title"": ""Safety Last!""}, {""writers"": 1})" +what was the release year of the movie Three Little Pigs?,"db.movies.find({""title"": ""Three Little Pigs""}, {""year"": 1})" +who was the movie Flash Gordon written by?,"db.movies.find({""title"": ""Flash Gordon""}, {""writers"": 1})" +Who is the director of the movie Twentieth Century?,"db.movies.find({""title"": ""Twentieth Century""}, { ""directors"": 1})" +Could you tell me the typical rating of Joel Coen movies in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Joel Coen""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +who are the actors in the movie Hell's Hinges?,"db.movies.find({""title"": ""Hell's Hinges""}, {""cast"": 1})" +Was the movie Dishonored well received by audiences?,"db.movies.find({""title"":""Dishonored""}, {""tomatoes.viewer"":1})" +who was the film Dishonored written by?,"db.movies.find({""title"": ""Dishonored""}, {""writers"": 1})" +who are the actors in The Circus?,"db.movies.find({""title"": ""The Circus""}, {""cast"": 1})" +what was the release date of the movie Children in the Wind?,"db.movies.find({""title"": ""Children in the Wind""}, {""released"": 1})" +What is the box office revenue of the movie The Barretts of Wimpole Street in dollars?,"db.movies.find({""title"": ""The Barretts of Wimpole Street""}, {""tomatoes.boxOffice"": 1})" +What is the language of the movie The Pearls of the Crown?,"db.movies.find({""title"":""The Pearls of the Crown""}, {""languages"":1})" +"the movie Theodora Goes Wild, was written by who?","db.movies.find({""title"": ""Theodora Goes Wild""}, {""writers"": 1})" +what is the film Tol'able David about in details?,"db.movies.find({""title"": ""Tol'able David""}, {""fullplot"": 1})" +The Unknown was directed by who?,"db.movies.find({""title"": ""The Unknown""}, {""directors"": 1})" +what is the film Regeneration about in details?,"db.movies.find({""title"": ""Regeneration""}, {""fullplot"": 1})" +what type of movie is All Quiet on the Western Front?,"db.movies.find({""title"": ""All Quiet on the Western Front""}, {""genres"": 1})" +who is the writer of the movie Swing Time?,"db.movies.find({""title"": ""Swing Time""}, {""writers"": 1})" +what is The Thin Man about?,"db.movies.find({""title"": ""The Thin Man""}, {""plot"": 1})" +Can you provide me with a list of movies directed by Stanley Kubrick that were released in the 1990s?,"db.movies.find({""directors"": 'Stanley Kubrick', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +which person wrote the film The Gilded Lily?,"db.movies.find({""title"": ""The Gilded Lily""}, {""writers"": 1})" +What is the average rating for all of Jean Renoir's films in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Jean Renoir""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +which person wrote the film Lonesome?,"db.movies.find({""title"": ""Lonesome""}, {""writers"": 1})" +How many reviews did the movie The Passion of Joan of Arc receive on Rotten Tomatoes?,"db.movies.find({""title"":""The Passion of Joan of Arc""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +who was the movie Forbidden written by?,"db.movies.find({""title"": ""Forbidden""}, {""writers"": 1})" +what kind of film is Footlight Parade?,"db.movies.find({""title"": ""Footlight Parade""}, {""genres"": 1})" +What is the Metacritic score of the movie Three Smart Girls ?,"db.movies.find({ ""title"": ""Three Smart Girls"" }, { ""metacritic"": 1})" +What is the language of the film Two Seconds?,"db.movies.find({""title"":""Two Seconds""}, {""languages"":1})" +What is the production company behind the movie x?,"db.movies.find({""title"": ""This Is My Affair""}, { ""tomatoes.production"": 1})" +What are the genres this movie Pèpè le Moko belongs to?,"db.movies.find({""title"":""Pèpè le Moko""}, {""genres"":1})" +what was the genre of the film Peter Pan?,"db.movies.find({""title"": ""Peter Pan""}, {""genres"": 1})" +What is the movie The Gilded Lily about? Can you provide a brief summary?,"db.movies.find({""title"":""The Gilded Lily""}, {""plot"":1})" +"the movie The Black Pirate, was written by who?","db.movies.find({""title"": ""The Black Pirate""}, {""writers"": 1})" +"The Prince and the Pauper, was written by who?","db.movies.find({""title"": ""The Prince and the Pauper""}, {""writers"": 1})" +what is the movie Ruggles of Red Gap about?,"db.movies.find({""title"": ""Ruggles of Red Gap""}, {""plot"": 1})" +Which films did Christopher Nolan direct in the 1990s?,"db.movies.find({""directors"": 'Christopher Nolan', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +What is the highest-ranking Robert Bresson-directed film on Rotten Tomatoes?,"db.movies.find({""directors"": ""Robert Bresson"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +who's the director of La Grande Illusion?,"db.movies.find({""title"": ""La Grande Illusion""}, {""directors"": 1})" +who produced Broken Lullaby?,"db.movies.find({""title"":""Broken Lullaby""}, {""tomatoes.production"":1})" +what is the full plot for the film Queen Christina?,"db.movies.find({""title"": ""Queen Christina""}, {""fullplot"": 1})" +what was the release date of the movie David Golder?,"db.movies.find({""title"": ""David Golder""}, {""released"": 1})" +what is the genre for the movie The Lives of a Bengal Lancer?,"db.movies.find({""title"": ""The Lives of a Bengal Lancer""}, {""genres"": 1})" +Which movies were directed by Oliver Stone and were released in the 1990s?,"db.movies.find({""directors"": 'Oliver Stone', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +who is the writer of the movie Baby Face?,"db.movies.find({""title"": ""Baby Face""}, {""writers"": 1})" +what is the movie Lonesome imdb rating?,"db.movies.find({""title"": ""Lonesome""}, {""imdb.rating"": 1})" +Was the movie 42nd Street well received by audiences?,"db.movies.find({""title"":""42nd Street""}, {""tomatoes.viewer"":1})" +the film Our Hospitality was directed by who?,"db.movies.find({""title"": ""Our Hospitality""}, {""directors"": 1})" +Was the movie Napoleon well received by audiences?,"db.movies.find({""title"":""Napoleon""}, {""tomatoes.viewer"":1})" +who starred in the film Tol'able David?,"db.movies.find({""title"": ""Tol'able David""}, {""cast"": 1})" +Can you name some of the films that Jean-Pierre Melville directed and were released in the 1990s?,"db.movies.find({""directors"": 'Jean-Pierre Melville', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +What is the box office revenue of the movie Pandora's Box in dollars?,"db.movies.find({""title"": ""Pandora's Box""}, {""tomatoes.boxOffice"": 1})" +What movie directed by Oliver Stone has the shortest running time?,"db.movies.find({""directors"":""Oliver Stone""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +which person wrote the movie The Four Horsemen of the Apocalypse?,"db.movies.find({""title"": ""The Four Horsemen of the Apocalypse""}, {""writers"": 1})" +What is the IMDb rating for The Robber Symphony?,"db.movies.find({""title"": ""The Robber Symphony""}, {""imdb.rating"": 1})" +who is the writer of the movie Going Hollywood?,"db.movies.find({""title"": ""Going Hollywood""}, {""writers"": 1})" +What is the text description of the movie Mary of Scotland awards?,"db.movies.find({""title"":""Mary of Scotland""}, {""awards.text"":1})" +Can you provide a detailed summary of the movie The Story of Louis Pasteur plot?,"db.movies.find({ ""title"": ""The Story of Louis Pasteur"" }, { ""fullplot"": 1})" +what is the film Little Women about?,"db.movies.find({""title"": ""Little Women""}, {""plot"": 1})" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie The Wedding March ?,"db.movies.find({""title"":""The Wedding March""}, {""tomatoes.viewer.meter"":1})" +Was the movie Kid Galahad well received by audiences?,"db.movies.find({""title"":""Kid Galahad""}, {""tomatoes.viewer"":1})" +What was the release date for the movie The Life of Emile Zola?,"db.movies.find({""title"":""The Life of Emile Zola""}, {""released"":1})" +What is the consensus among critics about the movie Freaks ?,"db.movies.find({""title"": ""Freaks""}, {""tomatoes.consensus"": 1})" +Was the movie The Black Cat well received by audiences?,"db.movies.find({""title"":""The Black Cat""}, {""tomatoes.viewer"":1})" +In which countries was the movie The Son of Kong produced?,"db.movies.find({""title"":""The Son of Kong""}, {""countries"":1})" +what was the release date of the movie Tabu: A Story of the South Seas?,"db.movies.find({""title"": ""Tabu: A Story of the South Seas""}, {""released"": 1})" +What type of media is Top Hat?,"db.movies.find({ ""title"": ""Top Hat"" }, { ""type"": 1})" +the movie Nosferatu starred who?,"db.movies.find({""title"": ""Nosferatu""}, {""cast"": 1})" +what is the plot for the movie Follow the Fleet?,"db.movies.find({""title"": ""Follow the Fleet""}, {""plot"": 1})" +who is the director that directed The Unknown?,"db.movies.find({""title"": ""The Unknown""}, {""directors"": 1})" +What is the production company of the movie Lady Windermere's Fan?,"db.movies.find({""title"":""Lady Windermere's Fan""}, {""tomatoes.production"":1})" +what is the film Three Ages about in details?,"db.movies.find({""title"": ""Three Ages""}, {""fullplot"": 1})" +What is the percentage of positive reviews among critics for the movie The Lost World ?,"db.movies.find({ ""title"": ""The Lost World"" },{ ""tomatoes.critic.meter"": 1 })" +what is the movie Cavalcade description ?,"db.movies.find({""title"": ""Cavalcade""}, {""plot"": 1})" +who acted in the movie Hallelujah?,"db.movies.find({""title"": ""Hallelujah""}, {""cast"": 1})" +What is the percentage of positive reviews among critics for the movie Little Women ?,"db.movies.find({ ""title"": ""Little Women"" },{ ""tomatoes.critic.meter"": 1 })" +What is the audience rating of the movie Romeo and Juliet ?,"db.movies.find({ ""title"": ""Romeo and Juliet"" },{ ""tomatoes.viewer.rating"": 1 })" +The Black Cat is written by this person?,"db.movies.find({""title"": ""The Black Cat""}, {""writers"": 1})" +what is the movie City Lights description ?,"db.movies.find({""title"": ""City Lights""}, {""plot"": 1})" +What is the consensus among critics about the movie Forbidden?,"db.movies.find({""title"": ""Forbidden""}, { ""tomatoes.consensus"": 1})" +Can you provide more information about the IMDb rating for the movie Romeo and Juliet ?,"db.movies.find({""title"":""Romeo and Juliet""}, {""imdb"":1})" +Was the movie The Great Ziegfeld well received by audiences and critics?,"db.movies.find({""title"":""The Great Ziegfeld""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +Who are the actors that appear in the movie The Robber Symphony ?,"db.movies.find({ ""title"": ""The Robber Symphony"" },{ ""cast"": 1 })" +What type of media is The Sin of Madelon Claudet?,"db.movies.find({ ""title"": ""The Sin of Madelon Claudet"" }, { ""type"": 1})" +who was Men Without Women directed by?,"db.movies.find({""title"": ""Men Without Women""}, {""directors"": 1})" +who is the director for A Damsel in Distress?,"db.movies.find({""title"": ""A Damsel in Distress""}, {""directors"": 1})" +How many nominations did the movie Romeo and Juliet receive?,"db.movies.find({""title"":""Romeo and Juliet""}, {""awards.nominations"":1})" +who stars in the film Lady Windermere's Fan?,"db.movies.find({""title"": ""Lady Windermere's Fan""}, {""cast"": 1})" +what genre is the movie Mayerling?,"db.movies.find({""title"": ""Mayerling""}, {""genres"": 1})" +What is the rating of the movie Duck Soup ?,"db.movies.find({ ""title"": ""Duck Soup"" }, { ""rated"": 1})" +What is the running time of the film Wife! Be Like a Rose!?,"db.movies.find({""title"":""Wife! Be Like a Rose!""}, {""runtime"":1})" +What is the production company of Napoleon?,"db.movies.find({""title"":""Napoleon""}, {""tomatoes.production"":1})" +What is the IMDb ID for the movie The Front Page?,"db.movies.find({""title"":""The Front Page""}, {""imdb.id"":1})" +"What is the text representation of the awards won and nominations received by the movie Winsor McCay, the Famous Cartoonist of the N.Y. Herald and His Moving Comics?","db.movies.find({""title"": ""Winsor McCay, the Famous Cartoonist of the N.Y. Herald and His Moving Comics""}, { ""awards.text"": 1})" +What is the mean rating for Sergei Eisenstein movies in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Sergei Eisenstein""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +who is the director of The Big House?,"db.movies.find({""title"": ""The Big House""}, {""directors"": 1})" +What is the average rating of movies with the genre 'History'?,"db.movies.aggregate([{""$match"": {""genres"": ""History""}}, {""$group"": { ""_id"": ""null"", ""avgRating"": {""$avg"": ""$imdb.rating"":}}}])" +how many awards did the film Broken Blossoms or The Yellow Man and the Girl win?,"db.movies.find({""title"":""Broken Blossoms or The Yellow Man and the Girl""}, {""awards.wins"":1})" +When was the Tomatometer score and other Tomato-related information last updated for the movie Show Boat?,"db.movies.find({""title"": ""Show Boat""}, { ""tomatoes.lastUpdated"": 1})" +What is the name of the movie that Terrence Malick directed that has the longest duration?,"db.movies.find({""directors"":""Terrence Malick""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +which company produced the film Lost Horizon?,"db.movies.find({""title"":""Lost Horizon""}, {""tomatoes.production"":1})" +Was the movie Beau Geste well received by audiences and critics?,"db.movies.find({""title"":""Beau Geste""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what is the full plot for Der Kaiser von Kalifornien?,"db.movies.find({""title"": ""Der Kaiser von Kalifornien""}, {""fullplot"": 1})" +what is the genre for the movie Dekigokoro?,"db.movies.find({""title"": ""Dekigokoro""}, {""genres"": 1})" +Can you provide a detailed summary of the movie Snow White and the Seven Dwarfs plot?,"db.movies.find({ ""title"": ""Snow White and the Seven Dwarfs"" }, { ""fullplot"": 1})" +"Dodsworth, was written by who?","db.movies.find({""title"": ""Dodsworth""}, {""writers"": 1})" +what year was the movie The Last Command released?,"db.movies.find({""title"": ""The Last Command""}, {""year"": 1})" +Could you tell me the exact number of films that have been directed by Federico Fellini?,"db.movies.countDocuments({""directors"":""Federico Fellini""})" +"Has the film The Red Head won any awards? If so, which ones?","db.movies.find({""title"":""The Red Head"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +what was the release year of Kid Galahad?,"db.movies.find({""title"": ""Kid Galahad""}, {""year"": 1})" +"the movie The Informer, was written by who?","db.movies.find({""title"": ""The Informer""}, {""writers"": 1})" +what is the movie Top Hat description ?,"db.movies.find({""title"": ""Top Hat""}, {""plot"": 1})" +who was the writer of the film The Barretts of Wimpole Street?,"db.movies.find({""title"": ""The Barretts of Wimpole Street""}, {""writers"": 1})" +What is the movie The Ace of Hearts about? Can you provide a brief summary?,"db.movies.find({""title"":""The Ace of Hearts""}, {""plot"":1})" +Which movies did Eric Rohmer direct?,"db.movies.find({""directors"": ""Eric Rohmer""},{""title"":1})" +Can you provide a detailed summary of the movie Viva Villa! plot?,"db.movies.find({ ""title"": ""Viva Villa!"" }, { ""fullplot"": 1})" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie Trouble in Paradise ?,"db.movies.find({""title"":""Trouble in Paradise""}, {""tomatoes.viewer.meter"":1})" +What is the critical reception of the movie The Prince and the Pauper?,"db.movies.find({""title"":""The Prince and the Pauper""}, {""tomatoes.critic"":1})" +In what language was the movie Zoo in Budapest released?,"db.movies.find({ ""title"": ""Zoo in Budapest"" }, { ""languages"": 1})" +What was the release date for the movie The Charge of the Light Brigade?,"db.movies.find({""title"":""The Charge of the Light Brigade""}, {""released"":1})" +who wrote the screenplay for The Awful Truth?,"db.movies.aggregate([ { ""$match"": { ""title"":""The Awful Truth""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +What languages are spoken in the movie A Corner in Wheat?,"db.movies.find({""title"":""A Corner in Wheat""}, {""languages"":1})" +Can you provide more information about the Rotten Tomatoes rating for the movie A Story of Floating Weeds?,"db.movies.find({""title"": ""A Story of Floating Weeds""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +When was the Tomatometer score and other Tomato-related information last updated for the movie Nosferatu?,"db.movies.find({""title"": ""Nosferatu""}, { ""tomatoes.lastUpdated"": 1})" +Can you provide more information about the IMDb rating for the movie The Son of the Sheik ?,"db.movies.find({""title"":""The Son of the Sheik""}, {""imdb"":1})" +Who is the lead actor of the movie Skippy ?,"db.movies.find({""title"": ""Skippy""}, {""cast"":{""$slice"": 1},""title"":1})" +Lady Windermere's Fan is a movie written by this person?,"db.movies.find({""title"": ""Lady Windermere's Fan""}, {""writers"": 1})" +which company produced the movie Bad Girl?,"db.movies.find({""title"":""Bad Girl""}, {""tomatoes.production"":1})" +Topaze is a movie written by this person?,"db.movies.find({""title"": ""Topaze""}, {""writers"": 1})" +What is the mean rating of all the Terrence Malick films in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Terrence Malick""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +Which of Vittorio De Sica's directed films has the briefest duration?,"db.movies.find({""directors"":""Vittorio De Sica""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +What is the rating of the movie The Prisoner of Zenda ?,"db.movies.find({ ""title"": ""The Prisoner of Zenda"" }, { ""rated"": 1})" +What is the language of The Private Life of Don Juan?,"db.movies.find({""title"":""The Private Life of Don Juan""}, {""languages"":1})" +What is the meter score of the movie City Streets according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""City Streets""}, {""tomatoes.viewer.meter"": 1})" +What is the IMDb rating for the movie Viva Villa!?,"db.movies.find({""title"": ""Viva Villa!""}, {""imdb.rating"": 1})" +What is the rating of the movie Dr. Jekyll and Mr. Hyde on IMDb?,"db.movies.find({""title"":""Dr. Jekyll and Mr. Hyde""}, {""imdb.rating"":1})" +what is the full plot for the movie The Last Command?,"db.movies.find({""title"": ""The Last Command""}, {""fullplot"": 1})" +What is the consensus among critics about the movie Les Misèrables?,"db.movies.find({""title"": ""Les Misèrables""}, { ""tomatoes.consensus"": 1})" +Flying Down to Rio is a film written by this person?,"db.movies.find({""title"": ""Flying Down to Rio""}, {""writers"": 1})" +what was the release date of Anna Karenina?,"db.movies.find({""title"": ""Anna Karenina""}, {""released"": 1})" +the movie College starred who?,"db.movies.find({""title"": ""College""}, {""cast"": 1})" +What languages are spoken in the movie Romance?,"db.movies.find({""title"":""Romance""}, {""languages"":1})" +which person directed Little Miss Marker?,"db.movies.find({""title"": ""Little Miss Marker""}, {""directors"": 1})" +How many reviews did the movie Traffic in Souls receive on Rotten Tomatoes?,"db.movies.find({""title"":""Traffic in Souls""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +what was the release year of The Champ?,"db.movies.find({""title"": ""The Champ""}, {""year"": 1})" +what year was Dames released?,"db.movies.find({""title"": ""Dames""}, {""year"": 1})" +What is the rating of the movie It ?,"db.movies.find({ ""title"": ""It"" }, { ""rated"": 1})" +who are the actors in the movie Man with a Movie Camera?,"db.movies.find({""title"": ""Man with a Movie Camera""}, {""cast"": 1})" +who stars in the film The Lost World?,"db.movies.find({""title"": ""The Lost World""}, {""cast"": 1})" +which company produced The Hunchback of Notre Dame?,"db.movies.find({""title"":""The Hunchback of Notre Dame""}, {""tomatoes.production"":1})" +Who are the actors that appear in the movie Mayerling ?,"db.movies.find({ ""title"": ""Mayerling"" },{ ""cast"": 1 })" +What is the IMDB rating of the movie The Thief of Bagdad ?,"db.movies.find({""title"": ""The Thief of Bagdad""}, { ""imdb.rating"": 1})" +what was the genre of the movie The Life of Emile Zola?,"db.movies.find({""title"": ""The Life of Emile Zola""}, {""genres"": 1})" +who wrote the movie Come and Get It?,"db.movies.find({""title"": ""Come and Get It""}, {""writers"": 1})" +How many audience reviews have been submitted for the movie The Gilded Lily ?,"db.movies.find({ ""title"": ""The Gilded Lily"" },{ ""tomatoes.viewer.numReviews"": 1 })" +"Has the movie One Hundred Men and a Girl won any awards? If so, which ones?","db.movies.find({""title"":""One Hundred Men and a Girl"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +who is listed as director for Comradeship?,"db.movies.find({""title"": ""Comradeship""}, {""directors"": 1})" +What is the Metacritic score of the movie Topaze ?,"db.movies.find({ ""title"": ""Topaze"" }, { ""metacritic"": 1})" +In what language was the movie The Wedding March released?,"db.movies.find({ ""title"": ""The Wedding March"" }, { ""languages"": 1})" +What is the audience rating of the movie The Kid ?,"db.movies.find({ ""title"": ""The Kid"" },{ ""tomatoes.viewer.rating"": 1 })" +When was the Tomatometer score and other Tomato-related information last updated for the movie è Nous la Libertè?,"db.movies.find({""title"": ""è Nous la Libertè""}, { ""tomatoes.lastUpdated"": 1})" +What is the standard rating of Alain Resnais movies in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Alain Resnais""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +How many votes did the movie The Black Cat receive on IMDB?,"db.movies.find({""title"": ""The Black Cat""}, { ""imdb.votes"": 1})" +When was the information last updated for the movie Le grand jeu ?,"db.movies.find({ ""title"": ""Le grand jeu"" },{ ""lastupdated"": 1 })" +"the movie I Was Born, But..., was written by who?","db.movies.find({""title"": ""I Was Born, But...""}, {""writers"": 1})" +What is the imdbID and year of release for the movie with a title of 'è Nous la Libertè'?,"db.movies.find({""title"": ""è Nous la Libertè""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +What is the running time of The Perils of Pauline?,"db.movies.find({""title"":""The Perils of Pauline""}, {""runtime"":1})" +who produced The Italian?,"db.movies.find({""title"":""The Italian""}, {""tomatoes.production"":1})" +what type of film is Morocco?,"db.movies.find({""title"": ""Morocco""}, {""genres"": 1})" +who is the director of Lloyd's of London?,"db.movies.find({""title"": ""Lloyd's of London""}, {""directors"": 1})" +what is the plot for Trouble in Paradise?,"db.movies.find({""title"": ""Trouble in Paradise""}, {""plot"": 1})" +What is the audience rating of the movie The Front Page ?,"db.movies.find({ ""title"": ""The Front Page"" },{ ""tomatoes.viewer.rating"": 1 })" +Who are the starring actors/actresses in the movie Show Boat?,"db.movies.find({""title"":""Show Boat""}, {""cast"":1})" +which company produced the movie Sunrise?,"db.movies.find({""title"":""Sunrise""}, {""tomatoes.production"":1})" +how many awards did the film The Wind win?,"db.movies.find({""title"":""The Wind""}, {""awards.wins"":1})" +who is the author of Der Kaiser von Kalifornien?,"db.movies.find({""title"": ""Der Kaiser von Kalifornien""}, {""writers"": 1})" +who was Grand Hotel written by?,"db.movies.find({""title"": ""Grand Hotel""}, {""writers"": 1})" +who are the actors in The Red Head?,"db.movies.find({""title"": ""The Red Head""}, {""cast"": 1})" +who produced the movie Show Boat?,"db.movies.find({""title"":""Show Boat""}, {""tomatoes.production"":1})" +Wings is written by this person?,"db.movies.find({""title"": ""Wings""}, {""writers"": 1})" +The Birth of a Nation is a film written by this person?,"db.movies.find({""title"": ""The Birth of a Nation""}, {""writers"": 1})" +"How many reviews have been submitted for the movie Winsor McCay, the Famous Cartoonist of the N.Y. Herald and His Moving Comics on Rotten Tomatoes?","db.movies.find({ ""title"": ""Winsor McCay, the Famous Cartoonist of the N.Y. Herald and His Moving Comics"" },{ ""tomatoes.viewer.numReviews"": 1 })" +What type of media is Foolish Wives?,"db.movies.find({ ""title"": ""Foolish Wives"" }, { ""type"": 1})" +What are the most critically acclaimed movies directed by Stanley Kubrick?,"db.movies.find({""directors"": 'Stanley Kubrick', ""imdb.rating"": {""$gt"": 8.5}})" +What is the text description of the movie Cavalcade awards?,"db.movies.find({""title"":""Cavalcade""}, {""awards.text"":1})" +How many nominations did the movie The Lost Patrol receive?,"db.movies.find({""title"":""The Lost Patrol""}, {""awards.nominations"":1})" +What is the MongoDB document ID of the movie Blacksmith Scene?,"db.movies.find({""title"": ""Blacksmith Scene""}, {""_id"": 1})" +"How did the audience and critics receive the film I Was Born, But...?","db.movies.find({""title"":""I Was Born, But...""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +"who was I Was Born, But... directed by?","db.movies.find({""title"": ""I Was Born, But...""}, {""directors"": 1})" +how many awards did the film Anthony Adverse win?,"db.movies.find({""title"":""Anthony Adverse""}, {""awards.wins"":1})" +What is the production company of Baby Face?,"db.movies.find({""title"":""Baby Face""}, {""tomatoes.production"":1})" +What is the name of the director and cast for the movie 'Battling Butler'?,"db.movies.find({""title"": ""Battling Butler""}, {""directors"": 1, ""cast"": 1, ""_id"": 0})" +what is the movie Dishonored description ?,"db.movies.find({""title"": ""Dishonored""}, {""plot"": 1})" +What was the release date for the movie Wonder Bar?,"db.movies.find({""title"":""Wonder Bar""}, {""released"":1})" +What is the imdbID and year of release for the movie with a title of 'The Life of Emile Zola'?,"db.movies.find({""title"": ""The Life of Emile Zola""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +who is the writer of The Black Cat?,"db.movies.find({""title"": ""The Black Cat""}, {""writers"": 1})" +What is the language of the film Little Women?,"db.movies.find({""title"":""Little Women""}, {""languages"":1})" +What is the language of the film She?,"db.movies.find({""title"":""She""}, {""languages"":1})" +Can you share with me the names of the top-rated movies directed by Claude Chabrol?,"db.movies.find({""directors"": 'Claude Chabrol', ""imdb.rating"": {""$gt"": 8.5}})" +What is the critical reception of the movie The Band Concert?,"db.movies.find({""title"":""The Band Concert""}, {""tomatoes.critic"":1})" +who stars in Freaks?,"db.movies.find({""title"": ""Freaks""}, {""cast"": 1})" +When was the information last updated for the movie China Seas ?,"db.movies.find({ ""title"": ""China Seas"" },{ ""lastupdated"": 1 })" +In what language was the movie He Who Gets Slapped released?,"db.movies.find({ ""title"": ""He Who Gets Slapped"" }, { ""languages"": 1})" +What is the movie A Corner in Wheat about? Can you provide a brief summary?,"db.movies.find({""title"":""A Corner in Wheat""}, {""plot"":1})" +In what year was the movie Romance released ?,"db.movies.find({ ""title"": ""Romance"" }, { ""year"": 1})" +What is the rating of the movie A Story of Floating Weeds according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""A Story of Floating Weeds""}, {""tomatoes.viewer.rating"": 1})" +The Prince and the Pauper is written by this person?,"db.movies.find({""title"": ""The Prince and the Pauper""}, {""writers"": 1})" +what sort of film is Kid Galahad?,"db.movies.find({""title"": ""Kid Galahad""}, {""genres"": 1})" +the movie Who Killed Cock Robin? was directed by who?,"db.movies.find({""title"": ""Who Killed Cock Robin?""}, {""directors"": 1})" +How did the audience and critics receive the film Harvest?,"db.movies.find({""title"":""Harvest""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +who directed the film Three Little Pigs?,"db.movies.find({""title"": ""Three Little Pigs""}, {""directors"": 1})" +What is the percentage of positive reviews among critics for the movie The Music Box ?,"db.movies.find({ ""title"": ""The Music Box"" },{ ""tomatoes.critic.meter"": 1 })" +which company produced the movie She?,"db.movies.find({""title"":""She""}, {""tomatoes.production"":1})" +What is the IMDB rating of the movie Upstream ?,"db.movies.find({""title"": ""Upstream""}, { ""imdb.rating"": 1})" +who directed the movie A Midsummer Night's Dream?,"db.movies.find({""title"": ""A Midsummer Night's Dream""}, {""directors"": 1})" +who directed The Song of Night?,"db.movies.find({""title"": ""The Song of Night""}, {""directors"": 1})" +what is the movie La Grande Illusion about?,"db.movies.find({""title"": ""La Grande Illusion""}, {""plot"": 1})" +who directed the film The Lower Depths?,"db.movies.find({""title"": ""The Lower Depths""}, {""directors"": 1})" +When was the Tomatometer score and other Tomato-related information last updated for the movie The Gay Divorcee?,"db.movies.find({""title"": ""The Gay Divorcee""}, { ""tomatoes.lastUpdated"": 1})" +Can you name the movie genres that Stanley Kubrick has directed?,"db.movies.distinct(""genres"", { ""directors"": ""Stanley Kubrick"" })" +What is the audience rating of the movie Robin Hood ?,"db.movies.find({ ""title"": ""Robin Hood"" },{ ""tomatoes.viewer.rating"": 1 })" +Has the movie A Corner in Wheat won any awards?,"db.movies.find({""title"":""A Corner in Wheat""}, {""awards.wins"":1})" +Which types of movies has Francois Truffaut directed?,"db.movies.distinct(""genres"", { ""directors"": ""Francois Truffaut"" })" +Who are the writers of the movie Hell's Hinges ?,"db.movies.find({""title"": ""Hell's Hinges""}, { ""writers"": 1})" +what is the full plot for the film The Gold Rush?,"db.movies.find({""title"": ""The Gold Rush""}, {""fullplot"": 1})" +What is the percentage of positive reviews among critics for the movie Shanghai Express ?,"db.movies.find({ ""title"": ""Shanghai Express"" },{ ""tomatoes.critic.meter"": 1 })" +When was the Tomatometer score and other Tomato-related information last updated for the movie The Invisible Man?,"db.movies.find({""title"": ""The Invisible Man""}, { ""tomatoes.lastUpdated"": 1})" +who directed the film City Streets?,"db.movies.find({""title"": ""City Streets""}, {""directors"": 1})" +what was the release date of the film In Old Chicago?,"db.movies.find({""title"": ""In Old Chicago""}, {""released"": 1})" +What is the MongoDB document ID of the movie Civilization?,"db.movies.find({""title"": ""Civilization""}, {""_id"": 1})" +In which countries was the movie Footlight Parade produced?,"db.movies.find({""title"":""Footlight Parade""}, {""countries"":1})" +How many votes does the movie It's a Gift have on IMDb?,"db.movies.find({""title"":""It's a Gift""}, {""imdb.votes"":1})" +What is the Tomatometer score of the movie The Thin Man ?,"db.movies.find({ ""title"": ""The Thin Man"" },{ ""tomatoes.critic.meter"": 1 })" +What is the full plot summary of the movie The World Moves On ?,"db.movies.find({""title"": ""The World Moves On""}, {""plot"": 1})" +In what year was the movie China Seas released ?,"db.movies.find({ ""title"": ""China Seas"" }, { ""year"": 1})" +What is the consensus among critics about the movie La Grande Illusion?,"db.movies.find({""title"": ""La Grande Illusion""}, { ""tomatoes.consensus"": 1})" +What is the IMDb ID for the movie Imitation of Life?,"db.movies.find({""title"":""Imitation of Life""}, {""imdb.id"":1})" +Can you provide a detailed summary of the movie The Jazz Singer plot?,"db.movies.find({ ""title"": ""The Jazz Singer"" }, { ""fullplot"": 1})" +Can you provide a longer version of the movie The 3 Penny Opera plot?,"db.movies.find({""title"":""The 3 Penny Opera""}, {""fullplot"":1})" +What is the running time of the film The Invisible Ray?,"db.movies.find({""title"":""The Invisible Ray""}, {""runtime"":1})" +What is the name of the director and cast for the movie 'The Iron Horse'?,"db.movies.find({""title"": ""The Iron Horse""}, {""directors"": 1, ""cast"": 1, ""_id"": 0})" +How many audience reviews have been submitted for the movie The Guardsman ?,"db.movies.find({ ""title"": ""The Guardsman"" },{ ""tomatoes.viewer.numReviews"": 1 })" +What's the title of the shortest Gus Van Sant-directed movie?,"db.movies.find({""directors"":""Gus Van Sant""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +how many awards did Modern Times win?,"db.movies.find({""title"":""Modern Times""}, {""awards.wins"":1})" +What is the box office revenue of the movie Morocco in dollars?,"db.movies.find({""title"": ""Morocco""}, {""tomatoes.boxOffice"": 1})" +What is the rating of the movie For Heaven's Sake according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""For Heaven's Sake""}, {""tomatoes.viewer.rating"": 1})" +who was the writer of The Lost Patrol?,"db.movies.find({""title"": ""The Lost Patrol""}, {""writers"": 1})" +What is the IMDb rating for the movie The Divine Lady ?,"db.movies.find({""title"":""The Divine Lady""}, {""imdb.rating"":1})" +who wrote the screenplay for the film Black Legion?,"db.movies.aggregate([ { ""$match"": { ""title"":""Black Legion""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +Who are the actors that appear in the movie Little Women ?,"db.movies.find({ ""title"": ""Little Women"" },{ ""cast"": 1 })" +who produced The Kid Brother?,"db.movies.find({""title"":""The Kid Brother""}, {""tomatoes.production"":1})" +How did the audience and critics receive the film Elephant Boy?,"db.movies.find({""title"":""Elephant Boy""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the critical reception of the movie Broadway Bill?,"db.movies.find({""title"":""Broadway Bill""}, {""tomatoes.critic"":1})" +the movie It was directed by who?,"db.movies.find({""title"": ""It""}, {""directors"": 1})" +Can you provide a longer version of the movie Man with a Movie Camera plot?,"db.movies.find({""title"":""Man with a Movie Camera""}, {""fullplot"":1})" +What is the IMDB rating of the movie The World Moves On ?,"db.movies.find({""title"": ""The World Moves On""}, { ""imdb.rating"": 1})" +What is the text description of the movie Little Caesar awards?,"db.movies.find({""title"":""Little Caesar""}, {""awards.text"":1})" +In what year was the movie Three Ages released?,"db.movies.find({""title"":""Three Ages""}, {""year"":1})" +what was the release date of the movie Little Women?,"db.movies.find({""title"": ""Little Women""}, {""released"": 1})" +What is the percentage of positive reviews among critics for the movie The Story of Louis Pasteur ?,"db.movies.find({ ""title"": ""The Story of Louis Pasteur"" },{ ""tomatoes.critic.meter"": 1 })" +what type of movie is Sherlock Jr.?,"db.movies.find({""title"": ""Sherlock Jr.""}, {""genres"": 1})" +who stars in the film Napoleon?,"db.movies.find({""title"": ""Napoleon""}, {""cast"": 1})" +What is the Metacritic score of the movie Popeye the Sailor Meets Sindbad the Sailor ?,"db.movies.find({ ""title"": ""Popeye the Sailor Meets Sindbad the Sailor"" }, { ""metacritic"": 1})" +who wrote the screenplay for From Hand to Mouth?,"db.movies.aggregate([ { ""$match"": { ""title"":""From Hand to Mouth""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +What is the production company of the film Eskimo?,"db.movies.find({""title"":""Eskimo""}, {""tomatoes.production"":1})" +what is the film Sanders of the River about in details?,"db.movies.find({""title"": ""Sanders of the River""}, {""fullplot"": 1})" +What is the box office revenue of the movie The Spanish Earth in dollars?,"db.movies.find({""title"": ""The Spanish Earth""}, {""tomatoes.boxOffice"": 1})" +What movie directed by Quentin Tarantino has the best Rotten Tomatoes score?,"db.movies.find({""directors"": ""Quentin Tarantino"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +How many audience reviews have been submitted for the movie A Day in the Country ?,"db.movies.find({ ""title"": ""A Day in the Country"" },{ ""tomatoes.viewer.numReviews"": 1 })" +What was the release date for the movie Le grand jeu?,"db.movies.find({""title"":""Le grand jeu""}, {""released"":1})" +The Emperor Jones was directed by who?,"db.movies.find({""title"": ""The Emperor Jones""}, {""directors"": 1})" +what was the release date of the movie Anthony Adverse?,"db.movies.find({""title"": ""Anthony Adverse""}, {""released"": 1})" +What is the imdbID and year of release for the movie with a title of 'The Blood of a Poet'?,"db.movies.find({""title"": ""The Blood of a Poet""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +How did the audience and critics receive The Band Concert?,"db.movies.find({""title"":""The Band Concert""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +who directed the film Little Caesar?,"db.movies.find({""title"": ""Little Caesar""}, {""directors"": 1})" +What is the viewer rating for the movie The Lost World on Rotten Tomatoes?,"db.movies.find({""title"":""The Lost World""}, {""tomatoes.viewer.rating"":1})" +How did the audience and critics receive The Cheat?,"db.movies.find({""title"":""The Cheat""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +How did the audience and critics receive the movie Snow White and the Seven Dwarfs?,"db.movies.find({""title"":""Snow White and the Seven Dwarfs""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +how many awards did the film The Sin of Madelon Claudet win?,"db.movies.find({""title"":""The Sin of Madelon Claudet""}, {""awards.wins"":1})" +How many award nominations did the movie receive Rembrandt ?,"db.movies.find({ ""title"": ""Rembrandt"" },{ ""awards.nominations"": 1 })" +"How many reviews did the movie Steamboat Bill, Jr. receive on Rotten Tomatoes?","db.movies.find({""title"":""Steamboat Bill, Jr.""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +When was the information last updated for the movie Lloyd's of London ?,"db.movies.find({ ""title"": ""Lloyd's of London"" },{ ""lastupdated"": 1 })" +What is the movie Baby Face rating?,"db.movies.find({""title"":""Baby Face""}, {""rated"":1})" +What was the release date for the movie Earth?,"db.movies.find({""title"":""Earth""}, {""released"":1})" +Who is the actor that has acted in the maximum number of movies directed by James Cameron?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""James Cameron"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +what genre is the movie Payment Deferred?,"db.movies.find({""title"": ""Payment Deferred""}, {""genres"": 1})" +What is the name of the director and cast for the movie 'The Gilded Lily'?,"db.movies.find({""title"": ""The Gilded Lily""}, {""directors"": 1, ""cast"": 1, ""_id"": 0})" +How many reviews have been submitted for the movie The Song of Night on Rotten Tomatoes?,"db.movies.find({ ""title"": ""The Song of Night"" },{ ""tomatoes.viewer.numReviews"": 1 })" +What is the MPAA rating of the film Ruggles of Red Gap?,"db.movies.find({""title"":""Ruggles of Red Gap""}, {""rated"":1})" +"the movie Our Hospitality, was written by who?","db.movies.find({""title"": ""Our Hospitality""}, {""writers"": 1})" +what is the full plot for Gertie the Dinosaur?,"db.movies.find({""title"": ""Gertie the Dinosaur""}, {""fullplot"": 1})" +who starred in the film China Seas?,"db.movies.find({""title"": ""China Seas""}, {""cast"": 1})" +what genre of movie is Anna Karenina?,"db.movies.find({""title"": ""Anna Karenina""}, {""genres"": 1})" +What is the language of the movie Who Killed Cock Robin??,"db.movies.find({""title"":""Who Killed Cock Robin?""}, {""languages"":1})" +What is the runtime and rating for the movie 'It'?,"db.movies.find({""title"": ""It""}, {""runtime"": 1, ""rated"": 1})" +What is the audience rating of the movie Cavalcade ?,"db.movies.find({ ""title"": ""Cavalcade"" },{ ""tomatoes.viewer.rating"": 1 })" +Could you inform me of the movies that Jacques Rivette directed?,"db.movies.find({""directors"": ""Jacques Rivette""},{""title"":1})" +What is the full plot summary of the movie Miss Lulu Bett ?,"db.movies.find({""title"": ""Miss Lulu Bett""}, {""plot"": 1})" +What is the combined duration of all films that Jean-Luc Godard directed?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Jean-Luc Godard"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +How many reviews have been submitted for the movie Wings on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Wings"" },{ ""tomatoes.viewer.numReviews"": 1 })" +what's the main genre of the movies directed by Francis Ford Coppola ?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Francis Ford Coppola"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +Who is the director of the movie San Francisco?,"db.movies.find({""title"": ""San Francisco""}, { ""directors"": 1})" +Can you provide more information about the Rotten Tomatoes rating for the movie The Count of Monte Cristo?,"db.movies.find({""title"": ""The Count of Monte Cristo""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +how has High and Dizzy been recieved by critics and audience?,"db.movies.find({""title"":""High and Dizzy""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +How long is the movie Wild Oranges in minutes?,"db.movies.find({""title"":""Wild Oranges""}, {""runtime"":1})" +the director of Freaks was?,"db.movies.find({""title"": ""Freaks""}, {""directors"": 1})" +How many nominations did the movie Tarzan and His Mate receive?,"db.movies.find({""title"":""Tarzan and His Mate""}, {""awards.nominations"":1})" +How many wins did the movie A Farewell to Arms receive?,"db.movies.find({""title"":""A Farewell to Arms""}, {""awards.wins"":1})" +who was the writer of the film A Farewell to Arms?,"db.movies.find({""title"": ""A Farewell to Arms""}, {""writers"": 1})" +What languages are spoken in the movie Becky Sharp?,"db.movies.find({""title"":""Becky Sharp""}, {""languages"":1})" +What is the meter score of the movie Dracula according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Dracula""}, {""tomatoes.viewer.meter"": 1})" +how has Broken Blossoms or The Yellow Man and the Girl been recieved by critics and audience?,"db.movies.find({""title"":""Broken Blossoms or The Yellow Man and the Girl""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +can you describe the plot of Disraeli?,"db.movies.find({""title"": ""Disraeli""}, {""plot"": 1})" +What is the audience rating of the movie A Midsummer Night's Dream ?,"db.movies.find({ ""title"": ""A Midsummer Night's Dream"" },{ ""tomatoes.viewer.rating"": 1 })" +who wrote the film Queen Christina?,"db.movies.find({""title"": ""Queen Christina""}, {""writers"": 1})" +who starred in the movie The Wedding March?,"db.movies.find({""title"": ""The Wedding March""}, {""cast"": 1})" +the film The Navigator starred who?,"db.movies.find({""title"": ""The Navigator""}, {""cast"": 1})" +what is The Unknown about in details?,"db.movies.find({""title"": ""The Unknown""}, {""fullplot"": 1})" +the movie Curly Top starred which actors?,"db.movies.find({""title"": ""Curly Top""}, {""cast"": 1})" +What is the production company of Nanook of the North?,"db.movies.find({""title"":""Nanook of the North""}, {""tomatoes.production"":1})" +Who is the lead actress of the movie Anthony Adverse ?,"db.movies.find({""title"": ""Anthony Adverse""}, {""cast"":{""$slice"": 1},""title"":1})" +Which movie genre does Pedro Almodovar mainly specialize in as a director?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Pedro Almodovar"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What is the IMDb ID for the movie These Three?,"db.movies.find({""title"":""These Three""}, {""imdb.id"":1})" +What are the names of all the actors who starred in the movie 'The Beloved Vagabond'?,"db.movies.find({""title"": ""The Beloved Vagabond""}, {""cast"": 1})" +What is the MPAA rating of the film The Wind?,"db.movies.find({""title"":""The Wind""}, {""rated"":1})" +What was the release date for the movie Movie Crazy?,"db.movies.find({""title"":""Movie Crazy""}, {""released"":1})" +What is the meter score of the movie The Sin of Madelon Claudet according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""The Sin of Madelon Claudet""}, {""tomatoes.viewer.meter"": 1})" +what genre of film is Dekigokoro?,"db.movies.find({""title"": ""Dekigokoro""}, {""genres"": 1})" +Who are the main actors/actresses in the movie The Garden of Allah?,"db.movies.find({""title"":""The Garden of Allah""}, {""cast"":1})" +who wrote the screenplay for the film Le grand jeu?,"db.movies.aggregate([ { ""$match"": { ""title"":""Le grand jeu""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +What is the text description of the movie The Son of the Sheik awards?,"db.movies.find({""title"":""The Son of the Sheik""}, {""awards.text"":1})" +what was the genre of the movie The Public Enemy?,"db.movies.find({""title"": ""The Public Enemy""}, {""genres"": 1})" +who produced Gertie the Dinosaur?,"db.movies.find({""title"":""Gertie the Dinosaur""}, {""tomatoes.production"":1})" +What is the freshness score of the movie Final Accord on Rotten Tomatoes?,"db.movies.find({""title"": ""Final Accord""}, {""tomatoes.fresh"": 1})" +the movie Black Legion starred which actors?,"db.movies.find({""title"": ""Black Legion""}, {""cast"": 1})" +Can you provide more information about the languages spoken in the movie A Day in the Country ?,"db.movies.find({""title"":""A Day in the Country""}, {""languages"":1})" +What is the critical reception of the movie A Free Soul?,"db.movies.find({""title"":""A Free Soul""}, {""tomatoes.critic"":1})" +who is listed as director for Frankenstein?,"db.movies.find({""title"": ""Frankenstein""}, {""directors"": 1})" +Can you provide a detailed summary of the movie A Farewell to Arms plot?,"db.movies.find({ ""title"": ""A Farewell to Arms"" }, { ""fullplot"": 1})" +What is the runtime of the movie Lenin in October ?,"db.movies.find({""title"": ""Lenin in October""}, { ""runtime"": 1})" +What is the box office revenue for the movie 'Earth'?,"db.movies.find({""title"": ""Earth""}, {""tomatoes.boxOffice"": 1})" +who produced the film Pandora's Box?,"db.movies.find({""title"":""Pandora's Box""}, {""tomatoes.production"":1})" +what was the genre of the movie The Pearls of the Crown?,"db.movies.find({""title"": ""The Pearls of the Crown""}, {""genres"": 1})" +which person wrote the movie The Power and the Glory?,"db.movies.find({""title"": ""The Power and the Glory""}, {""writers"": 1})" +who acted in the movie Skippy?,"db.movies.find({""title"": ""Skippy""}, {""cast"": 1})" +"Toni, was written by who?","db.movies.find({""title"": ""Toni""}, {""writers"": 1})" +what sort of film is Flash Gordon?,"db.movies.find({""title"": ""Flash Gordon""}, {""genres"": 1})" +What is the text description of the movie Trouble in Paradise awards?,"db.movies.find({""title"":""Trouble in Paradise""}, {""awards.text"":1})" +who is the director that directed College?,"db.movies.find({""title"": ""College""}, {""directors"": 1})" +What is the production company behind the movie x?,"db.movies.find({""title"": ""M""}, { ""tomatoes.production"": 1})" +who is the writer of the film The Band Concert?,"db.movies.find({""title"": ""The Band Concert""}, {""writers"": 1})" +who is the director of Three Ages?,"db.movies.find({""title"": ""Three Ages""}, {""directors"": 1})" +what was the genre of the film The Gay Divorcee?,"db.movies.find({""title"": ""The Gay Divorcee""}, {""genres"": 1})" +"In Old Chicago, is written by who?","db.movies.find({""title"": ""In Old Chicago""}, {""writers"": 1})" +who are the actors in The Strong Man?,"db.movies.find({""title"": ""The Strong Man""}, {""cast"": 1})" +"How does the movie I Was Born, But... rate on Rotten Tomatoes?","db.movies.find({ ""title"": ""I Was Born, But..."" },{ ""tomatoes.critic.meter"": 1 })" +What are the names of all the actors who starred in the movie 'The Private Life of Henry VIII.'?,"db.movies.find({""title"": ""The Private Life of Henry VIII.""}, {""cast"": 1})" +Who are the main actors/actresses in the movie Romeo and Juliet?,"db.movies.find({""title"":""Romeo and Juliet""}, {""cast"":1})" +what year was the movie The Thief of Bagdad released?,"db.movies.find({""title"": ""The Thief of Bagdad""}, {""year"": 1})" +What is the IMDb ID for the movie Broken Lullaby?,"db.movies.find({""title"":""Broken Lullaby""}, {""imdb.id"":1})" +What is the imdbID and genre of the movie 'The 39 Steps'?,"db.movies.find({""title"": ""The 39 Steps""}, {""imdb.id"": 1, ""genres"": 1, ""_id"": 0})" +who wrote the movie Queen Christina?,"db.movies.find({""title"": ""Queen Christina""}, {""writers"": 1})" +How many audience reviews have been submitted for the movie Camille ?,"db.movies.find({ ""title"": ""Camille"" },{ ""tomatoes.viewer.numReviews"": 1 })" +Which film directed by Alfred Hitchcock has the longest running time?,"db.movies.find({""directors"":""Alfred Hitchcock""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +What is the Metacritic score of the movie Show Boat ?,"db.movies.find({ ""title"": ""Show Boat"" }, { ""metacritic"": 1})" +what year was City Streets released?,"db.movies.find({""title"": ""City Streets""}, {""year"": 1})" +who wrote the screenplay for the film Mayerling?,"db.movies.aggregate([ { ""$match"": { ""title"":""Mayerling""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +What is the typical rating for all Roman Polanski movies in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Roman Polanski""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +What is the percentage of positive reviews among critics for the movie The Big Trail ?,"db.movies.find({ ""title"": ""The Big Trail"" },{ ""tomatoes.critic.meter"": 1 })" +What is the Rotten Tomatoes rating for Oliver Stone's highest-rated movie?,"db.movies.find({""directors"": ""Oliver Stone"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +who directed the film College?,"db.movies.find({""title"": ""College""}, {""directors"": 1})" +What is the runtime and rating for the movie 'Earth'?,"db.movies.find({""title"": ""Earth""}, {""runtime"": 1, ""rated"": 1})" +How does the movie In the Land of the Head Hunters rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""In the Land of the Head Hunters"" },{ ""tomatoes.critic.meter"": 1 })" +"On Rotten Tomatoes, what is the top-rated film directed by Orson Welles?","db.movies.find({""directors"": ""Orson Welles"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +what kind of film is Tol'able David?,"db.movies.find({""title"": ""Tol'able David""}, {""genres"": 1})" +what is the film Dekigokoro about in details?,"db.movies.find({""title"": ""Dekigokoro""}, {""fullplot"": 1})" +The Wedding Night was directed by who?,"db.movies.find({""title"": ""The Wedding Night""}, {""directors"": 1})" +What is the production company behind the movie The Pearls of the Crown ?,"db.movies.find({""title"": ""The Pearls of the Crown""}, {""tomatoes.production"": 1})" +how has Napoleon been recieved by critics and audience?,"db.movies.find({""title"":""Napoleon""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the name of the director and cast for the movie 'Sherlock Jr.'?,"db.movies.find({""title"": ""Sherlock Jr.""}, {""directors"": 1, ""cast"": 1, ""_id"": 0})" +What is the typical rating for all Eric Rohmer movies in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Eric Rohmer""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +what sort of movie is A Free Soul?,"db.movies.find({""title"": ""A Free Soul""}, {""genres"": 1})" +What is the language of the movie Four Sons?,"db.movies.find({""title"":""Four Sons""}, {""languages"":1})" +When was the movie The Man Who Could Work Miracles released in theaters?,"db.movies.find({""title"": ""The Man Who Could Work Miracles""}, {""released"": 1})" +What is the IMDb rating for the movie The Unknown?,"db.movies.find({""title"": ""The Unknown""}, {""imdb.rating"": 1})" +how many awards did the movie The Sin of Madelon Claudet win?,"db.movies.find({""title"":""The Sin of Madelon Claudet""}, {""awards.wins"":1})" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie The Prisoner of Shark Island ?,"db.movies.find({""title"":""The Prisoner of Shark Island""}, {""tomatoes.viewer.meter"":1})" +When was the information last updated for the movie Final Accord ?,"db.movies.find({ ""title"": ""Final Accord"" },{ ""lastupdated"": 1 })" +what is the movie Broadway Melody of 1936 imdb rating?,"db.movies.find({""title"": ""Broadway Melody of 1936""}, {""imdb.rating"": 1})" +who produced the movie Lost Horizon?,"db.movies.find({""title"":""Lost Horizon""}, {""tomatoes.production"":1})" +what was the release date of the movie A Night at the Opera?,"db.movies.find({""title"": ""A Night at the Opera""}, {""released"": 1})" +who wrote the screenplay for Daughter of Shanghai?,"db.movies.aggregate([ { ""$match"": { ""title"":""Daughter of Shanghai""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +What is the box office revenue for the movie 'Asphalt'?,"db.movies.find({""title"": ""Asphalt""}, {""tomatoes.boxOffice"": 1})" +What is the audience rating of the movie The Guardsman ?,"db.movies.find({ ""title"": ""The Guardsman"" },{ ""tomatoes.viewer.rating"": 1 })" +Which movie genre does Terrence Malick mainly specialize in as a director?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Terrence Malick"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What is the viewer rating for the movie Chapayev on Rotten Tomatoes?,"db.movies.find({""title"":""Chapayev""}, {""tomatoes.viewer.rating"":1})" +who is the director of Sons of the Desert?,"db.movies.find({""title"": ""Sons of the Desert""}, {""directors"": 1})" +what genre of movie is Theodora Goes Wild?,"db.movies.find({""title"": ""Theodora Goes Wild""}, {""genres"": 1})" +what kind of film is Smilin' Through?,"db.movies.find({""title"": ""Smilin' Through""}, {""genres"": 1})" +Twentieth Century is a movie written by this person?,"db.movies.find({""title"": ""Twentieth Century""}, {""writers"": 1})" +what type of movie is The Italian?,"db.movies.find({""title"": ""The Italian""}, {""genres"": 1})" +who wrote The Kid?,"db.movies.find({""title"": ""The Kid""}, {""writers"": 1})" +What is the production company of Under the Roofs of Paris?,"db.movies.find({""title"":""Under the Roofs of Paris""}, {""tomatoes.production"":1})" +Was the movie College well received by audiences and critics?,"db.movies.find({""title"":""College""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +Two Seconds is a movie written by this person?,"db.movies.find({""title"": ""Two Seconds""}, {""writers"": 1})" +What is the ID of the movie The Saphead on IMDB?,"db.movies.find({""title"": ""The Saphead""}, {""imdb.id"": 1})" +what is the genre for the movie Theodora Goes Wild?,"db.movies.find({""title"": ""Theodora Goes Wild""}, {""genres"": 1})" +who wrote the movie Gold Diggers of 1933?,"db.movies.find({""title"": ""Gold Diggers of 1933""}, {""writers"": 1})" +What is the MongoDB document ID of the movie Our Hospitality?,"db.movies.find({""title"": ""Our Hospitality""}, {""_id"": 1})" +Harvest was directed by who?,"db.movies.find({""title"": ""Harvest""}, {""directors"": 1})" +What is the consensus among critics about the movie Wild Oranges ?,"db.movies.find({""title"": ""Wild Oranges""}, {""tomatoes.consensus"": 1})" +who produced the movie Modern Times?,"db.movies.find({""title"":""Modern Times""}, {""tomatoes.production"":1})" +what was the genre of the film Mutiny on the Bounty?,"db.movies.find({""title"": ""Mutiny on the Bounty""}, {""genres"": 1})" +When was the information about the movie The World Moves On last updated?,"db.movies.find({ ""title"": ""The World Moves On"" }, { ""lastupdated"": 1})" +What is the MPAA rating of Cleopatra?,"db.movies.find({""title"":""Cleopatra""}, {""rated"":1})" +What is the rating of the movie Dekigokoro according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Dekigokoro""}, {""tomatoes.viewer.rating"": 1})" +In what year was the movie The Black Pirate released ?,"db.movies.find({ ""title"": ""The Black Pirate"" }, { ""year"": 1})" +How did the audience and critics receive the movie Miss Lulu Bett?,"db.movies.find({""title"":""Miss Lulu Bett""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the percentage of positive reviews among critics for the movie Freaks ?,"db.movies.find({ ""title"": ""Freaks"" },{ ""tomatoes.critic.meter"": 1 })" +How many comments have been posted by users on the movie 42nd Street's page on the Mflix platform?,"db.movies.find({ ""title"": ""42nd Street"" }, { ""num_mflix_comments"": 1 })" +What are the names of all the actors who starred in the movie 'Trouble in Paradise'?,"db.movies.find({""title"": ""Trouble in Paradise""}, {""cast"": 1})" +What is the imdbID and genre of the movie 'A Day in the Country'?,"db.movies.find({""title"": ""A Day in the Country""}, {""imdb.id"": 1, ""genres"": 1, ""_id"": 0})" +what is the full plot for Secret Agent?,"db.movies.find({""title"": ""Secret Agent""}, {""fullplot"": 1})" +How long is the movie The Wedding March in minutes?,"db.movies.find({""title"":""The Wedding March""}, {""runtime"":1})" +who directed the film The Chechahcos?,"db.movies.find({""title"": ""The Chechahcos""}, {""directors"": 1})" +How many nominations did the movie Robin Hood receive?,"db.movies.find({""title"":""Robin Hood""}, {""awards.nominations"":1})" +who is the author of Three Smart Girls?,"db.movies.find({""title"": ""Three Smart Girls""}, {""writers"": 1})" +Who are the starring actors/actresses in the movie Forbidden?,"db.movies.find({""title"":""Forbidden""}, {""cast"":1})" +Who are the actors in the movie The Iron Horse?,"db.movies.find({""title"":""The Iron Horse""}, {""cast"":1})" +"who acted in the film Steamboat Bill, Jr.?","db.movies.find({""title"": ""Steamboat Bill, Jr.""}, {""cast"": 1})" +What is the IMDb rating for the movie Beau Geste?,"db.movies.find({""title"": ""Beau Geste""}, {""imdb.rating"": 1})" +can you describe the plot of Westfront 1918?,"db.movies.find({""title"": ""Westfront 1918""}, {""plot"": 1})" +What is the dominant genre of Robert Bresson's directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Robert Bresson"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +"Has the film Lonesome won any awards? If so, which ones?","db.movies.find({""title"":""Lonesome"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +How many votes did the movie Shanghai Express receive on IMDB?,"db.movies.find({""title"": ""Shanghai Express""}, { ""imdb.votes"": 1})" +who produced the film The Green Pastures?,"db.movies.find({""title"":""The Green Pastures""}, {""tomatoes.production"":1})" +When was the information about the movie 42nd Street last updated?,"db.movies.find({ ""title"": ""42nd Street"" }, { ""lastupdated"": 1})" +Who are the starring actors/actresses in the movie Lonesome?,"db.movies.find({""title"":""Lonesome""}, {""cast"":1})" +what was the genre of the movie The Scarlet Empress?,"db.movies.find({""title"": ""The Scarlet Empress""}, {""genres"": 1})" +what is the film The Broadway Melody about in details?,"db.movies.find({""title"": ""The Broadway Melody""}, {""fullplot"": 1})" +How many reviews have been submitted by critics for the movie Metropolis ?,"db.movies.find({""title"": ""Metropolis""}, {""tomatoes.critic.numReviews"": 1})" +who stars in Becky Sharp?,"db.movies.find({""title"": ""Becky Sharp""}, {""cast"": 1})" +What is the runtime of the movie Forbidden ?,"db.movies.find({""title"": ""Forbidden""}, { ""runtime"": 1})" +Can you provide a longer version of the movie Shall We Dance plot?,"db.movies.find({""title"":""Shall We Dance""}, {""fullplot"":1})" +what was the genre of the movie Red Dust?,"db.movies.find({""title"": ""Red Dust""}, {""genres"": 1})" +When was the information about the movie Tarzan and His Mate last updated?,"db.movies.find({ ""title"": ""Tarzan and His Mate"" }, { ""lastupdated"": 1})" +who wrote the film White Shadows?,"db.movies.find({""title"": ""White Shadows""}, {""writers"": 1})" +what was the release date of the movie Skippy?,"db.movies.find({""title"": ""Skippy""}, {""released"": 1})" +what is the plot for The Song of Night?,"db.movies.find({""title"": ""The Song of Night""}, {""plot"": 1})" +who produced The Chechahcos?,"db.movies.find({""title"":""The Chechahcos""}, {""tomatoes.production"":1})" +what genre of film is Carnival in Flanders?,"db.movies.find({""title"": ""Carnival in Flanders""}, {""genres"": 1})" +What is the language of the movie The Public Enemy?,"db.movies.find({""title"":""The Public Enemy""}, {""languages"":1})" +How many award nominations did the movie receive The Trail of the Lonesome Pine ?,"db.movies.find({ ""title"": ""The Trail of the Lonesome Pine"" },{ ""awards.nominations"": 1 })" +what is the movie Black Fury imdb rating?,"db.movies.find({""title"": ""Black Fury""}, {""imdb.rating"": 1})" +Sisters of the Gion was directed by who?,"db.movies.find({""title"": ""Sisters of the Gion""}, {""directors"": 1})" +who wrote the movie The Story of Louis Pasteur?,"db.movies.find({""title"": ""The Story of Louis Pasteur""}, {""writers"": 1})" +What is the movie Make Way for Tomorrow rating?,"db.movies.find({""title"":""Make Way for Tomorrow""}, {""rated"":1})" +The Ghost Goes West was directed by who?,"db.movies.find({""title"": ""The Ghost Goes West""}, {""directors"": 1})" +the movie Murders in the Rue Morgue starred who?,"db.movies.find({""title"": ""Murders in the Rue Morgue""}, {""cast"": 1})" +How did the audience and critics receive the film Under the Roofs of Paris?,"db.movies.find({""title"":""Under the Roofs of Paris""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +Who is the lead actress of the movie Bad Girl ?,"db.movies.find({""title"": ""Bad Girl""}, {""cast"":{""$slice"": 1},""title"":1})" +Which movies were directed by Darren Aronofsky and were released in the 1990s?,"db.movies.find({""directors"": 'Darren Aronofsky', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +What is the running time of the film Fury?,"db.movies.find({""title"":""Fury""}, {""runtime"":1})" +what was the release year of the movie Children in the Wind?,"db.movies.find({""title"": ""Children in the Wind""}, {""year"": 1})" +"Has the movie Becky Sharp won any awards? If so, which ones?","db.movies.find({""title"":""Becky Sharp"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +what was the release year of the movie The Broadway Melody?,"db.movies.find({""title"": ""The Broadway Melody""}, {""year"": 1})" +What is the website associated with the movie Captains Courageous on Rotten Tomatoes?,"db.movies.find({""title"": ""Captains Courageous""}, {""tomatoes.website"": 1})" +Who is the director of the movie College?,"db.movies.find({""title"": ""College""}, { ""directors"": 1})" +what was the release year of the film A Woman of Paris: A Drama of Fate?,"db.movies.find({""title"": ""A Woman of Paris: A Drama of Fate""}, {""year"": 1})" +Who are the writers of the movie Mèdchen in Uniform ?,"db.movies.find({""title"": ""Mèdchen in Uniform""}, { ""writers"": 1})" +What is the primary genre of the movies directed by Robert Bresson?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Robert Bresson"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What is the ID of the movie Wild Boys of the Road on IMDB?,"db.movies.find({""title"": ""Wild Boys of the Road""}, {""imdb.id"": 1})" +In what year was the movie The Navigator released ?,"db.movies.find({ ""title"": ""The Navigator"" }, { ""year"": 1})" +who produced the film Black Fury?,"db.movies.find({""title"":""Black Fury""}, {""tomatoes.production"":1})" +In which countries was the movie Hallelujah produced?,"db.movies.find({""title"":""Hallelujah""}, {""countries"":1})" +how has The Immigrant been recieved by critics and audience?,"db.movies.find({""title"":""The Immigrant""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the IMDb ID for the movie The Jazz Singer?,"db.movies.find({""title"":""The Jazz Singer""}, {""imdb.id"":1})" +who was Les Misèrables written by?,"db.movies.find({""title"": ""Les Misèrables""}, {""writers"": 1})" +What is the runtime of the movie The Great Train Robbery ?,"db.movies.find({""title"": ""The Great Train Robbery""}, { ""runtime"": 1})" +White Shadows was directed by who?,"db.movies.find({""title"": ""White Shadows""}, {""directors"": 1})" +who are the actors in the film All Quiet on the Western Front?,"db.movies.find({""title"": ""All Quiet on the Western Front""}, {""cast"": 1})" +who was Greed written by?,"db.movies.find({""title"": ""Greed""}, {""writers"": 1})" +How long is the runtime of the movie Three Smart Girls ?,"db.movies.find({""title"":""Three Smart Girls""}, {""runtime"":1})" +What languages are spoken in the movie The Robber Symphony ?,"db.movies.find({""title"": ""The Robber Symphony""}, { ""languages"": 1})" +Which Ethan Coen-directed movie has the highest score on Rotten Tomatoes?,"db.movies.find({""directors"": ""Ethan Coen"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +"the movie Steamboat Bill, Jr. was directed by who?","db.movies.find({""title"": ""Steamboat Bill, Jr.""}, {""directors"": 1})" +When was the information about the movie Children in the Wind last updated?,"db.movies.find({ ""title"": ""Children in the Wind"" }, { ""lastupdated"": 1})" +What is the total number of films that Kenji Mizoguchi has directed up to now?,"db.movies.countDocuments({""directors"":""Kenji Mizoguchi""})" +how many awards did the film The Lives of a Bengal Lancer win?,"db.movies.find({""title"":""The Lives of a Bengal Lancer""}, {""awards.wins"":1})" +What is the language of Harvest?,"db.movies.find({""title"":""Harvest""}, {""languages"":1})" +the film Go West starred who?,"db.movies.find({""title"": ""Go West""}, {""cast"": 1})" +what is the genre of The New Gulliver?,"db.movies.find({""title"": ""The New Gulliver""}, {""genres"": 1})" +who's the director of Night Must Fall?,"db.movies.find({""title"": ""Night Must Fall""}, {""directors"": 1})" +The Invisible Ray is a movie written by this person?,"db.movies.find({""title"": ""The Invisible Ray""}, {""writers"": 1})" +what is the film From Hand to Mouth about?,"db.movies.find({""title"": ""From Hand to Mouth""}, {""plot"": 1})" +What languages are spoken in the movie The Story of Louis Pasteur?,"db.movies.find({""title"":""The Story of Louis Pasteur""}, {""languages"":1})" +What is the box office revenue for the movie 'The Immigrant'?,"db.movies.find({""title"": ""The Immigrant""}, {""tomatoes.boxOffice"": 1})" +What is the runtime of the movie Naughty Marietta ?,"db.movies.find({""title"": ""Naughty Marietta""}, { ""runtime"": 1})" +what is the film The Count of Monte Cristo imdb rating?,"db.movies.find({""title"": ""The Count of Monte Cristo""}, {""imdb.rating"": 1})" +Can you provide me with a list of movies directed by Andrei Tarkovsky that were released in the 1990s?,"db.movies.find({""directors"": 'Andrei Tarkovsky', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +What is the running time of It Happened One Night?,"db.movies.find({""title"":""It Happened One Night""}, {""runtime"":1})" +what is the full plot for the movie Death Takes a Holiday?,"db.movies.find({""title"": ""Death Takes a Holiday""}, {""fullplot"": 1})" +What is the runtime and rating for the movie 'The Ghost Goes West'?,"db.movies.find({""title"": ""The Ghost Goes West""}, {""runtime"": 1, ""rated"": 1})" +what sort of movie is Three Ages?,"db.movies.find({""title"": ""Three Ages""}, {""genres"": 1})" +How many votes does the movie Naughty Marietta have on IMDb?,"db.movies.find({""title"":""Naughty Marietta""}, {""imdb.votes"":1})" +who stars in the movie Berkeley Square?,"db.movies.find({""title"": ""Berkeley Square""}, {""cast"": 1})" +how many awards did the movie 7th Heaven win?,"db.movies.find({""title"":""7th Heaven""}, {""awards.wins"":1})" +What is the percentage of positive reviews among critics for the movie The Hunchback of Notre Dame ?,"db.movies.find({ ""title"": ""The Hunchback of Notre Dame"" },{ ""tomatoes.critic.meter"": 1 })" +What is the imdbID and year of release for the movie with a title of 'Going Hollywood'?,"db.movies.find({""title"": ""Going Hollywood""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +What type of media is Forbidden?,"db.movies.find({ ""title"": ""Forbidden"" }, { ""type"": 1})" +which person wrote the film The Good Earth?,"db.movies.find({""title"": ""The Good Earth""}, {""writers"": 1})" +who produced The Guardsman?,"db.movies.find({""title"":""The Guardsman""}, {""tomatoes.production"":1})" +How long is the movie Lenin in October in minutes?,"db.movies.find({""title"":""Lenin in October""}, {""runtime"":1})" +What is the MongoDB document ID of the movie Black Fury?,"db.movies.find({""title"": ""Black Fury""}, {""_id"": 1})" +what is the movie Popeye the Sailor Meets Sindbad the Sailor about?,"db.movies.find({""title"": ""Popeye the Sailor Meets Sindbad the Sailor""}, {""plot"": 1})" +who directed the film Pèpè le Moko?,"db.movies.find({""title"": ""Pèpè le Moko""}, {""directors"": 1})" +What is the production company of the film The Land Beyond the Sunset?,"db.movies.find({""title"":""The Land Beyond the Sunset""}, {""tomatoes.production"":1})" +who was the writer of the film Grass: A Nation's Battle for Life?,"db.movies.find({""title"": ""Grass: A Nation's Battle for Life""}, {""writers"": 1})" +what genre is the film Elephant Boy?,"db.movies.find({""title"": ""Elephant Boy""}, {""genres"": 1})" +what is the genre for the film Eskimo?,"db.movies.find({""title"": ""Eskimo""}, {""genres"": 1})" +who is the director that directed The Scarlet Empress?,"db.movies.find({""title"": ""The Scarlet Empress""}, {""directors"": 1})" +How many nominations did the movie Alice Adams receive?,"db.movies.find({""title"":""Alice Adams""}, {""awards.nominations"":1})" +what year was Little Women released?,"db.movies.find({""title"": ""Little Women""}, {""year"": 1})" +How many reviews did the movie Cavalcade receive on Rotten Tomatoes?,"db.movies.find({""title"":""Cavalcade""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +the film Battling Butler starred which actors?,"db.movies.find({""title"": ""Battling Butler""}, {""cast"": 1})" +How many viewer reviews did the movie The Invisible Ray receive on Rotten Tomatoes?,"db.movies.find({""title"":""The Invisible Ray""}, {""tomatoes.viewer.numReviews"":1})" +In what language was the movie Peter Pan released?,"db.movies.find({ ""title"": ""Peter Pan"" }, { ""languages"": 1})" +What is the movie State Fair rating?,"db.movies.find({""title"":""State Fair""}, {""rated"":1})" +Which cinematic productions were directed by Woody Allen?,"db.movies.find({""directors"": ""Woody Allen""},{""title"":1})" +what was the release date of the movie The Perils of Pauline?,"db.movies.find({""title"": ""The Perils of Pauline""}, {""released"": 1})" +What are the most critically acclaimed movies directed by Gus Van Sant?,"db.movies.find({""directors"": 'Gus Van Sant', ""imdb.rating"": {""$gt"": 8.5}})" +What is the production company of the film Smilin' Through?,"db.movies.find({""title"":""Smilin' Through""}, {""tomatoes.production"":1})" +what was the genre of Greed?,"db.movies.find({""title"": ""Greed""}, {""genres"": 1})" +which person wrote the film Peter Pan?,"db.movies.find({""title"": ""Peter Pan""}, {""writers"": 1})" +The Prince and the Pauper is a film written by this person?,"db.movies.find({""title"": ""The Prince and the Pauper""}, {""writers"": 1})" +What is the movie Morocco rating?,"db.movies.find({""title"":""Morocco""}, {""rated"":1})" +how many awards did The Kid Brother win?,"db.movies.find({""title"":""The Kid Brother""}, {""awards.wins"":1})" +Who are the main actors in The Jazz Singer ?,"db.movies.find({ ""title"": ""The Jazz Singer"" }, { ""cast"": 1})" +What are the highest-rated movies directed by Claude Chabrol?,"db.movies.find({""directors"": 'Claude Chabrol', ""imdb.rating"": {""$gt"": 8.5}})" +what is The Lost World description?,"db.movies.find({""title"": ""The Lost World""}, {""plot"": 1})" +what is the film Mutiny on the Bounty description ?,"db.movies.find({""title"": ""Mutiny on the Bounty""}, {""plot"": 1})" +What is the movie Follow the Fleet rating?,"db.movies.find({""title"":""Follow the Fleet""}, {""rated"":1})" +What is the viewer rating for the movie Salomè on Rotten Tomatoes?,"db.movies.find({""title"":""Salomè""}, {""tomatoes.viewer.rating"":1})" +What is the plot summary of the movie The New Gulliver ?,"db.movies.find({ ""title"": ""The New Gulliver"" }, { ""plot"": 1})" +what genre is The Music Box?,"db.movies.find({""title"": ""The Music Box""}, {""genres"": 1})" +What is the Metacritic score of the movie The Wedding Night ?,"db.movies.find({ ""title"": ""The Wedding Night"" }, { ""metacritic"": 1})" +How many awards did the movie win Seven Chances ?,"db.movies.find({ ""title"": ""Seven Chances"" },{ ""awards.wins"": 1 })" +can you describe the plot of The Good Earth?,"db.movies.find({""title"": ""The Good Earth""}, {""plot"": 1})" +what genre is the movie The General?,"db.movies.find({""title"": ""The General""}, {""genres"": 1})" +Can you provide more information about the languages spoken in the movie In Old Arizona ?,"db.movies.find({""title"":""In Old Arizona""}, {""languages"":1})" +what is the plot for the movie White Shadows?,"db.movies.find({""title"": ""White Shadows""}, {""plot"": 1})" +Who are the actors that appear in the movie The Hurricane ?,"db.movies.find({ ""title"": ""The Hurricane"" },{ ""cast"": 1 })" +who wrote the movie Little Miss Marker?,"db.movies.find({""title"": ""Little Miss Marker""}, {""writers"": 1})" +How many audience reviews have been submitted for the movie Wild and Woolly ?,"db.movies.find({ ""title"": ""Wild and Woolly"" },{ ""tomatoes.viewer.numReviews"": 1 })" +How many award nominations did the movie receive Berkeley Square ?,"db.movies.find({ ""title"": ""Berkeley Square"" },{ ""awards.nominations"": 1 })" +What is the production company behind the movie The Great Ziegfeld ?,"db.movies.find({""title"": ""The Great Ziegfeld""}, {""tomatoes.production"": 1})" +"What is the meter score of the movie I Was Born, But... according to viewers on Rotten Tomatoes?","db.movies.find({""title"": ""I Was Born, But...""}, {""tomatoes.viewer.meter"": 1})" +How many comments have been posted by users on the movie A Day in the Country's page on the Mflix platform?,"db.movies.find({ ""title"": ""A Day in the Country"" }, { ""num_mflix_comments"": 1 })" +which person wrote the movie Ruggles of Red Gap?,"db.movies.find({""title"": ""Ruggles of Red Gap""}, {""writers"": 1})" +who produced the movie 7th Heaven?,"db.movies.find({""title"":""7th Heaven""}, {""tomatoes.production"":1})" +Who are the main actors/actresses in the movie Men Without Women?,"db.movies.find({""title"":""Men Without Women""}, {""cast"":1})" +who is listed as director for The Passion of Joan of Arc?,"db.movies.find({""title"": ""The Passion of Joan of Arc""}, {""directors"": 1})" +How long is the runtime of the movie Seven Chances ?,"db.movies.find({""title"":""Seven Chances""}, {""runtime"":1})" +What is the Tomatometer score of the movie Captains Courageous ?,"db.movies.find({ ""title"": ""Captains Courageous"" },{ ""tomatoes.critic.meter"": 1 })" +who is the director that directed Lady Windermere's Fan?,"db.movies.find({""title"": ""Lady Windermere's Fan""}, {""directors"": 1})" +How long is the runtime of the movie The Big House ?,"db.movies.find({""title"":""The Big House""}, {""runtime"":1})" +How did the audience and critics receive the movie Westfront 1918?,"db.movies.find({""title"":""Westfront 1918""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what is the film Broadway Melody of 1936 description ?,"db.movies.find({""title"": ""Broadway Melody of 1936""}, {""plot"": 1})" +what is the genre for the movie High and Dizzy?,"db.movies.find({""title"": ""High and Dizzy""}, {""genres"": 1})" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie The Private Life of Henry VIII. ?,"db.movies.find({""title"":""The Private Life of Henry VIII.""}, {""tomatoes.viewer.meter"":1})" +What is the box office revenue for the movie 'Rembrandt'?,"db.movies.find({""title"": ""Rembrandt""}, {""tomatoes.boxOffice"": 1})" +Broken Lullaby is a movie written by this person?,"db.movies.find({""title"": ""Broken Lullaby""}, {""writers"": 1})" +who was the movie Eskimo written by?,"db.movies.find({""title"": ""Eskimo""}, {""writers"": 1})" +How did the audience and critics receive Pandora's Box?,"db.movies.find({""title"":""Pandora's Box""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what was the genre of the film The Big Trail?,"db.movies.find({""title"": ""The Big Trail""}, {""genres"": 1})" +who wrote the screenplay for the movie The Band Concert?,"db.movies.aggregate([ { ""$match"": { ""title"":""The Band Concert""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +Can you provide more information about the languages spoken in the movie The Prince and the Pauper ?,"db.movies.find({""title"":""The Prince and the Pauper""}, {""languages"":1})" +what is the movie Nosferatu about?,"db.movies.find({""title"": ""Nosferatu""}, {""plot"": 1})" +What are the genres associated with the movie Death Takes a Holiday ?,"db.movies.find({ ""title"": ""Death Takes a Holiday"" }, { ""genres"": 1})" +Who is the director of the movie The Trail of the Lonesome Pine?,"db.movies.find({""title"": ""The Trail of the Lonesome Pine""}, { ""directors"": 1})" +When was the Tomatometer score and other Tomato-related information last updated for the movie In Old Arizona?,"db.movies.find({""title"": ""In Old Arizona""}, { ""tomatoes.lastUpdated"": 1})" +what was the genre of the movie The Garden of Allah?,"db.movies.find({""title"": ""The Garden of Allah""}, {""genres"": 1})" +what are the genres directed by Martin Scorsese?,"db.movies.distinct(""genres"", { ""directors"": ""Martin Scorsese"" })" +Can you provide more information about the languages spoken in the movie Moscow Laughs ?,"db.movies.find({""title"":""Moscow Laughs""}, {""languages"":1})" +who wrote the screenplay for King Solomon's Mines?,"db.movies.aggregate([ { ""$match"": { ""title"":""King Solomon's Mines""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +which company produced the film The Devil Is a Woman?,"db.movies.find({""title"":""The Devil Is a Woman""}, {""tomatoes.production"":1})" +what is the full plot for the movie Berkeley Square?,"db.movies.find({""title"": ""Berkeley Square""}, {""fullplot"": 1})" +who was the movie China Seas written by?,"db.movies.find({""title"": ""China Seas""}, {""writers"": 1})" +what is the full plot for Masquerade in Vienna?,"db.movies.find({""title"": ""Masquerade in Vienna""}, {""fullplot"": 1})" +Which movies were helmed by Louis Malle and came out in the 1990s?,"db.movies.find({""directors"": 'Louis Malle', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +who is the author of Go West?,"db.movies.find({""title"": ""Go West""}, {""writers"": 1})" +which person wrote A Woman of Paris: A Drama of Fate?,"db.movies.find({""title"": ""A Woman of Paris: A Drama of Fate""}, {""writers"": 1})" +What languages are spoken in the movie Kid Galahad?,"db.movies.find({""title"":""Kid Galahad""}, {""languages"":1})" +who stars in The Life of Emile Zola?,"db.movies.find({""title"": ""The Life of Emile Zola""}, {""cast"": 1})" +What is the running time of the film Romance?,"db.movies.find({""title"":""Romance""}, {""runtime"":1})" +which company produced For Heaven's Sake?,"db.movies.find({""title"":""For Heaven's Sake""}, {""tomatoes.production"":1})" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie The Broadway Melody ?,"db.movies.find({""title"":""The Broadway Melody""}, {""tomatoes.viewer.meter"":1})" +What is the text representation of the awards won and nominations received by the movie A Day in the Country?,"db.movies.find({""title"": ""A Day in the Country""}, { ""awards.text"": 1})" +who wrote the screenplay for the movie Wild Boys of the Road?,"db.movies.aggregate([ { ""$match"": { ""title"":""Wild Boys of the Road""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +What is the box office revenue of the movie Top Hat ?,"db.movies.find({""title"": ""Top Hat""}, { ""tomatoes.boxOffice"": 1})" +who wrote the film One Hundred Men and a Girl?,"db.movies.find({""title"": ""One Hundred Men and a Girl""}, {""writers"": 1})" +What is the imdbID and year of release for the movie with a title of 'Folies Bergère de Paris'?,"db.movies.find({""title"": ""Folies Bergère de Paris""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +What is the best-reviewed movie on Rotten Tomatoes that was directed by Alain Resnais?,"db.movies.find({""directors"": ""Alain Resnais"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +Was the movie Wife! Be Like a Rose! well received by audiences and critics?,"db.movies.find({""title"":""Wife! Be Like a Rose!""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What are the names of the films that were directed by Francis Ford Coppola and released in the 1990s?,"db.movies.find({""directors"": 'Francis Ford Coppola', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +What type of media is Lady Windermere's Fan?,"db.movies.find({ ""title"": ""Lady Windermere's Fan"" }, { ""type"": 1})" +When was the information about the movie Show Boat last updated?,"db.movies.find({ ""title"": ""Show Boat"" }, { ""lastupdated"": 1})" +How did the audience and critics receive the film The Lower Depths?,"db.movies.find({""title"":""The Lower Depths""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the plot summary of the movie Becky Sharp ?,"db.movies.find({ ""title"": ""Becky Sharp"" }, { ""plot"": 1})" +who was the movie Four Sons written by?,"db.movies.find({""title"": ""Four Sons""}, {""writers"": 1})" +What is the prevailing movie genre in Terrence Malick's directed films?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Terrence Malick"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +who are the actors in the movie One Hundred Men and a Girl?,"db.movies.find({""title"": ""One Hundred Men and a Girl""}, {""cast"": 1})" +In what language was the movie Dracula released?,"db.movies.find({ ""title"": ""Dracula"" }, { ""languages"": 1})" +How did the audience and critics receive the film One Week?,"db.movies.find({""title"":""One Week""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +the movie Shanghai Express was directed by who?,"db.movies.find({""title"": ""Shanghai Express""}, {""directors"": 1})" +What is the language of the film Applause?,"db.movies.find({""title"":""Applause""}, {""languages"":1})" +"The Lost World, was written by who?","db.movies.find({""title"": ""The Lost World""}, {""writers"": 1})" +In what language was the movie Napoleon released?,"db.movies.find({ ""title"": ""Napoleon"" }, { ""languages"": 1})" +What is the MPAA rating of Dante's Inferno?,"db.movies.find({""title"":""Dante's Inferno""}, {""rated"":1})" +What is the MPAA rating of Popeye the Sailor Meets Sindbad the Sailor?,"db.movies.find({""title"":""Popeye the Sailor Meets Sindbad the Sailor""}, {""rated"":1})" +Can you provide a longer version of the movie Dante's Inferno plot?,"db.movies.find({""title"":""Dante's Inferno""}, {""fullplot"":1})" +which company produced the film The Last of the Mohicans?,"db.movies.find({""title"":""The Last of the Mohicans""}, {""tomatoes.production"":1})" +who acted in the film The Lost Patrol?,"db.movies.find({""title"": ""The Lost Patrol""}, {""cast"": 1})" +who wrote the movie The Wedding March?,"db.movies.find({""title"": ""The Wedding March""}, {""writers"": 1})" +What is the imdbID and year of release for the movie with a title of 'Grand Hotel'?,"db.movies.find({""title"": ""Grand Hotel""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +the movie Miss Lulu Bett starred which actors?,"db.movies.find({""title"": ""Miss Lulu Bett""}, {""cast"": 1})" +"The Green Pastures, was written by who?","db.movies.find({""title"": ""The Green Pastures""}, {""writers"": 1})" +What is the IMDb rating for Murders in the Rue Morgue?,"db.movies.find({""title"": ""Murders in the Rue Morgue""}, {""imdb.rating"": 1})" +"Has the film Scarface won any awards? If so, which ones?","db.movies.find({""title"":""Scarface"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +can you describe the plot of The Garden of Allah?,"db.movies.find({""title"": ""The Garden of Allah""}, {""plot"": 1})" +What is the rating of the movie The Invisible Man according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""The Invisible Man""}, {""tomatoes.viewer.rating"": 1})" +what kind of film is The Great Ziegfeld?,"db.movies.find({""title"": ""The Great Ziegfeld""}, {""genres"": 1})" +what year was the movie Broken Lullaby released?,"db.movies.find({""title"": ""Broken Lullaby""}, {""year"": 1})" +"Has the movie Forbidden won any awards? If so, which ones?","db.movies.find({""title"":""Forbidden"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +When was the information about the movie Within Our Gates last updated?,"db.movies.find({ ""title"": ""Within Our Gates"" }, { ""lastupdated"": 1})" +who wrote This Is My Affair?,"db.movies.find({""title"": ""This Is My Affair""}, {""writers"": 1})" +what is the movie The Garden of Allah imdb rating?,"db.movies.find({""title"": ""The Garden of Allah""}, {""imdb.rating"": 1})" +What is the highest-ranking David Fincher-directed film on Rotten Tomatoes?,"db.movies.find({""directors"": ""David Fincher"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +"Can you provide a longer version of the movie I Was Born, But... plot?","db.movies.find({""title"":""I Was Born, But...""}, {""fullplot"":1})" +the film Folies Bergère de Paris starred who?,"db.movies.find({""title"": ""Folies Bergère de Paris""}, {""cast"": 1})" +How many reviews have been submitted by critics for the movie A Farewell to Arms?,"db.movies.find({ ""title"": ""A Farewell to Arms"" }, { ""tomatoes.critic.numReviews"": 1 })" +who produced the movie The Wedding March?,"db.movies.find({""title"":""The Wedding March""}, {""tomatoes.production"":1})" +the movie The 3 Penny Opera starred who?,"db.movies.find({""title"": ""The 3 Penny Opera""}, {""cast"": 1})" +the film Cimarron starred who?,"db.movies.find({""title"": ""Cimarron""}, {""cast"": 1})" +What is the production company of Show Boat?,"db.movies.find({""title"":""Show Boat""}, {""tomatoes.production"":1})" +What are the genres associated with the movie Broken Lullaby ?,"db.movies.find({ ""title"": ""Broken Lullaby"" }, { ""genres"": 1})" +What is the typical rating for all Jean Renoir movies in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Jean Renoir""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +How does the movie Tabu: A Story of the South Seas rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Tabu: A Story of the South Seas"" },{ ""tomatoes.critic.meter"": 1 })" +what was the release year of The Strong Man?,"db.movies.find({""title"": ""The Strong Man""}, {""year"": 1})" +What is the movie Applause about? Can you provide a brief summary?,"db.movies.find({""title"":""Applause""}, {""plot"":1})" +Who is the lead actor of the movie Broken Lullaby ?,"db.movies.find({""title"": ""Broken Lullaby""}, {""cast"":{""$slice"": 1},""title"":1})" +Who are the actors in the movie The Freshman?,"db.movies.find({""title"":""The Freshman""}, {""cast"":1})" +Who are the starring actors/actresses in the movie Regeneration?,"db.movies.find({""title"":""Regeneration""}, {""cast"":1})" +What is the text description of the movie Topaze awards?,"db.movies.find({""title"":""Topaze""}, {""awards.text"":1})" +What are the names of all the actors who starred in the movie 'Disraeli'?,"db.movies.find({""title"": ""Disraeli""}, {""cast"": 1})" +In which countries was the movie The Blue Bird produced?,"db.movies.find({""title"":""The Blue Bird""}, {""countries"":1})" +What is the language of the movie The Docks of New York?,"db.movies.find({""title"":""The Docks of New York""}, {""languages"":1})" +What is the running time of the film City Lights?,"db.movies.find({""title"":""City Lights""}, {""runtime"":1})" +Which Jean-Luc Godard film has the shortest duration?,"db.movies.find({""directors"":""Jean-Luc Godard""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +what is Flying Down to Rio imdb rating?,"db.movies.find({""title"": ""Flying Down to Rio""}, {""imdb.rating"": 1})" +How did the audience and critics receive Mary of Scotland?,"db.movies.find({""title"":""Mary of Scotland""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the text description of the movie Duck Soup awards?,"db.movies.find({""title"":""Duck Soup""}, {""awards.text"":1})" +What is the freshness score of the movie Berkeley Square on Rotten Tomatoes?,"db.movies.find({""title"": ""Berkeley Square""}, {""tomatoes.fresh"": 1})" +What is the freshness score of the movie Asphalt on Rotten Tomatoes?,"db.movies.find({""title"": ""Asphalt""}, {""tomatoes.fresh"": 1})" +What is the running time of the movie Lenin in October?,"db.movies.find({""title"":""Lenin in October""}, {""runtime"":1})" +How many comments have been posted by users on the movie Gold Diggers of 1935's page on the Mflix platform?,"db.movies.find({ ""title"": ""Gold Diggers of 1935"" }, { ""num_mflix_comments"": 1 })" +who is the director that directed Follow the Fleet?,"db.movies.find({""title"": ""Follow the Fleet""}, {""directors"": 1})" +what is the genre of Our Hospitality?,"db.movies.find({""title"": ""Our Hospitality""}, {""genres"": 1})" +which person wrote the movie The Life of Emile Zola?,"db.movies.find({""title"": ""The Life of Emile Zola""}, {""writers"": 1})" +what type of film is Bride of Frankenstein?,"db.movies.find({""title"": ""Bride of Frankenstein""}, {""genres"": 1})" +What is the runtime and rating for the movie 'Frankenstein'?,"db.movies.find({""title"": ""Frankenstein""}, {""runtime"": 1, ""rated"": 1})" +What is the IMDb rating for the movie Dr. Jekyll and Mr. Hyde ?,"db.movies.find({""title"":""Dr. Jekyll and Mr. Hyde""}, {""imdb.rating"":1})" +how many awards did Lost Horizon win?,"db.movies.find({""title"":""Lost Horizon""}, {""awards.wins"":1})" +who produced the film Cops?,"db.movies.find({""title"":""Cops""}, {""tomatoes.production"":1})" +What is the running time of the movie Safety Last!?,"db.movies.find({""title"":""Safety Last!""}, {""runtime"":1})" +Has the movie White Shadows won any awards?,"db.movies.find({""title"":""White Shadows""}, {""awards.wins"":1})" +who wrote the screenplay for The Kid Brother?,"db.movies.aggregate([ { ""$match"": { ""title"":""The Kid Brother""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +what sort of movie is La Grande Illusion?,"db.movies.find({""title"": ""La Grande Illusion""}, {""genres"": 1})" +what is the full plot for the movie Les Misèrables?,"db.movies.find({""title"": ""Les Misèrables""}, {""fullplot"": 1})" +Who is the lead actress of the movie City Streets ?,"db.movies.find({""title"": ""City Streets""}, {""cast"":{""$slice"": 1},""title"":1})" +which company produced The Cheat?,"db.movies.find({""title"":""The Cheat""}, {""tomatoes.production"":1})" +What is the plot summary of the movie The Lower Depths ?,"db.movies.find({ ""title"": ""The Lower Depths"" }, { ""plot"": 1})" +How many audience reviews have been submitted for the movie Tol'able David ?,"db.movies.find({ ""title"": ""Tol'able David"" },{ ""tomatoes.viewer.numReviews"": 1 })" +What is the IMDb rating for the movie Broadway Bill?,"db.movies.find({""title"": ""Broadway Bill""}, {""imdb.rating"": 1})" +what was the genre of the film The Perils of Pauline?,"db.movies.find({""title"": ""The Perils of Pauline""}, {""genres"": 1})" +how has Gold Diggers of 1933 been recieved by critics and audience?,"db.movies.find({""title"":""Gold Diggers of 1933""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the rating of the movie The Edge of the World on IMDb?,"db.movies.find({""title"":""The Edge of the World""}, {""imdb.rating"":1})" +who is listed as director for Go West?,"db.movies.find({""title"": ""Go West""}, {""directors"": 1})" +who stars in the film Battling Butler?,"db.movies.find({""title"": ""Battling Butler""}, {""cast"": 1})" +what is the movie Twentieth Century about in details?,"db.movies.find({""title"": ""Twentieth Century""}, {""fullplot"": 1})" +the film The Son of Kong was directed by who?,"db.movies.find({""title"": ""The Son of Kong""}, {""directors"": 1})" +What is the production company of the movie These Three?,"db.movies.find({""title"":""These Three""}, {""tomatoes.production"":1})" +What is the plot summary of the movie Tol'able David ?,"db.movies.find({ ""title"": ""Tol'able David"" }, { ""plot"": 1})" +In which countries was the movie Smilin' Through produced?,"db.movies.find({""title"":""Smilin' Through""}, {""countries"":1})" +which company produced David Golder?,"db.movies.find({""title"":""David Golder""}, {""tomatoes.production"":1})" +Who are the starring actors/actresses in the movie The Blue Bird?,"db.movies.find({""title"":""The Blue Bird""}, {""cast"":1})" +how many awards did the movie Sons of the Desert win?,"db.movies.find({""title"":""Sons of the Desert""}, {""awards.wins"":1})" +the movie The Birth of a Nation starred who?,"db.movies.find({""title"": ""The Birth of a Nation""}, {""cast"": 1})" +what is the film Topaze about?,"db.movies.find({""title"": ""Topaze""}, {""plot"": 1})" +How did the audience and critics receive the movie The Gilded Lily?,"db.movies.find({""title"":""The Gilded Lily""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +who starred in Where Are My Children??,"db.movies.find({""title"": ""Where Are My Children?""}, {""cast"": 1})" +who was the movie Queen Kelly written by?,"db.movies.find({""title"": ""Queen Kelly""}, {""writers"": 1})" +What is the production company of the movie Snow White and the Seven Dwarfs?,"db.movies.find({""title"":""Snow White and the Seven Dwarfs""}, {""tomatoes.production"":1})" +What are the names of all the actors who starred in the movie 'The Public Enemy'?,"db.movies.find({""title"": ""The Public Enemy""}, {""cast"": 1})" +What is the plot summary of the movie The Scarlet Empress ?,"db.movies.find({ ""title"": ""The Scarlet Empress"" }, { ""plot"": 1})" +Who is the lead actress of the movie A Night at the Opera ?,"db.movies.find({""title"": ""A Night at the Opera""}, {""cast"":{""$slice"": 1},""title"":1})" +who is the author of From Hand to Mouth?,"db.movies.find({""title"": ""From Hand to Mouth""}, {""writers"": 1})" +who is the director of The Green Pastures?,"db.movies.find({""title"": ""The Green Pastures""}, {""directors"": 1})" +what is The Awful Truth imdb rating?,"db.movies.find({""title"": ""The Awful Truth""}, {""imdb.rating"": 1})" +who was the writer of the movie Men Without Women?,"db.movies.find({""title"": ""Men Without Women""}, {""writers"": 1})" +"What is the meter score of the movie Laugh, Clown, Laugh according to viewers on Rotten Tomatoes?","db.movies.find({""title"": ""Laugh, Clown, Laugh""}, {""tomatoes.viewer.meter"": 1})" +How many reviews have been submitted by critics for the movie The Green Pastures?,"db.movies.find({ ""title"": ""The Green Pastures"" }, { ""tomatoes.critic.numReviews"": 1 })" +what genre of movie is Secret Agent?,"db.movies.find({""title"": ""Secret Agent""}, {""genres"": 1})" +How many votes does the movie Nosferatu have on IMDb?,"db.movies.find({""title"":""Nosferatu""}, {""imdb.votes"":1})" +In which genre do the movies directed by Joel Coen mainly fall under?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Joel Coen"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +who acted in the movie A Midsummer Night's Dream?,"db.movies.find({""title"": ""A Midsummer Night's Dream""}, {""cast"": 1})" +what year was the movie A Woman of Paris: A Drama of Fate released?,"db.movies.find({""title"": ""A Woman of Paris: A Drama of Fate""}, {""year"": 1})" +What is the imdbID and genre of the movie 'For Heaven's Sake'?,"db.movies.find({""title"": ""For Heaven's Sake""}, {""imdb.id"": 1, ""genres"": 1, ""_id"": 0})" +who directed the film The Power and the Glory?,"db.movies.find({""title"": ""The Power and the Glory""}, {""directors"": 1})" +What is the production company of They Won't Forget?,"db.movies.find({""title"":""They Won't Forget""}, {""tomatoes.production"":1})" +what is The Scarlet Empress description?,"db.movies.find({""title"": ""The Scarlet Empress""}, {""plot"": 1})" +How many viewer reviews did the movie The Wedding Night receive on Rotten Tomatoes?,"db.movies.find({""title"":""The Wedding Night""}, {""tomatoes.viewer.numReviews"":1})" +who directed Gold Diggers of 1933?,"db.movies.find({""title"": ""Gold Diggers of 1933""}, {""directors"": 1})" +what was the release date of the movie Now or Never?,"db.movies.find({""title"": ""Now or Never""}, {""released"": 1})" +what was the genre of Swedenhielms Family?,"db.movies.find({""title"": ""Swedenhielms Family""}, {""genres"": 1})" +When was the information about the movie Moscow Laughs last updated?,"db.movies.find({ ""title"": ""Moscow Laughs"" }, { ""lastupdated"": 1})" +Has the movie A Damsel in Distress won any awards?,"db.movies.find({""title"":""A Damsel in Distress""}, {""awards.wins"":1})" +Which cinematic productions were directed by Jean-Luc Godard?,"db.movies.find({""directors"": ""Jean-Luc Godard""},{""title"":1})" +what was the genre of the movie Wild and Woolly?,"db.movies.find({""title"": ""Wild and Woolly""}, {""genres"": 1})" +Which actor has the highest count of appearances in Alfred Hitchcock's directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Alfred Hitchcock"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +who is the author of Wife! Be Like a Rose!?,"db.movies.find({""title"": ""Wife! Be Like a Rose!""}, {""writers"": 1})" +What type of movie is These Three ?,"db.movies.find({""title"":""These Three""}, {""genres"":1})" +how many awards did Secret Agent win?,"db.movies.find({""title"":""Secret Agent""}, {""awards.wins"":1})" +What is the language of the film Show People?,"db.movies.find({""title"":""Show People""}, {""languages"":1})" +Can you provide more information about the Rotten Tomatoes rating for the movie Wild Boys of the Road?,"db.movies.find({""title"": ""Wild Boys of the Road""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +What is the Tomatometer score of the movie The Divorcee ?,"db.movies.find({ ""title"": ""The Divorcee"" },{ ""tomatoes.critic.meter"": 1 })" +Who are the main actors in A Night at the Opera ?,"db.movies.find({ ""title"": ""A Night at the Opera"" }, { ""cast"": 1})" +who wrote the screenplay for the film San Francisco?,"db.movies.aggregate([ { ""$match"": { ""title"":""San Francisco""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +what is the movie The Gold Rush imdb rating?,"db.movies.find({""title"": ""The Gold Rush""}, {""imdb.rating"": 1})" +what sort of film is Broadway Bill?,"db.movies.find({""title"": ""Broadway Bill""}, {""genres"": 1})" +who wrote the screenplay for the movie Civilization?,"db.movies.aggregate([ { ""$match"": { ""title"":""Civilization""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +Who are the main actors in Little Miss Marker ?,"db.movies.find({ ""title"": ""Little Miss Marker"" }, { ""cast"": 1})" +which person wrote The Land Beyond the Sunset?,"db.movies.find({""title"": ""The Land Beyond the Sunset""}, {""writers"": 1})" +who is the director that directed Alice Adams?,"db.movies.find({""title"": ""Alice Adams""}, {""directors"": 1})" +how many awards did Cimarron win?,"db.movies.find({""title"":""Cimarron""}, {""awards.wins"":1})" +How many votes did the movie The Kid Brother receive on IMDB?,"db.movies.find({""title"": ""The Kid Brother""}, { ""imdb.votes"": 1})" +In which countries was the movie The Navigator produced?,"db.movies.find({""title"":""The Navigator""}, {""countries"":1})" +who directed Broken Blossoms or The Yellow Man and the Girl?,"db.movies.find({""title"": ""Broken Blossoms or The Yellow Man and the Girl""}, {""directors"": 1})" +What is the rating of the movie Two Seconds ?,"db.movies.find({ ""title"": ""Two Seconds"" }, { ""rated"": 1})" +What is the running time of Storm Over Asia?,"db.movies.find({""title"":""Storm Over Asia""}, {""runtime"":1})" +the film She starred who?,"db.movies.find({""title"": ""She""}, {""cast"": 1})" +What is the combined duration of all films that Jacques Rivette directed?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Jacques Rivette"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +the film Going Hollywood was directed by who?,"db.movies.find({""title"": ""Going Hollywood""}, {""directors"": 1})" +what is the plot for the film Rembrandt?,"db.movies.find({""title"": ""Rembrandt""}, {""plot"": 1})" +what is the full plot for the film Mutiny on the Bounty?,"db.movies.find({""title"": ""Mutiny on the Bounty""}, {""fullplot"": 1})" +How many wins did the movie The Dark Angel receive?,"db.movies.find({""title"":""The Dark Angel""}, {""awards.wins"":1})" +who's the director of Romeo and Juliet?,"db.movies.find({""title"": ""Romeo and Juliet""}, {""directors"": 1})" +What is the IMDb rating for the movie Asphalt?,"db.movies.find({""title"": ""Asphalt""}, {""imdb.rating"": 1})" +who stars in the movie State Fair?,"db.movies.find({""title"": ""State Fair""}, {""cast"": 1})" +who stars in the film The Music Box?,"db.movies.find({""title"": ""The Music Box""}, {""cast"": 1})" +who is listed as director for Broken Lullaby?,"db.movies.find({""title"": ""Broken Lullaby""}, {""directors"": 1})" +who stars in the movie Gold Diggers of 1935?,"db.movies.find({""title"": ""Gold Diggers of 1935""}, {""cast"": 1})" +How many reviews have been submitted for the movie The World Moves On on Rotten Tomatoes?,"db.movies.find({ ""title"": ""The World Moves On"" },{ ""tomatoes.viewer.numReviews"": 1 })" +who directed The Story of a Cheat?,"db.movies.find({""title"": ""The Story of a Cheat""}, {""directors"": 1})" +what is the movie The Docks of New York about in details?,"db.movies.find({""title"": ""The Docks of New York""}, {""fullplot"": 1})" +What are the genres associated with the movie The Great Ziegfeld ?,"db.movies.find({ ""title"": ""The Great Ziegfeld"" }, { ""genres"": 1})" +what genre of movie is A Midsummer Night's Dream?,"db.movies.find({""title"": ""A Midsummer Night's Dream""}, {""genres"": 1})" +who produced the film The Prisoner of Shark Island?,"db.movies.find({""title"":""The Prisoner of Shark Island""}, {""tomatoes.production"":1})" +what is the film Show People imdb rating?,"db.movies.find({""title"": ""Show People""}, {""imdb.rating"": 1})" +What is the running time of the movie Our Hospitality?,"db.movies.find({""title"":""Our Hospitality""}, {""runtime"":1})" +What is the running time of the movie Lady Windermere's Fan?,"db.movies.find({""title"":""Lady Windermere's Fan""}, {""runtime"":1})" +who directed Viva Villa!?,"db.movies.find({""title"": ""Viva Villa!""}, {""directors"": 1})" +Could you give me the average rating of Clint Eastwood's movies that are in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Clint Eastwood""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +who wrote the screenplay for the film The Count of Monte Cristo?,"db.movies.aggregate([ { ""$match"": { ""title"":""The Count of Monte Cristo""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +How many reviews did the movie Westfront 1918 receive on Rotten Tomatoes?,"db.movies.find({""title"":""Westfront 1918""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +who acted in the film Three Smart Girls?,"db.movies.find({""title"": ""Three Smart Girls""}, {""cast"": 1})" +What is the language of the movie Metropolis?,"db.movies.find({""title"":""Metropolis""}, {""languages"":1})" +What is the movie Anthony Adverse about? Can you provide a brief summary?,"db.movies.find({""title"":""Anthony Adverse""}, {""plot"":1})" +who starred in the movie Within Our Gates?,"db.movies.find({""title"": ""Within Our Gates""}, {""cast"": 1})" +Who are the main actors in Swing Time ?,"db.movies.find({ ""title"": ""Swing Time"" }, { ""cast"": 1})" +Who are the actors that appear in the movie Les Misèrables ?,"db.movies.find({ ""title"": ""Les Misèrables"" },{ ""cast"": 1 })" +who stars in the film Steamboat Willie?,"db.movies.find({""title"": ""Steamboat Willie""}, {""cast"": 1})" +What is the name of the actor who appears most frequently in movies directed by Joel Coen?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Joel Coen"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +How many audience reviews have been submitted for the movie Lloyd's of London ?,"db.movies.find({ ""title"": ""Lloyd's of London"" },{ ""tomatoes.viewer.numReviews"": 1 })" +"In the database, what is the usual rating given to Federico Fellini's movies on average?","db.movies.aggregate([{""$match"": {""directors"":""Federico Fellini""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +What is the production company of the film Mr. Deeds Goes to Town?,"db.movies.find({""title"":""Mr. Deeds Goes to Town""}, {""tomatoes.production"":1})" +What is the production company behind the movie The Invisible Ray ?,"db.movies.find({""title"": ""The Invisible Ray""}, {""tomatoes.production"": 1})" +How long is the runtime of the movie It Happened One Night ?,"db.movies.find({""title"":""It Happened One Night""}, {""runtime"":1})" +What are the genres this movie The Blood of a Poet belongs to?,"db.movies.find({""title"":""The Blood of a Poet""}, {""genres"":1})" +who is the director for The Wedding March?,"db.movies.find({""title"": ""The Wedding March""}, {""directors"": 1})" +What is the runtime of the movie Cimarron ?,"db.movies.find({""title"": ""Cimarron""}, { ""runtime"": 1})" +What is the production company of Grass: A Nation's Battle for Life?,"db.movies.find({""title"":""Grass: A Nation's Battle for Life""}, {""tomatoes.production"":1})" +who produced the film Daughter of Shanghai?,"db.movies.find({""title"":""Daughter of Shanghai""}, {""tomatoes.production"":1})" +what type of movie is Shall We Dance?,"db.movies.find({""title"": ""Shall We Dance""}, {""genres"": 1})" +What is the box office revenue for the movie 'Les Misèrables'?,"db.movies.find({""title"": ""Les Misèrables""}, {""tomatoes.boxOffice"": 1})" +What is the running time of One Night of Love?,"db.movies.find({""title"":""One Night of Love""}, {""runtime"":1})" +who was Nosferatu written by?,"db.movies.find({""title"": ""Nosferatu""}, {""writers"": 1})" +who acted in the film Hallelujah?,"db.movies.find({""title"": ""Hallelujah""}, {""cast"": 1})" +What is the box office revenue of the movie Naughty Marietta ?,"db.movies.find({""title"": ""Naughty Marietta""}, { ""tomatoes.boxOffice"": 1})" +what kind of movie is Carnival in Flanders?,"db.movies.find({""title"": ""Carnival in Flanders""}, {""genres"": 1})" +Which actor has the highest number of appearances in movies directed by Wes Anderson?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Wes Anderson"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +"Robin Hood, is written by who?","db.movies.find({""title"": ""Robin Hood""}, {""writers"": 1})" +who is the writer of the film Everybody's Woman?,"db.movies.find({""title"": ""Everybody's Woman""}, {""writers"": 1})" +how has The Awful Truth been recieved by critics and audience?,"db.movies.find({""title"":""The Awful Truth""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +"Has The Great Train Robbery won any awards? If so, which ones?","db.movies.find({""title"":""The Great Train Robbery"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +who wrote the screenplay for Street Angel?,"db.movies.aggregate([ { ""$match"": { ""title"":""Street Angel""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +Who is the director of the movie It Happened One Night?,"db.movies.find({""title"": ""It Happened One Night""}, { ""directors"": 1})" +what kind of film is Nosferatu?,"db.movies.find({""title"": ""Nosferatu""}, {""genres"": 1})" +who directed the film L'opèra de quat'sous?,"db.movies.find({""title"": ""L'opèra de quat'sous""}, {""directors"": 1})" +what is Wife! Be Like a Rose! description?,"db.movies.find({""title"": ""Wife! Be Like a Rose!""}, {""plot"": 1})" +What is the movie The Hurricane rating?,"db.movies.find({""title"":""The Hurricane""}, {""rated"":1})" +who is the writer of the film Masquerade in Vienna?,"db.movies.find({""title"": ""Masquerade in Vienna""}, {""writers"": 1})" +Eskimo is written by this person?,"db.movies.find({""title"": ""Eskimo""}, {""writers"": 1})" +How many films did Vittorio De Sica direct in each year they were released?,"db.movies.aggregate([{ $match: { ""directors"": ""Vittorio De Sica"" }},{""$group"": { ""_id"": ""$year"", ""count"": {""$sum"": 1}}}])" +who are the actors in the film Foolish Wives?,"db.movies.find({""title"": ""Foolish Wives""}, {""cast"": 1})" +What is the box office revenue of the movie Camille ?,"db.movies.find({""title"": ""Camille""}, { ""tomatoes.boxOffice"": 1})" +Who are the main actors in Dishonored ?,"db.movies.find({ ""title"": ""Dishonored"" }, { ""cast"": 1})" +When was the movie Lady Windermere's Fan released?,"db.movies.find({""title"":""Lady Windermere's Fan""}, {""released"":1})" +What type of media is The Barretts of Wimpole Street?,"db.movies.find({ ""title"": ""The Barretts of Wimpole Street"" }, { ""type"": 1})" +What is the audience rating of the movie San Francisco ?,"db.movies.find({ ""title"": ""San Francisco"" },{ ""tomatoes.viewer.rating"": 1 })" +What are the countries associated with the movie The New Gulliver ?,"db.movies.find({""title"": ""The New Gulliver""}, {""countries"": 1})" +What is the viewer rating for the movie The Wind on Rotten Tomatoes?,"db.movies.find({""title"":""The Wind""}, {""tomatoes.viewer.rating"":1})" +Can you provide more information about the languages spoken in the movie Cavalcade ?,"db.movies.find({""title"":""Cavalcade""}, {""languages"":1})" +How many nominations did the movie Seven Chances receive?,"db.movies.find({""title"":""Seven Chances""}, {""awards.nominations"":1})" +Which actor has the highest count of appearances in Akira Kurosawa's directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Akira Kurosawa"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +what is the genre of The Thin Man?,"db.movies.find({""title"": ""The Thin Man""}, {""genres"": 1})" +What is the MPAA rating of Captains Courageous?,"db.movies.find({""title"":""Captains Courageous""}, {""rated"":1})" +What is the Tomatometer score of the movie Beau Geste ?,"db.movies.find({ ""title"": ""Beau Geste"" },{ ""tomatoes.critic.meter"": 1 })" +what year was the movie The Sin of Madelon Claudet released?,"db.movies.find({""title"": ""The Sin of Madelon Claudet""}, {""year"": 1})" +What is the Rotten Tomatoes meter rating for the movie The Crowd Roars ?,"db.movies.find({""title"":""The Crowd Roars""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +How did the audience and critics receive the movie The Big Parade?,"db.movies.find({""title"":""The Big Parade""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +How many audience reviews have been submitted for the movie The Kid?,"db.movies.find({ ""title"": ""The Kid"" }, { ""tomatoes.viewer.numReviews"": 1 })" +What is the production company behind the movie x?,"db.movies.find({""title"": ""Blacksmith Scene""}, { ""tomatoes.production"": 1})" +Which film directed by Luchino Visconti has the highest rating on Rotten Tomatoes?,"db.movies.find({""directors"": ""Luchino Visconti"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +who stars in the film Captains Courageous?,"db.movies.find({""title"": ""Captains Courageous""}, {""cast"": 1})" +what genre is the film Earth?,"db.movies.find({""title"": ""Earth""}, {""genres"": 1})" +What is the IMDB rating of the movie Chapayev ?,"db.movies.find({""title"": ""Chapayev""}, { ""imdb.rating"": 1})" +What is the production company of the film Comradeship?,"db.movies.find({""title"":""Comradeship""}, {""tomatoes.production"":1})" +who produced the film San Francisco?,"db.movies.find({""title"":""San Francisco""}, {""tomatoes.production"":1})" +What is the running time of The Gold Rush?,"db.movies.find({""title"":""The Gold Rush""}, {""runtime"":1})" +What is the runtime of the movie The Strong Man ?,"db.movies.find({""title"": ""The Strong Man""}, { ""runtime"": 1})" +Could you tell me the exact number of films that have been directed by Jean-Luc Godard?,"db.movies.countDocuments({""directors"":""Jean-Luc Godard""})" +Which of Jean Renoir's directed films has the lengthiest duration?,"db.movies.find({""directors"":""Jean Renoir""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +what is the plot for the movie The Gay Divorcee?,"db.movies.find({""title"": ""The Gay Divorcee""}, {""plot"": 1})" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie Marked Woman ?,"db.movies.find({""title"":""Marked Woman""}, {""tomatoes.viewer.meter"":1})" +What is the rating of the movie The Black Cat ?,"db.movies.find({ ""title"": ""The Black Cat"" }, { ""rated"": 1})" +What is the ID of the movie Going Hollywood on IMDB?,"db.movies.find({""title"": ""Going Hollywood""}, {""imdb.id"": 1})" +Who is the lead actor of the movie Freaks ?,"db.movies.find({""title"": ""Freaks""}, {""cast"":{""$slice"": 1},""title"":1})" +Has the movie The Wedding March won any awards?,"db.movies.find({""title"":""The Wedding March""}, {""awards.wins"":1})" +who stars in the movie It's a Gift?,"db.movies.find({""title"": ""It's a Gift""}, {""cast"": 1})" +who stars in In Old Arizona?,"db.movies.find({""title"": ""In Old Arizona""}, {""cast"": 1})" +what type of movie is Going Hollywood?,"db.movies.find({""title"": ""Going Hollywood""}, {""genres"": 1})" +who are the actors in the film Sons of the Desert?,"db.movies.find({""title"": ""Sons of the Desert""}, {""cast"": 1})" +Was the movie The Gay Divorcee well received by audiences?,"db.movies.find({""title"":""The Gay Divorcee""}, {""tomatoes.viewer"":1})" +Which films did Gus Van Sant direct in the 1990s?,"db.movies.find({""directors"": 'Gus Van Sant', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +who are the actors in the movie Wife! Be Like a Rose!?,"db.movies.find({""title"": ""Wife! Be Like a Rose!""}, {""cast"": 1})" +what was the release year of The New Gulliver?,"db.movies.find({""title"": ""The New Gulliver""}, {""year"": 1})" +"In Jean-Luc Godard's directed movies, which actor has made the most appearances?","db.movies.aggregate([ { ""$match"": { ""directors"": ""Jean-Luc Godard"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +who is listed as director for Little Women?,"db.movies.find({""title"": ""Little Women""}, {""directors"": 1})" +What is the IMDb rating for All Quiet on the Western Front?,"db.movies.find({""title"": ""All Quiet on the Western Front""}, {""imdb.rating"": 1})" +What is the website associated with the movie Dames on Rotten Tomatoes?,"db.movies.find({""title"": ""Dames""}, {""tomatoes.website"": 1})" +How many reviews have been submitted by critics for the movie The Dark Angel?,"db.movies.find({ ""title"": ""The Dark Angel"" }, { ""tomatoes.critic.numReviews"": 1 })" +How many reviews have been submitted for the movie The Thin Man on Rotten Tomatoes?,"db.movies.find({ ""title"": ""The Thin Man"" },{ ""tomatoes.viewer.numReviews"": 1 })" +Which types of movies has Jacques Rivette directed?,"db.movies.distinct(""genres"", { ""directors"": ""Jacques Rivette"" })" +What is the meter score of the movie The Good Earth according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""The Good Earth""}, {""tomatoes.viewer.meter"": 1})" +"the film The Informer, was written by who?","db.movies.find({""title"": ""The Informer""}, {""writers"": 1})" +who stars in the film Les Misèrables?,"db.movies.find({""title"": ""Les Misèrables""}, {""cast"": 1})" +Who are the actors that appear in the movie Imitation of Life ?,"db.movies.find({ ""title"": ""Imitation of Life"" },{ ""cast"": 1 })" +What is the Metacritic score of the movie Moscow Laughs ?,"db.movies.find({ ""title"": ""Moscow Laughs"" }, { ""metacritic"": 1})" +What are the genres this movie Where Are My Children? belongs to?,"db.movies.find({""title"":""Where Are My Children?""}, {""genres"":1})" +What is the dominant genre of David Lynch's directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""David Lynch"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +"the movie The Crowd, was written by who?","db.movies.find({""title"": ""The Crowd""}, {""writers"": 1})" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie Three Ages ?,"db.movies.find({""title"":""Three Ages""}, {""tomatoes.viewer.meter"":1})" +who are the actors in the film Cavalcade?,"db.movies.find({""title"": ""Cavalcade""}, {""cast"": 1})" +who was Ruggles of Red Gap written by?,"db.movies.find({""title"": ""Ruggles of Red Gap""}, {""writers"": 1})" +who stars in the film The Saphead?,"db.movies.find({""title"": ""The Saphead""}, {""cast"": 1})" +can you describe the plot of Smilin' Through?,"db.movies.find({""title"": ""Smilin' Through""}, {""plot"": 1})" +In what language was the movie Theodora Goes Wild released?,"db.movies.find({ ""title"": ""Theodora Goes Wild"" }, { ""languages"": 1})" +Can you provide a longer version of the movie Tol'able David plot?,"db.movies.find({""title"":""Tol'able David""}, {""fullplot"":1})" +What is the production company of the movie The Immigrant?,"db.movies.find({""title"":""The Immigrant""}, {""tomatoes.production"":1})" +What is the principal film genre that Orson Welles focuses on in his directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Orson Welles"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What is the Metacritic score of the movie King Solomon's Mines ?,"db.movies.find({ ""title"": ""King Solomon's Mines"" }, { ""metacritic"": 1})" +What is the IMDb rating for the movie Payment Deferred ?,"db.movies.find({""title"":""Payment Deferred""}, {""imdb.rating"":1})" +How many votes did the movie The Invisible Ray receive on IMDB?,"db.movies.find({""title"": ""The Invisible Ray""}, { ""imdb.votes"": 1})" +Who are the actors that appear in the movie One Week ?,"db.movies.find({ ""title"": ""One Week"" },{ ""cast"": 1 })" +"The Wedding Night, is written by who?","db.movies.find({""title"": ""The Wedding Night""}, {""writers"": 1})" +Can you name the movie genres that Akira Kurosawa has directed?,"db.movies.distinct(""genres"", { ""directors"": ""Akira Kurosawa"" })" +In what year was the movie Topaze released?,"db.movies.find({""title"":""Topaze""}, {""year"":1})" +who are the actors in the film This Is My Affair?,"db.movies.find({""title"": ""This Is My Affair""}, {""cast"": 1})" +who was the movie The Champ written by?,"db.movies.find({""title"": ""The Champ""}, {""writers"": 1})" +who wrote Wonder Bar?,"db.movies.find({""title"": ""Wonder Bar""}, {""writers"": 1})" +What is the MPAA rating of the film The Song of Night?,"db.movies.find({""title"":""The Song of Night""}, {""rated"":1})" +the movie Wife! Be Like a Rose! starred which actors?,"db.movies.find({""title"": ""Wife! Be Like a Rose!""}, {""cast"": 1})" +What is the text description of the movie Frankenstein awards?,"db.movies.find({""title"":""Frankenstein""}, {""awards.text"":1})" +what was the genre of the movie The Big Parade?,"db.movies.find({""title"": ""The Big Parade""}, {""genres"": 1})" +who are the actors in the film Our Hospitality?,"db.movies.find({""title"": ""Our Hospitality""}, {""cast"": 1})" +who is the writer of the movie Upstream?,"db.movies.find({""title"": ""Upstream""}, {""writers"": 1})" +What is the MongoDB document ID of the movie The Four Horsemen of the Apocalypse?,"db.movies.find({""title"": ""The Four Horsemen of the Apocalypse""}, {""_id"": 1})" +who acted in the movie Greed?,"db.movies.find({""title"": ""Greed""}, {""cast"": 1})" +who directed The Wind?,"db.movies.find({""title"": ""The Wind""}, {""directors"": 1})" +What is the ID of the movie The Band Concert on IMDB?,"db.movies.find({""title"": ""The Band Concert""}, {""imdb.id"": 1})" +what is the film The Wedding Night about?,"db.movies.find({""title"": ""The Wedding Night""}, {""plot"": 1})" +What is the freshness score of the movie Tol'able David on Rotten Tomatoes?,"db.movies.find({""title"": ""Tol'able David""}, {""tomatoes.fresh"": 1})" +In what year was the movie The Story of a Cheat released ?,"db.movies.find({ ""title"": ""The Story of a Cheat"" }, { ""year"": 1})" +Can you provide more information about the languages spoken in the movie The Lower Depths ?,"db.movies.find({""title"":""The Lower Depths""}, {""languages"":1})" +who are the actors in the film Topaze?,"db.movies.find({""title"": ""Topaze""}, {""cast"": 1})" +who is the writer of the movie The Public Enemy?,"db.movies.find({""title"": ""The Public Enemy""}, {""writers"": 1})" +Which cinematic productions were directed by Satyajit Ray?,"db.movies.find({""directors"": ""Satyajit Ray""},{""title"":1})" +what year was the movie A Farewell to Arms released?,"db.movies.find({""title"": ""A Farewell to Arms""}, {""year"": 1})" +How many audience reviews have been submitted for the movie Broken Blossoms or The Yellow Man and the Girl?,"db.movies.find({ ""title"": ""Broken Blossoms or The Yellow Man and the Girl"" }, { ""tomatoes.viewer.numReviews"": 1 })" +In what year was the movie Regeneration released?,"db.movies.find({""title"":""Regeneration""}, {""year"":1})" +who is the director for The Private Life of Don Juan?,"db.movies.find({""title"": ""The Private Life of Don Juan""}, {""directors"": 1})" +what genre is Peter Pan?,"db.movies.find({""title"": ""Peter Pan""}, {""genres"": 1})" +What type of media is Applause?,"db.movies.find({ ""title"": ""Applause"" }, { ""type"": 1})" +the movie Battling Butler was directed by who?,"db.movies.find({""title"": ""Battling Butler""}, {""directors"": 1})" +How many viewer reviews did the movie The Band Concert receive on Rotten Tomatoes?,"db.movies.find({""title"":""The Band Concert""}, {""tomatoes.viewer.numReviews"":1})" +who produced Steamboat Willie?,"db.movies.find({""title"":""Steamboat Willie""}, {""tomatoes.production"":1})" +What are the genres this movie The Broadway Melody belongs to?,"db.movies.find({""title"":""The Broadway Melody""}, {""genres"":1})" +Was the movie The Garden of Allah well received by audiences and critics?,"db.movies.find({""title"":""The Garden of Allah""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +who wrote the screenplay for the movie A Farewell to Arms?,"db.movies.aggregate([ { ""$match"": { ""title"":""A Farewell to Arms""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +who is listed as director for The Freshman?,"db.movies.find({""title"": ""The Freshman""}, {""directors"": 1})" +how many awards did the film Lenin in October win?,"db.movies.find({""title"":""Lenin in October""}, {""awards.wins"":1})" +what is the plot for A Farewell to Arms?,"db.movies.find({""title"": ""A Farewell to Arms""}, {""plot"": 1})" +the movie Salomè starred who?,"db.movies.find({""title"": ""Salomè""}, {""cast"": 1})" +Who are the actors that appear in the movie The Trail of the Lonesome Pine ?,"db.movies.find({ ""title"": ""The Trail of the Lonesome Pine"" },{ ""cast"": 1 })" +who is the writer of the movie Tarzan the Ape Man?,"db.movies.find({""title"": ""Tarzan the Ape Man""}, {""writers"": 1})" +What is the highest-ranking Andrei Tarkovsky-directed film on Rotten Tomatoes?,"db.movies.find({""directors"": ""Andrei Tarkovsky"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +Who is the lead actor of the movie The Gay Divorcee ?,"db.movies.find({""title"": ""The Gay Divorcee""}, {""cast"":{""$slice"": 1},""title"":1})" +What is the box office revenue for the movie 'The Gilded Lily'?,"db.movies.find({""title"": ""The Gilded Lily""}, {""tomatoes.boxOffice"": 1})" +What is the production company behind the movie x?,"db.movies.find({""title"": ""The Phantom of the Opera""}, { ""tomatoes.production"": 1})" +"the film The Guardsman, was written by who?","db.movies.find({""title"": ""The Guardsman""}, {""writers"": 1})" +Who are the actors in the movie The Kid?,"db.movies.find({""title"":""The Kid""}, {""cast"":1})" +What is the production company behind the movie x?,"db.movies.find({""title"": ""Man with a Movie Camera""}, { ""tomatoes.production"": 1})" +What is the running time of the movie The Ghost Goes West?,"db.movies.find({""title"":""The Ghost Goes West""}, {""runtime"":1})" +"David Golder, was written by who?","db.movies.find({""title"": ""David Golder""}, {""writers"": 1})" +what sort of movie is Roberta?,"db.movies.find({""title"": ""Roberta""}, {""genres"": 1})" +What are the names of the films that were directed by Quentin Tarantino and released in the 1990s?,"db.movies.find({""directors"": 'Quentin Tarantino', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +who produced the film The Song of Night?,"db.movies.find({""title"":""The Song of Night""}, {""tomatoes.production"":1})" +the movie Wings was directed by who?,"db.movies.find({""title"": ""Wings""}, {""directors"": 1})" +What is the IMDb rating for the movie The Circus?,"db.movies.find({""title"": ""The Circus""}, {""imdb.rating"": 1})" +what type of film is Now or Never?,"db.movies.find({""title"": ""Now or Never""}, {""genres"": 1})" +what is the movie Sherlock Jr. about in details?,"db.movies.find({""title"": ""Sherlock Jr.""}, {""fullplot"": 1})" +What is the IMDb rating for the movie The Devil to Pay! ?,"db.movies.find({""title"":""The Devil to Pay!""}, {""imdb.rating"":1})" +what is the plot for the film Nosferatu?,"db.movies.find({""title"": ""Nosferatu""}, {""plot"": 1})" +who's the director of Disraeli?,"db.movies.find({""title"": ""Disraeli""}, {""directors"": 1})" +what genre is Come and Get It?,"db.movies.find({""title"": ""Come and Get It""}, {""genres"": 1})" +"Has the film Anna Karenina won any awards? If so, which ones?","db.movies.find({""title"":""Anna Karenina"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +In which genre do the movies directed by Wes Anderson mainly fall under?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Wes Anderson"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +In what year was the movie The Last Command released?,"db.movies.find({""title"":""The Last Command""}, {""year"":1})" +The Prisoner of Shark Island was directed by who?,"db.movies.find({""title"": ""The Prisoner of Shark Island""}, {""directors"": 1})" +what is Maria Chapdelaine about?,"db.movies.find({""title"": ""Maria Chapdelaine""}, {""plot"": 1})" +What are the countries associated with the movie Wife! Be Like a Rose! ?,"db.movies.find({""title"": ""Wife! Be Like a Rose!""}, {""countries"": 1})" +who was the writer of the film M?,"db.movies.find({""title"": ""M""}, {""writers"": 1})" +What is the title of the movie with the longest duration that Jacques Rivette directed?,"db.movies.find({""directors"":""Jacques Rivette""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +who was the writer of the film The Awful Truth?,"db.movies.find({""title"": ""The Awful Truth""}, {""writers"": 1})" +who stars in the film Roberta?,"db.movies.find({""title"": ""Roberta""}, {""cast"": 1})" +who is listed as director for Applause?,"db.movies.find({""title"": ""Applause""}, {""directors"": 1})" +which person directed Zoo in Budapest?,"db.movies.find({""title"": ""Zoo in Budapest""}, {""directors"": 1})" +who acted in the film The Edge of the World?,"db.movies.find({""title"": ""The Edge of the World""}, {""cast"": 1})" +What is the percentage of positive reviews among critics for the movie Kid Galahad ?,"db.movies.find({ ""title"": ""Kid Galahad"" },{ ""tomatoes.critic.meter"": 1 })" +What is the viewer rating for the movie Steamboat Willie on Rotten Tomatoes?,"db.movies.find({""title"":""Steamboat Willie""}, {""tomatoes.viewer.rating"":1})" +what genre is Robin Hood?,"db.movies.find({""title"": ""Robin Hood""}, {""genres"": 1})" +Who are the starring actors/actresses in the movie Blacksmith Scene?,"db.movies.find({""title"":""Blacksmith Scene""}, {""cast"":1})" +What is the IMDb rating for the movie Curly Top?,"db.movies.find({""title"": ""Curly Top""}, {""imdb.rating"": 1})" +who are the actors in College?,"db.movies.find({""title"": ""College""}, {""cast"": 1})" +"the movie Stage Door, was written by who?","db.movies.find({""title"": ""Stage Door""}, {""writers"": 1})" +what genre of movie is I Am a Fugitive from a Chain Gang?,"db.movies.find({""title"": ""I Am a Fugitive from a Chain Gang""}, {""genres"": 1})" +what was the release year of Four Sons?,"db.movies.find({""title"": ""Four Sons""}, {""year"": 1})" +What is the IMDB rating of the movie The Black Cat ?,"db.movies.find({""title"": ""The Black Cat""}, { ""imdb.rating"": 1})" +What is the box office revenue of the movie Wife! Be Like a Rose! ?,"db.movies.find({""title"": ""Wife! Be Like a Rose!""}, { ""tomatoes.boxOffice"": 1})" +What is the production company behind the movie x?,"db.movies.find({""title"": ""The Unknown""}, { ""tomatoes.production"": 1})" +What is the MPAA rating of the film è Nous la Libertè?,"db.movies.find({""title"":""è Nous la Libertè""}, {""rated"":1})" +what type of movie is She?,"db.movies.find({""title"": ""She""}, {""genres"": 1})" +the movie Now or Never starred who?,"db.movies.find({""title"": ""Now or Never""}, {""cast"": 1})" +who wrote The Gilded Lily?,"db.movies.find({""title"": ""The Gilded Lily""}, {""writers"": 1})" +who is the author of Sons of the Desert?,"db.movies.find({""title"": ""Sons of the Desert""}, {""writers"": 1})" +who stars in the movie Comradeship?,"db.movies.find({""title"": ""Comradeship""}, {""cast"": 1})" +What is the production company of The Phantom of the Opera?,"db.movies.find({""title"":""The Phantom of the Opera""}, {""tomatoes.production"":1})" +What is the box office revenue of the movie She Done Him Wrong ?,"db.movies.find({""title"": ""She Done Him Wrong""}, { ""tomatoes.boxOffice"": 1})" +who stars in the film Robin Hood?,"db.movies.find({""title"": ""Robin Hood""}, {""cast"": 1})" +When was the movie The Prisoner of Shark Island released in theaters?,"db.movies.find({""title"": ""The Prisoner of Shark Island""}, {""released"": 1})" +who starred in the film The Black Cat?,"db.movies.find({""title"": ""The Black Cat""}, {""cast"": 1})" +which person wrote Mayerling?,"db.movies.find({""title"": ""Mayerling""}, {""writers"": 1})" +what genre is the film One Week?,"db.movies.find({""title"": ""One Week""}, {""genres"": 1})" +"In the database, what is the usual rating given to Louis Malle's movies on average?","db.movies.aggregate([{""$match"": {""directors"":""Louis Malle""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +Blacksmith Scene is a movie written by this person?,"db.movies.find({""title"": ""Blacksmith Scene""}, {""writers"": 1})" +When was the information about the movie Payment Deferred last updated?,"db.movies.find({ ""title"": ""Payment Deferred"" }, { ""lastupdated"": 1})" +what is David Copperfield imdb rating?,"db.movies.find({""title"": ""David Copperfield""}, {""imdb.rating"": 1})" +what is Hell's Hinges about in details?,"db.movies.find({""title"": ""Hell's Hinges""}, {""fullplot"": 1})" +What is the text representation of the awards won and nominations received by the movie It?,"db.movies.find({""title"": ""It""}, { ""awards.text"": 1})" +"Has the film Salomè won any awards? If so, which ones?","db.movies.find({""title"":""Salomè"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What is the freshness score of the movie Tsirk on Rotten Tomatoes?,"db.movies.find({""title"": ""Tsirk""}, {""tomatoes.fresh"": 1})" +Can you provide a detailed summary of the movie A Corner in Wheat plot?,"db.movies.find({ ""title"": ""A Corner in Wheat"" }, { ""fullplot"": 1})" +who was the writer of the movie The Prisoner of Shark Island?,"db.movies.find({""title"": ""The Prisoner of Shark Island""}, {""writers"": 1})" +What is the imdbID and year of release for the movie with a title of 'Foolish Wives'?,"db.movies.find({""title"": ""Foolish Wives""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +Could you tell me the main category of movies that David Fincher directs?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""David Fincher"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +what is Le grand jeu description?,"db.movies.find({""title"": ""Le grand jeu""}, {""plot"": 1})" +In which countries was the movie The Divine Lady produced?,"db.movies.find({""title"":""The Divine Lady""}, {""countries"":1})" +How did the audience and critics receive the film Grass: A Nation's Battle for Life?,"db.movies.find({""title"":""Grass: A Nation's Battle for Life""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +Can you provide me with a list of Jean-Pierre Melville-directed movies with the highest ratings?,"db.movies.find({""directors"": 'Jean-Pierre Melville', ""imdb.rating"": {""$gt"": 8.5}})" +What is the production company behind the movie x?,"db.movies.find({""title"": ""Street Angel""}, { ""tomatoes.production"": 1})" +What is the consensus among critics about the movie Dames ?,"db.movies.find({""title"": ""Dames""}, {""tomatoes.consensus"": 1})" +the movie City Lights was directed by who?,"db.movies.find({""title"": ""City Lights""}, {""directors"": 1})" +"In movies directed by Alfred Hitchcock, which actor has the highest number of performances?","db.movies.aggregate([ { ""$match"": { ""directors"": ""Alfred Hitchcock"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +who produced the film Little Caesar?,"db.movies.find({""title"":""Little Caesar""}, {""tomatoes.production"":1})" +What is the rating of the movie Napoleon according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Napoleon""}, {""tomatoes.viewer.rating"": 1})" +How many reviews have been submitted by critics for the movie The Cameraman?,"db.movies.find({ ""title"": ""The Cameraman"" }, { ""tomatoes.critic.numReviews"": 1 })" +what is the movie The Robber Symphony description ?,"db.movies.find({""title"": ""The Robber Symphony""}, {""plot"": 1})" +what is the plot for Street Angel?,"db.movies.find({""title"": ""Street Angel""}, {""plot"": 1})" +who wrote the film Theodora Goes Wild?,"db.movies.find({""title"": ""Theodora Goes Wild""}, {""writers"": 1})" +The Unknown is a film written by this person?,"db.movies.find({""title"": ""The Unknown""}, {""writers"": 1})" +What is the rating of the movie The Lost World ?,"db.movies.find({ ""title"": ""The Lost World"" }, { ""rated"": 1})" +"Has the film The Italian won any awards? If so, which ones?","db.movies.find({""title"":""The Italian"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +who was the writer of Camille?,"db.movies.find({""title"": ""Camille""}, {""writers"": 1})" +who was The Lives of a Bengal Lancer directed by?,"db.movies.find({""title"": ""The Lives of a Bengal Lancer""}, {""directors"": 1})" +What is the runtime and rating for the movie 'White Shadows'?,"db.movies.find({""title"": ""White Shadows""}, {""runtime"": 1, ""rated"": 1})" +which person wrote the movie The Son of Kong?,"db.movies.find({""title"": ""The Son of Kong""}, {""writers"": 1})" +What is the rating of the movie Under the Roofs of Paris according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Under the Roofs of Paris""}, {""tomatoes.viewer.rating"": 1})" +"Has the movie Comradeship won any awards? If so, which ones?","db.movies.find({""title"":""Comradeship"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +which person wrote the movie Viva Villa!?,"db.movies.find({""title"": ""Viva Villa!""}, {""writers"": 1})" +who are the actors in the movie L'opèra de quat'sous?,"db.movies.find({""title"": ""L'opèra de quat'sous""}, {""cast"": 1})" +What are the genres this movie è Nous la Libertè belongs to?,"db.movies.find({""title"":""è Nous la Libertè""}, {""genres"":1})" +what kind of film is Upstream?,"db.movies.find({""title"": ""Upstream""}, {""genres"": 1})" +In what year was the movie The Docks of New York released ?,"db.movies.find({ ""title"": ""The Docks of New York"" }, { ""year"": 1})" +How many wins did the movie Lenin in October receive?,"db.movies.find({""title"":""Lenin in October""}, {""awards.wins"":1})" +Who is the lead actress of the movie The Story of Louis Pasteur ?,"db.movies.find({""title"": ""The Story of Louis Pasteur""}, {""cast"":{""$slice"": 1},""title"":1})" +What is the MPAA rating of the film The Immigrant?,"db.movies.find({""title"":""The Immigrant""}, {""rated"":1})" +what was the release date of the movie Toni?,"db.movies.find({""title"": ""Toni""}, {""released"": 1})" +What is the IMDb rating for The Phantom of the Opera?,"db.movies.find({""title"": ""The Phantom of the Opera""}, {""imdb.rating"": 1})" +Who are the main actors in The Invisible Ray ?,"db.movies.find({ ""title"": ""The Invisible Ray"" }, { ""cast"": 1})" +Who are the main actors/actresses in the movie The Crowd?,"db.movies.find({""title"":""The Crowd""}, {""cast"":1})" +what year was Final Accord released?,"db.movies.find({""title"": ""Final Accord""}, {""year"": 1})" +who was the film Disraeli written by?,"db.movies.find({""title"": ""Disraeli""}, {""writers"": 1})" +How long is the runtime of the movie Wild and Woolly ?,"db.movies.find({""title"":""Wild and Woolly""}, {""runtime"":1})" +What is the audience rating of the movie The Gilded Lily ?,"db.movies.find({ ""title"": ""The Gilded Lily"" },{ ""tomatoes.viewer.rating"": 1 })" +What is the most common genre of movies that Roberto Rossellini directs?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Roberto Rossellini"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What is the MPAA rating of the film Broken Lullaby?,"db.movies.find({""title"":""Broken Lullaby""}, {""rated"":1})" +What is the full plot summary of the movie Street Angel ?,"db.movies.find({""title"": ""Street Angel""}, {""plot"": 1})" +What is the critical reception of the movie The Wedding Night?,"db.movies.find({""title"":""The Wedding Night""}, {""tomatoes.critic"":1})" +What is the highest-rated movie directed by Satyajit Ray on rotten tomatoes?,"db.movies.find({""directors"": ""Satyajit Ray"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +Was the movie Eskimo well received by audiences and critics?,"db.movies.find({""title"":""Eskimo""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what genre is the movie The Big House?,"db.movies.find({""title"": ""The Big House""}, {""genres"": 1})" +what was the genre of the film Wonder Bar?,"db.movies.find({""title"": ""Wonder Bar""}, {""genres"": 1})" +what is The Strong Man imdb rating?,"db.movies.find({""title"": ""The Strong Man""}, {""imdb.rating"": 1})" +what was the release date of the movie These Three?,"db.movies.find({""title"": ""These Three""}, {""released"": 1})" +How did the audience and critics receive The Black Pirate?,"db.movies.find({""title"":""The Black Pirate""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the rating of the movie Applause according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Applause""}, {""tomatoes.viewer.rating"": 1})" +what was the release year of the film Safety Last!?,"db.movies.find({""title"": ""Safety Last!""}, {""year"": 1})" +what is the genre of The Man Who Knew Too Much?,"db.movies.find({""title"": ""The Man Who Knew Too Much""}, {""genres"": 1})" +Who are the main actors/actresses in the movie A Corner in Wheat?,"db.movies.find({""title"":""A Corner in Wheat""}, {""cast"":1})" +Which of Alfred Hitchcock's directed films has the lengthiest duration?,"db.movies.find({""directors"":""Alfred Hitchcock""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +how many awards did the movie Upstream win?,"db.movies.find({""title"":""Upstream""}, {""awards.wins"":1})" +What is the IMDb rating for the film Folies Bergère de Paris?,"db.movies.find({""title"": ""Folies Bergère de Paris""}, {""imdb.rating"": 1})" +What is the audience rating of the movie La Grande Illusion ?,"db.movies.find({ ""title"": ""La Grande Illusion"" },{ ""tomatoes.viewer.rating"": 1 })" +Can you tell me which movie that Spike Lee directed has the shortest running time?,"db.movies.find({""directors"":""Spike Lee""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +Who are the main actors/actresses in the movie A Story of Floating Weeds?,"db.movies.find({""title"":""A Story of Floating Weeds""}, {""cast"":1})" +Who are the actors in the movie Miss Lulu Bett?,"db.movies.find({""title"":""Miss Lulu Bett""}, {""cast"":1})" +who was The Thin Man written by?,"db.movies.find({""title"": ""The Thin Man""}, {""writers"": 1})" +What is the box office revenue of the movie Cleopatra ?,"db.movies.find({""title"": ""Cleopatra""}, { ""tomatoes.boxOffice"": 1})" +what was the release year of Mutiny on the Bounty?,"db.movies.find({""title"": ""Mutiny on the Bounty""}, {""year"": 1})" +What is the audience rating of the movie The Passion of Joan of Arc ?,"db.movies.find({ ""title"": ""The Passion of Joan of Arc"" },{ ""tomatoes.viewer.rating"": 1 })" +What is the box office revenue of the movie The Count of Monte Cristo in dollars?,"db.movies.find({""title"": ""The Count of Monte Cristo""}, {""tomatoes.boxOffice"": 1})" +What is the production company of the film In the Land of the Head Hunters?,"db.movies.find({""title"":""In the Land of the Head Hunters""}, {""tomatoes.production"":1})" +What is the production company of Final Accord?,"db.movies.find({""title"":""Final Accord""}, {""tomatoes.production"":1})" +What is the running time of The Navigator?,"db.movies.find({""title"":""The Navigator""}, {""runtime"":1})" +What is the text representation of the awards won and nominations received by the movie Captains Courageous?,"db.movies.find({""title"": ""Captains Courageous""}, { ""awards.text"": 1})" +What is the production company behind the movie State Fair ?,"db.movies.find({""title"": ""State Fair""}, {""tomatoes.production"": 1})" +what was the genre of the film Shanghai Express?,"db.movies.find({""title"": ""Shanghai Express""}, {""genres"": 1})" +What was the release date for the movie Romeo and Juliet?,"db.movies.find({""title"":""Romeo and Juliet""}, {""released"":1})" +who wrote the movie A Star Is Born?,"db.movies.find({""title"": ""A Star Is Born""}, {""writers"": 1})" +How many reviews have been submitted by critics for the movie Pandora's Box ?,"db.movies.find({""title"": ""Pandora's Box""}, {""tomatoes.critic.numReviews"": 1})" +Can you tell me which film genres Wes Anderson has directed?,"db.movies.distinct(""genres"", { ""directors"": ""Wes Anderson"" })" +what is the genre of Toni?,"db.movies.find({""title"": ""Toni""}, {""genres"": 1})" +which person directed The 39 Steps?,"db.movies.find({""title"": ""The 39 Steps""}, {""directors"": 1})" +How many wins did the movie The Private Life of Don Juan receive?,"db.movies.find({""title"":""The Private Life of Don Juan""}, {""awards.wins"":1})" +who is the director for The Crusades?,"db.movies.find({""title"": ""The Crusades""}, {""directors"": 1})" +What is the freshness score of the movie The Wedding March on Rotten Tomatoes?,"db.movies.find({""title"": ""The Wedding March""}, {""tomatoes.fresh"": 1})" +Can you give me a brief summary of the movie La Grande Illusion plot?,"db.movies.find({""title"":""La Grande Illusion""}, {""plot"":1})" +What languages are spoken in the movie Asphalt ?,"db.movies.find({""title"": ""Asphalt""}, { ""languages"": 1})" +who starred in the film One Hundred Men and a Girl?,"db.movies.find({""title"": ""One Hundred Men and a Girl""}, {""cast"": 1})" +Blacksmith Scene was directed by who?,"db.movies.find({""title"": ""Blacksmith Scene""}, {""directors"": 1})" +Can you provide more information about the Rotten Tomatoes rating for the movie Viva Villa!?,"db.movies.find({""title"": ""Viva Villa!""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +what is the film The Blood of a Poet imdb rating?,"db.movies.find({""title"": ""The Blood of a Poet""}, {""imdb.rating"": 1})" +How many votes did the movie Intolerance: Love's Struggle Throughout the Ages receive on IMDB?,"db.movies.find({""title"": ""Intolerance: Love's Struggle Throughout the Ages""}, { ""imdb.votes"": 1})" +Who are the actors that appear in the movie The Chechahcos ?,"db.movies.find({ ""title"": ""The Chechahcos"" },{ ""cast"": 1 })" +What was the release date for the movie One Hundred Men and a Girl?,"db.movies.find({""title"":""One Hundred Men and a Girl""}, {""released"":1})" +In what year was the movie Three Smart Girls released?,"db.movies.find({""title"":""Three Smart Girls""}, {""year"":1})" +When was the Tomatometer score and other Tomato-related information last updated for the movie Tsirk?,"db.movies.find({""title"": ""Tsirk""}, { ""tomatoes.lastUpdated"": 1})" +How long is the movie College in minutes?,"db.movies.find({""title"":""College""}, {""runtime"":1})" +"who was the writer of I Was Born, But...?","db.movies.find({""title"": ""I Was Born, But...""}, {""writers"": 1})" +who wrote the movie Folies Bergère de Paris?,"db.movies.find({""title"": ""Folies Bergère de Paris""}, {""writers"": 1})" +What is the box office revenue of the movie The Public Enemy in dollars?,"db.movies.find({""title"": ""The Public Enemy""}, {""tomatoes.boxOffice"": 1})" +who's the director of These Three?,"db.movies.find({""title"": ""These Three""}, {""directors"": 1})" +what is the plot for the film Gertie the Dinosaur?,"db.movies.find({""title"": ""Gertie the Dinosaur""}, {""plot"": 1})" +what is the movie M imdb rating?,"db.movies.find({""title"": ""M""}, {""imdb.rating"": 1})" +what was the release date of Chapayev?,"db.movies.find({""title"": ""Chapayev""}, {""released"": 1})" +who wrote the screenplay for the movie Steamboat Willie?,"db.movies.aggregate([ { ""$match"": { ""title"":""Steamboat Willie""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +What was the release date for the movie Broken Lullaby?,"db.movies.find({""title"":""Broken Lullaby""}, {""released"":1})" +When was the movie They Won't Forget released?,"db.movies.find({""title"":""They Won't Forget""}, {""released"":1})" +When was the information about the movie Baby Face last updated?,"db.movies.find({ ""title"": ""Baby Face"" }, { ""lastupdated"": 1})" +Who are the actors that appear in the movie M ?,"db.movies.find({ ""title"": ""M"" },{ ""cast"": 1 })" +who is the writer of the movie Wild and Woolly?,"db.movies.find({""title"": ""Wild and Woolly""}, {""writers"": 1})" +What is the runtime of the movie The Iron Horse ?,"db.movies.find({""title"": ""The Iron Horse""}, { ""runtime"": 1})" +what are the genres directed by Jean Renoir?,"db.movies.distinct(""genres"", { ""directors"": ""Jean Renoir"" })" +Who are the writers of the movie Shanghai Express ?,"db.movies.find({""title"": ""Shanghai Express""}, { ""writers"": 1})" +Could you inform me of the genres of films that Orson Welles has directed?,"db.movies.distinct(""genres"", { ""directors"": ""Orson Welles"" })" +Which cinematic productions were directed by Martin Scorsese?,"db.movies.find({""directors"": ""Martin Scorsese""},{""title"":1})" +who wrote 7th Heaven?,"db.movies.find({""title"": ""7th Heaven""}, {""writers"": 1})" +the movie China Seas starred which actors?,"db.movies.find({""title"": ""China Seas""}, {""cast"": 1})" +"Has the film Eskimo won any awards? If so, which ones?","db.movies.find({""title"":""Eskimo"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What is the production company of The Kid?,"db.movies.find({""title"":""The Kid""}, {""tomatoes.production"":1})" +What is the viewer rating for the movie The Devil Is a Woman on Rotten Tomatoes?,"db.movies.find({""title"":""The Devil Is a Woman""}, {""tomatoes.viewer.rating"":1})" +"What is the website associated with the movie Winsor McCay, the Famous Cartoonist of the N.Y. Herald and His Moving Comics on Rotten Tomatoes?","db.movies.find({""title"": ""Winsor McCay, the Famous Cartoonist of the N.Y. Herald and His Moving Comics""}, {""tomatoes.website"": 1})" +what genre is the movie Topaze?,"db.movies.find({""title"": ""Topaze""}, {""genres"": 1})" +How did the audience and critics receive the movie 7th Heaven?,"db.movies.find({""title"":""7th Heaven""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +How many votes did the movie Death Takes a Holiday receive on IMDB?,"db.movies.find({""title"": ""Death Takes a Holiday""}, { ""imdb.votes"": 1})" +How many votes does the movie Masquerade in Vienna have on IMDb?,"db.movies.find({""title"":""Masquerade in Vienna""}, {""imdb.votes"":1})" +What type of movie is The Scarlet Empress ?,"db.movies.find({""title"":""The Scarlet Empress""}, {""genres"":1})" +When was the information last updated for the movie Dante's Inferno ?,"db.movies.find({ ""title"": ""Dante's Inferno"" },{ ""lastupdated"": 1 })" +who is the writer of The Blue Bird?,"db.movies.find({""title"": ""The Blue Bird""}, {""writers"": 1})" +who is the director that directed Frankenstein?,"db.movies.find({""title"": ""Frankenstein""}, {""directors"": 1})" +How many reviews have been submitted by critics for the movie Death Takes a Holiday ?,"db.movies.find({""title"": ""Death Takes a Holiday""}, {""tomatoes.critic.numReviews"": 1})" +what was the release date of the movie Men Without Women?,"db.movies.find({""title"": ""Men Without Women""}, {""released"": 1})" +"Has the film Man of Aran won any awards? If so, which ones?","db.movies.find({""title"":""Man of Aran"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +Wes Anderson directed which films in the 1990s?,"db.movies.find({""directors"": 'Wes Anderson', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +What is the mean rating of all the Luchino Visconti films in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Luchino Visconti""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +What is the rating of the movie The Four Horsemen of the Apocalypse on IMDb?,"db.movies.find({""title"":""The Four Horsemen of the Apocalypse""}, {""imdb.rating"":1})" +Who is the lead actress of the movie The Lost World ?,"db.movies.find({""title"": ""The Lost World""}, {""cast"":{""$slice"": 1},""title"":1})" +what genre is the film Ella Cinders?,"db.movies.find({""title"": ""Ella Cinders""}, {""genres"": 1})" +What is the running time of Greed?,"db.movies.find({""title"":""Greed""}, {""runtime"":1})" +What is the running time of the movie The Crowd?,"db.movies.find({""title"":""The Crowd""}, {""runtime"":1})" +what is A Star Is Born description?,"db.movies.find({""title"": ""A Star Is Born""}, {""plot"": 1})" +How many reviews did the movie The Crowd receive on Rotten Tomatoes?,"db.movies.find({""title"":""The Crowd""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +what was the release year of the movie A Star Is Born?,"db.movies.find({""title"": ""A Star Is Born""}, {""year"": 1})" +which person wrote the film Cops?,"db.movies.find({""title"": ""Cops""}, {""writers"": 1})" +"Has the movie The General won any awards? If so, which ones?","db.movies.find({""title"":""The General"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +who are the actors in the movie Salomè?,"db.movies.find({""title"": ""Salomè""}, {""cast"": 1})" +"Dr. Jekyll and Mr. Hyde, was written by who?","db.movies.find({""title"": ""Dr. Jekyll and Mr. Hyde""}, {""writers"": 1})" +How did the audience and critics receive the film Camille?,"db.movies.find({""title"":""Camille""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what genre is the film Romeo and Juliet?,"db.movies.find({""title"": ""Romeo and Juliet""}, {""genres"": 1})" +What type of media is Regeneration?,"db.movies.find({ ""title"": ""Regeneration"" }, { ""type"": 1})" +What are the countries associated with the movie Fury ?,"db.movies.find({""title"": ""Fury""}, {""countries"": 1})" +What is the plot summary of the movie Queen Christina ?,"db.movies.find({ ""title"": ""Queen Christina"" }, { ""plot"": 1})" +who was the writer of the film Elephant Boy?,"db.movies.find({""title"": ""Elephant Boy""}, {""writers"": 1})" +the director of The Green Pastures was?,"db.movies.find({""title"": ""The Green Pastures""}, {""directors"": 1})" +What is the text description of the movie Battling Butler awards?,"db.movies.find({""title"":""Battling Butler""}, {""awards.text"":1})" +What is the percentage of positive reviews among critics for the movie A Night at the Opera ?,"db.movies.find({ ""title"": ""A Night at the Opera"" },{ ""tomatoes.critic.meter"": 1 })" +what is the movie Come and Get It imdb rating?,"db.movies.find({""title"": ""Come and Get It""}, {""imdb.rating"": 1})" +"Has the movie The Emperor Jones won any awards? If so, which ones?","db.movies.find({""title"":""The Emperor Jones"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +who wrote the screenplay for the film The Cameraman?,"db.movies.aggregate([ { ""$match"": { ""title"":""The Cameraman""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +what is the film Black Legion about?,"db.movies.find({""title"": ""Black Legion""}, {""plot"": 1})" +What is the production company of the film The Champ?,"db.movies.find({""title"":""The Champ""}, {""tomatoes.production"":1})" +who produced the movie Dr. Jekyll and Mr. Hyde?,"db.movies.find({""title"":""Dr. Jekyll and Mr. Hyde""}, {""tomatoes.production"":1})" +What is the viewer rating for the movie The New Gulliver on Rotten Tomatoes?,"db.movies.find({""title"":""The New Gulliver""}, {""tomatoes.viewer.rating"":1})" +who produced One Night of Love?,"db.movies.find({""title"":""One Night of Love""}, {""tomatoes.production"":1})" +When was the Tomatometer score and other Tomato-related information last updated for the movie Bride of Frankenstein?,"db.movies.find({""title"": ""Bride of Frankenstein""}, { ""tomatoes.lastUpdated"": 1})" +What is the highest-rated movie directed by Clint Eastwood on rotten tomatoes?,"db.movies.find({""directors"": ""Clint Eastwood"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +What is the production company behind the movie x?,"db.movies.find({""title"": ""San Francisco""}, { ""tomatoes.production"": 1})" +what genre of movie is The Wind?,"db.movies.find({""title"": ""The Wind""}, {""genres"": 1})" +what was the genre of Captains Courageous?,"db.movies.find({""title"": ""Captains Courageous""}, {""genres"": 1})" +what kind of movie is Queen Kelly?,"db.movies.find({""title"": ""Queen Kelly""}, {""genres"": 1})" +what is the genre for the movie Ella Cinders?,"db.movies.find({""title"": ""Ella Cinders""}, {""genres"": 1})" +who was the writer of Marked Woman?,"db.movies.find({""title"": ""Marked Woman""}, {""writers"": 1})" +who was Final Accord written by?,"db.movies.find({""title"": ""Final Accord""}, {""writers"": 1})" +Who are the actors that appear in the movie Storm Over Asia ?,"db.movies.find({ ""title"": ""Storm Over Asia"" },{ ""cast"": 1 })" +what is the film It's a Gift imdb rating?,"db.movies.find({""title"": ""It's a Gift""}, {""imdb.rating"": 1})" +"the movie The Song of Night, was written by who?","db.movies.find({""title"": ""The Song of Night""}, {""writers"": 1})" +what year was the movie The Dark Angel released?,"db.movies.find({""title"": ""The Dark Angel""}, {""year"": 1})" +what was the release year of the movie 7th Heaven?,"db.movies.find({""title"": ""7th Heaven""}, {""year"": 1})" +What is the MPAA rating of Les Misèrables?,"db.movies.find({""title"":""Les Misèrables""}, {""rated"":1})" +what is the movie Baby Face about?,"db.movies.find({""title"": ""Baby Face""}, {""plot"": 1})" +What is the plot summary of the movie The Band Concert ?,"db.movies.find({ ""title"": ""The Band Concert"" }, { ""plot"": 1})" +what is the movie Four Sons about in details?,"db.movies.find({""title"": ""Four Sons""}, {""fullplot"": 1})" +What is the consensus among critics about the movie Mary of Scotland?,"db.movies.find({""title"": ""Mary of Scotland""}, { ""tomatoes.consensus"": 1})" +what is the film Westfront 1918 imdb rating?,"db.movies.find({""title"": ""Westfront 1918""}, {""imdb.rating"": 1})" +Could you tell me the exact number of films that have been directed by Pedro Almodovar?,"db.movies.countDocuments({""directors"":""Pedro Almodovar""})" +What is the production company behind the movie The Prisoner of Shark Island ?,"db.movies.find({""title"": ""The Prisoner of Shark Island""}, { ""tomatoes.production"": 1})" +What is the IMDb rating for Dames?,"db.movies.find({""title"": ""Dames""}, {""imdb.rating"": 1})" +What is the average rating for all of Roberto Rossellini's films in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Roberto Rossellini""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +When was the information about the movie Civilization last updated?,"db.movies.find({ ""title"": ""Civilization"" }, { ""lastupdated"": 1})" +who are the actors in the film The Private Life of Henry VIII.?,"db.movies.find({""title"": ""The Private Life of Henry VIII.""}, {""cast"": 1})" +How many reviews have been submitted by critics for the movie High and Dizzy?,"db.movies.find({ ""title"": ""High and Dizzy"" }, { ""tomatoes.critic.numReviews"": 1 })" +what is the movie The Guardsman about in details?,"db.movies.find({""title"": ""The Guardsman""}, {""fullplot"": 1})" +What are the countries associated with the movie Forbidden ?,"db.movies.find({""title"": ""Forbidden""}, {""countries"": 1})" +what is the plot for The Wedding March?,"db.movies.find({""title"": ""The Wedding March""}, {""plot"": 1})" +Which movies from the 1990s were directed by David Fincher?,"db.movies.find({""directors"": 'David Fincher', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +What is the IMDb ID for the movie Two Seconds?,"db.movies.find({""title"":""Two Seconds""}, {""imdb.id"":1})" +Who are the actors in the movie The Man Who Knew Too Much?,"db.movies.find({""title"":""The Man Who Knew Too Much""}, {""cast"":1})" +who was Storm Over Asia written by?,"db.movies.find({""title"": ""Storm Over Asia""}, {""writers"": 1})" +what sort of movie is Salomè?,"db.movies.find({""title"": ""Salomè""}, {""genres"": 1})" +what genre is The Trail of the Lonesome Pine?,"db.movies.find({""title"": ""The Trail of the Lonesome Pine""}, {""genres"": 1})" +"The 3 Penny Opera, is written by who?","db.movies.find({""title"": ""The 3 Penny Opera""}, {""writers"": 1})" +the film The Garden of Allah starred who?,"db.movies.find({""title"": ""The Garden of Allah""}, {""cast"": 1})" +What is the runtime of the movie The Cameraman ?,"db.movies.find({""title"": ""The Cameraman""}, { ""runtime"": 1})" +the film A Star Is Born was directed by who?,"db.movies.find({""title"": ""A Star Is Born""}, {""directors"": 1})" +who starred in the film Applause?,"db.movies.find({""title"": ""Applause""}, {""cast"": 1})" +What is the MPAA rating of the movie The Black Pirate?,"db.movies.find({""title"":""The Black Pirate""}, {""rated"":1})" +what is the film Street Angel description ?,"db.movies.find({""title"": ""Street Angel""}, {""plot"": 1})" +What's the title of the shortest Ingmar Bergman-directed movie?,"db.movies.find({""directors"":""Ingmar Bergman""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +which person directed Show People?,"db.movies.find({""title"": ""Show People""}, {""directors"": 1})" +who wrote the screenplay for The Gay Divorcee?,"db.movies.aggregate([ { ""$match"": { ""title"":""The Gay Divorcee""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +which person directed The Red Head?,"db.movies.find({""title"": ""The Red Head""}, {""directors"": 1})" +Can you name the movie genres that Quentin Tarantino has directed?,"db.movies.distinct(""genres"", { ""directors"": ""Quentin Tarantino"" })" +"Has the movie The Saphead won any awards? If so, which ones?","db.movies.find({""title"":""The Saphead"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What is the production company behind the movie x?,"db.movies.find({""title"": ""Daughter of Shanghai""}, { ""tomatoes.production"": 1})" +What is the Rotten Tomatoes rating for Abbas Kiarostami's highest-rated movie?,"db.movies.find({""directors"": ""Abbas Kiarostami"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +"what was the release date of the movie I Was Born, But...?","db.movies.find({""title"": ""I Was Born, But...""}, {""released"": 1})" +who stars in The Four Horsemen of the Apocalypse?,"db.movies.find({""title"": ""The Four Horsemen of the Apocalypse""}, {""cast"": 1})" +Can you provide a detailed summary of the movie Cops plot?,"db.movies.find({ ""title"": ""Cops"" }, { ""fullplot"": 1})" +What is the production company behind the movie x?,"db.movies.find({""title"": ""Grand Hotel""}, { ""tomatoes.production"": 1})" +Which films did Wes Anderson direct in the 1990s?,"db.movies.find({""directors"": 'Wes Anderson', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +Can you provide more information about the IMDb rating for the movie The Life of Emile Zola ?,"db.movies.find({""title"":""The Life of Emile Zola""}, {""imdb"":1})" +"In the database, what is the usual rating given to Clint Eastwood's movies on average?","db.movies.aggregate([{""$match"": {""directors"":""Clint Eastwood""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +"Has the movie Our Hospitality won any awards? If so, which ones?","db.movies.find({""title"":""Our Hospitality"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What is the Tomatometer score of the movie Smilin' Through ?,"db.movies.find({ ""title"": ""Smilin' Through"" },{ ""tomatoes.critic.meter"": 1 })" +the movie Popeye the Sailor Meets Sindbad the Sailor starred who?,"db.movies.find({""title"": ""Popeye the Sailor Meets Sindbad the Sailor""}, {""cast"": 1})" +what genre is the movie Ella Cinders?,"db.movies.find({""title"": ""Ella Cinders""}, {""genres"": 1})" +What is the consensus among critics about the movie Broken Blossoms or The Yellow Man and the Girl?,"db.movies.find({""title"": ""Broken Blossoms or The Yellow Man and the Girl""}, { ""tomatoes.consensus"": 1})" +How many audience reviews have been submitted for the movie A Free Soul?,"db.movies.find({ ""title"": ""A Free Soul"" }, { ""tomatoes.viewer.numReviews"": 1 })" +How did the audience and critics receive the film King Solomon's Mines?,"db.movies.find({""title"":""King Solomon's Mines""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what year was The Fall of the House of Usher released?,"db.movies.find({""title"": ""The Fall of the House of Usher""}, {""year"": 1})" +whats the total runtime of all the movies directed by Tim Burton ?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Tim Burton"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +What is the consensus among critics about the movie The Iron Horse ?,"db.movies.find({""title"": ""The Iron Horse""}, {""tomatoes.consensus"": 1})" +How many awards did the movie win The Fall of the House of Usher ?,"db.movies.find({ ""title"": ""The Fall of the House of Usher"" },{ ""awards.wins"": 1 })" +What is the consensus among critics about the movie Murders in the Rue Morgue?,"db.movies.find({""title"": ""Murders in the Rue Morgue""}, { ""tomatoes.consensus"": 1})" +What is the full plot summary of the movie Lady Windermere's Fan ?,"db.movies.find({""title"": ""Lady Windermere's Fan""}, {""plot"": 1})" +What is the full plot summary of the movie The Cheat ?,"db.movies.find({""title"": ""The Cheat""}, {""plot"": 1})" +How did the audience and critics receive the movie Daughter of Shanghai?,"db.movies.find({""title"":""Daughter of Shanghai""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what is the movie Sunrise about in details?,"db.movies.find({""title"": ""Sunrise""}, {""fullplot"": 1})" +who stars in the film Flash Gordon?,"db.movies.find({""title"": ""Flash Gordon""}, {""cast"": 1})" +who wrote the film Romeo and Juliet?,"db.movies.find({""title"": ""Romeo and Juliet""}, {""writers"": 1})" +the movie The Life of Emile Zola starred which actors?,"db.movies.find({""title"": ""The Life of Emile Zola""}, {""cast"": 1})" +who directed the film The Invisible Ray?,"db.movies.find({""title"": ""The Invisible Ray""}, {""directors"": 1})" +What is the box office revenue of the movie The Prisoner of Zenda in dollars?,"db.movies.find({""title"": ""The Prisoner of Zenda""}, {""tomatoes.boxOffice"": 1})" +7th Heaven is a movie written by this person?,"db.movies.find({""title"": ""7th Heaven""}, {""writers"": 1})" +what genre is the movie The Story of a Cheat?,"db.movies.find({""title"": ""The Story of a Cheat""}, {""genres"": 1})" +what genre is the film Topaze?,"db.movies.find({""title"": ""Topaze""}, {""genres"": 1})" +What is the imdbID and year of release for the movie with a title of 'Harvest'?,"db.movies.find({""title"": ""Harvest""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +what is The Pearls of the Crown imdb rating?,"db.movies.find({""title"": ""The Pearls of the Crown""}, {""imdb.rating"": 1})" +What is the rating of the movie Lenin in October ?,"db.movies.find({ ""title"": ""Lenin in October"" }, { ""rated"": 1})" +What is the audience rating of the movie The Son of Kong ?,"db.movies.find({ ""title"": ""The Son of Kong"" },{ ""tomatoes.viewer.rating"": 1 })" +What is the freshness score of the movie The Iron Horse on Rotten Tomatoes?,"db.movies.find({""title"": ""The Iron Horse""}, {""tomatoes.fresh"": 1})" +which actor appeared in most of the movies directed by Louis Malle?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Louis Malle"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What is the consensus among critics about the movie The Barretts of Wimpole Street ?,"db.movies.find({""title"": ""The Barretts of Wimpole Street""}, {""tomatoes.consensus"": 1})" +Which actor has the highest count of appearances in Quentin Tarantino's directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Quentin Tarantino"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What is the IMDB rating of the movie The 3 Penny Opera ?,"db.movies.find({""title"": ""The 3 Penny Opera""}, { ""imdb.rating"": 1})" +What languages are spoken in the movie David Copperfield ?,"db.movies.find({""title"": ""David Copperfield""}, { ""languages"": 1})" +Who are the main actors in A Free Soul ?,"db.movies.find({ ""title"": ""A Free Soul"" }, { ""cast"": 1})" +what was the genre of Les vampires?,"db.movies.find({""title"": ""Les vampires""}, {""genres"": 1})" +what sort of film is The Band Concert?,"db.movies.find({""title"": ""The Band Concert""}, {""genres"": 1})" +who's the director of The Thin Man?,"db.movies.find({""title"": ""The Thin Man""}, {""directors"": 1})" +What is the production company of In Old Arizona?,"db.movies.find({""title"":""In Old Arizona""}, {""tomatoes.production"":1})" +who wrote the screenplay for the film Beau Geste?,"db.movies.aggregate([ { ""$match"": { ""title"":""Beau Geste""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +She was directed by who?,"db.movies.find({""title"": ""She""}, {""directors"": 1})" +What are the names of all the actors who starred in the movie 'In Old Arizona'?,"db.movies.find({""title"": ""In Old Arizona""}, {""cast"": 1})" +What is the name of the movie that David Lynch directed that has the longest duration?,"db.movies.find({""directors"":""David Lynch""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +what genre is the movie Theodora Goes Wild?,"db.movies.find({""title"": ""Theodora Goes Wild""}, {""genres"": 1})" +How many audience reviews have been submitted for the movie Foolish Wives?,"db.movies.find({ ""title"": ""Foolish Wives"" }, { ""tomatoes.viewer.numReviews"": 1 })" +who is the director for The Saphead?,"db.movies.find({""title"": ""The Saphead""}, {""directors"": 1})" +What is the audience rating of the movie Footlight Parade ?,"db.movies.find({ ""title"": ""Footlight Parade"" },{ ""tomatoes.viewer.rating"": 1 })" +What is the IMDb rating for the movie The Perils of Pauline ?,"db.movies.find({""title"":""The Perils of Pauline""}, {""imdb.rating"":1})" +who wrote the film Make Way for Tomorrow?,"db.movies.find({""title"": ""Make Way for Tomorrow""}, {""writers"": 1})" +"Has Four Sons won any awards? If so, which ones?","db.movies.find({""title"":""Four Sons"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +who wrote the screenplay for Comradeship?,"db.movies.aggregate([ { ""$match"": { ""title"":""Comradeship""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +who produced Follow the Fleet?,"db.movies.find({""title"":""Follow the Fleet""}, {""tomatoes.production"":1})" +"Make Way for Tomorrow, was written by who?","db.movies.find({""title"": ""Make Way for Tomorrow""}, {""writers"": 1})" +What is the imdbID and genre of the movie 'The Power and the Glory'?,"db.movies.find({""title"": ""The Power and the Glory""}, {""imdb.id"": 1, ""genres"": 1, ""_id"": 0})" +What are the countries associated with the movie Upstream ?,"db.movies.find({""title"": ""Upstream""}, {""countries"": 1})" +what year was The Emperor Jones released?,"db.movies.find({""title"": ""The Emperor Jones""}, {""year"": 1})" +Was the movie Footlight Parade well received by audiences and critics?,"db.movies.find({""title"":""Footlight Parade""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +"the movie Tol'able David, was written by who?","db.movies.find({""title"": ""Tol'able David""}, {""writers"": 1})" +who are the actors in the movie The Edge of the World?,"db.movies.find({""title"": ""The Edge of the World""}, {""cast"": 1})" +Who is the lead actor of the movie The Gilded Lily ?,"db.movies.find({""title"": ""The Gilded Lily""}, {""cast"":{""$slice"": 1},""title"":1})" +What is the IMDb rating for The Mummy?,"db.movies.find({""title"": ""The Mummy""}, {""imdb.rating"": 1})" +Was the movie Scrooge well received by audiences?,"db.movies.find({""title"":""Scrooge""}, {""tomatoes.viewer"":1})" +When was the information last updated for the movie The Poor Little Rich Girl ?,"db.movies.find({ ""title"": ""The Poor Little Rich Girl"" },{ ""lastupdated"": 1 })" +how has Four Sons been recieved by critics and audience?,"db.movies.find({""title"":""Four Sons""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +who wrote the screenplay for the movie He Who Gets Slapped?,"db.movies.aggregate([ { ""$match"": { ""title"":""He Who Gets Slapped""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +How long is the runtime of the movie She Done Him Wrong ?,"db.movies.find({""title"":""She Done Him Wrong""}, {""runtime"":1})" +What was the release date for the movie The Blood of a Poet?,"db.movies.find({""title"":""The Blood of a Poet""}, {""released"":1})" +what is the full plot for the film King Solomon's Mines?,"db.movies.find({""title"": ""King Solomon's Mines""}, {""fullplot"": 1})" +Was the movie The Great Train Robbery well received by audiences and critics?,"db.movies.find({""title"":""The Great Train Robbery""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what is the movie Under the Roofs of Paris about?,"db.movies.find({""title"": ""Under the Roofs of Paris""}, {""plot"": 1})" +When was the information last updated for the movie The Wedding March ?,"db.movies.find({ ""title"": ""The Wedding March"" },{ ""lastupdated"": 1 })" +Can you give me a brief summary of the movie Civilization plot?,"db.movies.find({""title"":""Civilization""}, {""plot"":1})" +How many reviews did the movie Civilization receive on Rotten Tomatoes?,"db.movies.find({""title"":""Civilization""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +What type of movie is Tarzan and His Mate ?,"db.movies.find({""title"":""Tarzan and His Mate""}, {""genres"":1})" +who are the actors in Naughty Marietta?,"db.movies.find({""title"": ""Naughty Marietta""}, {""cast"": 1})" +What is the rating of the movie Tarzan the Ape Man on IMDb?,"db.movies.find({""title"":""Tarzan the Ape Man""}, {""imdb.rating"":1})" +When was the movie Zoo in Budapest released?,"db.movies.find({""title"":""Zoo in Budapest""}, {""released"":1})" +What is the mean rating for Federico Fellini movies in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Federico Fellini""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +How many nominations did the movie The Ghost Goes West receive?,"db.movies.find({""title"":""The Ghost Goes West""}, {""awards.nominations"":1})" +When was the information about the movie Wife! Be Like a Rose! last updated?,"db.movies.find({ ""title"": ""Wife! Be Like a Rose!"" }, { ""lastupdated"": 1})" +What is the critical reception of the movie Sisters of the Gion?,"db.movies.find({""title"":""Sisters of the Gion""}, {""tomatoes.critic"":1})" +What is the imdbID and year of release for the movie with a title of 'Red Dust'?,"db.movies.find({""title"": ""Red Dust""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +what genre is the film Three Ages?,"db.movies.find({""title"": ""Three Ages""}, {""genres"": 1})" +who produced Ella Cinders?,"db.movies.find({""title"":""Ella Cinders""}, {""tomatoes.production"":1})" +who wrote the movie Shall We Dance?,"db.movies.find({""title"": ""Shall We Dance""}, {""writers"": 1})" +What is the production company of Love Me Tonight?,"db.movies.find({""title"":""Love Me Tonight""}, {""tomatoes.production"":1})" +What are the countries associated with the movie A Damsel in Distress ?,"db.movies.find({""title"": ""A Damsel in Distress""}, {""countries"": 1})" +What is the title of the movie with the longest duration that Andrei Tarkovsky directed?,"db.movies.find({""directors"":""Andrei Tarkovsky""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +"Has The Invisible Man won any awards? If so, which ones?","db.movies.find({""title"":""The Invisible Man"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What is the imdbID and year of release for the movie with a title of 'Wife! Be Like a Rose!'?,"db.movies.find({""title"": ""Wife! Be Like a Rose!""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +what was the genre of the film The Passion of Joan of Arc?,"db.movies.find({""title"": ""The Passion of Joan of Arc""}, {""genres"": 1})" +When was the movie Captains Courageous released in theaters?,"db.movies.find({""title"": ""Captains Courageous""}, {""released"": 1})" +I'm curious about the films that were directed by Jean Renoir. Can you name them?,"db.movies.find({""directors"": ""Jean Renoir""},{""title"":1})" +What is the name of the director and cast for the movie 'Hallelujah'?,"db.movies.find({""title"": ""Hallelujah""}, {""directors"": 1, ""cast"": 1, ""_id"": 0})" +what is The Great Train Robbery description?,"db.movies.find({""title"": ""The Great Train Robbery""}, {""plot"": 1})" +What is the box office revenue of the movie Intolerance: Love's Struggle Throughout the Ages ?,"db.movies.find({""title"": ""Intolerance: Love's Struggle Throughout the Ages""}, { ""tomatoes.boxOffice"": 1})" +Was the movie They Won't Forget well received by audiences and critics?,"db.movies.find({""title"":""They Won't Forget""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what kind of movie is Foolish Wives?,"db.movies.find({""title"": ""Foolish Wives""}, {""genres"": 1})" +What is the runtime of the movie The Crusades ?,"db.movies.find({""title"": ""The Crusades""}, { ""runtime"": 1})" +what kind of film is The Red Head?,"db.movies.find({""title"": ""The Red Head""}, {""genres"": 1})" +which company produced the movie Dames?,"db.movies.find({""title"":""Dames""}, {""tomatoes.production"":1})" +what was the release date of the film 42nd Street?,"db.movies.find({""title"": ""42nd Street""}, {""released"": 1})" +What is the IMDB rating of the movie The Red Head ?,"db.movies.find({""title"": ""The Red Head""}, { ""imdb.rating"": 1})" +the film L'opèra de quat'sous was directed by who?,"db.movies.find({""title"": ""L'opèra de quat'sous""}, {""directors"": 1})" +who is listed as director for The Blue Bird?,"db.movies.find({""title"": ""The Blue Bird""}, {""directors"": 1})" +What is the plot summary of the movie Mèdchen in Uniform ?,"db.movies.find({ ""title"": ""Mèdchen in Uniform"" }, { ""plot"": 1})" +What is the box office revenue of the movie The Black Cat ?,"db.movies.find({""title"": ""The Black Cat""}, { ""tomatoes.boxOffice"": 1})" +"the movie The Iron Horse, was written by who?","db.movies.find({""title"": ""The Iron Horse""}, {""writers"": 1})" +How many reviews have been submitted for the movie Fury on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Fury"" },{ ""tomatoes.viewer.numReviews"": 1 })" +What is the critical reception of the movie City Streets?,"db.movies.find({""title"":""City Streets""}, {""tomatoes.critic"":1})" +What is the imdbID and genre of the movie 'It's a Gift'?,"db.movies.find({""title"": ""It's a Gift""}, {""imdb.id"": 1, ""genres"": 1, ""_id"": 0})" +who are the actors in The 39 Steps?,"db.movies.find({""title"": ""The 39 Steps""}, {""cast"": 1})" +what is Comradeship imdb rating?,"db.movies.find({""title"": ""Comradeship""}, {""imdb.rating"": 1})" +What is the plot summary of the movie Asphalt ?,"db.movies.find({ ""title"": ""Asphalt"" }, { ""plot"": 1})" +The Thief of Bagdad is a film written by this person?,"db.movies.find({""title"": ""The Thief of Bagdad""}, {""writers"": 1})" +How many nominations did the movie Intolerance: Love's Struggle Throughout the Ages receive?,"db.movies.find({""title"":""Intolerance: Love's Struggle Throughout the Ages""}, {""awards.nominations"":1})" +which company produced the film Berkeley Square?,"db.movies.find({""title"":""Berkeley Square""}, {""tomatoes.production"":1})" +What is the consensus among critics about the movie Secret Agent?,"db.movies.find({""title"": ""Secret Agent""}, { ""tomatoes.consensus"": 1})" +who is listed as director for Man of Aran?,"db.movies.find({""title"": ""Man of Aran""}, {""directors"": 1})" +who is the writer of the movie The Story of a Cheat?,"db.movies.find({""title"": ""The Story of a Cheat""}, {""writers"": 1})" +who stars in Bride of Frankenstein?,"db.movies.find({""title"": ""Bride of Frankenstein""}, {""cast"": 1})" +Who are the writers of the movie The Italian ?,"db.movies.find({""title"": ""The Italian""}, { ""writers"": 1})" +What is the language of the movie The Divorcee?,"db.movies.find({""title"":""The Divorcee""}, {""languages"":1})" +who is the director of The Wind?,"db.movies.find({""title"": ""The Wind""}, {""directors"": 1})" +Who are the writers of the movie Theodora Goes Wild ?,"db.movies.find({""title"": ""Theodora Goes Wild""}, { ""writers"": 1})" +What is the critical reception of the movie The Black Pirate?,"db.movies.find({""title"":""The Black Pirate""}, {""tomatoes.critic"":1})" +What languages are spoken in the movie The Thin Man ?,"db.movies.find({""title"": ""The Thin Man""}, { ""languages"": 1})" +Who is the lead actor of the movie The Power and the Glory ?,"db.movies.find({""title"": ""The Power and the Glory""}, {""cast"":{""$slice"": 1},""title"":1})" +what is the movie The Band Concert about in details?,"db.movies.find({""title"": ""The Band Concert""}, {""fullplot"": 1})" +which company produced the film Dames?,"db.movies.find({""title"":""Dames""}, {""tomatoes.production"":1})" +what is the movie White Shadows imdb rating?,"db.movies.find({""title"": ""White Shadows""}, {""imdb.rating"": 1})" +Which cinematic genres were directed by David Fincher?,"db.movies.distinct(""genres"", { ""directors"": ""David Fincher"" })" +What languages are spoken in the movie Earth?,"db.movies.find({""title"":""Earth""}, {""languages"":1})" +What is the audience rating of the movie Night Must Fall ?,"db.movies.find({ ""title"": ""Night Must Fall"" },{ ""tomatoes.viewer.rating"": 1 })" +What is the website associated with the movie The Broadway Melody on Rotten Tomatoes?,"db.movies.find({""title"": ""The Broadway Melody""}, {""tomatoes.website"": 1})" +who directed Wings?,"db.movies.find({""title"": ""Wings""}, {""directors"": 1})" +who stars in One Hundred Men and a Girl?,"db.movies.find({""title"": ""One Hundred Men and a Girl""}, {""cast"": 1})" +what sort of film is Hallelujah?,"db.movies.find({""title"": ""Hallelujah""}, {""genres"": 1})" +what was the genre of the film She Done Him Wrong?,"db.movies.find({""title"": ""She Done Him Wrong""}, {""genres"": 1})" +what is the film The Italian about?,"db.movies.find({""title"": ""The Italian""}, {""plot"": 1})" +which company produced the film Nanook of the North?,"db.movies.find({""title"":""Nanook of the North""}, {""tomatoes.production"":1})" +Can you provide more information about the languages spoken in the movie San Francisco ?,"db.movies.find({""title"":""San Francisco""}, {""languages"":1})" +When was the information about the movie Curly Top last updated?,"db.movies.find({ ""title"": ""Curly Top"" }, { ""lastupdated"": 1})" +what is the full plot for the film This Is My Affair?,"db.movies.find({""title"": ""This Is My Affair""}, {""fullplot"": 1})" +Can you tell me the total count of films that Francois Truffaut has directed?,"db.movies.countDocuments({""directors"":""Francois Truffaut""})" +Who are the actors in the movie Now or Never?,"db.movies.find({""title"":""Now or Never""}, {""cast"":1})" +Which David Fincher film has the shortest duration?,"db.movies.find({""directors"":""David Fincher""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +who acted in the movie Berkeley Square?,"db.movies.find({""title"": ""Berkeley Square""}, {""cast"": 1})" +who acted in the movie The Champ?,"db.movies.find({""title"": ""The Champ""}, {""cast"": 1})" +What is the title of the movie with the shortest duration that Stanley Kubrick directed?,"db.movies.find({""directors"":""Stanley Kubrick""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +What languages are spoken in the movie Man with a Movie Camera ?,"db.movies.find({""title"": ""Man with a Movie Camera""}, { ""languages"": 1})" +who is listed as director for Gold Diggers of 1933?,"db.movies.find({""title"": ""Gold Diggers of 1933""}, {""directors"": 1})" +who is the director of Topaze?,"db.movies.find({""title"": ""Topaze""}, {""directors"": 1})" +What is the movie Top Hat rating?,"db.movies.find({""title"":""Top Hat""}, {""rated"":1})" +How many nominations did the movie Now or Never receive?,"db.movies.find({""title"":""Now or Never""}, {""awards.nominations"":1})" +How many award nominations did the movie receive King Kong ?,"db.movies.find({ ""title"": ""King Kong"" },{ ""awards.nominations"": 1 })" +what year was Snow White and the Seven Dwarfs released?,"db.movies.find({""title"": ""Snow White and the Seven Dwarfs""}, {""year"": 1})" +When was the movie Napoleon released?,"db.movies.find({""title"":""Napoleon""}, {""released"":1})" +who is the director for Tarzan and His Mate?,"db.movies.find({""title"": ""Tarzan and His Mate""}, {""directors"": 1})" +the movie Go West was directed by who?,"db.movies.find({""title"": ""Go West""}, {""directors"": 1})" +What is the text representation of the awards won and nominations received by the movie The Broadway Melody?,"db.movies.find({""title"": ""The Broadway Melody""}, { ""awards.text"": 1})" +how many awards did the film Naughty Marietta win?,"db.movies.find({""title"":""Naughty Marietta""}, {""awards.wins"":1})" +What is the running time of the movie A Night at the Opera?,"db.movies.find({""title"":""A Night at the Opera""}, {""runtime"":1})" +who starred in the movie The Italian?,"db.movies.find({""title"": ""The Italian""}, {""cast"": 1})" +what genre of movie is Lonesome?,"db.movies.find({""title"": ""Lonesome""}, {""genres"": 1})" +What is the production company of the film Scrooge?,"db.movies.find({""title"":""Scrooge""}, {""tomatoes.production"":1})" +What is the IMDb rating for the movie These Three ?,"db.movies.find({""title"":""These Three""}, {""imdb.rating"":1})" +what is the genre of The Big House?,"db.movies.find({""title"": ""The Big House""}, {""genres"": 1})" +"The Son of Kong, is written by who?","db.movies.find({""title"": ""The Son of Kong""}, {""writers"": 1})" +Can you tell me which Clint Eastwood movie has the longest length?,"db.movies.find({""directors"":""Clint Eastwood""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +what is the full plot for the movie The Devil to Pay!?,"db.movies.find({""title"": ""The Devil to Pay!""}, {""fullplot"": 1})" +What is the production company behind the movie x?,"db.movies.find({""title"": ""My Man Godfrey""}, { ""tomatoes.production"": 1})" +what was the genre of the film Freaks?,"db.movies.find({""title"": ""Freaks""}, {""genres"": 1})" +who stars in the film Rembrandt?,"db.movies.find({""title"": ""Rembrandt""}, {""cast"": 1})" +What is the box office revenue of the movie Safety Last! ?,"db.movies.find({""title"": ""Safety Last!""}, { ""tomatoes.boxOffice"": 1})" +the movie Les Misèrables starred who?,"db.movies.find({""title"": ""Les Misèrables""}, {""cast"": 1})" +How did the audience and critics receive the movie Under the Roofs of Paris?,"db.movies.find({""title"":""Under the Roofs of Paris""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the full plot summary of the movie The Son of the Sheik ?,"db.movies.find({""title"": ""The Son of the Sheik""}, {""plot"": 1})" +The Red Head is written by this person?,"db.movies.find({""title"": ""The Red Head""}, {""writers"": 1})" +the film My Man Godfrey starred who?,"db.movies.find({""title"": ""My Man Godfrey""}, {""cast"": 1})" +What is the Tomatometer score of the movie Traffic in Souls ?,"db.movies.find({ ""title"": ""Traffic in Souls"" },{ ""tomatoes.critic.meter"": 1 })" +What is the percentage of positive reviews among critics for the movie Sons of the Desert ?,"db.movies.find({ ""title"": ""Sons of the Desert"" },{ ""tomatoes.critic.meter"": 1 })" +what is Sherlock Jr. imdb rating?,"db.movies.find({""title"": ""Sherlock Jr.""}, {""imdb.rating"": 1})" +what was the genre of the movie Seven Chances?,"db.movies.find({""title"": ""Seven Chances""}, {""genres"": 1})" +What is the box office revenue of the movie For Heaven's Sake ?,"db.movies.find({""title"": ""For Heaven's Sake""}, { ""tomatoes.boxOffice"": 1})" +What are the names of all the actors who starred in the movie 'Grand Hotel'?,"db.movies.find({""title"": ""Grand Hotel""}, {""cast"": 1})" +How many audience reviews have been submitted for the movie Viva Villa! ?,"db.movies.find({ ""title"": ""Viva Villa!"" },{ ""tomatoes.viewer.numReviews"": 1 })" +How many votes did the movie Baby Face receive on IMDB?,"db.movies.find({""title"": ""Baby Face""}, { ""imdb.votes"": 1})" +How did the audience and critics receive the movie The Prisoner of Zenda?,"db.movies.find({""title"":""The Prisoner of Zenda""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the production company of the movie Queen Kelly?,"db.movies.find({""title"":""Queen Kelly""}, {""tomatoes.production"":1})" +who starred in the film Nanook of the North?,"db.movies.find({""title"": ""Nanook of the North""}, {""cast"": 1})" +"The Crusades, is written by who?","db.movies.find({""title"": ""The Crusades""}, {""writers"": 1})" +Who are the writers of the movie 7th Heaven ?,"db.movies.find({""title"": ""7th Heaven""}, { ""writers"": 1})" +How did the audience and critics receive the film The Black Pirate?,"db.movies.find({""title"":""The Black Pirate""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +How many awards did the movie win Civilization ?,"db.movies.find({ ""title"": ""Civilization"" },{ ""awards.wins"": 1 })" +What is the IMDb rating for the movie Les Misèrables ?,"db.movies.find({""title"":""Les Misèrables""}, {""imdb.rating"":1})" +How many votes did the movie The Devil Is a Woman receive on IMDB?,"db.movies.find({""title"": ""The Devil Is a Woman""}, { ""imdb.votes"": 1})" +Can you provide a longer version of the movie Greed plot?,"db.movies.find({""title"":""Greed""}, {""fullplot"":1})" +which person wrote the movie King of Jazz?,"db.movies.find({""title"": ""King of Jazz""}, {""writers"": 1})" +who was the movie A Night at the Opera written by?,"db.movies.find({""title"": ""A Night at the Opera""}, {""writers"": 1})" +What are the countries associated with the movie Maria Chapdelaine ?,"db.movies.find({""title"": ""Maria Chapdelaine""}, {""countries"": 1})" +who produced Der Kaiser von Kalifornien?,"db.movies.find({""title"":""Der Kaiser von Kalifornien""}, {""tomatoes.production"":1})" +What is the production company behind the movie Gold Diggers of 1935 ?,"db.movies.find({""title"": ""Gold Diggers of 1935""}, {""tomatoes.production"": 1})" +Who holds the record for the most appearances in movies directed by David Lynch?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""David Lynch"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +what was the release date of the film They Won't Forget?,"db.movies.find({""title"": ""They Won't Forget""}, {""released"": 1})" +how many awards did the movie Folies Bergère de Paris win?,"db.movies.find({""title"":""Folies Bergère de Paris""}, {""awards.wins"":1})" +who wrote the screenplay for The Four Horsemen of the Apocalypse?,"db.movies.aggregate([ { ""$match"": { ""title"":""The Four Horsemen of the Apocalypse""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +What was the release date for the movie City Lights?,"db.movies.find({""title"":""City Lights""}, {""released"":1})" +who stars in Three Ages?,"db.movies.find({""title"": ""Three Ages""}, {""cast"": 1})" +What is the name of the Alain Resnais-directed movie with the least runtime?,"db.movies.find({""directors"":""Alain Resnais""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +what was the release year of the film Mutiny on the Bounty?,"db.movies.find({""title"": ""Mutiny on the Bounty""}, {""year"": 1})" +What is the running time of The Band Concert?,"db.movies.find({""title"":""The Band Concert""}, {""runtime"":1})" +Was the movie The Ace of Hearts well received by audiences and critics?,"db.movies.find({""title"":""The Ace of Hearts""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +Which actor has the highest number of appearances in movies directed by Alfred Hitchcock?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Alfred Hitchcock"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What is the running time of the film L'opèra de quat'sous?,"db.movies.find({""title"":""L'opèra de quat'sous""}, {""runtime"":1})" +"Nanook of the North, is written by who?","db.movies.find({""title"": ""Nanook of the North""}, {""writers"": 1})" +the movie Clash of the Wolves was directed by who?,"db.movies.find({""title"": ""Clash of the Wolves""}, {""directors"": 1})" +"Has the film The Sin of Madelon Claudet won any awards? If so, which ones?","db.movies.find({""title"":""The Sin of Madelon Claudet"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +How many wins did the movie The Navigator receive?,"db.movies.find({""title"":""The Navigator""}, {""awards.wins"":1})" +How many nominations did the movie A Midsummer Night's Dream receive?,"db.movies.find({""title"":""A Midsummer Night's Dream""}, {""awards.nominations"":1})" +who wrote the screenplay for White Shadows?,"db.movies.aggregate([ { ""$match"": { ""title"":""White Shadows""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +Pandora's Box is a movie written by this person?,"db.movies.find({""title"": ""Pandora's Box""}, {""writers"": 1})" +What is the language of the movie Storm Over Asia?,"db.movies.find({""title"":""Storm Over Asia""}, {""languages"":1})" +who produced the movie The Wedding Night?,"db.movies.find({""title"":""The Wedding Night""}, {""tomatoes.production"":1})" +who wrote The Birth of a Nation?,"db.movies.find({""title"": ""The Birth of a Nation""}, {""writers"": 1})" +can you describe the plot of Little Miss Marker?,"db.movies.find({""title"": ""Little Miss Marker""}, {""plot"": 1})" +Who are the actors that appear in the movie The Man Who Knew Too Much ?,"db.movies.find({ ""title"": ""The Man Who Knew Too Much"" },{ ""cast"": 1 })" +who starred in the movie Man of Aran?,"db.movies.find({""title"": ""Man of Aran""}, {""cast"": 1})" +The Saphead is a film written by this person?,"db.movies.find({""title"": ""The Saphead""}, {""writers"": 1})" +what is The Saphead imdb rating?,"db.movies.find({""title"": ""The Saphead""}, {""imdb.rating"": 1})" +who was the movie Pèpè le Moko written by?,"db.movies.find({""title"": ""Pèpè le Moko""}, {""writers"": 1})" +Frankenstein was directed by who?,"db.movies.find({""title"": ""Frankenstein""}, {""directors"": 1})" +how has Romance been recieved by critics and audience?,"db.movies.find({""title"":""Romance""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what type of movie is The Edge of the World?,"db.movies.find({""title"": ""The Edge of the World""}, {""genres"": 1})" +what is the film The Unknown about?,"db.movies.find({""title"": ""The Unknown""}, {""plot"": 1})" +What is the IMDb ID for the movie Roberta?,"db.movies.find({""title"":""Roberta""}, {""imdb.id"":1})" +When was the movie Romeo and Juliet released?,"db.movies.find({""title"":""Romeo and Juliet""}, {""released"":1})" +How did the audience and critics receive the movie Lady Windermere's Fan?,"db.movies.find({""title"":""Lady Windermere's Fan""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +How many awards did the movie win Les Misèrables ?,"db.movies.find({ ""title"": ""Les Misèrables"" },{ ""awards.wins"": 1 })" +who directed the film The Four Horsemen of the Apocalypse?,"db.movies.find({""title"": ""The Four Horsemen of the Apocalypse""}, {""directors"": 1})" +What is the MPAA rating of the movie Our Hospitality?,"db.movies.find({""title"":""Our Hospitality""}, {""rated"":1})" +How many reviews did the movie Payment Deferred receive on Rotten Tomatoes?,"db.movies.find({""title"":""Payment Deferred""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +which company produced the movie The Hurricane?,"db.movies.find({""title"":""The Hurricane""}, {""tomatoes.production"":1})" +How many nominations did the movie Wild and Woolly receive?,"db.movies.find({""title"":""Wild and Woolly""}, {""awards.nominations"":1})" +What is the consensus among critics about the movie Pandora's Box?,"db.movies.find({""title"": ""Pandora's Box""}, { ""tomatoes.consensus"": 1})" +who was The Song of Night directed by?,"db.movies.find({""title"": ""The Song of Night""}, {""directors"": 1})" +Who are the writers of the movie The Wedding Night ?,"db.movies.find({""title"": ""The Wedding Night""}, { ""writers"": 1})" +The Immigrant is a movie written by this person?,"db.movies.find({""title"": ""The Immigrant""}, {""writers"": 1})" +What is the running time of the movie Red Dust?,"db.movies.find({""title"":""Red Dust""}, {""runtime"":1})" +What is the production company of the movie Romeo and Juliet?,"db.movies.find({""title"":""Romeo and Juliet""}, {""tomatoes.production"":1})" +what is the genre of The Son of Kong?,"db.movies.find({""title"": ""The Son of Kong""}, {""genres"": 1})" +How did the audience and critics receive Stage Door?,"db.movies.find({""title"":""Stage Door""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +How many comments have been posted by users on the movie Children in the Wind's page on the Mflix platform?,"db.movies.find({ ""title"": ""Children in the Wind"" }, { ""num_mflix_comments"": 1 })" +"the film Three Ages, was written by who?","db.movies.find({""title"": ""Three Ages""}, {""writers"": 1})" +the movie The Divine Lady starred who?,"db.movies.find({""title"": ""The Divine Lady""}, {""cast"": 1})" +what type of film is Gertie the Dinosaur?,"db.movies.find({""title"": ""Gertie the Dinosaur""}, {""genres"": 1})" +What is the IMDb rating for Wife! Be Like a Rose!?,"db.movies.find({""title"": ""Wife! Be Like a Rose!""}, {""imdb.rating"": 1})" +What is the production company of King of Jazz?,"db.movies.find({""title"":""King of Jazz""}, {""tomatoes.production"":1})" +What is the full plot summary of the movie The Garden of Allah ?,"db.movies.find({""title"": ""The Garden of Allah""}, {""plot"": 1})" +"Has the film Flying Down to Rio won any awards? If so, which ones?","db.movies.find({""title"":""Flying Down to Rio"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What is the IMDb ID for the movie è Nous la Libertè?,"db.movies.find({""title"":""è Nous la Libertè""}, {""imdb.id"":1})" +what was the release year of Top Hat?,"db.movies.find({""title"": ""Top Hat""}, {""year"": 1})" +who acted in the movie The Phantom of the Opera?,"db.movies.find({""title"": ""The Phantom of the Opera""}, {""cast"": 1})" +Who are the main actors/actresses in the movie Freaks?,"db.movies.find({""title"":""Freaks""}, {""cast"":1})" +When was the Tomatometer score and other Tomato-related information last updated for the movie This Is My Affair?,"db.movies.find({""title"": ""This Is My Affair""}, { ""tomatoes.lastUpdated"": 1})" +When was the information last updated for the movie The Jazz Singer ?,"db.movies.find({ ""title"": ""The Jazz Singer"" },{ ""lastupdated"": 1 })" +Who are the main actors in Carnival in Flanders ?,"db.movies.find({ ""title"": ""Carnival in Flanders"" }, { ""cast"": 1})" +What is the IMDb rating for the movie Black Fury?,"db.movies.find({""title"": ""Black Fury""}, {""imdb.rating"": 1})" +who was the writer of the movie The Guardsman?,"db.movies.find({""title"": ""The Guardsman""}, {""writers"": 1})" +What are the most critically acclaimed movies directed by Spike Lee?,"db.movies.find({""directors"": 'Spike Lee', ""imdb.rating"": {""$gt"": 8.5}})" +What is the running time of The Champ?,"db.movies.find({""title"":""The Champ""}, {""runtime"":1})" +Who is the director of the movie Tol'able David?,"db.movies.find({""title"": ""Tol'able David""}, { ""directors"": 1})" +What is the combined duration of all films that Jean Renoir directed?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Jean Renoir"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +the director of Swedenhielms Family was?,"db.movies.find({""title"": ""Swedenhielms Family""}, {""directors"": 1})" +What are the genres associated with the movie The Fall of the House of Usher ?,"db.movies.find({ ""title"": ""The Fall of the House of Usher"" }, { ""genres"": 1})" +What is the Rotten Tomatoes meter rating for the movie Snow White and the Seven Dwarfs ?,"db.movies.find({""title"":""Snow White and the Seven Dwarfs""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +what sort of movie is Gertie the Dinosaur?,"db.movies.find({""title"": ""Gertie the Dinosaur""}, {""genres"": 1})" +what is Sons of the Desert imdb rating?,"db.movies.find({""title"": ""Sons of the Desert""}, {""imdb.rating"": 1})" +What is the box office revenue of the movie Safety Last! in dollars?,"db.movies.find({""title"": ""Safety Last!""}, {""tomatoes.boxOffice"": 1})" +who produced the film Final Accord?,"db.movies.find({""title"":""Final Accord""}, {""tomatoes.production"":1})" +What is the name of the director and cast for the movie 'A Damsel in Distress'?,"db.movies.find({""title"": ""A Damsel in Distress""}, {""directors"": 1, ""cast"": 1, ""_id"": 0})" +How does the movie Traffic in Souls rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Traffic in Souls"" },{ ""tomatoes.critic.meter"": 1 })" +the film Westfront 1918 starred which actors?,"db.movies.find({""title"": ""Westfront 1918""}, {""cast"": 1})" +Was the movie Wife! Be Like a Rose! well received by audiences?,"db.movies.find({""title"":""Wife! Be Like a Rose!""}, {""tomatoes.viewer"":1})" +can you describe the plot of Camille?,"db.movies.find({""title"": ""Camille""}, {""plot"": 1})" +Can you provide more information about the IMDb rating for the movie Folies Bergère de Paris ?,"db.movies.find({""title"":""Folies Bergère de Paris""}, {""imdb"":1})" +what year was the movie King Solomon's Mines released?,"db.movies.find({""title"": ""King Solomon's Mines""}, {""year"": 1})" +what kind of film is From Hand to Mouth?,"db.movies.find({""title"": ""From Hand to Mouth""}, {""genres"": 1})" +What is the imdbID and year of release for the movie with a title of 'Scrooge'?,"db.movies.find({""title"": ""Scrooge""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +Was the movie Trouble in Paradise well received by audiences and critics?,"db.movies.find({""title"":""Trouble in Paradise""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the IMDb ID for the movie The Good Earth?,"db.movies.find({""title"":""The Good Earth""}, {""imdb.id"":1})" +"Duck Soup, was written by who?","db.movies.find({""title"": ""Duck Soup""}, {""writers"": 1})" +When was the movie Smilin' Through released in theaters?,"db.movies.find({""title"": ""Smilin' Through""}, {""released"": 1})" +Who are the main actors/actresses in the movie Flying Down to Rio?,"db.movies.find({""title"":""Flying Down to Rio""}, {""cast"":1})" +Can you provide more information about the languages spoken in the movie Duck Soup ?,"db.movies.find({""title"":""Duck Soup""}, {""languages"":1})" +the director of The Kid was?,"db.movies.find({""title"": ""The Kid""}, {""directors"": 1})" +who was Der Kaiser von Kalifornien directed by?,"db.movies.find({""title"": ""Der Kaiser von Kalifornien""}, {""directors"": 1})" +What is the complete length of all movies directed by Woody Allen?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Woody Allen"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +who is the director for Masquerade in Vienna?,"db.movies.find({""title"": ""Masquerade in Vienna""}, {""directors"": 1})" +What type of media is Ben-Hur: A Tale of the Christ?,"db.movies.find({ ""title"": ""Ben-Hur: A Tale of the Christ"" }, { ""type"": 1})" +What is the viewer rating for the movie Metropolis on Rotten Tomatoes?,"db.movies.find({""title"":""Metropolis""}, {""tomatoes.viewer.rating"":1})" +how has Battleship Potemkin been recieved by critics and audience?,"db.movies.find({""title"":""Battleship Potemkin""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the movie A Free Soul about? Can you provide a brief summary?,"db.movies.find({""title"":""A Free Soul""}, {""plot"":1})" +What is the Tomatometer score of the movie The Navigator ?,"db.movies.find({ ""title"": ""The Navigator"" },{ ""tomatoes.critic.meter"": 1 })" +the film Clash of the Wolves starred which actors?,"db.movies.find({""title"": ""Clash of the Wolves""}, {""cast"": 1})" +How many audience reviews have been submitted for the movie The 39 Steps ?,"db.movies.find({ ""title"": ""The 39 Steps"" },{ ""tomatoes.viewer.numReviews"": 1 })" +What is the full plot summary of the movie King Kong ?,"db.movies.find({""title"": ""King Kong""}, {""plot"": 1})" +what is the plot for the movie Ella Cinders?,"db.movies.find({""title"": ""Ella Cinders""}, {""plot"": 1})" +What are the genres associated with the movie The New Gulliver ?,"db.movies.find({ ""title"": ""The New Gulliver"" }, { ""genres"": 1})" +What is the rating of the movie Asphalt according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Asphalt""}, {""tomatoes.viewer.rating"": 1})" +who starred in Broken Lullaby?,"db.movies.find({""title"": ""Broken Lullaby""}, {""cast"": 1})" +who is the director of Flesh and the Devil?,"db.movies.find({""title"": ""Flesh and the Devil""}, {""directors"": 1})" +What is the critical reception of the movie The Immigrant?,"db.movies.find({""title"":""The Immigrant""}, {""tomatoes.critic"":1})" +What is the production company behind the movie Seven Chances ?,"db.movies.find({""title"": ""Seven Chances""}, {""tomatoes.production"": 1})" +Can you provide more information about the languages spoken in the movie King of Jazz ?,"db.movies.find({""title"":""King of Jazz""}, {""languages"":1})" +what is Alice Adams imdb rating?,"db.movies.find({""title"": ""Alice Adams""}, {""imdb.rating"": 1})" +what was the release date of the movie Queen Christina?,"db.movies.find({""title"": ""Queen Christina""}, {""released"": 1})" +What languages are spoken in the movie Les Misèrables ?,"db.movies.find({""title"": ""Les Misèrables""}, { ""languages"": 1})" +what is the film Mayerling about in details?,"db.movies.find({""title"": ""Mayerling""}, {""fullplot"": 1})" +who starred in One Hundred Men and a Girl?,"db.movies.find({""title"": ""One Hundred Men and a Girl""}, {""cast"": 1})" +How did the audience and critics receive Mèdchen in Uniform?,"db.movies.find({""title"":""Mèdchen in Uniform""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +How did the audience and critics receive the film The Saphead?,"db.movies.find({""title"":""The Saphead""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +who was the writer of the film Four Sons?,"db.movies.find({""title"": ""Four Sons""}, {""writers"": 1})" +who was the film Black Legion written by?,"db.movies.find({""title"": ""Black Legion""}, {""writers"": 1})" +What is the name of the director and cast for the movie 'The Phantom of the Opera'?,"db.movies.find({""title"": ""The Phantom of the Opera""}, {""directors"": 1, ""cast"": 1, ""_id"": 0})" +Who is the director of the movie Little Caesar?,"db.movies.find({""title"": ""Little Caesar""}, { ""directors"": 1})" +What is the imdbID and year of release for the movie with a title of 'For Heaven's Sake'?,"db.movies.find({""title"": ""For Heaven's Sake""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +Was the movie The Saphead well received by audiences?,"db.movies.find({""title"":""The Saphead""}, {""tomatoes.viewer"":1})" +What is the full plot summary of the movie The Charge of the Light Brigade ?,"db.movies.find({""title"": ""The Charge of the Light Brigade""}, {""plot"": 1})" +Can you provide more information about the Rotten Tomatoes rating for the movie Make Way for Tomorrow?,"db.movies.find({""title"": ""Make Way for Tomorrow""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +who starred in the film Go West?,"db.movies.find({""title"": ""Go West""}, {""cast"": 1})" +Can you inform me of the Darren Aronofsky movie with the shortest duration?,"db.movies.find({""directors"":""Darren Aronofsky""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +Who are the main actors/actresses in the movie Nosferatu?,"db.movies.find({""title"":""Nosferatu""}, {""cast"":1})" +How many award nominations did the movie receive Bad Girl ?,"db.movies.find({ ""title"": ""Bad Girl"" },{ ""awards.nominations"": 1 })" +who directed the movie Nanook of the North?,"db.movies.find({""title"": ""Nanook of the North""}, {""directors"": 1})" +How many reviews have been submitted by critics for the movie Lloyd's of London?,"db.movies.find({ ""title"": ""Lloyd's of London"" }, { ""tomatoes.critic.numReviews"": 1 })" +What is the MPAA rating of the film Tabu: A Story of the South Seas?,"db.movies.find({""title"":""Tabu: A Story of the South Seas""}, {""rated"":1})" +What is the consensus among critics about the movie Ben-Hur: A Tale of the Christ ?,"db.movies.find({""title"": ""Ben-Hur: A Tale of the Christ""}, {""tomatoes.consensus"": 1})" +What is the consensus among critics about the movie Ella Cinders ?,"db.movies.find({""title"": ""Ella Cinders""}, {""tomatoes.consensus"": 1})" +Who is the lead actress of the movie One Night of Love ?,"db.movies.find({""title"": ""One Night of Love""}, {""cast"":{""$slice"": 1},""title"":1})" +what kind of movie is The Barretts of Wimpole Street?,"db.movies.find({""title"": ""The Barretts of Wimpole Street""}, {""genres"": 1})" +what kind of film is Der Kaiser von Kalifornien?,"db.movies.find({""title"": ""Der Kaiser von Kalifornien""}, {""genres"": 1})" +who stars in the movie 7th Heaven?,"db.movies.find({""title"": ""7th Heaven""}, {""cast"": 1})" +which person wrote the movie Naughty Marietta?,"db.movies.find({""title"": ""Naughty Marietta""}, {""writers"": 1})" +Which motion pictures were directed by Darren Aronofsky?,"db.movies.find({""directors"": ""Darren Aronofsky""},{""title"":1})" +who produced the movie Wonder Bar?,"db.movies.find({""title"":""Wonder Bar""}, {""tomatoes.production"":1})" +Can you provide more information about the IMDb rating for the movie The Land Beyond the Sunset ?,"db.movies.find({""title"":""The Land Beyond the Sunset""}, {""imdb"":1})" +What is the box office revenue of the movie Shall We Dance in dollars?,"db.movies.find({""title"": ""Shall We Dance""}, {""tomatoes.boxOffice"": 1})" +What is the viewer rating for the movie The Mummy on Rotten Tomatoes?,"db.movies.find({""title"":""The Mummy""}, {""tomatoes.viewer.rating"":1})" +What is the MongoDB document ID of the movie The Kid Brother?,"db.movies.find({""title"": ""The Kid Brother""}, {""_id"": 1})" +who wrote the movie Flying Down to Rio?,"db.movies.find({""title"": ""Flying Down to Rio""}, {""writers"": 1})" +who starred in the movie Captains Courageous?,"db.movies.find({""title"": ""Captains Courageous""}, {""cast"": 1})" +who was the writer of the movie They Won't Forget?,"db.movies.find({""title"": ""They Won't Forget""}, {""writers"": 1})" +the movie Dr. Jekyll and Mr. Hyde starred who?,"db.movies.find({""title"": ""Dr. Jekyll and Mr. Hyde""}, {""cast"": 1})" +What is the added duration of all movies directed by Ethan Coen?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Ethan Coen"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +Who are the writers of the movie Flash Gordon ?,"db.movies.find({""title"": ""Flash Gordon""}, { ""writers"": 1})" +When was the information last updated for the movie The Great Train Robbery ?,"db.movies.find({ ""title"": ""The Great Train Robbery"" },{ ""lastupdated"": 1 })" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie It ?,"db.movies.find({""title"":""It""}, {""tomatoes.viewer.meter"":1})" +what is the film Applause description ?,"db.movies.find({""title"": ""Applause""}, {""plot"": 1})" +When was the movie The Devil to Pay! released in theaters?,"db.movies.find({""title"": ""The Devil to Pay!""}, {""released"": 1})" +Was the movie Sons of the Desert well received by audiences and critics?,"db.movies.find({""title"":""Sons of the Desert""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the runtime of the movie The Last Command ?,"db.movies.find({""title"": ""The Last Command""}, { ""runtime"": 1})" +which person directed The Champ?,"db.movies.find({""title"": ""The Champ""}, {""directors"": 1})" +what is the movie City Lights about in details?,"db.movies.find({""title"": ""City Lights""}, {""fullplot"": 1})" +"the movie David Golder, was written by who?","db.movies.find({""title"": ""David Golder""}, {""writers"": 1})" +what sort of film is Children in the Wind?,"db.movies.find({""title"": ""Children in the Wind""}, {""genres"": 1})" +How many movies were directed by Ridley Scott?,"db.movies.countDocuments({""directors"":""Ridley Scott""})" +What is the production company behind the movie x?,"db.movies.find({""title"": ""Comradeship""}, { ""tomatoes.production"": 1})" +who was the writer of The Perils of Pauline?,"db.movies.find({""title"": ""The Perils of Pauline""}, {""writers"": 1})" +What is the highest-rated movie directed by Darren Aronofsky on rotten tomatoes?,"db.movies.find({""directors"": ""Darren Aronofsky"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +What is the MPAA rating of the movie Under the Roofs of Paris?,"db.movies.find({""title"":""Under the Roofs of Paris""}, {""rated"":1})" +"Imitation of Life, is written by who?","db.movies.find({""title"": ""Imitation of Life""}, {""writers"": 1})" +who is the director that directed Dekigokoro?,"db.movies.find({""title"": ""Dekigokoro""}, {""directors"": 1})" +"What is the name of the director and cast for the movie 'Winsor McCay, the Famous Cartoonist of the N.Y. Herald and His Moving Comics'?","db.movies.find({""title"": ""Winsor McCay, the Famous Cartoonist of the N.Y. Herald and His Moving Comics""}, {""directors"": 1, ""cast"": 1, ""_id"": 0})" +who stars in the movie The Front Page?,"db.movies.find({""title"": ""The Front Page""}, {""cast"": 1})" +Can you provide a detailed summary of the movie David Golder plot?,"db.movies.find({ ""title"": ""David Golder"" }, { ""fullplot"": 1})" +who is listed as director for A Damsel in Distress?,"db.movies.find({""title"": ""A Damsel in Distress""}, {""directors"": 1})" +Who is the lead actress of the movie Cimarron ?,"db.movies.find({""title"": ""Cimarron""}, {""cast"":{""$slice"": 1},""title"":1})" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie Berkeley Square ?,"db.movies.find({""title"":""Berkeley Square""}, {""tomatoes.viewer.meter"":1})" +What are the names of all the actors who starred in the movie 'Der Kaiser von Kalifornien'?,"db.movies.find({""title"": ""Der Kaiser von Kalifornien""}, {""cast"": 1})" +What is the rating of the movie Little Caesar ?,"db.movies.find({ ""title"": ""Little Caesar"" }, { ""rated"": 1})" +who wrote the screenplay for the movie The Beloved Vagabond?,"db.movies.aggregate([ { ""$match"": { ""title"":""The Beloved Vagabond""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +What are the highest-rated movies directed by Eric Rohmer?,"db.movies.find({""directors"": 'Eric Rohmer', ""imdb.rating"": {""$gt"": 8.5}})" +how many awards did the movie King of Jazz win?,"db.movies.find({""title"":""King of Jazz""}, {""awards.wins"":1})" +Can you give me a brief summary of the movie Love Me Tonight plot?,"db.movies.find({""title"":""Love Me Tonight""}, {""plot"":1})" +What is the percentage of positive reviews among critics for the movie It ?,"db.movies.find({ ""title"": ""It"" },{ ""tomatoes.critic.meter"": 1 })" +how has The Big House been recieved by critics and audience?,"db.movies.find({""title"":""The Big House""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the production company of the movie Foolish Wives?,"db.movies.find({""title"":""Foolish Wives""}, {""tomatoes.production"":1})" +What languages are spoken in the movie Ruggles of Red Gap ?,"db.movies.find({""title"": ""Ruggles of Red Gap""}, { ""languages"": 1})" +What are the genres associated with the movie From Hand to Mouth ?,"db.movies.find({ ""title"": ""From Hand to Mouth"" }, { ""genres"": 1})" +What languages are spoken in the movie Metropolis ?,"db.movies.find({""title"": ""Metropolis""}, { ""languages"": 1})" +Who are the main actors in Nanook of the North ?,"db.movies.find({ ""title"": ""Nanook of the North"" }, { ""cast"": 1})" +who acted in the film College?,"db.movies.find({""title"": ""College""}, {""cast"": 1})" +what is the film Scarface imdb rating?,"db.movies.find({""title"": ""Scarface""}, {""imdb.rating"": 1})" +What is the rating of the movie Bad Girl ?,"db.movies.find({ ""title"": ""Bad Girl"" }, { ""rated"": 1})" +How many comments have been posted by users on the movie She Done Him Wrong's page on the Mflix platform?,"db.movies.find({ ""title"": ""She Done Him Wrong"" }, { ""num_mflix_comments"": 1 })" +What are the names of all the actors who starred in the movie '42nd Street'?,"db.movies.find({""title"": ""42nd Street""}, {""cast"": 1})" +who wrote the screenplay for the movie Asphalt?,"db.movies.aggregate([ { ""$match"": { ""title"":""Asphalt""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +What is the running time of the film Bad Girl?,"db.movies.find({""title"":""Bad Girl""}, {""runtime"":1})" +what is the genre for the film Broken Lullaby?,"db.movies.find({""title"": ""Broken Lullaby""}, {""genres"": 1})" +What is the audience rating of the movie Folies Bergère de Paris ?,"db.movies.find({ ""title"": ""Folies Bergère de Paris"" },{ ""tomatoes.viewer.rating"": 1 })" +Can you provide more information about the languages spoken in the movie Scrooge ?,"db.movies.find({""title"":""Scrooge""}, {""languages"":1})" +Everybody's Woman is a movie written by this person?,"db.movies.find({""title"": ""Everybody's Woman""}, {""writers"": 1})" +who starred in the film Bride of Frankenstein?,"db.movies.find({""title"": ""Bride of Frankenstein""}, {""cast"": 1})" +Who are the main actors in Man of Aran ?,"db.movies.find({ ""title"": ""Man of Aran"" }, { ""cast"": 1})" +what genre is the movie The Lost World?,"db.movies.find({""title"": ""The Lost World""}, {""genres"": 1})" +What is the language of the movie Murders in the Rue Morgue?,"db.movies.find({""title"":""Murders in the Rue Morgue""}, {""languages"":1})" +The Beloved Vagabond is a movie written by this person?,"db.movies.find({""title"": ""The Beloved Vagabond""}, {""writers"": 1})" +who directed Peter Pan?,"db.movies.find({""title"": ""Peter Pan""}, {""directors"": 1})" +What is the rating of the movie Morocco ?,"db.movies.find({ ""title"": ""Morocco"" }, { ""rated"": 1})" +who produced the movie Anna Karenina?,"db.movies.find({""title"":""Anna Karenina""}, {""tomatoes.production"":1})" +What is the freshness score of the movie The Song of Night on Rotten Tomatoes?,"db.movies.find({""title"": ""The Song of Night""}, {""tomatoes.fresh"": 1})" +who wrote the screenplay for the film Sisters of the Gion?,"db.movies.aggregate([ { ""$match"": { ""title"":""Sisters of the Gion""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +What is the name of the director and cast for the movie 'The Divorcee'?,"db.movies.find({""title"": ""The Divorcee""}, {""directors"": 1, ""cast"": 1, ""_id"": 0})" +What is the meter score of the movie White Shadows according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""White Shadows""}, {""tomatoes.viewer.meter"": 1})" +which company produced The Robber Symphony?,"db.movies.find({""title"":""The Robber Symphony""}, {""tomatoes.production"":1})" +what genre of movie is Tol'able David?,"db.movies.find({""title"": ""Tol'able David""}, {""genres"": 1})" +What is the Metacritic score of the movie Night Must Fall ?,"db.movies.find({ ""title"": ""Night Must Fall"" }, { ""metacritic"": 1})" +who was Captains Courageous written by?,"db.movies.find({""title"": ""Captains Courageous""}, {""writers"": 1})" +what sort of movie is High and Dizzy?,"db.movies.find({""title"": ""High and Dizzy""}, {""genres"": 1})" +what genre of movie is Lost Horizon?,"db.movies.find({""title"": ""Lost Horizon""}, {""genres"": 1})" +Who is the lead actor of the movie In Old Chicago ?,"db.movies.find({""title"": ""In Old Chicago""}, {""cast"":{""$slice"": 1},""title"":1})" +the film For Heaven's Sake was directed by who?,"db.movies.find({""title"": ""For Heaven's Sake""}, {""directors"": 1})" +what genre is the movie The Informer?,"db.movies.find({""title"": ""The Informer""}, {""genres"": 1})" +who stars in The Story of Louis Pasteur?,"db.movies.find({""title"": ""The Story of Louis Pasteur""}, {""cast"": 1})" +How many votes does the movie Within Our Gates have on IMDb?,"db.movies.find({""title"":""Within Our Gates""}, {""imdb.votes"":1})" +What is the rating of the movie Dames according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Dames""}, {""tomatoes.viewer.rating"": 1})" +what is the full plot for the film The Strong Man?,"db.movies.find({""title"": ""The Strong Man""}, {""fullplot"": 1})" +what genre is Dames?,"db.movies.find({""title"": ""Dames""}, {""genres"": 1})" +who is the director of The Prisoner of Shark Island?,"db.movies.find({""title"": ""The Prisoner of Shark Island""}, {""directors"": 1})" +who was Toni directed by?,"db.movies.find({""title"": ""Toni""}, {""directors"": 1})" +What is the text description of the movie King Kong awards?,"db.movies.find({""title"":""King Kong""}, {""awards.text"":1})" +What is the rating of the movie L'opèra de quat'sous on IMDb?,"db.movies.find({""title"":""L'opèra de quat'sous""}, {""imdb.rating"":1})" +what is the film Going Hollywood about?,"db.movies.find({""title"": ""Going Hollywood""}, {""plot"": 1})" +Which genre does Orson Welles's directed movies predominantly belong to?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Orson Welles"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +what sort of film is Our Hospitality?,"db.movies.find({""title"": ""Our Hospitality""}, {""genres"": 1})" +What is the percentage of positive reviews among critics for the movie High and Dizzy ?,"db.movies.find({ ""title"": ""High and Dizzy"" },{ ""tomatoes.critic.meter"": 1 })" +who are the actors in Show Boat?,"db.movies.find({""title"": ""Show Boat""}, {""cast"": 1})" +what was the release date of the film Swing Time?,"db.movies.find({""title"": ""Swing Time""}, {""released"": 1})" +When was the Tomatometer score and other Tomato-related information last updated for the movie La Grande Illusion?,"db.movies.find({""title"": ""La Grande Illusion""}, { ""tomatoes.lastUpdated"": 1})" +The Champ is a film written by this person?,"db.movies.find({""title"": ""The Champ""}, {""writers"": 1})" +How many comments have been posted by users on the movie Mutiny on the Bounty's page on the Mflix platform?,"db.movies.find({ ""title"": ""Mutiny on the Bounty"" }, { ""num_mflix_comments"": 1 })" +what type of film is Seven Chances?,"db.movies.find({""title"": ""Seven Chances""}, {""genres"": 1})" +what is the plot for The Divorcee?,"db.movies.find({""title"": ""The Divorcee""}, {""plot"": 1})" +What is the box office revenue of the movie Traffic in Souls in dollars?,"db.movies.find({""title"": ""Traffic in Souls""}, {""tomatoes.boxOffice"": 1})" +who directed Follow the Fleet?,"db.movies.find({""title"": ""Follow the Fleet""}, {""directors"": 1})" +Could you tell me the total runtime of all Roman Polanski movies he has directed?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Roman Polanski"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +what genre is the film Anna Karenina?,"db.movies.find({""title"": ""Anna Karenina""}, {""genres"": 1})" +What are the genres this movie Scarface belongs to?,"db.movies.find({""title"":""Scarface""}, {""genres"":1})" +Who are the actors that appear in the movie The Invisible Ray ?,"db.movies.find({ ""title"": ""The Invisible Ray"" },{ ""cast"": 1 })" +what is the film In Old Chicago description ?,"db.movies.find({""title"": ""In Old Chicago""}, {""plot"": 1})" +What is the running time of Swing Time?,"db.movies.find({""title"":""Swing Time""}, {""runtime"":1})" +who are the actors in the film Wife! Be Like a Rose!?,"db.movies.find({""title"": ""Wife! Be Like a Rose!""}, {""cast"": 1})" +In which countries was the movie College produced?,"db.movies.find({""title"":""College""}, {""countries"":1})" +Which cinematic productions were directed by Quentin Tarantino?,"db.movies.find({""directors"": ""Quentin Tarantino""},{""title"":1})" +the film King Solomon's Mines was directed by who?,"db.movies.find({""title"": ""King Solomon's Mines""}, {""directors"": 1})" +What is the audience rating of the movie The Iron Horse ?,"db.movies.find({ ""title"": ""The Iron Horse"" },{ ""tomatoes.viewer.rating"": 1 })" +Can you inform me of the Orson Welles movie with the shortest duration?,"db.movies.find({""directors"":""Orson Welles""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +the movie Nosferatu was directed by who?,"db.movies.find({""title"": ""Nosferatu""}, {""directors"": 1})" +Who holds the record for the most appearances in movies directed by Pedro Almodovar?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Pedro Almodovar"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What is the box office revenue for the movie 'Cavalcade'?,"db.movies.find({""title"": ""Cavalcade""}, {""tomatoes.boxOffice"": 1})" +What is the running time of Follow the Fleet?,"db.movies.find({""title"":""Follow the Fleet""}, {""runtime"":1})" +who wrote the screenplay for the movie Le grand jeu?,"db.movies.aggregate([ { ""$match"": { ""title"":""Le grand jeu""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +Who are the main actors in The Good Earth ?,"db.movies.find({ ""title"": ""The Good Earth"" }, { ""cast"": 1})" +who are the actors in the movie The Cheat?,"db.movies.find({""title"": ""The Cheat""}, {""cast"": 1})" +who's the director of King Solomon's Mines?,"db.movies.find({""title"": ""King Solomon's Mines""}, {""directors"": 1})" +what was the genre of the film The Charge of the Light Brigade?,"db.movies.find({""title"": ""The Charge of the Light Brigade""}, {""genres"": 1})" +What is the IMDb rating for the movie From Hand to Mouth ?,"db.movies.find({""title"":""From Hand to Mouth""}, {""imdb.rating"":1})" +Can you provide a longer version of the movie The Man Who Could Work Miracles plot?,"db.movies.find({""title"":""The Man Who Could Work Miracles""}, {""fullplot"":1})" +What is the sum of the runtimes of all the films directed by Federico Fellini?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Federico Fellini"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +What is the website associated with the movie The Wedding March on Rotten Tomatoes?,"db.movies.find({""title"": ""The Wedding March""}, {""tomatoes.website"": 1})" +Can you provide more information about the Rotten Tomatoes rating for the movie Dracula?,"db.movies.find({""title"": ""Dracula""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +who is the writer of the film Metropolis?,"db.movies.find({""title"": ""Metropolis""}, {""writers"": 1})" +How many reviews have been submitted for the movie Ben-Hur: A Tale of the Christ on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Ben-Hur: A Tale of the Christ"" },{ ""tomatoes.viewer.numReviews"": 1 })" +Who are the actors that appear in the movie Anna Karenina ?,"db.movies.find({ ""title"": ""Anna Karenina"" },{ ""cast"": 1 })" +who directed the film Folies Bergère de Paris?,"db.movies.find({""title"": ""Folies Bergère de Paris""}, {""directors"": 1})" +What are the names of all the actors who starred in the movie 'Final Accord'?,"db.movies.find({""title"": ""Final Accord""}, {""cast"": 1})" +How many award nominations did the movie receive Westfront 1918 ?,"db.movies.find({ ""title"": ""Westfront 1918"" },{ ""awards.nominations"": 1 })" +When was the information about the movie Who Killed Cock Robin? last updated?,"db.movies.find({ ""title"": ""Who Killed Cock Robin?"" }, { ""lastupdated"": 1})" +who starred in the film Les vampires?,"db.movies.find({""title"": ""Les vampires""}, {""cast"": 1})" +What is the language of Our Hospitality?,"db.movies.find({""title"":""Our Hospitality""}, {""languages"":1})" +who was the writer of Snow White and the Seven Dwarfs?,"db.movies.find({""title"": ""Snow White and the Seven Dwarfs""}, {""writers"": 1})" +What is the movie Broadway Melody of 1936 rating?,"db.movies.find({""title"":""Broadway Melody of 1936""}, {""rated"":1})" +what is the movie The Iron Horse description ?,"db.movies.find({""title"": ""The Iron Horse""}, {""plot"": 1})" +Could you tell me the typical rating of Jean Renoir movies in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Jean Renoir""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +What is the critical reception of the movie The Devil Is a Woman?,"db.movies.find({""title"":""The Devil Is a Woman""}, {""tomatoes.critic"":1})" +How many comments have been posted by users on the movie Curly Top's page on the Mflix platform?,"db.movies.find({ ""title"": ""Curly Top"" }, { ""num_mflix_comments"": 1 })" +"Has The Lives of a Bengal Lancer won any awards? If so, which ones?","db.movies.find({""title"":""The Lives of a Bengal Lancer"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +what sort of film is A Farewell to Arms?,"db.movies.find({""title"": ""A Farewell to Arms""}, {""genres"": 1})" +who was the writer of the movie Movie Crazy?,"db.movies.find({""title"": ""Movie Crazy""}, {""writers"": 1})" +who's the director of Romance?,"db.movies.find({""title"": ""Romance""}, {""directors"": 1})" +who is listed as director for Cavalcade?,"db.movies.find({""title"": ""Cavalcade""}, {""directors"": 1})" +which company produced The Band Concert?,"db.movies.find({""title"":""The Band Concert""}, {""tomatoes.production"":1})" +who are the actors in The Invisible Man?,"db.movies.find({""title"": ""The Invisible Man""}, {""cast"": 1})" +How many wins did the movie Street Angel receive?,"db.movies.find({""title"":""Street Angel""}, {""awards.wins"":1})" +what is The Lost World about?,"db.movies.find({""title"": ""The Lost World""}, {""plot"": 1})" +which person wrote The Dark Angel?,"db.movies.find({""title"": ""The Dark Angel""}, {""writers"": 1})" +who produced the film Dracula?,"db.movies.find({""title"":""Dracula""}, {""tomatoes.production"":1})" +What is the audience rating of the movie Swing Time ?,"db.movies.find({ ""title"": ""Swing Time"" },{ ""tomatoes.viewer.rating"": 1 })" +what year was Cavalcade released?,"db.movies.find({""title"": ""Cavalcade""}, {""year"": 1})" +How many votes does the movie The Gold Rush have on IMDb?,"db.movies.find({""title"":""The Gold Rush""}, {""imdb.votes"":1})" +Was the movie A Corner in Wheat well received by audiences?,"db.movies.find({""title"":""A Corner in Wheat""}, {""tomatoes.viewer"":1})" +How long is the runtime of the movie Dodsworth ?,"db.movies.find({""title"":""Dodsworth""}, {""runtime"":1})" +what is the film Swing Time about in details?,"db.movies.find({""title"": ""Swing Time""}, {""fullplot"": 1})" +what type of movie is The Lower Depths?,"db.movies.find({""title"": ""The Lower Depths""}, {""genres"": 1})" +which company produced the film The Crowd Roars?,"db.movies.find({""title"":""The Crowd Roars""}, {""tomatoes.production"":1})" +Who are the starring actors/actresses in the movie The Passion of Joan of Arc?,"db.movies.find({""title"":""The Passion of Joan of Arc""}, {""cast"":1})" +What is the IMDB rating of the movie Tsirk ?,"db.movies.find({""title"": ""Tsirk""}, { ""imdb.rating"": 1})" +Was the movie The Gilded Lily well received by audiences?,"db.movies.find({""title"":""The Gilded Lily""}, {""tomatoes.viewer"":1})" +how many awards did the film Fury win?,"db.movies.find({""title"":""Fury""}, {""awards.wins"":1})" +What is the production company of Dames?,"db.movies.find({""title"":""Dames""}, {""tomatoes.production"":1})" +what is the genre for the movie The Iron Horse?,"db.movies.find({""title"": ""The Iron Horse""}, {""genres"": 1})" +what is the genre for the movie The Gilded Lily?,"db.movies.find({""title"": ""The Gilded Lily""}, {""genres"": 1})" +What are the names of all the actors who starred in the movie 'Peter Pan'?,"db.movies.find({""title"": ""Peter Pan""}, {""cast"": 1})" +what was the release date of the film The Circus?,"db.movies.find({""title"": ""The Circus""}, {""released"": 1})" +What was the release date for the movie Curly Top?,"db.movies.find({""title"":""Curly Top""}, {""released"":1})" +What are the countries associated with the movie Men Without Women ?,"db.movies.find({""title"": ""Men Without Women""}, {""countries"": 1})" +which person wrote the film Duck Soup?,"db.movies.find({""title"": ""Duck Soup""}, {""writers"": 1})" +Scarface is a film written by this person?,"db.movies.find({""title"": ""Scarface""}, {""writers"": 1})" +When was the information last updated for the movie He Who Gets Slapped ?,"db.movies.find({ ""title"": ""He Who Gets Slapped"" },{ ""lastupdated"": 1 })" +which company produced The Son of the Sheik?,"db.movies.find({""title"":""The Son of the Sheik""}, {""tomatoes.production"":1})" +what was the release year of the movie A Day in the Country?,"db.movies.find({""title"": ""A Day in the Country""}, {""year"": 1})" +what was the genre of the movie Dames?,"db.movies.find({""title"": ""Dames""}, {""genres"": 1})" +"The Gay Divorcee, was written by who?","db.movies.find({""title"": ""The Gay Divorcee""}, {""writers"": 1})" +who directed the movie These Three?,"db.movies.find({""title"": ""These Three""}, {""directors"": 1})" +How many reviews have been submitted by critics for the movie Ruggles of Red Gap ?,"db.movies.find({""title"": ""Ruggles of Red Gap""}, {""tomatoes.critic.numReviews"": 1})" +How many audience reviews have been submitted for the movie Westfront 1918?,"db.movies.find({ ""title"": ""Westfront 1918"" }, { ""tomatoes.viewer.numReviews"": 1 })" +"what is the plot for the film Laugh, Clown, Laugh?","db.movies.find({""title"": ""Laugh, Clown, Laugh""}, {""plot"": 1})" +what is the genre for the movie Alice Adams?,"db.movies.find({""title"": ""Alice Adams""}, {""genres"": 1})" +who wrote the film Grass: A Nation's Battle for Life?,"db.movies.find({""title"": ""Grass: A Nation's Battle for Life""}, {""writers"": 1})" +what is the plot for The Invisible Man?,"db.movies.find({""title"": ""The Invisible Man""}, {""plot"": 1})" +Which actor has the greatest number of roles in Jacques Rivette's directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Jacques Rivette"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +How did the audience and critics receive the movie Bad Girl?,"db.movies.find({""title"":""Bad Girl""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +Who is the lead actress of the movie A Free Soul ?,"db.movies.find({""title"": ""A Free Soul""}, {""cast"":{""$slice"": 1},""title"":1})" +What is the IMDb rating for the movie The Iron Horse ?,"db.movies.find({""title"":""The Iron Horse""}, {""imdb.rating"":1})" +What is the production company behind the movie The Awful Truth ?,"db.movies.find({""title"": ""The Awful Truth""}, { ""tomatoes.production"": 1})" +What is the number of movies Jean-Pierre Melville released per year?,"db.movies.aggregate([{ $match: { ""directors"": ""Jean-Pierre Melville"" }},{""$group"": { ""_id"": ""$year"", ""count"": {""$sum"": 1}}}])" +How did the audience and critics receive the film Smilin' Through?,"db.movies.find({""title"":""Smilin' Through""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the Rotten Tomatoes meter rating for the movie The Ace of Hearts ?,"db.movies.find({""title"":""The Ace of Hearts""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +How long is the runtime of the movie In Old Chicago ?,"db.movies.find({""title"":""In Old Chicago""}, {""runtime"":1})" +what is Our Hospitality about in details?,"db.movies.find({""title"": ""Our Hospitality""}, {""fullplot"": 1})" +What is the running time of the film Make Way for Tomorrow?,"db.movies.find({""title"":""Make Way for Tomorrow""}, {""runtime"":1})" +How many reviews have been submitted by critics for the movie Scrooge?,"db.movies.find({ ""title"": ""Scrooge"" }, { ""tomatoes.critic.numReviews"": 1 })" +what is the full plot for Where Are My Children??,"db.movies.find({""title"": ""Where Are My Children?""}, {""fullplot"": 1})" +"The Devil to Pay!, is written by who?","db.movies.find({""title"": ""The Devil to Pay!""}, {""writers"": 1})" +What is the Rotten Tomatoes meter rating for the movie Westfront 1918 ?,"db.movies.find({""title"":""Westfront 1918""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +What is the box office revenue of the movie Skippy in dollars?,"db.movies.find({""title"": ""Skippy""}, {""tomatoes.boxOffice"": 1})" +"What is the critical reception of the movie I Was Born, But...?","db.movies.find({""title"":""I Was Born, But...""}, {""tomatoes.critic"":1})" +Who is the lead actress of the movie 7th Heaven ?,"db.movies.find({""title"": ""7th Heaven""}, {""cast"":{""$slice"": 1},""title"":1})" +Who are the actors that appear in the movie Les vampires ?,"db.movies.find({ ""title"": ""Les vampires"" },{ ""cast"": 1 })" +When was the information last updated for the movie A Farewell to Arms ?,"db.movies.find({ ""title"": ""A Farewell to Arms"" },{ ""lastupdated"": 1 })" +What is the IMDb rating for Robin Hood?,"db.movies.find({""title"": ""Robin Hood""}, {""imdb.rating"": 1})" +what is the movie Everybody's Woman about?,"db.movies.find({""title"": ""Everybody's Woman""}, {""plot"": 1})" +What is the text representation of the awards won and nominations received by the movie Ella Cinders?,"db.movies.find({""title"": ""Ella Cinders""}, { ""awards.text"": 1})" +How did the audience and critics receive the movie Little Caesar?,"db.movies.find({""title"":""Little Caesar""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What are the genres associated with the movie A Corner in Wheat ?,"db.movies.find({ ""title"": ""A Corner in Wheat"" }, { ""genres"": 1})" +which company produced Red Dust?,"db.movies.find({""title"":""Red Dust""}, {""tomatoes.production"":1})" +What is the language of the film White Shadows?,"db.movies.find({""title"":""White Shadows""}, {""languages"":1})" +the film The Four Horsemen of the Apocalypse starred who?,"db.movies.find({""title"": ""The Four Horsemen of the Apocalypse""}, {""cast"": 1})" +What is the production company of the movie The Invisible Man?,"db.movies.find({""title"":""The Invisible Man""}, {""tomatoes.production"":1})" +How does the movie It's a Gift rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""It's a Gift"" },{ ""tomatoes.critic.meter"": 1 })" +who is the director for Steamboat Willie?,"db.movies.find({""title"": ""Steamboat Willie""}, {""directors"": 1})" +How did the audience and critics receive the film The Italian?,"db.movies.find({""title"":""The Italian""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the viewer rating for the movie The Perils of Pauline on Rotten Tomatoes?,"db.movies.find({""title"":""The Perils of Pauline""}, {""tomatoes.viewer.rating"":1})" +What is the imdbID and year of release for the movie with a title of 'Queen Kelly'?,"db.movies.find({""title"": ""Queen Kelly""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +What is the MongoDB document ID of the movie One Hundred Men and a Girl?,"db.movies.find({""title"": ""One Hundred Men and a Girl""}, {""_id"": 1})" +How many reviews did the movie The Kid receive on Rotten Tomatoes?,"db.movies.find({""title"":""The Kid""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +A Star Is Born is written by this person?,"db.movies.find({""title"": ""A Star Is Born""}, {""writers"": 1})" +Could you give me the average rating of Jean-Luc Godard's movies that are in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Jean-Luc Godard""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +Was the movie The Great Ziegfeld well received by audiences?,"db.movies.find({""title"":""The Great Ziegfeld""}, {""tomatoes.viewer"":1})" +What is the ID of the movie Shall We Dance on IMDB?,"db.movies.find({""title"": ""Shall We Dance""}, {""imdb.id"": 1})" +What is the freshness score of the movie The Emperor Jones on Rotten Tomatoes?,"db.movies.find({""title"": ""The Emperor Jones""}, {""tomatoes.fresh"": 1})" +What languages are spoken in the movie Folies Bergère de Paris ?,"db.movies.find({""title"": ""Folies Bergère de Paris""}, { ""languages"": 1})" +What is the average score assigned to all Akira Kurosawa movies in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Akira Kurosawa""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +what sort of movie is The Chechahcos?,"db.movies.find({""title"": ""The Chechahcos""}, {""genres"": 1})" +What is the imdbID and year of release for the movie with a title of 'The Story of Louis Pasteur'?,"db.movies.find({""title"": ""The Story of Louis Pasteur""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +who starred in the film San Francisco?,"db.movies.find({""title"": ""San Francisco""}, {""cast"": 1})" +What is the imdbID and genre of the movie 'It Happened One Night'?,"db.movies.find({""title"": ""It Happened One Night""}, {""imdb.id"": 1, ""genres"": 1, ""_id"": 0})" +Was the movie The Red Head well received by audiences?,"db.movies.find({""title"":""The Red Head""}, {""tomatoes.viewer"":1})" +"the movie Three Little Pigs, was written by who?","db.movies.find({""title"": ""Three Little Pigs""}, {""writers"": 1})" +who is the writer of the film Blacksmith Scene?,"db.movies.find({""title"": ""Blacksmith Scene""}, {""writers"": 1})" +Can you provide more information about the languages spoken in the movie The Black Cat ?,"db.movies.find({""title"":""The Black Cat""}, {""languages"":1})" +In what year was the movie Wife! Be Like a Rose! released ?,"db.movies.find({ ""title"": ""Wife! Be Like a Rose!"" }, { ""year"": 1})" +who starred in the movie The Iron Horse?,"db.movies.find({""title"": ""The Iron Horse""}, {""cast"": 1})" +who is the writer of the film Theodora Goes Wild?,"db.movies.find({""title"": ""Theodora Goes Wild""}, {""writers"": 1})" +What is the title of the movie with the shortest duration that Terrence Malick directed?,"db.movies.find({""directors"":""Terrence Malick""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +What is the box office revenue of the movie Regeneration in dollars?,"db.movies.find({""title"": ""Regeneration""}, {""tomatoes.boxOffice"": 1})" +how many awards did Tarzan and His Mate win?,"db.movies.find({""title"":""Tarzan and His Mate""}, {""awards.wins"":1})" +When was the movie Folies Bergère de Paris released in theaters?,"db.movies.find({""title"": ""Folies Bergère de Paris""}, {""released"": 1})" +"What is the IMDb rating for the movie Winsor McCay, the Famous Cartoonist of the N.Y. Herald and His Moving Comics ?","db.movies.find({""title"":""Winsor McCay, the Famous Cartoonist of the N.Y. Herald and His Moving Comics""}, {""imdb.rating"":1})" +what sort of movie is One Week?,"db.movies.find({""title"": ""One Week""}, {""genres"": 1})" +who was the film Little Caesar written by?,"db.movies.find({""title"": ""Little Caesar""}, {""writers"": 1})" +"what type of movie is Steamboat Bill, Jr.?","db.movies.find({""title"": ""Steamboat Bill, Jr.""}, {""genres"": 1})" +When was the information about the movie Masquerade in Vienna last updated?,"db.movies.find({ ""title"": ""Masquerade in Vienna"" }, { ""lastupdated"": 1})" +What are the genres associated with the movie Mayerling ?,"db.movies.find({ ""title"": ""Mayerling"" }, { ""genres"": 1})" +What is the viewer rating for the movie The Broadway Melody on Rotten Tomatoes?,"db.movies.find({""title"":""The Broadway Melody""}, {""tomatoes.viewer.rating"":1})" +what is the movie The Devil to Pay! about?,"db.movies.find({""title"": ""The Devil to Pay!""}, {""plot"": 1})" +What is the MPAA rating of the film Follow the Fleet?,"db.movies.find({""title"":""Follow the Fleet""}, {""rated"":1})" +what genre of film is Marked Woman?,"db.movies.find({""title"": ""Marked Woman""}, {""genres"": 1})" +The Gilded Lily was directed by who?,"db.movies.find({""title"": ""The Gilded Lily""}, {""directors"": 1})" +What is the MPAA rating of the movie Little Caesar?,"db.movies.find({""title"":""Little Caesar""}, {""rated"":1})" +what sort of film is Sons of the Desert?,"db.movies.find({""title"": ""Sons of the Desert""}, {""genres"": 1})" +In what language was the movie The Divorcee released?,"db.movies.find({ ""title"": ""The Divorcee"" }, { ""languages"": 1})" +who produced the film In Old Arizona?,"db.movies.find({""title"":""In Old Arizona""}, {""tomatoes.production"":1})" +what type of movie is Murders in the Rue Morgue?,"db.movies.find({""title"": ""Murders in the Rue Morgue""}, {""genres"": 1})" +what is the film Three Smart Girls imdb rating?,"db.movies.find({""title"": ""Three Smart Girls""}, {""imdb.rating"": 1})" +Who are the actors in the movie Freaks?,"db.movies.find({""title"":""Freaks""}, {""cast"":1})" +what is the plot for From Hand to Mouth?,"db.movies.find({""title"": ""From Hand to Mouth""}, {""plot"": 1})" +When was the Tomatometer score and other Tomato-related information last updated for the movie Who Killed Cock Robin??,"db.movies.find({""title"": ""Who Killed Cock Robin?""}, { ""tomatoes.lastUpdated"": 1})" +who was the writer of the film Sherlock Jr.?,"db.movies.find({""title"": ""Sherlock Jr.""}, {""writers"": 1})" +What is the MPAA rating of the movie The Man Who Could Work Miracles?,"db.movies.find({""title"":""The Man Who Could Work Miracles""}, {""rated"":1})" +what is the genre for the movie The Devil Is a Woman?,"db.movies.find({""title"": ""The Devil Is a Woman""}, {""genres"": 1})" +What is the IMDb rating for Rembrandt?,"db.movies.find({""title"": ""Rembrandt""}, {""imdb.rating"": 1})" +what is the movie A Story of Floating Weeds description ?,"db.movies.find({""title"": ""A Story of Floating Weeds""}, {""plot"": 1})" +how has The Crowd Roars been recieved by critics and audience?,"db.movies.find({""title"":""The Crowd Roars""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What's the title of the Pedro Almodovar movie with the longest runtime?,"db.movies.find({""directors"":""Pedro Almodovar""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +"the movie Skippy, was written by who?","db.movies.find({""title"": ""Skippy""}, {""writers"": 1})" +which person wrote the film The Unknown?,"db.movies.find({""title"": ""The Unknown""}, {""writers"": 1})" +What is the MPAA rating of the movie Romance?,"db.movies.find({""title"":""Romance""}, {""rated"":1})" +What is the website associated with the movie The Hunchback of Notre Dame on Rotten Tomatoes?,"db.movies.find({""title"": ""The Hunchback of Notre Dame""}, {""tomatoes.website"": 1})" +What is the title of the movie with the shortest duration that David Fincher directed?,"db.movies.find({""directors"":""David Fincher""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +what genre is the movie Nosferatu?,"db.movies.find({""title"": ""Nosferatu""}, {""genres"": 1})" +Can you give me a brief summary of the movie The Navigator plot?,"db.movies.find({""title"":""The Navigator""}, {""plot"":1})" +which person directed Berkeley Square?,"db.movies.find({""title"": ""Berkeley Square""}, {""directors"": 1})" +Could you tell me the main category of movies that Satyajit Ray directs?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Satyajit Ray"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +what is the film The Jazz Singer about in details?,"db.movies.find({""title"": ""The Jazz Singer""}, {""fullplot"": 1})" +who was the writer of the film The Scarlet Empress?,"db.movies.find({""title"": ""The Scarlet Empress""}, {""writers"": 1})" +Can you provide more information about the IMDb rating for the movie City Lights ?,"db.movies.find({""title"":""City Lights""}, {""imdb"":1})" +How many votes did the movie The Fall of the House of Usher receive on IMDB?,"db.movies.find({""title"": ""The Fall of the House of Usher""}, { ""imdb.votes"": 1})" +the movie For Heaven's Sake was directed by who?,"db.movies.find({""title"": ""For Heaven's Sake""}, {""directors"": 1})" +What is the movie Popeye the Sailor Meets Sindbad the Sailor rating?,"db.movies.find({""title"":""Popeye the Sailor Meets Sindbad the Sailor""}, {""rated"":1})" +the movie Three Smart Girls starred who?,"db.movies.find({""title"": ""Three Smart Girls""}, {""cast"": 1})" +In what language was the movie Swedenhielms Family released?,"db.movies.find({ ""title"": ""Swedenhielms Family"" }, { ""languages"": 1})" +What is the rating of the movie The Iron Horse ?,"db.movies.find({ ""title"": ""The Iron Horse"" }, { ""rated"": 1})" +What is the Metacritic score of the movie The Robber Symphony ?,"db.movies.find({ ""title"": ""The Robber Symphony"" }, { ""metacritic"": 1})" +who is the writer of the movie King Solomon's Mines?,"db.movies.find({""title"": ""King Solomon's Mines""}, {""writers"": 1})" +How does the movie Lenin in October rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Lenin in October"" },{ ""tomatoes.critic.meter"": 1 })" +What is the percentage of positive reviews among critics for the movie Man with a Movie Camera ?,"db.movies.find({ ""title"": ""Man with a Movie Camera"" },{ ""tomatoes.critic.meter"": 1 })" +What is the best-reviewed movie on Rotten Tomatoes that was directed by Orson Welles?,"db.movies.find({""directors"": ""Orson Welles"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +the film The Lives of a Bengal Lancer starred who?,"db.movies.find({""title"": ""The Lives of a Bengal Lancer""}, {""cast"": 1})" +which person wrote Who Killed Cock Robin??,"db.movies.find({""title"": ""Who Killed Cock Robin?""}, {""writers"": 1})" +How did the audience and critics receive Three Little Pigs?,"db.movies.find({""title"":""Three Little Pigs""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +Who are the writers of the movie The General ?,"db.movies.find({""title"": ""The General""}, { ""writers"": 1})" +What is the production company of the film Nosferatu?,"db.movies.find({""title"":""Nosferatu""}, {""tomatoes.production"":1})" +Can you tell me how many movies Ethan Coen directed for each year they were released?,"db.movies.aggregate([{ $match: { ""directors"": ""Ethan Coen"" }},{""$group"": { ""_id"": ""$year"", ""count"": {""$sum"": 1}}}])" +"Has the film Sisters of the Gion won any awards? If so, which ones?","db.movies.find({""title"":""Sisters of the Gion"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What is the language of the film Steamboat Willie?,"db.movies.find({""title"":""Steamboat Willie""}, {""languages"":1})" +What is the dominant genre of Clint Eastwood's directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Clint Eastwood"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +How did the audience and critics receive the movie Nanook of the North?,"db.movies.find({""title"":""Nanook of the North""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what's the main genre of the movies directed by Wes Anderson ?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Wes Anderson"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +How long is the runtime of the movie Mayerling ?,"db.movies.find({""title"":""Mayerling""}, {""runtime"":1})" +When was the movie Der Kaiser von Kalifornien released?,"db.movies.find({""title"":""Der Kaiser von Kalifornien""}, {""released"":1})" +What is the Tomatometer score of the movie Man of Aran ?,"db.movies.find({ ""title"": ""Man of Aran"" },{ ""tomatoes.critic.meter"": 1 })" +What is the rating of the movie Little Women on IMDb?,"db.movies.find({""title"":""Little Women""}, {""imdb.rating"":1})" +What is the Rotten Tomatoes meter rating for the movie It ?,"db.movies.find({""title"":""It""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +What is the production company of She Done Him Wrong?,"db.movies.find({""title"":""She Done Him Wrong""}, {""tomatoes.production"":1})" +How many wins did the movie Little Caesar receive?,"db.movies.find({""title"":""Little Caesar""}, {""awards.wins"":1})" +who was My Man Godfrey written by?,"db.movies.find({""title"": ""My Man Godfrey""}, {""writers"": 1})" +How long is the runtime of the movie The Thin Man ?,"db.movies.find({""title"":""The Thin Man""}, {""runtime"":1})" +what is the plot for the film The Gay Divorcee?,"db.movies.find({""title"": ""The Gay Divorcee""}, {""plot"": 1})" +What is the movie The Great Ziegfeld rating?,"db.movies.find({""title"":""The Great Ziegfeld""}, {""rated"":1})" +what year was Flesh and the Devil released?,"db.movies.find({""title"": ""Flesh and the Devil""}, {""year"": 1})" +who directed Westfront 1918?,"db.movies.find({""title"": ""Westfront 1918""}, {""directors"": 1})" +How did the audience and critics receive the movie The Big Trail?,"db.movies.find({""title"":""The Big Trail""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +Seven Chances was directed by who?,"db.movies.find({""title"": ""Seven Chances""}, {""directors"": 1})" +How many nominations did the movie The Band Concert receive?,"db.movies.find({""title"":""The Band Concert""}, {""awards.nominations"":1})" +In what year was the movie Upstream released?,"db.movies.find({""title"":""Upstream""}, {""year"":1})" +Which types of movies has Joel Coen directed?,"db.movies.distinct(""genres"", { ""directors"": ""Joel Coen"" })" +What is the name of the movie that Satyajit Ray directed that has the longest duration?,"db.movies.find({""directors"":""Satyajit Ray""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +What is the IMDb rating for Mr. Deeds Goes to Town?,"db.movies.find({""title"": ""Mr. Deeds Goes to Town""}, {""imdb.rating"": 1})" +who's the director of Ella Cinders?,"db.movies.find({""title"": ""Ella Cinders""}, {""directors"": 1})" +who starred in The Scarlet Empress?,"db.movies.find({""title"": ""The Scarlet Empress""}, {""cast"": 1})" +Can you provide a detailed summary of the movie The Man Who Knew Too Much plot?,"db.movies.find({ ""title"": ""The Man Who Knew Too Much"" }, { ""fullplot"": 1})" +How many reviews have been submitted by critics for the movie One Hundred Men and a Girl?,"db.movies.find({ ""title"": ""One Hundred Men and a Girl"" }, { ""tomatoes.critic.numReviews"": 1 })" +who wrote the screenplay for the film Daughter of Shanghai?,"db.movies.aggregate([ { ""$match"": { ""title"":""Daughter of Shanghai""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +"In movies directed by Satyajit Ray, which actor has the highest number of performances?","db.movies.aggregate([ { ""$match"": { ""directors"": ""Satyajit Ray"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +Who are the main actors/actresses in the movie The Black Pirate?,"db.movies.find({""title"":""The Black Pirate""}, {""cast"":1})" +What is the MongoDB document ID of the movie The Blue Bird?,"db.movies.find({""title"": ""The Blue Bird""}, {""_id"": 1})" +How many viewer reviews did the movie The Trail of the Lonesome Pine receive on Rotten Tomatoes?,"db.movies.find({""title"":""The Trail of the Lonesome Pine""}, {""tomatoes.viewer.numReviews"":1})" +What's the title of the shortest Alain Resnais-directed movie?,"db.movies.find({""directors"":""Alain Resnais""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +What is the name of the director and cast for the movie 'Roberta'?,"db.movies.find({""title"": ""Roberta""}, {""directors"": 1, ""cast"": 1, ""_id"": 0})" +who are the actors in The 3 Penny Opera?,"db.movies.find({""title"": ""The 3 Penny Opera""}, {""cast"": 1})" +"Has Cops won any awards? If so, which ones?","db.movies.find({""title"":""Cops"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What is the IMDb rating for the film Follow the Fleet?,"db.movies.find({""title"": ""Follow the Fleet""}, {""imdb.rating"": 1})" +Was the movie Pandora's Box well received by audiences and critics?,"db.movies.find({""title"":""Pandora's Box""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what kind of movie is Naughty Marietta?,"db.movies.find({""title"": ""Naughty Marietta""}, {""genres"": 1})" +who acted in the film Captains Courageous?,"db.movies.find({""title"": ""Captains Courageous""}, {""cast"": 1})" +who directed the movie Shall We Dance?,"db.movies.find({""title"": ""Shall We Dance""}, {""directors"": 1})" +What is the imdbID and year of release for the movie with a title of 'Battling Butler'?,"db.movies.find({""title"": ""Battling Butler""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +Who is the director of the movie Marked Woman?,"db.movies.find({""title"": ""Marked Woman""}, { ""directors"": 1})" +who is the author of Show Boat?,"db.movies.find({""title"": ""Show Boat""}, {""writers"": 1})" +What is the consensus among critics about the movie Man with a Movie Camera ?,"db.movies.find({""title"": ""Man with a Movie Camera""}, {""tomatoes.consensus"": 1})" +How many nominations did the movie It receive?,"db.movies.find({""title"":""It""}, {""awards.nominations"":1})" +who wrote the screenplay for Baby Face?,"db.movies.aggregate([ { ""$match"": { ""title"":""Baby Face""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +What is the running time of Dracula?,"db.movies.find({""title"":""Dracula""}, {""runtime"":1})" +What movie directed by Roberto Rossellini has the shortest running time?,"db.movies.find({""directors"":""Roberto Rossellini""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +What is the box office revenue of the movie The Son of the Sheik ?,"db.movies.find({""title"": ""The Son of the Sheik""}, { ""tomatoes.boxOffice"": 1})" +How long is the runtime of the movie The Big Parade ?,"db.movies.find({""title"":""The Big Parade""}, {""runtime"":1})" +How many award nominations did the movie receive The Song of Night ?,"db.movies.find({ ""title"": ""The Song of Night"" },{ ""awards.nominations"": 1 })" +What is the plot summary of the movie The Life of Emile Zola ?,"db.movies.find({ ""title"": ""The Life of Emile Zola"" }, { ""plot"": 1})" +When was the information last updated for the movie The Blue Light ?,"db.movies.find({ ""title"": ""The Blue Light"" },{ ""lastupdated"": 1 })" +what year was the movie The Divine Lady released?,"db.movies.find({""title"": ""The Divine Lady""}, {""year"": 1})" +How many reviews have been submitted by critics for the movie Who Killed Cock Robin? ?,"db.movies.find({""title"": ""Who Killed Cock Robin?""}, {""tomatoes.critic.numReviews"": 1})" +Was the movie The Wind well received by audiences?,"db.movies.find({""title"":""The Wind""}, {""tomatoes.viewer"":1})" +What is the imdbID and genre of the movie 'One Hundred Men and a Girl'?,"db.movies.find({""title"": ""One Hundred Men and a Girl""}, {""imdb.id"": 1, ""genres"": 1, ""_id"": 0})" +What is the consensus among critics about the movie The Big House?,"db.movies.find({""title"": ""The Big House""}, { ""tomatoes.consensus"": 1})" +what genre is the movie Gertie the Dinosaur?,"db.movies.find({""title"": ""Gertie the Dinosaur""}, {""genres"": 1})" +How many wins did the movie Lost Horizon receive?,"db.movies.find({""title"":""Lost Horizon""}, {""awards.wins"":1})" +What is the meter score of the movie The Man Who Could Work Miracles according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""The Man Who Could Work Miracles""}, {""tomatoes.viewer.meter"": 1})" +What is the percentage of positive reviews among critics for the movie Zoo in Budapest ?,"db.movies.find({ ""title"": ""Zoo in Budapest"" },{ ""tomatoes.critic.meter"": 1 })" +who is the author of Naughty Marietta?,"db.movies.find({""title"": ""Naughty Marietta""}, {""writers"": 1})" +what is the genre for the film Three Smart Girls?,"db.movies.find({""title"": ""Three Smart Girls""}, {""genres"": 1})" +Can you provide more information about the Rotten Tomatoes rating for the movie Cleopatra?,"db.movies.find({""title"": ""Cleopatra""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +What is the consensus among critics about the movie Skippy?,"db.movies.find({""title"": ""Skippy""}, { ""tomatoes.consensus"": 1})" +who acted in the film The Unknown?,"db.movies.find({""title"": ""The Unknown""}, {""cast"": 1})" +How many audience reviews have been submitted for the movie Frankenstein ?,"db.movies.find({ ""title"": ""Frankenstein"" },{ ""tomatoes.viewer.numReviews"": 1 })" +the film Footlight Parade starred which actors?,"db.movies.find({""title"": ""Footlight Parade""}, {""cast"": 1})" +who is the director of The Public Enemy?,"db.movies.find({""title"": ""The Public Enemy""}, {""directors"": 1})" +What is the movie The Thin Man rating?,"db.movies.find({""title"":""The Thin Man""}, {""rated"":1})" +what is the movie The Trail of the Lonesome Pine description ?,"db.movies.find({""title"": ""The Trail of the Lonesome Pine""}, {""plot"": 1})" +In what year was the movie Disraeli released ?,"db.movies.find({ ""title"": ""Disraeli"" }, { ""year"": 1})" +What is the running time of the movie Skippy?,"db.movies.find({""title"":""Skippy""}, {""runtime"":1})" +How long is the runtime of the movie Wings ?,"db.movies.find({""title"":""Wings""}, {""runtime"":1})" +"the film It's a Gift, was written by who?","db.movies.find({""title"": ""It's a Gift""}, {""writers"": 1})" +"Has Little Miss Marker won any awards? If so, which ones?","db.movies.find({""title"":""Little Miss Marker"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +what was the release year of Frankenstein?,"db.movies.find({""title"": ""Frankenstein""}, {""year"": 1})" +who was the film The Last Command written by?,"db.movies.find({""title"": ""The Last Command""}, {""writers"": 1})" +What is the IMDb rating for the film Our Hospitality?,"db.movies.find({""title"": ""Our Hospitality""}, {""imdb.rating"": 1})" +Was the movie A Corner in Wheat well received by audiences and critics?,"db.movies.find({""title"":""A Corner in Wheat""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +"Has Laugh, Clown, Laugh won any awards? If so, which ones?","db.movies.find({""title"":""Laugh, Clown, Laugh"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What are the genres associated with the movie Dr. Jekyll and Mr. Hyde ?,"db.movies.find({ ""title"": ""Dr. Jekyll and Mr. Hyde"" }, { ""genres"": 1})" +What are the genres associated with the movie Imitation of Life ?,"db.movies.find({ ""title"": ""Imitation of Life"" }, { ""genres"": 1})" +Hallelujah was directed by who?,"db.movies.find({""title"": ""Hallelujah""}, {""directors"": 1})" +who is the author of Les Misèrables?,"db.movies.find({""title"": ""Les Misèrables""}, {""writers"": 1})" +What is the running time of the movie The Guardsman?,"db.movies.find({""title"":""The Guardsman""}, {""runtime"":1})" +What is the box office revenue of the movie A Night at the Opera ?,"db.movies.find({""title"": ""A Night at the Opera""}, { ""tomatoes.boxOffice"": 1})" +who's the director of Show Boat?,"db.movies.find({""title"": ""Show Boat""}, {""directors"": 1})" +Can you provide a detailed summary of the movie The Birth of a Nation plot?,"db.movies.find({ ""title"": ""The Birth of a Nation"" }, { ""fullplot"": 1})" +What is the runtime of the movie Traffic in Souls ?,"db.movies.find({""title"": ""Traffic in Souls""}, { ""runtime"": 1})" +"Has Chapayev won any awards? If so, which ones?","db.movies.find({""title"":""Chapayev"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +which company produced the movie Grass: A Nation's Battle for Life?,"db.movies.find({""title"":""Grass: A Nation's Battle for Life""}, {""tomatoes.production"":1})" +what is the plot for Miss Lulu Bett?,"db.movies.find({""title"": ""Miss Lulu Bett""}, {""plot"": 1})" +What is the MPAA rating of the movie Ella Cinders?,"db.movies.find({""title"":""Ella Cinders""}, {""rated"":1})" +What is the highest-rated movie directed by Terrence Malick on rotten tomatoes?,"db.movies.find({""directors"": ""Terrence Malick"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +"Has the movie The Private Life of Henry VIII. won any awards? If so, which ones?","db.movies.find({""title"":""The Private Life of Henry VIII."",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +which person wrote the film Flying Down to Rio?,"db.movies.find({""title"": ""Flying Down to Rio""}, {""writers"": 1})" +What is the production company of the film The Son of Kong?,"db.movies.find({""title"":""The Son of Kong""}, {""tomatoes.production"":1})" +Which of Francois Truffaut's directed films has the briefest duration?,"db.movies.find({""directors"":""Francois Truffaut""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +"On Rotten Tomatoes, what is the top-rated film directed by Tim Burton?","db.movies.find({""directors"": ""Tim Burton"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +What is the mean rating for Quentin Tarantino movies in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Quentin Tarantino""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +"In Steven Spielberg's directed movies, which actor has made the most appearances?","db.movies.aggregate([ { ""$match"": { ""directors"": ""Steven Spielberg"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What type of movie is Tol'able David ?,"db.movies.find({""title"":""Tol'able David""}, {""genres"":1})" +In what language was the movie The Great Train Robbery released?,"db.movies.find({ ""title"": ""The Great Train Robbery"" }, { ""languages"": 1})" +who is the writer of The Prisoner of Zenda?,"db.movies.find({""title"": ""The Prisoner of Zenda""}, {""writers"": 1})" +who wrote the screenplay for the film This Is My Affair?,"db.movies.aggregate([ { ""$match"": { ""title"":""This Is My Affair""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +How many award nominations did the movie receive The Freshman ?,"db.movies.find({ ""title"": ""The Freshman"" },{ ""awards.nominations"": 1 })" +What are the names of all the actors who starred in the movie 'Snow White and the Seven Dwarfs'?,"db.movies.find({""title"": ""Snow White and the Seven Dwarfs""}, {""cast"": 1})" +who was the movie The Gay Divorcee written by?,"db.movies.find({""title"": ""The Gay Divorcee""}, {""writers"": 1})" +What is the combined duration of all films that James Cameron directed?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""James Cameron"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +What is the consensus among critics about the movie The Private Life of Don Juan ?,"db.movies.find({""title"": ""The Private Life of Don Juan""}, {""tomatoes.consensus"": 1})" +What is the text representation of the awards won and nominations received by the movie The Life of Emile Zola?,"db.movies.find({""title"": ""The Life of Emile Zola""}, { ""awards.text"": 1})" +what type of movie is Disraeli?,"db.movies.find({""title"": ""Disraeli""}, {""genres"": 1})" +How many reviews have been submitted by critics for the movie She?,"db.movies.find({ ""title"": ""She"" }, { ""tomatoes.critic.numReviews"": 1 })" +What is the website associated with the movie Swing Time on Rotten Tomatoes?,"db.movies.find({""title"": ""Swing Time""}, {""tomatoes.website"": 1})" +who was the writer of the movie Sisters of the Gion?,"db.movies.find({""title"": ""Sisters of the Gion""}, {""writers"": 1})" +What type of movie is Moscow Laughs ?,"db.movies.find({""title"":""Moscow Laughs""}, {""genres"":1})" +What was the release date for the movie Scarface?,"db.movies.find({""title"":""Scarface""}, {""released"":1})" +How many audience reviews have been submitted for the movie Regeneration ?,"db.movies.find({ ""title"": ""Regeneration"" },{ ""tomatoes.viewer.numReviews"": 1 })" +what is the genre for the movie Folies Bergère de Paris?,"db.movies.find({""title"": ""Folies Bergère de Paris""}, {""genres"": 1})" +What is the production company behind the movie Mutiny on the Bounty ?,"db.movies.find({""title"": ""Mutiny on the Bounty""}, { ""tomatoes.production"": 1})" +Can you provide more information about the IMDb rating for the movie The Gold Rush ?,"db.movies.find({""title"":""The Gold Rush""}, {""imdb"":1})" +who wrote the screenplay for the movie Sons of the Desert?,"db.movies.aggregate([ { ""$match"": { ""title"":""Sons of the Desert""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +What is the percentage of positive reviews among critics for the movie Forbidden ?,"db.movies.find({ ""title"": ""Forbidden"" },{ ""tomatoes.critic.meter"": 1 })" +Who are the starring actors/actresses in the movie The Devil Is a Woman?,"db.movies.find({""title"":""The Devil Is a Woman""}, {""cast"":1})" +How does the movie Three Ages rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Three Ages"" },{ ""tomatoes.critic.meter"": 1 })" +what was the release year of Within Our Gates?,"db.movies.find({""title"": ""Within Our Gates""}, {""year"": 1})" +What is the meter score of the movie Make Way for Tomorrow according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Make Way for Tomorrow""}, {""tomatoes.viewer.meter"": 1})" +How many reviews have been submitted by critics for the movie Trouble in Paradise?,"db.movies.find({ ""title"": ""Trouble in Paradise"" }, { ""tomatoes.critic.numReviews"": 1 })" +the movie Becky Sharp starred which actors?,"db.movies.find({""title"": ""Becky Sharp""}, {""cast"": 1})" +who wrote the film Baby Face?,"db.movies.find({""title"": ""Baby Face""}, {""writers"": 1})" +What is the rating of the movie Mary of Scotland ?,"db.movies.find({ ""title"": ""Mary of Scotland"" }, { ""rated"": 1})" +what was the release date of the movie The Prisoner of Shark Island?,"db.movies.find({""title"": ""The Prisoner of Shark Island""}, {""released"": 1})" +the director of Becky Sharp was?,"db.movies.find({""title"": ""Becky Sharp""}, {""directors"": 1})" +"Has The Unknown won any awards? If so, which ones?","db.movies.find({""title"":""The Unknown"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What is the IMDb rating for The Italian?,"db.movies.find({""title"": ""The Italian""}, {""imdb.rating"": 1})" +what sort of movie is Black Fury?,"db.movies.find({""title"": ""Black Fury""}, {""genres"": 1})" +What is the running time of Moscow Laughs?,"db.movies.find({""title"":""Moscow Laughs""}, {""runtime"":1})" +the film A Free Soul starred which actors?,"db.movies.find({""title"": ""A Free Soul""}, {""cast"": 1})" +What is the IMDb rating for the film Nanook of the North?,"db.movies.find({""title"": ""Nanook of the North""}, {""imdb.rating"": 1})" +what kind of film is Les vampires?,"db.movies.find({""title"": ""Les vampires""}, {""genres"": 1})" +which company produced the movie A Midsummer Night's Dream?,"db.movies.find({""title"":""A Midsummer Night's Dream""}, {""tomatoes.production"":1})" +who stars in the movie The Freshman?,"db.movies.find({""title"": ""The Freshman""}, {""cast"": 1})" +how many awards did It Happened One Night win?,"db.movies.find({""title"":""It Happened One Night""}, {""awards.wins"":1})" +what is the film Mèdchen in Uniform description ?,"db.movies.find({""title"": ""Mèdchen in Uniform""}, {""plot"": 1})" +who was the writer of Broadway Melody of 1936?,"db.movies.find({""title"": ""Broadway Melody of 1936""}, {""writers"": 1})" +How long is the movie Flesh and the Devil in minutes?,"db.movies.find({""title"":""Flesh and the Devil""}, {""runtime"":1})" +Can you provide more information about the Rotten Tomatoes rating for the movie Scarface?,"db.movies.find({""title"": ""Scarface""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +who was the film Folies Bergère de Paris written by?,"db.movies.find({""title"": ""Folies Bergère de Paris""}, {""writers"": 1})" +who starred in the movie The Lower Depths?,"db.movies.find({""title"": ""The Lower Depths""}, {""cast"": 1})" +What is the audience rating of the movie This Is My Affair ?,"db.movies.find({ ""title"": ""This Is My Affair"" },{ ""tomatoes.viewer.rating"": 1 })" +In what language was the movie Lady Windermere's Fan released?,"db.movies.find({ ""title"": ""Lady Windermere's Fan"" }, { ""languages"": 1})" +what is the genre for the movie The Robber Symphony?,"db.movies.find({""title"": ""The Robber Symphony""}, {""genres"": 1})" +What is the ID of the movie The Immigrant on IMDB?,"db.movies.find({""title"": ""The Immigrant""}, {""imdb.id"": 1})" +what type of movie is Berkeley Square?,"db.movies.find({""title"": ""Berkeley Square""}, {""genres"": 1})" +who are the actors in the film Broken Blossoms or The Yellow Man and the Girl?,"db.movies.find({""title"": ""Broken Blossoms or The Yellow Man and the Girl""}, {""cast"": 1})" +What is the runtime of the movie Regeneration ?,"db.movies.find({""title"": ""Regeneration""}, { ""runtime"": 1})" +What are the names of all the actors who starred in the movie 'The Divorcee'?,"db.movies.find({""title"": ""The Divorcee""}, {""cast"": 1})" +What is the consensus among critics about the movie David Copperfield?,"db.movies.find({""title"": ""David Copperfield""}, { ""tomatoes.consensus"": 1})" +What is the consensus among critics about the movie The Edge of the World?,"db.movies.find({""title"": ""The Edge of the World""}, { ""tomatoes.consensus"": 1})" +What is the MPAA rating of The Passion of Joan of Arc?,"db.movies.find({""title"":""The Passion of Joan of Arc""}, {""rated"":1})" +How many viewer reviews did the movie Applause receive on Rotten Tomatoes?,"db.movies.find({""title"":""Applause""}, {""tomatoes.viewer.numReviews"":1})" +what is the plot for The Passion of Joan of Arc?,"db.movies.find({""title"": ""The Passion of Joan of Arc""}, {""plot"": 1})" +Who are the actors that appear in the movie Scrooge ?,"db.movies.find({ ""title"": ""Scrooge"" },{ ""cast"": 1 })" +what sort of movie is The Unknown?,"db.movies.find({""title"": ""The Unknown""}, {""genres"": 1})" +which company produced Follow the Fleet?,"db.movies.find({""title"":""Follow the Fleet""}, {""tomatoes.production"":1})" +who's the director of Asphalt?,"db.movies.find({""title"": ""Asphalt""}, {""directors"": 1})" +What is the rating of the movie Zero for Conduct ?,"db.movies.find({ ""title"": ""Zero for Conduct"" }, { ""rated"": 1})" +"In the 1990s, which movies were directed by Claude Chabrol and released?","db.movies.find({""directors"": 'Claude Chabrol', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +What is the Rotten Tomatoes meter rating for the movie The Life of Emile Zola ?,"db.movies.find({""title"":""The Life of Emile Zola""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +What is the production company behind the movie The Birth of a Nation ?,"db.movies.find({""title"": ""The Birth of a Nation""}, {""tomatoes.production"": 1})" +What is the language of One Night of Love?,"db.movies.find({""title"":""One Night of Love""}, {""languages"":1})" +How many votes does the movie They Won't Forget have on IMDb?,"db.movies.find({""title"":""They Won't Forget""}, {""imdb.votes"":1})" +Was the movie Men Without Women well received by audiences and critics?,"db.movies.find({""title"":""Men Without Women""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What are some of the types of movies that Terrence Malick has directed?,"db.movies.distinct(""genres"", { ""directors"": ""Terrence Malick"" })" +who was the film The Cameraman written by?,"db.movies.find({""title"": ""The Cameraman""}, {""writers"": 1})" +"the film Naughty Marietta, was written by who?","db.movies.find({""title"": ""Naughty Marietta""}, {""writers"": 1})" +What is the website associated with the movie Lost Horizon on Rotten Tomatoes?,"db.movies.find({""title"": ""Lost Horizon""}, {""tomatoes.website"": 1})" +What is the movie Sanders of the River rating?,"db.movies.find({""title"":""Sanders of the River""}, {""rated"":1})" +what was the release year of The Devil Is a Woman?,"db.movies.find({""title"": ""The Devil Is a Woman""}, {""year"": 1})" +who was the writer of the film The Freshman?,"db.movies.find({""title"": ""The Freshman""}, {""writers"": 1})" +Could you tell me the total runtime of all Alfred Hitchcock movies he has directed?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Alfred Hitchcock"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +who are the actors in the movie The Prince and the Pauper?,"db.movies.find({""title"": ""The Prince and the Pauper""}, {""cast"": 1})" +who are the actors in the movie Alice Adams?,"db.movies.find({""title"": ""Alice Adams""}, {""cast"": 1})" +What is the running time of the movie Battling Butler?,"db.movies.find({""title"":""Battling Butler""}, {""runtime"":1})" +the film The Private Life of Henry VIII. starred who?,"db.movies.find({""title"": ""The Private Life of Henry VIII.""}, {""cast"": 1})" +What is the website associated with the movie Cops on Rotten Tomatoes?,"db.movies.find({""title"": ""Cops""}, {""tomatoes.website"": 1})" +How many reviews have been submitted by critics for the movie Disraeli?,"db.movies.find({ ""title"": ""Disraeli"" }, { ""tomatoes.critic.numReviews"": 1 })" +What is the MPAA rating of The Mummy?,"db.movies.find({""title"":""The Mummy""}, {""rated"":1})" +how many awards did the movie Our Hospitality win?,"db.movies.find({""title"":""Our Hospitality""}, {""awards.wins"":1})" +what genre is the film Kid Galahad?,"db.movies.find({""title"": ""Kid Galahad""}, {""genres"": 1})" +The Band Concert is a movie written by this person?,"db.movies.find({""title"": ""The Band Concert""}, {""writers"": 1})" +When was the movie The Charge of the Light Brigade released in theaters?,"db.movies.find({""title"": ""The Charge of the Light Brigade""}, {""released"": 1})" +who was the writer of The Last of the Mohicans?,"db.movies.find({""title"": ""The Last of the Mohicans""}, {""writers"": 1})" +how many awards did Cops win?,"db.movies.find({""title"":""Cops""}, {""awards.wins"":1})" +How many awards did the movie win City Streets ?,"db.movies.find({ ""title"": ""City Streets"" },{ ""awards.wins"": 1 })" +who wrote the screenplay for The Ace of Hearts?,"db.movies.aggregate([ { ""$match"": { ""title"":""The Ace of Hearts""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +What is the best-reviewed movie on Rotten Tomatoes that was directed by Terrence Malick?,"db.movies.find({""directors"": ""Terrence Malick"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +"the movie Zero for Conduct, was written by who?","db.movies.find({""title"": ""Zero for Conduct""}, {""writers"": 1})" +Can you provide me with a list of movies directed by Roberto Rossellini that were released in the 1990s?,"db.movies.find({""directors"": 'Roberto Rossellini', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +What is the text description of the movie Grass: A Nation's Battle for Life awards?,"db.movies.find({""title"":""Grass: A Nation's Battle for Life""}, {""awards.text"":1})" +the movie 7th Heaven starred which actors?,"db.movies.find({""title"": ""7th Heaven""}, {""cast"": 1})" +What is the IMDb rating for the film Ruggles of Red Gap?,"db.movies.find({""title"": ""Ruggles of Red Gap""}, {""imdb.rating"": 1})" +"How long, in total, are all the movies that Martin Scorsese has directed?","db.movies.aggregate([{ ""$match"": { ""directors"": ""Martin Scorsese"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +Can you provide more information about the languages spoken in the movie Mutiny on the Bounty ?,"db.movies.find({""title"":""Mutiny on the Bounty""}, {""languages"":1})" +what was the release year of the film Cleopatra?,"db.movies.find({""title"": ""Cleopatra""}, {""year"": 1})" +what type of film is In Old Chicago?,"db.movies.find({""title"": ""In Old Chicago""}, {""genres"": 1})" +Can you tell me which films were helmed by Ingmar Bergman?,"db.movies.find({""directors"": ""Ingmar Bergman""},{""title"":1})" +Which cinematic genres were directed by Jean Renoir?,"db.movies.distinct(""genres"", { ""directors"": ""Jean Renoir"" })" +Who are the actors that appear in the movie Beau Geste ?,"db.movies.find({ ""title"": ""Beau Geste"" },{ ""cast"": 1 })" +In what year was the movie The Broadway Melody released?,"db.movies.find({""title"":""The Broadway Melody""}, {""year"":1})" +What are the genres this movie Comradeship belongs to?,"db.movies.find({""title"":""Comradeship""}, {""genres"":1})" +What are the names of all the actors who starred in the movie 'Cops'?,"db.movies.find({""title"": ""Cops""}, {""cast"": 1})" +How many audience reviews have been submitted for the movie Night Must Fall?,"db.movies.find({ ""title"": ""Night Must Fall"" }, { ""tomatoes.viewer.numReviews"": 1 })" +What is the box office revenue for the movie 'These Three'?,"db.movies.find({""title"": ""These Three""}, {""tomatoes.boxOffice"": 1})" +Could you tell me the main category of movies that Ethan Coen directs?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Ethan Coen"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What is the IMDb rating for the film Dekigokoro?,"db.movies.find({""title"": ""Dekigokoro""}, {""imdb.rating"": 1})" +In which countries was the movie Les vampires produced?,"db.movies.find({""title"":""Les vampires""}, {""countries"":1})" +What is the full plot summary of the movie Smilin' Through ?,"db.movies.find({""title"": ""Smilin' Through""}, {""plot"": 1})" +who wrote The Private Life of Don Juan?,"db.movies.find({""title"": ""The Private Life of Don Juan""}, {""writers"": 1})" +which person wrote the film Four Sons?,"db.movies.find({""title"": ""Four Sons""}, {""writers"": 1})" +"what kind of film is I Was Born, But...?","db.movies.find({""title"": ""I Was Born, But...""}, {""genres"": 1})" +How many votes did the movie The Big Parade receive on IMDB?,"db.movies.find({""title"": ""The Big Parade""}, { ""imdb.votes"": 1})" +how many awards did Tabu: A Story of the South Seas win?,"db.movies.find({""title"":""Tabu: A Story of the South Seas""}, {""awards.wins"":1})" +What is the production company behind the movie The Trail of the Lonesome Pine ?,"db.movies.find({""title"": ""The Trail of the Lonesome Pine""}, { ""tomatoes.production"": 1})" +what genre is the film The Perils of Pauline?,"db.movies.find({""title"": ""The Perils of Pauline""}, {""genres"": 1})" +In which countries was the movie Go West produced?,"db.movies.find({""title"":""Go West""}, {""countries"":1})" +how many awards did the movie Mary of Scotland win?,"db.movies.find({""title"":""Mary of Scotland""}, {""awards.wins"":1})" +What is the production company behind the movie China Seas ?,"db.movies.find({""title"": ""China Seas""}, { ""tomatoes.production"": 1})" +who produced the movie The Prisoner of Zenda?,"db.movies.find({""title"":""The Prisoner of Zenda""}, {""tomatoes.production"":1})" +who wrote the film The Divorcee?,"db.movies.find({""title"": ""The Divorcee""}, {""writers"": 1})" +What is the runtime of the movie The Mummy ?,"db.movies.find({""title"": ""The Mummy""}, { ""runtime"": 1})" +When was the Tomatometer score and other Tomato-related information last updated for the movie The Iron Horse?,"db.movies.find({""title"": ""The Iron Horse""}, { ""tomatoes.lastUpdated"": 1})" +Can you give me a brief summary of the movie Zoo in Budapest plot?,"db.movies.find({""title"":""Zoo in Budapest""}, {""plot"":1})" +who is the director for Final Accord?,"db.movies.find({""title"": ""Final Accord""}, {""directors"": 1})" +How many audience reviews have been submitted for the movie Moscow Laughs?,"db.movies.find({ ""title"": ""Moscow Laughs"" }, { ""tomatoes.viewer.numReviews"": 1 })" +How many audience reviews have been submitted for the movie One Hundred Men and a Girl ?,"db.movies.find({ ""title"": ""One Hundred Men and a Girl"" },{ ""tomatoes.viewer.numReviews"": 1 })" +What is the IMDb rating for the movie Swing Time ?,"db.movies.find({""title"":""Swing Time""}, {""imdb.rating"":1})" +What is the consensus among critics about the movie Lost Horizon ?,"db.movies.find({""title"": ""Lost Horizon""}, {""tomatoes.consensus"": 1})" +which person wrote the film David Copperfield?,"db.movies.find({""title"": ""David Copperfield""}, {""writers"": 1})" +what was the release date of the movie Theodora Goes Wild?,"db.movies.find({""title"": ""Theodora Goes Wild""}, {""released"": 1})" +the movie A Midsummer Night's Dream starred which actors?,"db.movies.find({""title"": ""A Midsummer Night's Dream""}, {""cast"": 1})" +what genre is the movie The Wedding March?,"db.movies.find({""title"": ""The Wedding March""}, {""genres"": 1})" +"Has the movie A Star Is Born won any awards? If so, which ones?","db.movies.find({""title"":""A Star Is Born"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +who directed the movie Bad Girl?,"db.movies.find({""title"": ""Bad Girl""}, {""directors"": 1})" +what genre is Battling Butler?,"db.movies.find({""title"": ""Battling Butler""}, {""genres"": 1})" +what was the genre of The Prince and the Pauper?,"db.movies.find({""title"": ""The Prince and the Pauper""}, {""genres"": 1})" +the movie Everybody's Woman was directed by who?,"db.movies.find({""title"": ""Everybody's Woman""}, {""directors"": 1})" +What are the genres this movie Baby Face belongs to?,"db.movies.find({""title"":""Baby Face""}, {""genres"":1})" +"Has the movie The Gilded Lily won any awards? If so, which ones?","db.movies.find({""title"":""The Gilded Lily"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What is the box office revenue of the movie Miss Lulu Bett ?,"db.movies.find({""title"": ""Miss Lulu Bett""}, { ""tomatoes.boxOffice"": 1})" +How long is the movie Asphalt in minutes?,"db.movies.find({""title"":""Asphalt""}, {""runtime"":1})" +how many awards did the film Flesh and the Devil win?,"db.movies.find({""title"":""Flesh and the Devil""}, {""awards.wins"":1})" +what is the plot for The Robber Symphony?,"db.movies.find({""title"": ""The Robber Symphony""}, {""plot"": 1})" +What is the text representation of the awards won and nominations received by the movie The Hunchback of Notre Dame?,"db.movies.find({""title"": ""The Hunchback of Notre Dame""}, { ""awards.text"": 1})" +How many reviews have been submitted by critics for the movie It's a Gift?,"db.movies.find({ ""title"": ""It's a Gift"" }, { ""tomatoes.critic.numReviews"": 1 })" +What is the production company of the film The Emperor Jones?,"db.movies.find({""title"":""The Emperor Jones""}, {""tomatoes.production"":1})" +who produced the film Rembrandt?,"db.movies.find({""title"":""Rembrandt""}, {""tomatoes.production"":1})" +what was the release date of The Awful Truth?,"db.movies.find({""title"": ""The Awful Truth""}, {""released"": 1})" +how many awards did the movie Fury win?,"db.movies.find({""title"":""Fury""}, {""awards.wins"":1})" +which company produced the movie Nosferatu?,"db.movies.find({""title"":""Nosferatu""}, {""tomatoes.production"":1})" +what genre is the movie She Done Him Wrong?,"db.movies.find({""title"": ""She Done Him Wrong""}, {""genres"": 1})" +what sort of film is The Invisible Ray?,"db.movies.find({""title"": ""The Invisible Ray""}, {""genres"": 1})" +How many audience reviews have been submitted for the movie Romeo and Juliet ?,"db.movies.find({ ""title"": ""Romeo and Juliet"" },{ ""tomatoes.viewer.numReviews"": 1 })" +what was the genre of the film The Great Train Robbery?,"db.movies.find({""title"": ""The Great Train Robbery""}, {""genres"": 1})" +What are the genres associated with the movie Little Miss Marker ?,"db.movies.find({ ""title"": ""Little Miss Marker"" }, { ""genres"": 1})" +What is the IMDB rating of the movie The Robber Symphony ?,"db.movies.find({""title"": ""The Robber Symphony""}, { ""imdb.rating"": 1})" +What is the audience rating of the movie Zoo in Budapest ?,"db.movies.find({ ""title"": ""Zoo in Budapest"" },{ ""tomatoes.viewer.rating"": 1 })" +Can you provide a detailed summary of the movie Two Seconds plot?,"db.movies.find({ ""title"": ""Two Seconds"" }, { ""fullplot"": 1})" +How did the audience and critics receive the movie Folies Bergère de Paris?,"db.movies.find({""title"":""Folies Bergère de Paris""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What are the movies directed by Roman Polanski?,"db.movies.find({""directors"": ""Roman Polanski""},{""title"":1})" +How many audience reviews have been submitted for the movie The Ghost Goes West?,"db.movies.find({ ""title"": ""The Ghost Goes West"" }, { ""tomatoes.viewer.numReviews"": 1 })" +What is the plot summary of the movie Flash Gordon ?,"db.movies.find({ ""title"": ""Flash Gordon"" }, { ""plot"": 1})" +what is the movie In Old Arizona about in details?,"db.movies.find({""title"": ""In Old Arizona""}, {""fullplot"": 1})" +who are the actors in the film Gertie the Dinosaur?,"db.movies.find({""title"": ""Gertie the Dinosaur""}, {""cast"": 1})" +What are the countries associated with the movie The Mummy ?,"db.movies.find({""title"": ""The Mummy""}, {""countries"": 1})" +What is the IMDb ID for the movie Regeneration?,"db.movies.find({""title"":""Regeneration""}, {""imdb.id"":1})" +What is the MongoDB document ID of the movie The Prisoner of Zenda?,"db.movies.find({""title"": ""The Prisoner of Zenda""}, {""_id"": 1})" +How many reviews have been submitted by critics for the movie The Private Life of Henry VIII.?,"db.movies.find({ ""title"": ""The Private Life of Henry VIII."" }, { ""tomatoes.critic.numReviews"": 1 })" +What is the MPAA rating of the film Flesh and the Devil?,"db.movies.find({""title"":""Flesh and the Devil""}, {""rated"":1})" +"the film Three Little Pigs, was written by who?","db.movies.find({""title"": ""Three Little Pigs""}, {""writers"": 1})" +which company produced A Corner in Wheat?,"db.movies.find({""title"":""A Corner in Wheat""}, {""tomatoes.production"":1})" +What was the release date for the movie The New Gulliver?,"db.movies.find({""title"":""The New Gulliver""}, {""released"":1})" +What is the average score assigned to all Yasujiro Ozu movies in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Yasujiro Ozu""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +the film A Star Is Born starred who?,"db.movies.find({""title"": ""A Star Is Born""}, {""cast"": 1})" +What is the critical reception of the movie Sanders of the River?,"db.movies.find({""title"":""Sanders of the River""}, {""tomatoes.critic"":1})" +What is the IMDb rating for Toni?,"db.movies.find({""title"": ""Toni""}, {""imdb.rating"": 1})" +who is the director of Tarzan and His Mate?,"db.movies.find({""title"": ""Tarzan and His Mate""}, {""directors"": 1})" +What is the full plot summary of the movie Queen Christina ?,"db.movies.find({""title"": ""Queen Christina""}, {""plot"": 1})" +What is the ID of the movie The Blue Light on IMDB?,"db.movies.find({""title"": ""The Blue Light""}, {""imdb.id"": 1})" +what is the full plot for The Poor Little Rich Girl?,"db.movies.find({""title"": ""The Poor Little Rich Girl""}, {""fullplot"": 1})" +In what language was the movie Black Legion released?,"db.movies.find({ ""title"": ""Black Legion"" }, { ""languages"": 1})" +what is the genre for the film Sons of the Desert?,"db.movies.find({""title"": ""Sons of the Desert""}, {""genres"": 1})" +which company produced the movie Intolerance: Love's Struggle Throughout the Ages?,"db.movies.find({""title"":""Intolerance: Love's Struggle Throughout the Ages""}, {""tomatoes.production"":1})" +what type of film is Flesh and the Devil?,"db.movies.find({""title"": ""Flesh and the Devil""}, {""genres"": 1})" +Can you provide me with a list of movies directed by Jean-Pierre Melville?,"db.movies.find({""directors"": ""Jean-Pierre Melville""},{""title"":1})" +can you describe the plot of Make Way for Tomorrow?,"db.movies.find({""title"": ""Make Way for Tomorrow""}, {""plot"": 1})" +What is the IMDb rating for The Gilded Lily?,"db.movies.find({""title"": ""The Gilded Lily""}, {""imdb.rating"": 1})" +In what language was the movie This Is My Affair released?,"db.movies.find({ ""title"": ""This Is My Affair"" }, { ""languages"": 1})" +what is the genre for the film The Big Trail?,"db.movies.find({""title"": ""The Big Trail""}, {""genres"": 1})" +Can you provide more information about the Rotten Tomatoes rating for the movie Skippy?,"db.movies.find({""title"": ""Skippy""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +what sort of film is Les Misèrables?,"db.movies.find({""title"": ""Les Misèrables""}, {""genres"": 1})" +What is the running time of the movie Ruggles of Red Gap?,"db.movies.find({""title"":""Ruggles of Red Gap""}, {""runtime"":1})" +What type of media is The Lower Depths?,"db.movies.find({ ""title"": ""The Lower Depths"" }, { ""type"": 1})" +What are some of the types of movies that Pedro Almodovar has directed?,"db.movies.distinct(""genres"", { ""directors"": ""Pedro Almodovar"" })" +what genre of movie is Sherlock Jr.?,"db.movies.find({""title"": ""Sherlock Jr.""}, {""genres"": 1})" +what kind of film is The Story of Louis Pasteur?,"db.movies.find({""title"": ""The Story of Louis Pasteur""}, {""genres"": 1})" +who wrote the screenplay for 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"" } } } } } }])" +What languages are spoken in the movie Greed ?,"db.movies.find({""title"": ""Greed""}, { ""languages"": 1})" +What languages are spoken in the movie The Great Train Robbery?,"db.movies.find({""title"":""The Great Train Robbery""}, {""languages"":1})" +"How many nominations did the movie I Was Born, But... receive?","db.movies.find({""title"":""I Was Born, But...""}, {""awards.nominations"":1})" +what year was The Green Pastures released?,"db.movies.find({""title"": ""The Green Pastures""}, {""year"": 1})" +What is the rating of the movie The Italian on IMDb?,"db.movies.find({""title"":""The Italian""}, {""imdb.rating"":1})" +what is Freaks about?,"db.movies.find({""title"": ""Freaks""}, {""plot"": 1})" +Which movies did Jean-Luc Godard direct?,"db.movies.find({""directors"": ""Jean-Luc Godard""},{""title"":1})" +What is the MPAA rating of the movie Curly Top?,"db.movies.find({""title"":""Curly Top""}, {""rated"":1})" +What is the plot summary of the movie Flying Down to Rio ?,"db.movies.find({ ""title"": ""Flying Down to Rio"" }, { ""plot"": 1})" +Can you provide more information about the Rotten Tomatoes rating for the movie Theodora Goes Wild?,"db.movies.find({""title"": ""Theodora Goes Wild""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +When was the movie Broadway Bill released in theaters?,"db.movies.find({""title"": ""Broadway Bill""}, {""released"": 1})" +How many comments have been posted by users on the movie David Copperfield's page on the Mflix platform?,"db.movies.find({ ""title"": ""David Copperfield"" }, { ""num_mflix_comments"": 1 })" +What is the IMDb rating for the movie This Is My Affair ?,"db.movies.find({""title"":""This Is My Affair""}, {""imdb.rating"":1})" +who stars in The Crowd Roars?,"db.movies.find({""title"": ""The Crowd Roars""}, {""cast"": 1})" +What is the movie Red Dust about? Can you provide a brief summary?,"db.movies.find({""title"":""Red Dust""}, {""plot"":1})" +what is My Man Godfrey imdb rating?,"db.movies.find({""title"": ""My Man Godfrey""}, {""imdb.rating"": 1})" +what is the genre for the movie David Golder?,"db.movies.find({""title"": ""David Golder""}, {""genres"": 1})" +What is the production company of the movie Wonder Bar?,"db.movies.find({""title"":""Wonder Bar""}, {""tomatoes.production"":1})" +Dodsworth is written by this person?,"db.movies.find({""title"": ""Dodsworth""}, {""writers"": 1})" +What is the movie Sisters of the Gion rating?,"db.movies.find({""title"":""Sisters of the Gion""}, {""rated"":1})" +What is the IMDb ID for the movie Zero for Conduct?,"db.movies.find({""title"":""Zero for Conduct""}, {""imdb.id"":1})" +Who are the main actors in Little Women ?,"db.movies.find({ ""title"": ""Little Women"" }, { ""cast"": 1})" +what is the genre for the film The Green Pastures?,"db.movies.find({""title"": ""The Green Pastures""}, {""genres"": 1})" +How many comments have been posted by users on the movie Lady Windermere's Fan's page on the Mflix platform?,"db.movies.find({ ""title"": ""Lady Windermere's Fan"" }, { ""num_mflix_comments"": 1 })" +Who are the starring actors/actresses in the movie Steamboat Willie?,"db.movies.find({""title"":""Steamboat Willie""}, {""cast"":1})" +what was the genre of the movie Lonesome?,"db.movies.find({""title"": ""Lonesome""}, {""genres"": 1})" +How long is the runtime of the movie The Emperor Jones ?,"db.movies.find({""title"":""The Emperor Jones""}, {""runtime"":1})" +Can you provide a longer version of the movie A Woman of Paris: A Drama of Fate plot?,"db.movies.find({""title"":""A Woman of Paris: A Drama of Fate""}, {""fullplot"":1})" +what is the movie Dante's Inferno imdb rating?,"db.movies.find({""title"": ""Dante's Inferno""}, {""imdb.rating"": 1})" +What languages are spoken in the movie Les Misèrables?,"db.movies.find({""title"":""Les Misèrables""}, {""languages"":1})" +what year was the movie The New Gulliver released?,"db.movies.find({""title"": ""The New Gulliver""}, {""year"": 1})" +What is the box office revenue of the movie The Son of the Sheik in dollars?,"db.movies.find({""title"": ""The Son of the Sheik""}, {""tomatoes.boxOffice"": 1})" +the director of The Edge of the World was?,"db.movies.find({""title"": ""The Edge of the World""}, {""directors"": 1})" +who wrote the film The Thief of Bagdad?,"db.movies.find({""title"": ""The Thief of Bagdad""}, {""writers"": 1})" +what sort of film is Hell's Hinges?,"db.movies.find({""title"": ""Hell's Hinges""}, {""genres"": 1})" +How many viewer reviews did the movie In the Land of the Head Hunters receive on Rotten Tomatoes?,"db.movies.find({""title"":""In the Land of the Head Hunters""}, {""tomatoes.viewer.numReviews"":1})" +who wrote the film The Green Pastures?,"db.movies.find({""title"": ""The Green Pastures""}, {""writers"": 1})" +What type of movie is The Private Life of Don Juan ?,"db.movies.find({""title"":""The Private Life of Don Juan""}, {""genres"":1})" +What is the MPAA rating of the film The Iron Horse?,"db.movies.find({""title"":""The Iron Horse""}, {""rated"":1})" +In what year was the movie King Solomon's Mines released?,"db.movies.find({""title"":""King Solomon's Mines""}, {""year"":1})" +how many awards did the movie Come and Get It win?,"db.movies.find({""title"":""Come and Get It""}, {""awards.wins"":1})" +What is the consensus among critics about the movie Trouble in Paradise?,"db.movies.find({""title"": ""Trouble in Paradise""}, { ""tomatoes.consensus"": 1})" +"Has the movie The Jazz Singer won any awards? If so, which ones?","db.movies.find({""title"":""The Jazz Singer"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What was the release date for the movie Rembrandt?,"db.movies.find({""title"":""Rembrandt""}, {""released"":1})" +What languages are spoken in the movie She ?,"db.movies.find({""title"": ""She""}, { ""languages"": 1})" +What are the genres this movie The Invisible Man belongs to?,"db.movies.find({""title"":""The Invisible Man""}, {""genres"":1})" +who directed the movie Broken Blossoms or The Yellow Man and the Girl?,"db.movies.find({""title"": ""Broken Blossoms or The Yellow Man and the Girl""}, {""directors"": 1})" +"Has the film The Black Cat won any awards? If so, which ones?","db.movies.find({""title"":""The Black Cat"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +who is the director of Ruggles of Red Gap?,"db.movies.find({""title"": ""Ruggles of Red Gap""}, {""directors"": 1})" +what is Lenin in October imdb rating?,"db.movies.find({""title"": ""Lenin in October""}, {""imdb.rating"": 1})" +What is the movie Anthony Adverse rating?,"db.movies.find({""title"":""Anthony Adverse""}, {""rated"":1})" +who is listed as director for The Kid?,"db.movies.find({""title"": ""The Kid""}, {""directors"": 1})" +what is It about?,"db.movies.find({""title"": ""It""}, {""plot"": 1})" +What is the text representation of the awards won and nominations received by the movie Bride of Frankenstein?,"db.movies.find({""title"": ""Bride of Frankenstein""}, { ""awards.text"": 1})" +who starred in the film The Life of Emile Zola?,"db.movies.find({""title"": ""The Life of Emile Zola""}, {""cast"": 1})" +what was the release date of the film City Streets?,"db.movies.find({""title"": ""City Streets""}, {""released"": 1})" +who is listed as director for The Robber Symphony?,"db.movies.find({""title"": ""The Robber Symphony""}, {""directors"": 1})" +what is the movie Duck Soup about?,"db.movies.find({""title"": ""Duck Soup""}, {""plot"": 1})" +The Blue Light was directed by who?,"db.movies.find({""title"": ""The Blue Light""}, {""directors"": 1})" +what type of movie is Westfront 1918?,"db.movies.find({""title"": ""Westfront 1918""}, {""genres"": 1})" +What is the MPAA rating of the film Gold Diggers of 1935?,"db.movies.find({""title"":""Gold Diggers of 1935""}, {""rated"":1})" +who are the actors in the movie The Strong Man?,"db.movies.find({""title"": ""The Strong Man""}, {""cast"": 1})" +who stars in The Strong Man?,"db.movies.find({""title"": ""The Strong Man""}, {""cast"": 1})" +the movie The Land Beyond the Sunset starred who?,"db.movies.find({""title"": ""The Land Beyond the Sunset""}, {""cast"": 1})" +What are the genres associated with the movie Gertie the Dinosaur ?,"db.movies.find({ ""title"": ""Gertie the Dinosaur"" }, { ""genres"": 1})" +"Ruggles of Red Gap, was written by who?","db.movies.find({""title"": ""Ruggles of Red Gap""}, {""writers"": 1})" +What is the freshness score of the movie Captains Courageous on Rotten Tomatoes?,"db.movies.find({""title"": ""Captains Courageous""}, {""tomatoes.fresh"": 1})" +what was the genre of College?,"db.movies.find({""title"": ""College""}, {""genres"": 1})" +What is the runtime of the movie The Divine Lady ?,"db.movies.find({""title"": ""The Divine Lady""}, { ""runtime"": 1})" +what was the genre of the movie Les vampires?,"db.movies.find({""title"": ""Les vampires""}, {""genres"": 1})" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie Lloyd's of London ?,"db.movies.find({""title"":""Lloyd's of London""}, {""tomatoes.viewer.meter"":1})" +who wrote The Public Enemy?,"db.movies.find({""title"": ""The Public Enemy""}, {""writers"": 1})" +what genre is The Jazz Singer?,"db.movies.find({""title"": ""The Jazz Singer""}, {""genres"": 1})" +what is the movie She Done Him Wrong about in details?,"db.movies.find({""title"": ""She Done Him Wrong""}, {""fullplot"": 1})" +Lady Windermere's Fan is a film written by this person?,"db.movies.find({""title"": ""Lady Windermere's Fan""}, {""writers"": 1})" +What type of movie is King Solomon's Mines ?,"db.movies.find({""title"":""King Solomon's Mines""}, {""genres"":1})" +"Cops, is written by who?","db.movies.find({""title"": ""Cops""}, {""writers"": 1})" +What is the language of the film Lloyd's of London?,"db.movies.find({""title"":""Lloyd's of London""}, {""languages"":1})" +who was the film A Corner in Wheat written by?,"db.movies.find({""title"": ""A Corner in Wheat""}, {""writers"": 1})" +how many awards did the film Now or Never win?,"db.movies.find({""title"":""Now or Never""}, {""awards.wins"":1})" +Who is the lead actress of the movie King Solomon's Mines ?,"db.movies.find({""title"": ""King Solomon's Mines""}, {""cast"":{""$slice"": 1},""title"":1})" +What's the title of the Sergei Eisenstein movie with the longest runtime?,"db.movies.find({""directors"":""Sergei Eisenstein""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +What is the viewer rating for the movie A Day in the Country on Rotten Tomatoes?,"db.movies.find({""title"":""A Day in the Country""}, {""tomatoes.viewer.rating"":1})" +what genre is the movie Blacksmith Scene?,"db.movies.find({""title"": ""Blacksmith Scene""}, {""genres"": 1})" +what is the film Romeo and Juliet about in details?,"db.movies.find({""title"": ""Romeo and Juliet""}, {""fullplot"": 1})" +What is the name of the director and cast for the movie 'L'opèra de quat'sous'?,"db.movies.find({""title"": ""L'opèra de quat'sous""}, {""directors"": 1, ""cast"": 1, ""_id"": 0})" +which person wrote the film Red Dust?,"db.movies.find({""title"": ""Red Dust""}, {""writers"": 1})" +Can you provide a longer version of the movie Robin Hood plot?,"db.movies.find({""title"":""Robin Hood""}, {""fullplot"":1})" +what year was the movie Three Little Pigs released?,"db.movies.find({""title"": ""Three Little Pigs""}, {""year"": 1})" +When was the information last updated for the movie The Thief of Bagdad ?,"db.movies.find({ ""title"": ""The Thief of Bagdad"" },{ ""lastupdated"": 1 })" +Who are the main actors in Civilization ?,"db.movies.find({ ""title"": ""Civilization"" }, { ""cast"": 1})" +what was the release date of Tsirk?,"db.movies.find({""title"": ""Tsirk""}, {""released"": 1})" +The Four Horsemen of the Apocalypse is written by this person?,"db.movies.find({""title"": ""The Four Horsemen of the Apocalypse""}, {""writers"": 1})" +How did the audience and critics receive the film Wings?,"db.movies.find({""title"":""Wings""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the running time of The Scarlet Empress?,"db.movies.find({""title"":""The Scarlet Empress""}, {""runtime"":1})" +Who is the lead actress of the movie Mèdchen in Uniform ?,"db.movies.find({""title"": ""Mèdchen in Uniform""}, {""cast"":{""$slice"": 1},""title"":1})" +Who is the director of the movie Footlight Parade?,"db.movies.find({""title"": ""Footlight Parade""}, { ""directors"": 1})" +who was the writer of the film The Thief of Bagdad?,"db.movies.find({""title"": ""The Thief of Bagdad""}, {""writers"": 1})" +the movie The Kid Brother was directed by who?,"db.movies.find({""title"": ""The Kid Brother""}, {""directors"": 1})" +What is the name of the director and cast for the movie 'Queen Christina'?,"db.movies.find({""title"": ""Queen Christina""}, {""directors"": 1, ""cast"": 1, ""_id"": 0})" +Who are the actors in the movie Cimarron?,"db.movies.find({""title"":""Cimarron""}, {""cast"":1})" +What languages are spoken in the movie The Blue Bird ?,"db.movies.find({""title"": ""The Blue Bird""}, { ""languages"": 1})" +which person wrote the movie Le grand jeu?,"db.movies.find({""title"": ""Le grand jeu""}, {""writers"": 1})" +what type of movie is China Seas?,"db.movies.find({""title"": ""China Seas""}, {""genres"": 1})" +What is the ID of the movie Movie Crazy on IMDB?,"db.movies.find({""title"": ""Movie Crazy""}, {""imdb.id"": 1})" +what type of movie is The Son of Kong?,"db.movies.find({""title"": ""The Son of Kong""}, {""genres"": 1})" +What is the rating of the movie Romeo and Juliet ?,"db.movies.find({ ""title"": ""Romeo and Juliet"" }, { ""rated"": 1})" +What is the name of the Quentin Tarantino-directed movie with the briefest runtime?,"db.movies.find({""directors"":""Quentin Tarantino""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +how has Cops been recieved by critics and audience?,"db.movies.find({""title"":""Cops""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +the film A Woman of Paris: A Drama of Fate starred which actors?,"db.movies.find({""title"": ""A Woman of Paris: A Drama of Fate""}, {""cast"": 1})" +"The Passion of Joan of Arc, was written by who?","db.movies.find({""title"": ""The Passion of Joan of Arc""}, {""writers"": 1})" +How many comments have been posted by users on the movie Marked Woman's page on the Mflix platform?,"db.movies.find({ ""title"": ""Marked Woman"" }, { ""num_mflix_comments"": 1 })" +"the movie Nanook of the North, was written by who?","db.movies.find({""title"": ""Nanook of the North""}, {""writers"": 1})" +What is the IMDb rating for the movie The Big Trail ?,"db.movies.find({""title"":""The Big Trail""}, {""imdb.rating"":1})" +"the film The Count of Monte Cristo, was written by who?","db.movies.find({""title"": ""The Count of Monte Cristo""}, {""writers"": 1})" +"They Won't Forget, was written by who?","db.movies.find({""title"": ""They Won't Forget""}, {""writers"": 1})" +who is listed as director for Broadway Melody of 1936?,"db.movies.find({""title"": ""Broadway Melody of 1936""}, {""directors"": 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})" +which person wrote San Francisco?,"db.movies.find({""title"": ""San Francisco""}, {""writers"": 1})" +the film Curly Top was directed by who?,"db.movies.find({""title"": ""Curly Top""}, {""directors"": 1})" +What is the viewer rating for the movie Les vampires on Rotten Tomatoes?,"db.movies.find({""title"":""Les vampires""}, {""tomatoes.viewer.rating"":1})" +who are the actors in Four Sons?,"db.movies.find({""title"": ""Four Sons""}, {""cast"": 1})" +who wrote the screenplay for Children in the Wind?,"db.movies.aggregate([ { ""$match"": { ""title"":""Children in the Wind""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie Camille ?,"db.movies.find({""title"":""Camille""}, {""tomatoes.viewer.meter"":1})" +who was the film Bride of Frankenstein written by?,"db.movies.find({""title"": ""Bride of Frankenstein""}, {""writers"": 1})" +How did the audience and critics receive The Champ?,"db.movies.find({""title"":""The Champ""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +The Black Cat was directed by who?,"db.movies.find({""title"": ""The Black Cat""}, {""directors"": 1})" +who is the writer of the film The Champ?,"db.movies.find({""title"": ""The Champ""}, {""writers"": 1})" +what is City Lights about in details?,"db.movies.find({""title"": ""City Lights""}, {""fullplot"": 1})" +what genre of film is Anthony Adverse?,"db.movies.find({""title"": ""Anthony Adverse""}, {""genres"": 1})" +What is the box office revenue for the movie 'The Italian'?,"db.movies.find({""title"": ""The Italian""}, {""tomatoes.boxOffice"": 1})" +Can you provide me with a list of movies directed by Federico Fellini?,"db.movies.find({""directors"": ""Federico Fellini""},{""title"":1})" +who was the writer of the movie The Iron Horse?,"db.movies.find({""title"": ""The Iron Horse""}, {""writers"": 1})" +In what language was the movie Les vampires released?,"db.movies.find({ ""title"": ""Les vampires"" }, { ""languages"": 1})" +What is the name of the actor who appears most frequently in movies directed by Spike Lee?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Spike Lee"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What languages are spoken in the movie Captains Courageous?,"db.movies.find({""title"":""Captains Courageous""}, {""languages"":1})" +Which movies did Coen Brothers direct?,"db.movies.find({""directors"": ""Coen Brothers""},{""title"":1})" +what genre is Miss Lulu Bett?,"db.movies.find({""title"": ""Miss Lulu Bett""}, {""genres"": 1})" +Can you provide more information about the Rotten Tomatoes rating for the movie The Phantom of the Opera?,"db.movies.find({""title"": ""The Phantom of the Opera""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +When was the Tomatometer score and other Tomato-related information last updated for the movie The Unknown?,"db.movies.find({""title"": ""The Unknown""}, { ""tomatoes.lastUpdated"": 1})" +who was the writer of the film High and Dizzy?,"db.movies.find({""title"": ""High and Dizzy""}, {""writers"": 1})" +Can you provide a detailed summary of the movie Queen Kelly plot?,"db.movies.find({ ""title"": ""Queen Kelly"" }, { ""fullplot"": 1})" +what was the release year of the film The Lost Patrol?,"db.movies.find({""title"": ""The Lost Patrol""}, {""year"": 1})" +What is the meter score of the movie Flash Gordon according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Flash Gordon""}, {""tomatoes.viewer.meter"": 1})" +When was the information last updated for the movie Going Hollywood ?,"db.movies.find({ ""title"": ""Going Hollywood"" },{ ""lastupdated"": 1 })" +what was the release date of Make Way for Tomorrow?,"db.movies.find({""title"": ""Make Way for Tomorrow""}, {""released"": 1})" +What is the production company behind the movie x?,"db.movies.find({""title"": ""The Broadway Melody""}, { ""tomatoes.production"": 1})" +who was the writer of The Scarlet Empress?,"db.movies.find({""title"": ""The Scarlet Empress""}, {""writers"": 1})" +What type of movie is The Great Ziegfeld ?,"db.movies.find({""title"":""The Great Ziegfeld""}, {""genres"":1})" +Shanghai Express is a movie written by this person?,"db.movies.find({""title"": ""Shanghai Express""}, {""writers"": 1})" +which company produced Sanders of the River?,"db.movies.find({""title"":""Sanders of the River""}, {""tomatoes.production"":1})" +Can you provide more information about the languages spoken in the movie The Black Pirate ?,"db.movies.find({""title"":""The Black Pirate""}, {""languages"":1})" +What is the running time of the film Tarzan and His Mate?,"db.movies.find({""title"":""Tarzan and His Mate""}, {""runtime"":1})" +what is the plot for Clash of the Wolves?,"db.movies.find({""title"": ""Clash of the Wolves""}, {""plot"": 1})" +what was the release date of Frankenstein?,"db.movies.find({""title"": ""Frankenstein""}, {""released"": 1})" +how many awards did the film Tsirk win?,"db.movies.find({""title"":""Tsirk""}, {""awards.wins"":1})" +What is the imdbID and year of release for the movie with a title of 'The Kid'?,"db.movies.find({""title"": ""The Kid""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +What is the consensus among critics about the movie Baby Face ?,"db.movies.find({""title"": ""Baby Face""}, {""tomatoes.consensus"": 1})" +Can you provide more information about the IMDb rating for the movie In Old Chicago ?,"db.movies.find({""title"":""In Old Chicago""}, {""imdb"":1})" +What is the running time of the movie Popeye the Sailor Meets Sindbad the Sailor?,"db.movies.find({""title"":""Popeye the Sailor Meets Sindbad the Sailor""}, {""runtime"":1})" +How did the audience and critics receive the movie Tarzan the Ape Man?,"db.movies.find({""title"":""Tarzan the Ape Man""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +Has the movie Ruggles of Red Gap won any awards?,"db.movies.find({""title"":""Ruggles of Red Gap""}, {""awards.wins"":1})" +who was the film Earth written by?,"db.movies.find({""title"": ""Earth""}, {""writers"": 1})" +who is the writer of the film White Shadows?,"db.movies.find({""title"": ""White Shadows""}, {""writers"": 1})" +how has Wings been recieved by critics and audience?,"db.movies.find({""title"":""Wings""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +When was the information last updated for the movie High and Dizzy ?,"db.movies.find({ ""title"": ""High and Dizzy"" },{ ""lastupdated"": 1 })" +who's the director of Seven Chances?,"db.movies.find({""title"": ""Seven Chances""}, {""directors"": 1})" +The Edge of the World is written by this person?,"db.movies.find({""title"": ""The Edge of the World""}, {""writers"": 1})" +Can you give me a brief summary of the movie The New Gulliver plot?,"db.movies.find({""title"":""The New Gulliver""}, {""plot"":1})" +What is the meter score of the movie Sanders of the River according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Sanders of the River""}, {""tomatoes.viewer.meter"": 1})" +What are the genres associated with the movie One Week ?,"db.movies.find({ ""title"": ""One Week"" }, { ""genres"": 1})" +Was the movie Make Way for Tomorrow well received by audiences and critics?,"db.movies.find({""title"":""Make Way for Tomorrow""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +"who is the director that directed Laugh, Clown, Laugh?","db.movies.find({""title"": ""Laugh, Clown, Laugh""}, {""directors"": 1})" +How many audience reviews have been submitted for the movie Fury ?,"db.movies.find({ ""title"": ""Fury"" },{ ""tomatoes.viewer.numReviews"": 1 })" +What is the consensus among critics about the movie Le grand jeu ?,"db.movies.find({""title"": ""Le grand jeu""}, {""tomatoes.consensus"": 1})" +who starred in David Copperfield?,"db.movies.find({""title"": ""David Copperfield""}, {""cast"": 1})" +what was the release date of the movie Shall We Dance?,"db.movies.find({""title"": ""Shall We Dance""}, {""released"": 1})" +how many awards did the film The Crusades win?,"db.movies.find({""title"":""The Crusades""}, {""awards.wins"":1})" +who wrote the movie Sanders of the River?,"db.movies.find({""title"": ""Sanders of the River""}, {""writers"": 1})" +How did the audience and critics receive the movie Broken Lullaby?,"db.movies.find({""title"":""Broken Lullaby""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +who was the writer of the movie It?,"db.movies.find({""title"": ""It""}, {""writers"": 1})" +What is the imdbID and genre of the movie 'The Son of Kong'?,"db.movies.find({""title"": ""The Son of Kong""}, {""imdb.id"": 1, ""genres"": 1, ""_id"": 0})" +Can you provide more information about the languages spoken in the movie State Fair ?,"db.movies.find({""title"":""State Fair""}, {""languages"":1})" +how has The Trail of the Lonesome Pine been recieved by critics and audience?,"db.movies.find({""title"":""The Trail of the Lonesome Pine""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what year was the movie Broadway Melody of 1936 released?,"db.movies.find({""title"": ""Broadway Melody of 1936""}, {""year"": 1})" +What movie directed by Ethan Coen has the best Rotten Tomatoes score?,"db.movies.find({""directors"": ""Ethan Coen"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +What is the cumulative duration of all the films that Federico Fellini directed?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Federico Fellini"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +which person wrote the film Chapayev?,"db.movies.find({""title"": ""Chapayev""}, {""writers"": 1})" +who starred in Man of Aran?,"db.movies.find({""title"": ""Man of Aran""}, {""cast"": 1})" +What is the language of The Black Cat?,"db.movies.find({""title"":""The Black Cat""}, {""languages"":1})" +what is the genre for the movie The Lower Depths?,"db.movies.find({""title"": ""The Lower Depths""}, {""genres"": 1})" +what year was the movie The Thin Man released?,"db.movies.find({""title"": ""The Thin Man""}, {""year"": 1})" +What is the Rotten Tomatoes meter rating for the movie Secret Agent ?,"db.movies.find({""title"":""Secret Agent""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +Who are the writers of the movie The World Moves On ?,"db.movies.find({""title"": ""The World Moves On""}, { ""writers"": 1})" +what is Tarzan the Ape Man about in details?,"db.movies.find({""title"": ""Tarzan the Ape Man""}, {""fullplot"": 1})" +Can you give me a brief summary of the movie Mary of Scotland plot?,"db.movies.find({""title"":""Mary of Scotland""}, {""plot"":1})" +Can you tell me which films were helmed by Stanley Kubrick?,"db.movies.find({""directors"": ""Stanley Kubrick""},{""title"":1})" +When was the information last updated for the movie Tarzan the Ape Man ?,"db.movies.find({ ""title"": ""Tarzan the Ape Man"" },{ ""lastupdated"": 1 })" +what was the genre of the film The General?,"db.movies.find({""title"": ""The General""}, {""genres"": 1})" +who are the actors in the film The Devil to Pay!?,"db.movies.find({""title"": ""The Devil to Pay!""}, {""cast"": 1})" +Who are the starring actors/actresses in the movie The Saphead?,"db.movies.find({""title"":""The Saphead""}, {""cast"":1})" +How many wins did the movie The Scarlet Empress receive?,"db.movies.find({""title"":""The Scarlet Empress""}, {""awards.wins"":1})" +The Invisible Ray is written by this person?,"db.movies.find({""title"": ""The Invisible Ray""}, {""writers"": 1})" +What languages are spoken in the movie The Freshman?,"db.movies.find({""title"":""The Freshman""}, {""languages"":1})" +What is the text representation of the awards won and nominations received by the movie Bad Girl?,"db.movies.find({""title"": ""Bad Girl""}, { ""awards.text"": 1})" +Who are the starring actors/actresses in the movie Come and Get It?,"db.movies.find({""title"":""Come and Get It""}, {""cast"":1})" +What is the box office revenue of the movie The 3 Penny Opera ?,"db.movies.find({""title"": ""The 3 Penny Opera""}, { ""tomatoes.boxOffice"": 1})" +Who are the actors in the movie The Strong Man?,"db.movies.find({""title"":""The Strong Man""}, {""cast"":1})" +Can you provide more information about the IMDb rating for the movie Chapayev ?,"db.movies.find({""title"":""Chapayev""}, {""imdb"":1})" +who stars in the movie Curly Top?,"db.movies.find({""title"": ""Curly Top""}, {""cast"": 1})" +who was the writer of Shanghai Express?,"db.movies.find({""title"": ""Shanghai Express""}, {""writers"": 1})" +how many awards did the movie The Gold Rush win?,"db.movies.find({""title"":""The Gold Rush""}, {""awards.wins"":1})" +what is the full plot for the film Stage Door?,"db.movies.find({""title"": ""Stage Door""}, {""fullplot"": 1})" +What is the language of the film Little Miss Marker?,"db.movies.find({""title"":""Little Miss Marker""}, {""languages"":1})" +which person wrote the film Applause?,"db.movies.find({""title"": ""Applause""}, {""writers"": 1})" +who was the writer of the movie Lost Horizon?,"db.movies.find({""title"": ""Lost Horizon""}, {""writers"": 1})" +What is the name of the director and cast for the movie 'Alice Adams'?,"db.movies.find({""title"": ""Alice Adams""}, {""directors"": 1, ""cast"": 1, ""_id"": 0})" +What's the title of the Gus Van Sant movie with the longest runtime?,"db.movies.find({""directors"":""Gus Van Sant""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +What is the running time of the film Grass: A Nation's Battle for Life?,"db.movies.find({""title"":""Grass: A Nation's Battle for Life""}, {""runtime"":1})" +What is the Metacritic score of the movie Queen Kelly ?,"db.movies.find({ ""title"": ""Queen Kelly"" }, { ""metacritic"": 1})" +who wrote the screenplay for the movie è Nous la Libertè?,"db.movies.aggregate([ { ""$match"": { ""title"":""è Nous la Libertè""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +Can you provide more information about the languages spoken in the movie Pandora's Box ?,"db.movies.find({""title"":""Pandora's Box""}, {""languages"":1})" +How many reviews did the movie The Spanish Earth receive on Rotten Tomatoes?,"db.movies.find({""title"":""The Spanish Earth""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +What is the title of the movie with the longest duration that Joel Coen directed?,"db.movies.find({""directors"":""Joel Coen""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +What is the production company of the movie A Day in the Country?,"db.movies.find({""title"":""A Day in the Country""}, {""tomatoes.production"":1})" +who are the actors in The Sin of Madelon Claudet?,"db.movies.find({""title"": ""The Sin of Madelon Claudet""}, {""cast"": 1})" +Who are the main actors/actresses in the movie Zero for Conduct?,"db.movies.find({""title"":""Zero for Conduct""}, {""cast"":1})" +the film A Woman of Paris: A Drama of Fate starred who?,"db.movies.find({""title"": ""A Woman of Paris: A Drama of Fate""}, {""cast"": 1})" +what is the movie The 3 Penny Opera about in details?,"db.movies.find({""title"": ""The 3 Penny Opera""}, {""fullplot"": 1})" +what genre of film is Dishonored?,"db.movies.find({""title"": ""Dishonored""}, {""genres"": 1})" +who was the writer of the movie Civilization?,"db.movies.find({""title"": ""Civilization""}, {""writers"": 1})" +Can you provide more information about the Rotten Tomatoes rating for the movie The Scarlet Empress?,"db.movies.find({""title"": ""The Scarlet Empress""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +who was Love Me Tonight directed by?,"db.movies.find({""title"": ""Love Me Tonight""}, {""directors"": 1})" +who acted in the movie All Quiet on the Western Front?,"db.movies.find({""title"": ""All Quiet on the Western Front""}, {""cast"": 1})" +What is the runtime of the movie The Ace of Hearts ?,"db.movies.find({""title"": ""The Ace of Hearts""}, { ""runtime"": 1})" +What is the imdbID and genre of the movie 'The Crowd Roars'?,"db.movies.find({""title"": ""The Crowd Roars""}, {""imdb.id"": 1, ""genres"": 1, ""_id"": 0})" +What is the runtime and rating for the movie 'A Midsummer Night's Dream'?,"db.movies.find({""title"": ""A Midsummer Night's Dream""}, {""runtime"": 1, ""rated"": 1})" +How many nominations did the movie Cops receive?,"db.movies.find({""title"":""Cops""}, {""awards.nominations"":1})" +who is the writer of The Iron Horse?,"db.movies.find({""title"": ""The Iron Horse""}, {""writers"": 1})" +What is the name of the director and cast for the movie 'Elephant Boy'?,"db.movies.find({""title"": ""Elephant Boy""}, {""directors"": 1, ""cast"": 1, ""_id"": 0})" +who was She written by?,"db.movies.find({""title"": ""She""}, {""writers"": 1})" +Who are the writers of the movie One Hundred Men and a Girl ?,"db.movies.find({""title"": ""One Hundred Men and a Girl""}, { ""writers"": 1})" +What is the runtime of the movie The Jazz Singer ?,"db.movies.find({""title"": ""The Jazz Singer""}, { ""runtime"": 1})" +Can you provide more information about the Rotten Tomatoes rating for the movie è Nous la Libertè?,"db.movies.find({""title"": ""è Nous la Libertè""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +which company produced the movie The Wedding Night?,"db.movies.find({""title"":""The Wedding Night""}, {""tomatoes.production"":1})" +who are the actors in Salomè?,"db.movies.find({""title"": ""Salomè""}, {""cast"": 1})" +What is the text representation of the awards won and nominations received by the movie Storm Over Asia?,"db.movies.find({""title"": ""Storm Over Asia""}, { ""awards.text"": 1})" +What is the website associated with the movie Men Without Women on Rotten Tomatoes?,"db.movies.find({""title"": ""Men Without Women""}, {""tomatoes.website"": 1})" +What is the full plot summary of the movie Within Our Gates ?,"db.movies.find({""title"": ""Within Our Gates""}, {""plot"": 1})" +How many reviews have been submitted for the movie The Count of Monte Cristo on Rotten Tomatoes?,"db.movies.find({ ""title"": ""The Count of Monte Cristo"" },{ ""tomatoes.viewer.numReviews"": 1 })" +The Life of Emile Zola is written by this person?,"db.movies.find({""title"": ""The Life of Emile Zola""}, {""writers"": 1})" +who was Shall We Dance written by?,"db.movies.find({""title"": ""Shall We Dance""}, {""writers"": 1})" +what is The Big Trail about in details?,"db.movies.find({""title"": ""The Big Trail""}, {""fullplot"": 1})" +Who is the director of the movie The Son of the Sheik?,"db.movies.find({""title"": ""The Son of the Sheik""}, { ""directors"": 1})" +what is the film The Charge of the Light Brigade description ?,"db.movies.find({""title"": ""The Charge of the Light Brigade""}, {""plot"": 1})" +who is the writer of the movie The Big Parade?,"db.movies.find({""title"": ""The Big Parade""}, {""writers"": 1})" +Who is the lead actor of the movie Wings ?,"db.movies.find({""title"": ""Wings""}, {""cast"":{""$slice"": 1},""title"":1})" +Which movie genres did Joel Coen direct?,"db.movies.distinct(""genres"", { ""directors"": ""Joel Coen"" })" +How many reviews have been submitted by critics for the movie Men Without Women?,"db.movies.find({ ""title"": ""Men Without Women"" }, { ""tomatoes.critic.numReviews"": 1 })" +who is the director that directed Little Caesar?,"db.movies.find({""title"": ""Little Caesar""}, {""directors"": 1})" +What is the quantity of movies that Tim Burton has directed?,"db.movies.countDocuments({""directors"":""Tim Burton""})" +What is the average rating of all of Roberto Rossellini movies in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Roberto Rossellini""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +Can you provide more information about the IMDb rating for the movie David Copperfield ?,"db.movies.find({""title"":""David Copperfield""}, {""imdb"":1})" +what is The Pearls of the Crown about?,"db.movies.find({""title"": ""The Pearls of the Crown""}, {""plot"": 1})" +What languages are spoken in the movie The Good Earth ?,"db.movies.find({""title"": ""The Good Earth""}, { ""languages"": 1})" +who starred in Sherlock Jr.?,"db.movies.find({""title"": ""Sherlock Jr.""}, {""cast"": 1})" +"the film Wild Boys of the Road, was written by who?","db.movies.find({""title"": ""Wild Boys of the Road""}, {""writers"": 1})" +who starred in the film Masquerade in Vienna?,"db.movies.find({""title"": ""Masquerade in Vienna""}, {""cast"": 1})" +who acted in the film The Sin of Madelon Claudet?,"db.movies.find({""title"": ""The Sin of Madelon Claudet""}, {""cast"": 1})" +who's the director of Rembrandt?,"db.movies.find({""title"": ""Rembrandt""}, {""directors"": 1})" +who was Make Way for Tomorrow written by?,"db.movies.find({""title"": ""Make Way for Tomorrow""}, {""writers"": 1})" +What is the full plot summary of the movie The Phantom of the Opera ?,"db.movies.find({""title"": ""The Phantom of the Opera""}, {""plot"": 1})" +"Has Traffic in Souls won any awards? If so, which ones?","db.movies.find({""title"":""Traffic in Souls"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +who was the film Becky Sharp written by?,"db.movies.find({""title"": ""Becky Sharp""}, {""writers"": 1})" +Can you provide more information about the languages spoken in the movie Battleship Potemkin ?,"db.movies.find({""title"":""Battleship Potemkin""}, {""languages"":1})" +What is the rating of the movie Foolish Wives ?,"db.movies.find({ ""title"": ""Foolish Wives"" }, { ""rated"": 1})" +how has Man with a Movie Camera been recieved by critics and audience?,"db.movies.find({""title"":""Man with a Movie Camera""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +How many votes does the movie The Guardsman have on IMDb?,"db.movies.find({""title"":""The Guardsman""}, {""imdb.votes"":1})" +What is the sum of the runtimes of all the films directed by Michelangelo Antonioni?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Michelangelo Antonioni"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +How long is the runtime of the movie A Corner in Wheat ?,"db.movies.find({""title"":""A Corner in Wheat""}, {""runtime"":1})" +who starred in the film Man with a Movie Camera?,"db.movies.find({""title"": ""Man with a Movie Camera""}, {""cast"": 1})" +what is The Man Who Knew Too Much imdb rating?,"db.movies.find({""title"": ""The Man Who Knew Too Much""}, {""imdb.rating"": 1})" +who starred in the movie The Cheat?,"db.movies.find({""title"": ""The Cheat""}, {""cast"": 1})" +how many awards did Safety Last! win?,"db.movies.find({""title"":""Safety Last!""}, {""awards.wins"":1})" +What type of movie is The Blue Light ?,"db.movies.find({""title"":""The Blue Light""}, {""genres"":1})" +What is the box office revenue of the movie Elephant Boy in dollars?,"db.movies.find({""title"": ""Elephant Boy""}, {""tomatoes.boxOffice"": 1})" +who wrote the screenplay for the movie Scrooge?,"db.movies.aggregate([ { ""$match"": { ""title"":""Scrooge""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +Has the movie The Story of Louis Pasteur won any awards?,"db.movies.find({""title"":""The Story of Louis Pasteur""}, {""awards.wins"":1})" +who wrote the screenplay for the film The Power and the Glory?,"db.movies.aggregate([ { ""$match"": { ""title"":""The Power and the Glory""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +what is the genre of The 39 Steps?,"db.movies.find({""title"": ""The 39 Steps""}, {""genres"": 1})" +Who are the actors in the movie The Navigator?,"db.movies.find({""title"":""The Navigator""}, {""cast"":1})" +What is the best-reviewed movie on Rotten Tomatoes that was directed by Eric Rohmer?,"db.movies.find({""directors"": ""Eric Rohmer"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +who is the writer of the film I Am a Fugitive from a Chain Gang?,"db.movies.find({""title"": ""I Am a Fugitive from a Chain Gang""}, {""writers"": 1})" +In what language was the movie In the Land of the Head Hunters released?,"db.movies.find({ ""title"": ""In the Land of the Head Hunters"" }, { ""languages"": 1})" +What is the language of Mayerling?,"db.movies.find({""title"":""Mayerling""}, {""languages"":1})" +What is the language of the movie The Mummy?,"db.movies.find({""title"":""The Mummy""}, {""languages"":1})" +who wrote the movie The Song of Night?,"db.movies.find({""title"": ""The Song of Night""}, {""writers"": 1})" +Can you share with me the film genres that were helmed by Ridley Scott?,"db.movies.distinct(""genres"", { ""directors"": ""Ridley Scott"" })" +How did the audience and critics receive The Prisoner of Zenda?,"db.movies.find({""title"":""The Prisoner of Zenda""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +How many awards did the movie win Le grand jeu ?,"db.movies.find({ ""title"": ""Le grand jeu"" },{ ""awards.wins"": 1 })" +In what year was the movie Dante's Inferno released ?,"db.movies.find({ ""title"": ""Dante's Inferno"" }, { ""year"": 1})" +what is the film Our Hospitality about?,"db.movies.find({""title"": ""Our Hospitality""}, {""plot"": 1})" +what is the full plot for Westfront 1918?,"db.movies.find({""title"": ""Westfront 1918""}, {""fullplot"": 1})" +what is the film Clash of the Wolves imdb rating?,"db.movies.find({""title"": ""Clash of the Wolves""}, {""imdb.rating"": 1})" +How many votes did the movie A Midsummer Night's Dream receive on IMDB?,"db.movies.find({""title"": ""A Midsummer Night's Dream""}, { ""imdb.votes"": 1})" +what was the release year of the movie In Old Arizona?,"db.movies.find({""title"": ""In Old Arizona""}, {""year"": 1})" +What is the IMDB rating of the movie Gertie the Dinosaur ?,"db.movies.find({""title"": ""Gertie the Dinosaur""}, { ""imdb.rating"": 1})" +What is the IMDB rating of the movie The Prince and the Pauper ?,"db.movies.find({""title"": ""The Prince and the Pauper""}, { ""imdb.rating"": 1})" +What type of media is The Crusades?,"db.movies.find({ ""title"": ""The Crusades"" }, { ""type"": 1})" +what was the release year of Salomè?,"db.movies.find({""title"": ""Salomè""}, {""year"": 1})" +When was the information about the movie Metropolis last updated?,"db.movies.find({ ""title"": ""Metropolis"" }, { ""lastupdated"": 1})" +who directed the film Scrooge?,"db.movies.find({""title"": ""Scrooge""}, {""directors"": 1})" +who directed the movie Our Hospitality?,"db.movies.find({""title"": ""Our Hospitality""}, {""directors"": 1})" +which company produced the movie The Cameraman?,"db.movies.find({""title"":""The Cameraman""}, {""tomatoes.production"":1})" +When was the movie The Band Concert released in theaters?,"db.movies.find({""title"": ""The Band Concert""}, {""released"": 1})" +How many reviews did the movie The Docks of New York receive on Rotten Tomatoes?,"db.movies.find({""title"":""The Docks of New York""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +who wrote the film King Kong?,"db.movies.find({""title"": ""King Kong""}, {""writers"": 1})" +What is the box office revenue of the movie Little Caesar ?,"db.movies.find({""title"": ""Little Caesar""}, { ""tomatoes.boxOffice"": 1})" +What is the running time of the film Les vampires?,"db.movies.find({""title"":""Les vampires""}, {""runtime"":1})" +What is the running time of the movie Children in the Wind?,"db.movies.find({""title"":""Children in the Wind""}, {""runtime"":1})" +What was the release date for the movie Zoo in Budapest?,"db.movies.find({""title"":""Zoo in Budapest""}, {""released"":1})" +How many audience reviews have been submitted for the movie Dames ?,"db.movies.find({ ""title"": ""Dames"" },{ ""tomatoes.viewer.numReviews"": 1 })" +What is the IMDB rating of the movie The Birth of a Nation ?,"db.movies.find({""title"": ""The Birth of a Nation""}, { ""imdb.rating"": 1})" +Top Hat is a film written by this person?,"db.movies.find({""title"": ""Top Hat""}, {""writers"": 1})" +what genre is the film The Phantom of the Opera?,"db.movies.find({""title"": ""The Phantom of the Opera""}, {""genres"": 1})" +who is the director for Queen Christina?,"db.movies.find({""title"": ""Queen Christina""}, {""directors"": 1})" +What is the standard rating of Vittorio De Sica movies in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Vittorio De Sica""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +Can you provide me with a list of Ridley Scott-directed movies with the highest ratings?,"db.movies.find({""directors"": 'Ridley Scott', ""imdb.rating"": {""$gt"": 8.5}})" +what is the movie Bride of Frankenstein about in details?,"db.movies.find({""title"": ""Bride of Frankenstein""}, {""fullplot"": 1})" +What are the genres this movie Little Women belongs to?,"db.movies.find({""title"":""Little Women""}, {""genres"":1})" +What is the production company of The Trail of the Lonesome Pine?,"db.movies.find({""title"":""The Trail of the Lonesome Pine""}, {""tomatoes.production"":1})" +what genre is the movie The Life of Emile Zola?,"db.movies.find({""title"": ""The Life of Emile Zola""}, {""genres"": 1})" +who is the director for Blacksmith Scene?,"db.movies.find({""title"": ""Blacksmith Scene""}, {""directors"": 1})" +who produced the movie The Front Page?,"db.movies.find({""title"":""The Front Page""}, {""tomatoes.production"":1})" +what is the full plot for the movie Going Hollywood?,"db.movies.find({""title"": ""Going Hollywood""}, {""fullplot"": 1})" +What is the MPAA rating of the film Three Little Pigs?,"db.movies.find({""title"":""Three Little Pigs""}, {""rated"":1})" +How many viewer reviews did the movie Nosferatu receive on Rotten Tomatoes?,"db.movies.find({""title"":""Nosferatu""}, {""tomatoes.viewer.numReviews"":1})" +What is the meter score of the movie Frankenstein according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Frankenstein""}, {""tomatoes.viewer.meter"": 1})" +which person wrote Dekigokoro?,"db.movies.find({""title"": ""Dekigokoro""}, {""writers"": 1})" +which actor appeared in most of the movies directed by Jean Renoir?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Jean Renoir"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What is the running time of the movie Daughter of Shanghai?,"db.movies.find({""title"":""Daughter of Shanghai""}, {""runtime"":1})" +What languages are spoken in the movie Flash Gordon?,"db.movies.find({""title"":""Flash Gordon""}, {""languages"":1})" +How many reviews have been submitted by critics for the movie The Prisoner of Zenda?,"db.movies.find({ ""title"": ""The Prisoner of Zenda"" }, { ""tomatoes.critic.numReviews"": 1 })" +what kind of movie is Dames?,"db.movies.find({""title"": ""Dames""}, {""genres"": 1})" +What is the IMDb ID for the movie The Pearls of the Crown?,"db.movies.find({""title"":""The Pearls of the Crown""}, {""imdb.id"":1})" +"what type of film is Laugh, Clown, Laugh?","db.movies.find({""title"": ""Laugh, Clown, Laugh""}, {""genres"": 1})" +what is the plot for Gold Diggers of 1935?,"db.movies.find({""title"": ""Gold Diggers of 1935""}, {""plot"": 1})" +what is the movie The Blue Light imdb rating?,"db.movies.find({""title"": ""The Blue Light""}, {""imdb.rating"": 1})" +What is the IMDb ID for the movie Harvest?,"db.movies.find({""title"":""Harvest""}, {""imdb.id"":1})" +what was the genre of The Gilded Lily?,"db.movies.find({""title"": ""The Gilded Lily""}, {""genres"": 1})" +How many awards did the movie win The World Moves On ?,"db.movies.find({ ""title"": ""The World Moves On"" },{ ""awards.wins"": 1 })" +What are the highest-rated Music movies in the database?,"db.movies.find({""genres"": ""Music""}).sort({""imdb.rating"": -1}).limit(10)" +How many comments have been posted by users on the movie The Chechahcos's page on the Mflix platform?,"db.movies.find({ ""title"": ""The Chechahcos"" }, { ""num_mflix_comments"": 1 })" +who stars in the film In Old Chicago?,"db.movies.find({""title"": ""In Old Chicago""}, {""cast"": 1})" +What is the MPAA rating of the movie Wonder Bar?,"db.movies.find({""title"":""Wonder Bar""}, {""rated"":1})" +what is the film Forbidden imdb rating?,"db.movies.find({""title"": ""Forbidden""}, {""imdb.rating"": 1})" +What are the genres this movie Shanghai Express belongs to?,"db.movies.find({""title"":""Shanghai Express""}, {""genres"":1})" +what was the genre of the movie Little Miss Marker?,"db.movies.find({""title"": ""Little Miss Marker""}, {""genres"": 1})" +what is the movie The Prince and the Pauper about in details?,"db.movies.find({""title"": ""The Prince and the Pauper""}, {""fullplot"": 1})" +Four Sons was directed by who?,"db.movies.find({""title"": ""Four Sons""}, {""directors"": 1})" +what type of movie is In the Land of the Head Hunters?,"db.movies.find({""title"": ""In the Land of the Head Hunters""}, {""genres"": 1})" +Could you tell me which Michelangelo Antonioni-directed film has the longest running time?,"db.movies.find({""directors"":""Michelangelo Antonioni""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +what genre is the movie State Fair?,"db.movies.find({""title"": ""State Fair""}, {""genres"": 1})" +What is the language of the movie The Dark Angel?,"db.movies.find({""title"":""The Dark Angel""}, {""languages"":1})" +What is the running time of Alice Adams?,"db.movies.find({""title"":""Alice Adams""}, {""runtime"":1})" +What is the IMDb rating for the movie The Charge of the Light Brigade?,"db.movies.find({""title"": ""The Charge of the Light Brigade""}, {""imdb.rating"": 1})" +what year was The Docks of New York released?,"db.movies.find({""title"": ""The Docks of New York""}, {""year"": 1})" +who starred in the movie Rembrandt?,"db.movies.find({""title"": ""Rembrandt""}, {""cast"": 1})" +who wrote the screenplay for Lonesome?,"db.movies.aggregate([ { ""$match"": { ""title"":""Lonesome""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +what is the plot for the film The Wedding Night?,"db.movies.find({""title"": ""The Wedding Night""}, {""plot"": 1})" +what year was Beau Geste released?,"db.movies.find({""title"": ""Beau Geste""}, {""year"": 1})" +What is the website associated with the movie The Last Command on Rotten Tomatoes?,"db.movies.find({""title"": ""The Last Command""}, {""tomatoes.website"": 1})" +the film Harvest was directed by who?,"db.movies.find({""title"": ""Harvest""}, {""directors"": 1})" +What movie directed by David Fincher has the shortest running time?,"db.movies.find({""directors"":""David Fincher""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +which person wrote Triumph of the Will?,"db.movies.find({""title"": ""Triumph of the Will""}, {""writers"": 1})" +who stars in the film The Blue Light?,"db.movies.find({""title"": ""The Blue Light""}, {""cast"": 1})" +"The Spanish Earth, is written by who?","db.movies.find({""title"": ""The Spanish Earth""}, {""writers"": 1})" +What is the audience rating of the movie The Cameraman ?,"db.movies.find({ ""title"": ""The Cameraman"" },{ ""tomatoes.viewer.rating"": 1 })" +When was the information about the movie Intolerance: Love's Struggle Throughout the Ages last updated?,"db.movies.find({ ""title"": ""Intolerance: Love's Struggle Throughout the Ages"" }, { ""lastupdated"": 1})" +who produced Les Misèrables?,"db.movies.find({""title"":""Les Misèrables""}, {""tomatoes.production"":1})" +which company produced the movie Le grand jeu?,"db.movies.find({""title"":""Le grand jeu""}, {""tomatoes.production"":1})" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie Hell's Hinges ?,"db.movies.find({""title"":""Hell's Hinges""}, {""tomatoes.viewer.meter"":1})" +who is the director for Wings?,"db.movies.find({""title"": ""Wings""}, {""directors"": 1})" +what type of film is Napoleon?,"db.movies.find({""title"": ""Napoleon""}, {""genres"": 1})" +who is the director that directed The Big Parade?,"db.movies.find({""title"": ""The Big Parade""}, {""directors"": 1})" +When was the information about the movie Tarzan the Ape Man last updated?,"db.movies.find({ ""title"": ""Tarzan the Ape Man"" }, { ""lastupdated"": 1})" +Which actor has the greatest number of roles in Luchino Visconti's directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Luchino Visconti"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +Has the movie A Day in the Country won any awards?,"db.movies.find({""title"":""A Day in the Country""}, {""awards.wins"":1})" +What was the release date for the movie The Sin of Madelon Claudet?,"db.movies.find({""title"":""The Sin of Madelon Claudet""}, {""released"":1})" +what was the release date of Beau Geste?,"db.movies.find({""title"": ""Beau Geste""}, {""released"": 1})" +Could you tell me the exact number of films that have been directed by Jacques Rivette?,"db.movies.countDocuments({""directors"":""Jacques Rivette""})" +What are the countries associated with the movie Blacksmith Scene ?,"db.movies.find({""title"": ""Blacksmith Scene""}, {""countries"": 1})" +what year was Grass: A Nation's Battle for Life released?,"db.movies.find({""title"": ""Grass: A Nation's Battle for Life""}, {""year"": 1})" +who is the director for Payment Deferred?,"db.movies.find({""title"": ""Payment Deferred""}, {""directors"": 1})" +"The Awful Truth, was written by who?","db.movies.find({""title"": ""The Awful Truth""}, {""writers"": 1})" +What is the running time of the movie Four Sons?,"db.movies.find({""title"":""Four Sons""}, {""runtime"":1})" +who produced the film Love Me Tonight?,"db.movies.find({""title"":""Love Me Tonight""}, {""tomatoes.production"":1})" +How many reviews have been submitted for the movie Going Hollywood on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Going Hollywood"" },{ ""tomatoes.viewer.numReviews"": 1 })" +who was the writer of The Italian?,"db.movies.find({""title"": ""The Italian""}, {""writers"": 1})" +what type of movie is The Champ?,"db.movies.find({""title"": ""The Champ""}, {""genres"": 1})" +In what year was the movie In Old Chicago released ?,"db.movies.find({ ""title"": ""In Old Chicago"" }, { ""year"": 1})" +What is the running time of the movie The Blood of a Poet?,"db.movies.find({""title"":""The Blood of a Poet""}, {""runtime"":1})" +How long is the runtime of the movie The Cheat ?,"db.movies.find({""title"":""The Cheat""}, {""runtime"":1})" +"How many awards did the movie win Laugh, Clown, Laugh ?","db.movies.find({ ""title"": ""Laugh, Clown, Laugh"" },{ ""awards.wins"": 1 })" +what is the plot for the movie The Band Concert?,"db.movies.find({""title"": ""The Band Concert""}, {""plot"": 1})" +What is the dominant genre of Louis Malle's directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Louis Malle"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What type of media is A Day in the Country?,"db.movies.find({ ""title"": ""A Day in the Country"" }, { ""type"": 1})" +What is the box office revenue for the movie 'Masquerade in Vienna'?,"db.movies.find({""title"": ""Masquerade in Vienna""}, {""tomatoes.boxOffice"": 1})" +How many nominations did the movie Broadway Bill receive?,"db.movies.find({""title"":""Broadway Bill""}, {""awards.nominations"":1})" +Flash Gordon is written by this person?,"db.movies.find({""title"": ""Flash Gordon""}, {""writers"": 1})" +who produced the film Metropolis?,"db.movies.find({""title"":""Metropolis""}, {""tomatoes.production"":1})" +what is the genre for the film Show People?,"db.movies.find({""title"": ""Show People""}, {""genres"": 1})" +What is the freshness score of the movie China Seas on Rotten Tomatoes?,"db.movies.find({""title"": ""China Seas""}, {""tomatoes.fresh"": 1})" +what was the release year of Come and Get It?,"db.movies.find({""title"": ""Come and Get It""}, {""year"": 1})" +what was the release year of the movie It's a Gift?,"db.movies.find({""title"": ""It's a Gift""}, {""year"": 1})" +what sort of movie is King of Jazz?,"db.movies.find({""title"": ""King of Jazz""}, {""genres"": 1})" +who wrote the movie The Blue Bird?,"db.movies.find({""title"": ""The Blue Bird""}, {""writers"": 1})" +who are the actors in The Music Box?,"db.movies.find({""title"": ""The Music Box""}, {""cast"": 1})" +What is the box office revenue of the movie Theodora Goes Wild ?,"db.movies.find({""title"": ""Theodora Goes Wild""}, { ""tomatoes.boxOffice"": 1})" +who are the actors in the film Queen Christina?,"db.movies.find({""title"": ""Queen Christina""}, {""cast"": 1})" +who was Fury directed by?,"db.movies.find({""title"": ""Fury""}, {""directors"": 1})" +which company produced the film Asphalt?,"db.movies.find({""title"":""Asphalt""}, {""tomatoes.production"":1})" +What is the running time of the film Twentieth Century?,"db.movies.find({""title"":""Twentieth Century""}, {""runtime"":1})" +How long is the runtime of the movie One Hundred Men and a Girl ?,"db.movies.find({""title"":""One Hundred Men and a Girl""}, {""runtime"":1})" +how many awards did the film Wonder Bar win?,"db.movies.find({""title"":""Wonder Bar""}, {""awards.wins"":1})" +When was the information last updated for the movie The Life of Emile Zola ?,"db.movies.find({ ""title"": ""The Life of Emile Zola"" },{ ""lastupdated"": 1 })" +Wife! Be Like a Rose! was directed by who?,"db.movies.find({""title"": ""Wife! Be Like a Rose!""}, {""directors"": 1})" +who produced the film Red Dust?,"db.movies.find({""title"":""Red Dust""}, {""tomatoes.production"":1})" +What is the production company behind the movie A Day in the Country ?,"db.movies.find({""title"": ""A Day in the Country""}, {""tomatoes.production"": 1})" +"Has Earth won any awards? If so, which ones?","db.movies.find({""title"":""Earth"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What is the rating of the movie The Thin Man ?,"db.movies.find({ ""title"": ""The Thin Man"" }, { ""rated"": 1})" +who was They Won't Forget directed by?,"db.movies.find({""title"": ""They Won't Forget""}, {""directors"": 1})" +Can you provide more information about the IMDb rating for the movie Daughter of Shanghai ?,"db.movies.find({""title"":""Daughter of Shanghai""}, {""imdb"":1})" +What is the runtime and rating for the movie 'Sanders of the River'?,"db.movies.find({""title"": ""Sanders of the River""}, {""runtime"": 1, ""rated"": 1})" +what kind of movie is Fury?,"db.movies.find({""title"": ""Fury""}, {""genres"": 1})" +what genre is the film King Solomon's Mines?,"db.movies.find({""title"": ""King Solomon's Mines""}, {""genres"": 1})" +In what year was the movie Shanghai Express released?,"db.movies.find({""title"":""Shanghai Express""}, {""year"":1})" +what kind of movie is Shanghai Express?,"db.movies.find({""title"": ""Shanghai Express""}, {""genres"": 1})" +What is the runtime of the movie The Unknown ?,"db.movies.find({""title"": ""The Unknown""}, { ""runtime"": 1})" +who wrote These Three?,"db.movies.find({""title"": ""These Three""}, {""writers"": 1})" +the movie Zoo in Budapest was directed by who?,"db.movies.find({""title"": ""Zoo in Budapest""}, {""directors"": 1})" +Can you provide a detailed summary of the movie Tabu: A Story of the South Seas plot?,"db.movies.find({ ""title"": ""Tabu: A Story of the South Seas"" }, { ""fullplot"": 1})" +What is the production company behind the movie Steamboat Willie ?,"db.movies.find({""title"": ""Steamboat Willie""}, { ""tomatoes.production"": 1})" +who is the director that directed Anna Karenina?,"db.movies.find({""title"": ""Anna Karenina""}, {""directors"": 1})" +"the film Safety Last!, was written by who?","db.movies.find({""title"": ""Safety Last!""}, {""writers"": 1})" +what is the movie Tabu: A Story of the South Seas about?,"db.movies.find({""title"": ""Tabu: A Story of the South Seas""}, {""plot"": 1})" +What are the genres this movie The Docks of New York belongs to?,"db.movies.find({""title"":""The Docks of New York""}, {""genres"":1})" +What is the box office revenue of the movie The 3 Penny Opera in dollars?,"db.movies.find({""title"": ""The 3 Penny Opera""}, {""tomatoes.boxOffice"": 1})" +What is the IMDb rating for the movie Broadway Melody of 1936 ?,"db.movies.find({""title"":""Broadway Melody of 1936""}, {""imdb.rating"":1})" +What is the imdbID and year of release for the movie with a title of 'Top Hat'?,"db.movies.find({""title"": ""Top Hat""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +Cleopatra is written by this person?,"db.movies.find({""title"": ""Cleopatra""}, {""writers"": 1})" +What is the IMDb rating for the movie These Three?,"db.movies.find({""title"": ""These Three""}, {""imdb.rating"": 1})" +how many awards did the film In Old Arizona win?,"db.movies.find({""title"":""In Old Arizona""}, {""awards.wins"":1})" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie The Sin of Madelon Claudet ?,"db.movies.find({""title"":""The Sin of Madelon Claudet""}, {""tomatoes.viewer.meter"":1})" +What is the box office revenue of the movie Sunrise in dollars?,"db.movies.find({""title"": ""Sunrise""}, {""tomatoes.boxOffice"": 1})" +Who is the director of the movie Trouble in Paradise?,"db.movies.find({""title"": ""Trouble in Paradise""}, { ""directors"": 1})" +What is the plot summary of the movie Cops ?,"db.movies.find({ ""title"": ""Cops"" }, { ""plot"": 1})" +What is the runtime and rating for the movie 'The Power and the Glory'?,"db.movies.find({""title"": ""The Power and the Glory""}, {""runtime"": 1, ""rated"": 1})" +What was the release date for the movie The Public Enemy?,"db.movies.find({""title"":""The Public Enemy""}, {""released"":1})" +What are the top-rated movies directed by Quentin Tarantino?,"db.movies.find({""directors"": 'Quentin Tarantino', ""imdb.rating"": {""$gt"": 8.5}})" +what is the full plot for the movie Night Must Fall?,"db.movies.find({""title"": ""Night Must Fall""}, {""fullplot"": 1})" +what sort of film is Romeo and Juliet?,"db.movies.find({""title"": ""Romeo and Juliet""}, {""genres"": 1})" +who wrote the screenplay for State Fair?,"db.movies.aggregate([ { ""$match"": { ""title"":""State Fair""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +What is the IMDb rating for the movie Nosferatu ?,"db.movies.find({""title"":""Nosferatu""}, {""imdb.rating"":1})" +What is the name of the director and cast for the movie 'Nanook of the North'?,"db.movies.find({""title"": ""Nanook of the North""}, {""directors"": 1, ""cast"": 1, ""_id"": 0})" +what was the release year of Viva Villa!?,"db.movies.find({""title"": ""Viva Villa!""}, {""year"": 1})" +How many reviews have been submitted for the movie The Private Life of Henry VIII. on Rotten Tomatoes?,"db.movies.find({ ""title"": ""The Private Life of Henry VIII."" },{ ""tomatoes.viewer.numReviews"": 1 })" +Can you provide a detailed summary of the movie The Green Pastures plot?,"db.movies.find({ ""title"": ""The Green Pastures"" }, { ""fullplot"": 1})" +Who is the lead actress of the movie My Man Godfrey ?,"db.movies.find({""title"": ""My Man Godfrey""}, {""cast"":{""$slice"": 1},""title"":1})" +who starred in the film Roberta?,"db.movies.find({""title"": ""Roberta""}, {""cast"": 1})" +What is the IMDb rating for Now or Never?,"db.movies.find({""title"": ""Now or Never""}, {""imdb.rating"": 1})" +which person wrote the movie Footlight Parade?,"db.movies.find({""title"": ""Footlight Parade""}, {""writers"": 1})" +What are the genres associated with the movie Show People ?,"db.movies.find({ ""title"": ""Show People"" }, { ""genres"": 1})" +which company produced the movie Chapayev?,"db.movies.find({""title"":""Chapayev""}, {""tomatoes.production"":1})" +who starred in the movie Scrooge?,"db.movies.find({""title"": ""Scrooge""}, {""cast"": 1})" +"Has the film Trouble in Paradise won any awards? If so, which ones?","db.movies.find({""title"":""Trouble in Paradise"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +what was the release year of Swedenhielms Family?,"db.movies.find({""title"": ""Swedenhielms Family""}, {""year"": 1})" +who was the writer of A Corner in Wheat?,"db.movies.find({""title"": ""A Corner in Wheat""}, {""writers"": 1})" +who produced From Hand to Mouth?,"db.movies.find({""title"":""From Hand to Mouth""}, {""tomatoes.production"":1})" +What is the text representation of the awards won and nominations received by the movie The Lower Depths?,"db.movies.find({""title"": ""The Lower Depths""}, { ""awards.text"": 1})" +what is the plot for The Unknown?,"db.movies.find({""title"": ""The Unknown""}, {""plot"": 1})" +What is the text representation of the awards won and nominations received by the movie Black Fury?,"db.movies.find({""title"": ""Black Fury""}, { ""awards.text"": 1})" +What was the release date for the movie The Last Command?,"db.movies.find({""title"":""The Last Command""}, {""released"":1})" +the film Grand Hotel starred which actors?,"db.movies.find({""title"": ""Grand Hotel""}, {""cast"": 1})" +How many votes does the movie Seven Chances have on IMDb?,"db.movies.find({""title"":""Seven Chances""}, {""imdb.votes"":1})" +who stars in the film Trouble in Paradise?,"db.movies.find({""title"": ""Trouble in Paradise""}, {""cast"": 1})" +who is the director for One Week?,"db.movies.find({""title"": ""One Week""}, {""directors"": 1})" +How many nominations did the movie Bride of Frankenstein receive?,"db.movies.find({""title"":""Bride of Frankenstein""}, {""awards.nominations"":1})" +What is the IMDb rating for the movie One Hundred Men and a Girl ?,"db.movies.find({""title"":""One Hundred Men and a Girl""}, {""imdb.rating"":1})" +the movie Berkeley Square starred which actors?,"db.movies.find({""title"": ""Berkeley Square""}, {""cast"": 1})" +what is the movie Secret Agent description ?,"db.movies.find({""title"": ""Secret Agent""}, {""plot"": 1})" +what is the film Broadway Bill about in details?,"db.movies.find({""title"": ""Broadway Bill""}, {""fullplot"": 1})" +which person wrote The Private Life of Henry VIII.?,"db.movies.find({""title"": ""The Private Life of Henry VIII.""}, {""writers"": 1})" +who is the writer of the movie Asphalt?,"db.movies.find({""title"": ""Asphalt""}, {""writers"": 1})" +what is the film He Who Gets Slapped about?,"db.movies.find({""title"": ""He Who Gets Slapped""}, {""plot"": 1})" +what is the plot for the film The Sin of Madelon Claudet?,"db.movies.find({""title"": ""The Sin of Madelon Claudet""}, {""plot"": 1})" +what kind of film is Hallelujah?,"db.movies.find({""title"": ""Hallelujah""}, {""genres"": 1})" +When was the movie The Chechahcos released?,"db.movies.find({""title"":""The Chechahcos""}, {""released"":1})" +What is the MPAA rating of the film Disraeli?,"db.movies.find({""title"":""Disraeli""}, {""rated"":1})" +What is the percentage of positive reviews among critics for the movie Night Must Fall ?,"db.movies.find({ ""title"": ""Night Must Fall"" },{ ""tomatoes.critic.meter"": 1 })" +How long is the runtime of the movie Les Misèrables ?,"db.movies.find({""title"":""Les Misèrables""}, {""runtime"":1})" +Who are the actors that appear in the movie This Is My Affair ?,"db.movies.find({ ""title"": ""This Is My Affair"" },{ ""cast"": 1 })" +Can you provide a detailed summary of the movie The Poor Little Rich Girl plot?,"db.movies.find({ ""title"": ""The Poor Little Rich Girl"" }, { ""fullplot"": 1})" +What languages are spoken in the movie Mutiny on the Bounty?,"db.movies.find({""title"":""Mutiny on the Bounty""}, {""languages"":1})" +who's the director of Westfront 1918?,"db.movies.find({""title"": ""Westfront 1918""}, {""directors"": 1})" +What is the production company behind the movie Our Hospitality ?,"db.movies.find({""title"": ""Our Hospitality""}, {""tomatoes.production"": 1})" +who acted in the film Naughty Marietta?,"db.movies.find({""title"": ""Naughty Marietta""}, {""cast"": 1})" +how many awards did the movie Forbidden win?,"db.movies.find({""title"":""Forbidden""}, {""awards.wins"":1})" +How many audience reviews have been submitted for the movie The Awful Truth?,"db.movies.find({ ""title"": ""The Awful Truth"" }, { ""tomatoes.viewer.numReviews"": 1 })" +what is the film The Power and the Glory imdb rating?,"db.movies.find({""title"": ""The Power and the Glory""}, {""imdb.rating"": 1})" +What is the IMDb rating for the movie The Cheat?,"db.movies.find({""title"": ""The Cheat""}, {""imdb.rating"": 1})" +the movie L'opèra de quat'sous starred which actors?,"db.movies.find({""title"": ""L'opèra de quat'sous""}, {""cast"": 1})" +Has the movie The Fall of the House of Usher won any awards?,"db.movies.find({""title"":""The Fall of the House of Usher""}, {""awards.wins"":1})" +what was the release year of the film 42nd Street?,"db.movies.find({""title"": ""42nd Street""}, {""year"": 1})" +What is the production company behind the movie Broadway Melody of 1936 ?,"db.movies.find({""title"": ""Broadway Melody of 1936""}, {""tomatoes.production"": 1})" +who produced the film The Hurricane?,"db.movies.find({""title"":""The Hurricane""}, {""tomatoes.production"":1})" +what is Mutiny on the Bounty about in details?,"db.movies.find({""title"": ""Mutiny on the Bounty""}, {""fullplot"": 1})" +what is the plot for the film The Lost World?,"db.movies.find({""title"": ""The Lost World""}, {""plot"": 1})" +What is the quantity of movies that Francois Truffaut has directed?,"db.movies.countDocuments({""directors"":""Francois Truffaut""})" +the film The General was directed by who?,"db.movies.find({""title"": ""The General""}, {""directors"": 1})" +What is the plot summary of the movie King of Jazz ?,"db.movies.find({ ""title"": ""King of Jazz"" }, { ""plot"": 1})" +who directed David Copperfield?,"db.movies.find({""title"": ""David Copperfield""}, {""directors"": 1})" +who is listed as director for Les vampires?,"db.movies.find({""title"": ""Les vampires""}, {""directors"": 1})" +who is the writer of The Charge of the Light Brigade?,"db.movies.find({""title"": ""The Charge of the Light Brigade""}, {""writers"": 1})" +What is the audience rating of the movie Flash Gordon ?,"db.movies.find({ ""title"": ""Flash Gordon"" },{ ""tomatoes.viewer.rating"": 1 })" +What is the meter score of the movie Tsirk according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Tsirk""}, {""tomatoes.viewer.meter"": 1})" +How many reviews have been submitted for the movie Final Accord on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Final Accord"" },{ ""tomatoes.viewer.numReviews"": 1 })" +Can you provide more information about the IMDb rating for the movie Who Killed Cock Robin? ?,"db.movies.find({""title"":""Who Killed Cock Robin?""}, {""imdb"":1})" +what was the release date of the film Top Hat?,"db.movies.find({""title"": ""Top Hat""}, {""released"": 1})" +Can you inform me of the Alfred Hitchcock movie with the shortest duration?,"db.movies.find({""directors"":""Alfred Hitchcock""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +who is listed as director for Foolish Wives?,"db.movies.find({""title"": ""Foolish Wives""}, {""directors"": 1})" +"who's the director of I Was Born, But...?","db.movies.find({""title"": ""I Was Born, But...""}, {""directors"": 1})" +who is the writer of For Heaven's Sake?,"db.movies.find({""title"": ""For Heaven's Sake""}, {""writers"": 1})" +Can you name the movie genres that Ingmar Bergman has directed?,"db.movies.distinct(""genres"", { ""directors"": ""Ingmar Bergman"" })" +how has Robin Hood been recieved by critics and audience?,"db.movies.find({""title"":""Robin Hood""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +How many awards did the movie win The Man Who Could Work Miracles ?,"db.movies.find({ ""title"": ""The Man Who Could Work Miracles"" },{ ""awards.wins"": 1 })" +what type of movie is Tol'able David?,"db.movies.find({""title"": ""Tol'able David""}, {""genres"": 1})" +What is the website associated with the movie Broadway Bill on Rotten Tomatoes?,"db.movies.find({""title"": ""Broadway Bill""}, {""tomatoes.website"": 1})" +who stars in the movie She?,"db.movies.find({""title"": ""She""}, {""cast"": 1})" +who wrote the film The Broadway Melody?,"db.movies.find({""title"": ""The Broadway Melody""}, {""writers"": 1})" +who directed A Midsummer Night's Dream?,"db.movies.find({""title"": ""A Midsummer Night's Dream""}, {""directors"": 1})" +What is the freshness score of the movie The Count of Monte Cristo on Rotten Tomatoes?,"db.movies.find({""title"": ""The Count of Monte Cristo""}, {""tomatoes.fresh"": 1})" +How many viewer reviews did the movie Broken Blossoms or The Yellow Man and the Girl receive on Rotten Tomatoes?,"db.movies.find({""title"":""Broken Blossoms or The Yellow Man and the Girl""}, {""tomatoes.viewer.numReviews"":1})" +who directed The Broadway Melody?,"db.movies.find({""title"": ""The Broadway Melody""}, {""directors"": 1})" +who starred in the film The Front Page?,"db.movies.find({""title"": ""The Front Page""}, {""cast"": 1})" +What is the box office revenue for the movie 'M'?,"db.movies.find({""title"": ""M""}, {""tomatoes.boxOffice"": 1})" +What is the IMDB rating of the movie Scarface ?,"db.movies.find({""title"": ""Scarface""}, { ""imdb.rating"": 1})" +Who are the writers of the movie The Red Head ?,"db.movies.find({""title"": ""The Red Head""}, { ""writers"": 1})" +Can you provide more information about the IMDb rating for the movie The Last Command ?,"db.movies.find({""title"":""The Last Command""}, {""imdb"":1})" +the movie City Streets starred which actors?,"db.movies.find({""title"": ""City Streets""}, {""cast"": 1})" +what was the genre of the film Bad Girl?,"db.movies.find({""title"": ""Bad Girl""}, {""genres"": 1})" +Who are the starring actors/actresses in the movie The Red Head?,"db.movies.find({""title"":""The Red Head""}, {""cast"":1})" +When was the information last updated for the movie The Edge of the World ?,"db.movies.find({ ""title"": ""The Edge of the World"" },{ ""lastupdated"": 1 })" +Lloyd's of London is written by this person?,"db.movies.find({""title"": ""Lloyd's of London""}, {""writers"": 1})" +What is the average rating for all of Robert Bresson's films in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Robert Bresson""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +who is listed as director for Anna Karenina?,"db.movies.find({""title"": ""Anna Karenina""}, {""directors"": 1})" +What is the text representation of the awards won and nominations received by the movie Kid Galahad?,"db.movies.find({""title"": ""Kid Galahad""}, { ""awards.text"": 1})" +Can you provide more information about the Rotten Tomatoes rating for the movie The Barretts of Wimpole Street?,"db.movies.find({""title"": ""The Barretts of Wimpole Street""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +Who are the starring actors/actresses in the movie Beau Geste?,"db.movies.find({""title"":""Beau Geste""}, {""cast"":1})" +what type of movie is The 39 Steps?,"db.movies.find({""title"": ""The 39 Steps""}, {""genres"": 1})" +who was the writer of The Blue Bird?,"db.movies.find({""title"": ""The Blue Bird""}, {""writers"": 1})" +who acted in the film Steamboat Willie?,"db.movies.find({""title"": ""Steamboat Willie""}, {""cast"": 1})" +What is the production company of the movie The Barretts of Wimpole Street?,"db.movies.find({""title"":""The Barretts of Wimpole Street""}, {""tomatoes.production"":1})" +what is the film Black Fury imdb rating?,"db.movies.find({""title"": ""Black Fury""}, {""imdb.rating"": 1})" +Which Jean-Luc Godard-directed movie has the highest score on Rotten Tomatoes?,"db.movies.find({""directors"": ""Jean-Luc Godard"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +what is Shall We Dance about in details?,"db.movies.find({""title"": ""Shall We Dance""}, {""fullplot"": 1})" +In which countries was the movie A Story of Floating Weeds produced?,"db.movies.find({""title"":""A Story of Floating Weeds""}, {""countries"":1})" +How many audience reviews have been submitted for the movie The Lives of a Bengal Lancer?,"db.movies.find({ ""title"": ""The Lives of a Bengal Lancer"" }, { ""tomatoes.viewer.numReviews"": 1 })" +How many reviews have been submitted by critics for the movie è Nous la Libertè?,"db.movies.find({ ""title"": ""è Nous la Libertè"" }, { ""tomatoes.critic.numReviews"": 1 })" +What is the IMDB rating of the movie Show Boat ?,"db.movies.find({""title"": ""Show Boat""}, { ""imdb.rating"": 1})" +How did the audience and critics receive the movie The Spanish Earth?,"db.movies.find({""title"":""The Spanish Earth""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the running time of the film The Unknown?,"db.movies.find({""title"":""The Unknown""}, {""runtime"":1})" +the movie A Day in the Country was directed by who?,"db.movies.find({""title"": ""A Day in the Country""}, {""directors"": 1})" +who is the director of State Fair?,"db.movies.find({""title"": ""State Fair""}, {""directors"": 1})" +who stars in the movie Dracula?,"db.movies.find({""title"": ""Dracula""}, {""cast"": 1})" +How many reviews did the movie The World Moves On receive on Rotten Tomatoes?,"db.movies.find({""title"":""The World Moves On""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +the movie M starred which actors?,"db.movies.find({""title"": ""M""}, {""cast"": 1})" +How many awards did the movie win The Band Concert ?,"db.movies.find({ ""title"": ""The Band Concert"" },{ ""awards.wins"": 1 })" +who is the director for The Mummy?,"db.movies.find({""title"": ""The Mummy""}, {""directors"": 1})" +What is the critical reception of the movie The World Moves On?,"db.movies.find({""title"":""The World Moves On""}, {""tomatoes.critic"":1})" +what was the genre of Children in the Wind?,"db.movies.find({""title"": ""Children in the Wind""}, {""genres"": 1})" +How many reviews have been submitted by critics for the movie The Four Horsemen of the Apocalypse ?,"db.movies.find({""title"": ""The Four Horsemen of the Apocalypse""}, {""tomatoes.critic.numReviews"": 1})" +who wrote Within Our Gates?,"db.movies.find({""title"": ""Within Our Gates""}, {""writers"": 1})" +the director of High and Dizzy was?,"db.movies.find({""title"": ""High and Dizzy""}, {""directors"": 1})" +What is the imdbID and year of release for the movie with a title of 'Morocco'?,"db.movies.find({""title"": ""Morocco""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +In which countries was the movie Swing Time produced?,"db.movies.find({""title"":""Swing Time""}, {""countries"":1})" +What are the countries associated with the movie The Divorcee ?,"db.movies.find({""title"": ""The Divorcee""}, {""countries"": 1})" +How many viewer reviews did the movie Freaks receive on Rotten Tomatoes?,"db.movies.find({""title"":""Freaks""}, {""tomatoes.viewer.numReviews"":1})" +which company produced the film Smilin' Through?,"db.movies.find({""title"":""Smilin' Through""}, {""tomatoes.production"":1})" +Who are the main actors/actresses in the movie Murders in the Rue Morgue?,"db.movies.find({""title"":""Murders in the Rue Morgue""}, {""cast"":1})" +what genre is the film Modern Times?,"db.movies.find({""title"": ""Modern Times""}, {""genres"": 1})" +which company produced the movie Napoleon?,"db.movies.find({""title"":""Napoleon""}, {""tomatoes.production"":1})" +When was the movie Cleopatra released in theaters?,"db.movies.find({""title"": ""Cleopatra""}, {""released"": 1})" +What is the imdbID and genre of the movie 'Marked Woman'?,"db.movies.find({""title"": ""Marked Woman""}, {""imdb.id"": 1, ""genres"": 1, ""_id"": 0})" +What is the IMDb rating for the movie For Heaven's Sake ?,"db.movies.find({""title"":""For Heaven's Sake""}, {""imdb.rating"":1})" +what is the film 42nd Street about?,"db.movies.find({""title"": ""42nd Street""}, {""plot"": 1})" +How many reviews have been submitted by critics for the movie The Robber Symphony?,"db.movies.find({ ""title"": ""The Robber Symphony"" }, { ""tomatoes.critic.numReviews"": 1 })" +What is the rating of the movie Naughty Marietta on IMDb?,"db.movies.find({""title"":""Naughty Marietta""}, {""imdb.rating"":1})" +what is the film The 39 Steps about in details?,"db.movies.find({""title"": ""The 39 Steps""}, {""fullplot"": 1})" +I'm curious about the films that were directed by Alfred Hitchcock. Can you name them?,"db.movies.find({""directors"": ""Alfred Hitchcock""},{""title"":1})" +Cimarron is a movie written by this person?,"db.movies.find({""title"": ""Cimarron""}, {""writers"": 1})" +How many audience reviews have been submitted for the movie Black Fury ?,"db.movies.find({ ""title"": ""Black Fury"" },{ ""tomatoes.viewer.numReviews"": 1 })" +What is the full plot summary of the movie The Crusades ?,"db.movies.find({""title"": ""The Crusades""}, {""plot"": 1})" +can you describe the plot of Go West?,"db.movies.find({""title"": ""Go West""}, {""plot"": 1})" +who wrote the movie Seven Chances?,"db.movies.find({""title"": ""Seven Chances""}, {""writers"": 1})" +What is the production company of the movie Gold Diggers of 1933?,"db.movies.find({""title"":""Gold Diggers of 1933""}, {""tomatoes.production"":1})" +What is the running time of the film Roberta?,"db.movies.find({""title"":""Roberta""}, {""runtime"":1})" +what type of movie is The Robber Symphony?,"db.movies.find({""title"": ""The Robber Symphony""}, {""genres"": 1})" +Can you tell me how many movies Ingmar Bergman directed for each year they were released?,"db.movies.aggregate([{ $match: { ""directors"": ""Ingmar Bergman"" }},{""$group"": { ""_id"": ""$year"", ""count"": {""$sum"": 1}}}])" +What is the MPAA rating of Go West?,"db.movies.find({""title"":""Go West""}, {""rated"":1})" +Who is the lead actress of the movie White Shadows ?,"db.movies.find({""title"": ""White Shadows""}, {""cast"":{""$slice"": 1},""title"":1})" +who acted in the movie David Copperfield?,"db.movies.find({""title"": ""David Copperfield""}, {""cast"": 1})" +What is the MPAA rating of the film Seven Chances?,"db.movies.find({""title"":""Seven Chances""}, {""rated"":1})" +how has Tarzan and His Mate been recieved by critics and audience?,"db.movies.find({""title"":""Tarzan and His Mate""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +who was the writer of the movie The Life of Emile Zola?,"db.movies.find({""title"": ""The Life of Emile Zola""}, {""writers"": 1})" +What is the imdbID and year of release for the movie with a title of 'The Gold Rush'?,"db.movies.find({""title"": ""The Gold Rush""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +what is the film Regeneration description ?,"db.movies.find({""title"": ""Regeneration""}, {""plot"": 1})" +"what is the film Laugh, Clown, Laugh about in details?","db.movies.find({""title"": ""Laugh, Clown, Laugh""}, {""fullplot"": 1})" +What is the IMDb rating for The Cameraman?,"db.movies.find({""title"": ""The Cameraman""}, {""imdb.rating"": 1})" +who are the actors in the movie A Night at the Opera?,"db.movies.find({""title"": ""A Night at the Opera""}, {""cast"": 1})" +When was the information about the movie The Mummy last updated?,"db.movies.find({ ""title"": ""The Mummy"" }, { ""lastupdated"": 1})" +What is the runtime and rating for the movie 'The Devil Is a Woman'?,"db.movies.find({""title"": ""The Devil Is a Woman""}, {""runtime"": 1, ""rated"": 1})" +who acted in the film The Passion of Joan of Arc?,"db.movies.find({""title"": ""The Passion of Joan of Arc""}, {""cast"": 1})" +How many votes does the movie King Solomon's Mines have on IMDb?,"db.movies.find({""title"":""King Solomon's Mines""}, {""imdb.votes"":1})" +what year was Les vampires released?,"db.movies.find({""title"": ""Les vampires""}, {""year"": 1})" +What is the consensus among critics about the movie Payment Deferred?,"db.movies.find({""title"": ""Payment Deferred""}, { ""tomatoes.consensus"": 1})" +What is the production company behind the movie The Robber Symphony ?,"db.movies.find({""title"": ""The Robber Symphony""}, {""tomatoes.production"": 1})" +How many award nominations did the movie receive Kid Galahad ?,"db.movies.find({ ""title"": ""Kid Galahad"" },{ ""awards.nominations"": 1 })" +who directed He Who Gets Slapped?,"db.movies.find({""title"": ""He Who Gets Slapped""}, {""directors"": 1})" +What is the IMDB rating of the movie Queen Christina ?,"db.movies.find({""title"": ""Queen Christina""}, { ""imdb.rating"": 1})" +what year was Safety Last! released?,"db.movies.find({""title"": ""Safety Last!""}, {""year"": 1})" +what genre is the film Gertie the Dinosaur?,"db.movies.find({""title"": ""Gertie the Dinosaur""}, {""genres"": 1})" +what year was the movie Two Seconds released?,"db.movies.find({""title"": ""Two Seconds""}, {""year"": 1})" +how has The Front Page been recieved by critics and audience?,"db.movies.find({""title"":""The Front Page""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What are the countries associated with the movie The Cheat ?,"db.movies.find({""title"": ""The Cheat""}, {""countries"": 1})" +What is the IMDb rating for the movie Three Little Pigs?,"db.movies.find({""title"": ""Three Little Pigs""}, {""imdb.rating"": 1})" +who was the film They Won't Forget written by?,"db.movies.find({""title"": ""They Won't Forget""}, {""writers"": 1})" +what is the film Camille imdb rating?,"db.movies.find({""title"": ""Camille""}, {""imdb.rating"": 1})" +what sort of film is The 39 Steps?,"db.movies.find({""title"": ""The 39 Steps""}, {""genres"": 1})" +Who is the director of the movie Our Hospitality?,"db.movies.find({""title"": ""Our Hospitality""}, { ""directors"": 1})" +who stars in the film Fury?,"db.movies.find({""title"": ""Fury""}, {""cast"": 1})" +What is the MPAA rating of the movie Topaze?,"db.movies.find({""title"":""Topaze""}, {""rated"":1})" +What is the meter score of the movie The Crusades according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""The Crusades""}, {""tomatoes.viewer.meter"": 1})" +who is the director of David Copperfield?,"db.movies.find({""title"": ""David Copperfield""}, {""directors"": 1})" +how many awards did the movie The Red Head win?,"db.movies.find({""title"":""The Red Head""}, {""awards.wins"":1})" +what is The Man Who Could Work Miracles imdb rating?,"db.movies.find({""title"": ""The Man Who Could Work Miracles""}, {""imdb.rating"": 1})" +what is the film The Wedding March about?,"db.movies.find({""title"": ""The Wedding March""}, {""plot"": 1})" +Who are the writers of the movie The Lives of a Bengal Lancer ?,"db.movies.find({""title"": ""The Lives of a Bengal Lancer""}, { ""writers"": 1})" +What is the number of movies Wes Anderson released per year?,"db.movies.aggregate([{ $match: { ""directors"": ""Wes Anderson"" }},{""$group"": { ""_id"": ""$year"", ""count"": {""$sum"": 1}}}])" +what is the plot for Three Little Pigs?,"db.movies.find({""title"": ""Three Little Pigs""}, {""plot"": 1})" +what was the release year of Little Women?,"db.movies.find({""title"": ""Little Women""}, {""year"": 1})" +"Has the movie Lloyd's of London won any awards? If so, which ones?","db.movies.find({""title"":""Lloyd's of London"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What is the mean rating of all the Francois Truffaut films in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Francois Truffaut""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +How long is the movie In Old Arizona in minutes?,"db.movies.find({""title"":""In Old Arizona""}, {""runtime"":1})" +what was the genre of Mutiny on the Bounty?,"db.movies.find({""title"": ""Mutiny on the Bounty""}, {""genres"": 1})" +What is the production company of the film Ella Cinders?,"db.movies.find({""title"":""Ella Cinders""}, {""tomatoes.production"":1})" +what was the release date of the movie The Great Train Robbery?,"db.movies.find({""title"": ""The Great Train Robbery""}, {""released"": 1})" +the movie Follow the Fleet was directed by who?,"db.movies.find({""title"": ""Follow the Fleet""}, {""directors"": 1})" +what was the release date of the film It Happened One Night?,"db.movies.find({""title"": ""It Happened One Night""}, {""released"": 1})" +what is the genre for the movie My Man Godfrey?,"db.movies.find({""title"": ""My Man Godfrey""}, {""genres"": 1})" +what type of film is Dracula?,"db.movies.find({""title"": ""Dracula""}, {""genres"": 1})" +What is the production company of Earth?,"db.movies.find({""title"":""Earth""}, {""tomatoes.production"":1})" +What is the imdbID and genre of the movie 'Tabu: A Story of the South Seas'?,"db.movies.find({""title"": ""Tabu: A Story of the South Seas""}, {""imdb.id"": 1, ""genres"": 1, ""_id"": 0})" +who's the director of Le grand jeu?,"db.movies.find({""title"": ""Le grand jeu""}, {""directors"": 1})" +how many awards did Death Takes a Holiday win?,"db.movies.find({""title"":""Death Takes a Holiday""}, {""awards.wins"":1})" +What is the freshness score of the movie Mèdchen in Uniform on Rotten Tomatoes?,"db.movies.find({""title"": ""Mèdchen in Uniform""}, {""tomatoes.fresh"": 1})" +who starred in the film Les Misèrables?,"db.movies.find({""title"": ""Les Misèrables""}, {""cast"": 1})" +who was Pandora's Box directed by?,"db.movies.find({""title"": ""Pandora's Box""}, {""directors"": 1})" +how many awards did the movie Murders in the Rue Morgue win?,"db.movies.find({""title"":""Murders in the Rue Morgue""}, {""awards.wins"":1})" +which company produced the movie Mutiny on the Bounty?,"db.movies.find({""title"":""Mutiny on the Bounty""}, {""tomatoes.production"":1})" +how many awards did the movie Topaze win?,"db.movies.find({""title"":""Topaze""}, {""awards.wins"":1})" +How did the audience and critics receive the film The Prince and the Pauper?,"db.movies.find({""title"":""The Prince and the Pauper""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +How did the audience and critics receive the movie Dracula?,"db.movies.find({""title"":""Dracula""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +the film Sunrise starred who?,"db.movies.find({""title"": ""Sunrise""}, {""cast"": 1})" +what genre is the movie Captains Courageous?,"db.movies.find({""title"": ""Captains Courageous""}, {""genres"": 1})" +who was the writer of Westfront 1918?,"db.movies.find({""title"": ""Westfront 1918""}, {""writers"": 1})" +How long is the runtime of the movie State Fair ?,"db.movies.find({""title"":""State Fair""}, {""runtime"":1})" +What is the imdbID and year of release for the movie with a title of 'Three Little Pigs'?,"db.movies.find({""title"": ""Three Little Pigs""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +"what genre is the film I Was Born, But...?","db.movies.find({""title"": ""I Was Born, But...""}, {""genres"": 1})" +In what language was the movie The Navigator released?,"db.movies.find({ ""title"": ""The Navigator"" }, { ""languages"": 1})" +what's the main genre of the movies directed by Robert Bresson ?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Robert Bresson"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +How many awards did the movie win Secret Agent ?,"db.movies.find({ ""title"": ""Secret Agent"" },{ ""awards.wins"": 1 })" +"What is the box office revenue of the movie Laugh, Clown, Laugh ?","db.movies.find({""title"": ""Laugh, Clown, Laugh""}, { ""tomatoes.boxOffice"": 1})" +what type of movie is The Prisoner of Shark Island?,"db.movies.find({""title"": ""The Prisoner of Shark Island""}, {""genres"": 1})" +which company produced the movie Miss Lulu Bett?,"db.movies.find({""title"":""Miss Lulu Bett""}, {""tomatoes.production"":1})" +the movie The Wedding March starred which actors?,"db.movies.find({""title"": ""The Wedding March""}, {""cast"": 1})" +What is the IMDB rating of the movie Curly Top ?,"db.movies.find({""title"": ""Curly Top""}, { ""imdb.rating"": 1})" +who is the director of The Birth of a Nation?,"db.movies.find({""title"": ""The Birth of a Nation""}, {""directors"": 1})" +What is the runtime of the movie The Dark Angel ?,"db.movies.find({""title"": ""The Dark Angel""}, { ""runtime"": 1})" +What is the highest-rated movie directed by Akira Kurosawa on rotten tomatoes?,"db.movies.find({""directors"": ""Akira Kurosawa"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +who wrote the film The Ghost Goes West?,"db.movies.find({""title"": ""The Ghost Goes West""}, {""writers"": 1})" +who directed The Pearls of the Crown?,"db.movies.find({""title"": ""The Pearls of the Crown""}, {""directors"": 1})" +"Asphalt, was written by who?","db.movies.find({""title"": ""Asphalt""}, {""writers"": 1})" +Was the movie All Quiet on the Western Front well received by audiences and critics?,"db.movies.find({""title"":""All Quiet on the Western Front""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the name of the director and cast for the movie 'The Chechahcos'?,"db.movies.find({""title"": ""The Chechahcos""}, {""directors"": 1, ""cast"": 1, ""_id"": 0})" +Could you tell me the title of the movie with the shortest duration that was directed by Kenji Mizoguchi?,"db.movies.find({""directors"":""Kenji Mizoguchi""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +How did the audience and critics receive the film Top Hat?,"db.movies.find({""title"":""Top Hat""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the language of the film Follow the Fleet?,"db.movies.find({""title"":""Follow the Fleet""}, {""languages"":1})" +"Has the movie The Band Concert won any awards? If so, which ones?","db.movies.find({""title"":""The Band Concert"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +what sort of film is Nosferatu?,"db.movies.find({""title"": ""Nosferatu""}, {""genres"": 1})" +who is the author of The Strong Man?,"db.movies.find({""title"": ""The Strong Man""}, {""writers"": 1})" +What is the imdbID and genre of the movie 'Tol'able David'?,"db.movies.find({""title"": ""Tol'able David""}, {""imdb.id"": 1, ""genres"": 1, ""_id"": 0})" +How many votes did the movie Make Way for Tomorrow receive on IMDB?,"db.movies.find({""title"": ""Make Way for Tomorrow""}, { ""imdb.votes"": 1})" +who are the actors in the film The Ace of Hearts?,"db.movies.find({""title"": ""The Ace of Hearts""}, {""cast"": 1})" +In what year was the movie The Mummy released ?,"db.movies.find({ ""title"": ""The Mummy"" }, { ""year"": 1})" +what is the movie The World Moves On about?,"db.movies.find({""title"": ""The World Moves On""}, {""plot"": 1})" +What is the box office revenue of the movie Morocco ?,"db.movies.find({""title"": ""Morocco""}, { ""tomatoes.boxOffice"": 1})" +What is the language of the film Death Takes a Holiday?,"db.movies.find({""title"":""Death Takes a Holiday""}, {""languages"":1})" +what kind of film is Shall We Dance?,"db.movies.find({""title"": ""Shall We Dance""}, {""genres"": 1})" +What is the production company of the movie Elephant Boy?,"db.movies.find({""title"":""Elephant Boy""}, {""tomatoes.production"":1})" +Can you tell me which David Fincher movie has the longest length?,"db.movies.find({""directors"":""David Fincher""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +What is the text description of the movie The Passion of Joan of Arc awards?,"db.movies.find({""title"":""The Passion of Joan of Arc""}, {""awards.text"":1})" +who directed the movie The Kid?,"db.movies.find({""title"": ""The Kid""}, {""directors"": 1})" +"Has the film Three Ages won any awards? If so, which ones?","db.movies.find({""title"":""Three Ages"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +How many reviews have been submitted for the movie Little Women on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Little Women"" },{ ""tomatoes.viewer.numReviews"": 1 })" +what is the genre of Romance?,"db.movies.find({""title"": ""Romance""}, {""genres"": 1})" +the movie The Lower Depths starred who?,"db.movies.find({""title"": ""The Lower Depths""}, {""cast"": 1})" +what is The Gilded Lily about in details?,"db.movies.find({""title"": ""The Gilded Lily""}, {""fullplot"": 1})" +What is the IMDb rating for the movie The Last Command ?,"db.movies.find({""title"":""The Last Command""}, {""imdb.rating"":1})" +How many award nominations did the movie receive The Man Who Knew Too Much ?,"db.movies.find({ ""title"": ""The Man Who Knew Too Much"" },{ ""awards.nominations"": 1 })" +Was the movie Scarface well received by audiences and critics?,"db.movies.find({""title"":""Scarface""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what is the film Bad Girl about?,"db.movies.find({""title"": ""Bad Girl""}, {""plot"": 1})" +Was the movie Greed well received by audiences and critics?,"db.movies.find({""title"":""Greed""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +Was the movie The Crusades well received by audiences and critics?,"db.movies.find({""title"":""The Crusades""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what sort of movie is The Wedding March?,"db.movies.find({""title"": ""The Wedding March""}, {""genres"": 1})" +what is the film The Gay Divorcee description ?,"db.movies.find({""title"": ""The Gay Divorcee""}, {""plot"": 1})" +What is the runtime and rating for the movie 'Twentieth Century'?,"db.movies.find({""title"": ""Twentieth Century""}, {""runtime"": 1, ""rated"": 1})" +what was the release year of the movie Little Caesar?,"db.movies.find({""title"": ""Little Caesar""}, {""year"": 1})" +who starred in Blacksmith Scene?,"db.movies.find({""title"": ""Blacksmith Scene""}, {""cast"": 1})" +who produced the movie Ben-Hur: A Tale of the Christ?,"db.movies.find({""title"":""Ben-Hur: A Tale of the Christ""}, {""tomatoes.production"":1})" +"Nosferatu, was written by who?","db.movies.find({""title"": ""Nosferatu""}, {""writers"": 1})" +How many comments have been posted by users on the movie The Story of a Cheat's page on the Mflix platform?,"db.movies.find({ ""title"": ""The Story of a Cheat"" }, { ""num_mflix_comments"": 1 })" +who starred in the film Naughty Marietta?,"db.movies.find({""title"": ""Naughty Marietta""}, {""cast"": 1})" +"What is the MPAA rating of the film Steamboat Bill, Jr.?","db.movies.find({""title"":""Steamboat Bill, Jr.""}, {""rated"":1})" +How did the audience and critics receive the movie Romeo and Juliet?,"db.movies.find({""title"":""Romeo and Juliet""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the most common genre of movies that Christopher Nolan directs?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Christopher Nolan"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +Who are the main actors/actresses in the movie The Life of Emile Zola?,"db.movies.find({""title"":""The Life of Emile Zola""}, {""cast"":1})" +"Red Dust, was written by who?","db.movies.find({""title"": ""Red Dust""}, {""writers"": 1})" +What languages are spoken in the movie Sunrise?,"db.movies.find({""title"":""Sunrise""}, {""languages"":1})" +What is the audience rating of the movie Westfront 1918 ?,"db.movies.find({ ""title"": ""Westfront 1918"" },{ ""tomatoes.viewer.rating"": 1 })" +what kind of film is The Navigator?,"db.movies.find({""title"": ""The Navigator""}, {""genres"": 1})" +who is the director for Three Smart Girls?,"db.movies.find({""title"": ""Three Smart Girls""}, {""directors"": 1})" +who wrote the screenplay for the movie The Chechahcos?,"db.movies.aggregate([ { ""$match"": { ""title"":""The Chechahcos""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +What is the IMDb rating for the movie The Crowd Roars?,"db.movies.find({""title"": ""The Crowd Roars""}, {""imdb.rating"": 1})" +which person wrote Scrooge?,"db.movies.find({""title"": ""Scrooge""}, {""writers"": 1})" +"I Was Born, But... was directed by who?","db.movies.find({""title"": ""I Was Born, But...""}, {""directors"": 1})" +Wonder Bar was directed by who?,"db.movies.find({""title"": ""Wonder Bar""}, {""directors"": 1})" +what kind of movie is Lost Horizon?,"db.movies.find({""title"": ""Lost Horizon""}, {""genres"": 1})" +What are the names of all the actors who starred in the movie 'The Good Earth'?,"db.movies.find({""title"": ""The Good Earth""}, {""cast"": 1})" +How did the audience and critics receive It Happened One Night?,"db.movies.find({""title"":""It Happened One Night""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the text representation of the awards won and nominations received by the movie Now or Never?,"db.movies.find({""title"": ""Now or Never""}, { ""awards.text"": 1})" +What are the top-rated movies directed by Andrei Tarkovsky?,"db.movies.find({""directors"": 'Andrei Tarkovsky', ""imdb.rating"": {""$gt"": 8.5}})" +What is the rating of the movie Freaks according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Freaks""}, {""tomatoes.viewer.rating"": 1})" +Who are the main actors in L'opèra de quat'sous ?,"db.movies.find({ ""title"": ""L'opèra de quat'sous"" }, { ""cast"": 1})" +what is the genre for the movie She Done Him Wrong?,"db.movies.find({""title"": ""She Done Him Wrong""}, {""genres"": 1})" +What are the names of all the actors who starred in the movie 'Battling Butler'?,"db.movies.find({""title"": ""Battling Butler""}, {""cast"": 1})" +which person wrote the film Metropolis?,"db.movies.find({""title"": ""Metropolis""}, {""writers"": 1})" +What are the genres this movie Triumph of the Will belongs to?,"db.movies.find({""title"":""Triumph of the Will""}, {""genres"":1})" +who produced the film King Solomon's Mines?,"db.movies.find({""title"":""King Solomon's Mines""}, {""tomatoes.production"":1})" +How many nominations did the movie Sanders of the River receive?,"db.movies.find({""title"":""Sanders of the River""}, {""awards.nominations"":1})" +What is the IMDb rating for the movie Mayerling ?,"db.movies.find({""title"":""Mayerling""}, {""imdb.rating"":1})" +Seven Chances is written by this person?,"db.movies.find({""title"": ""Seven Chances""}, {""writers"": 1})" +what is the film The General description ?,"db.movies.find({""title"": ""The General""}, {""plot"": 1})" +what is the movie The Birth of a Nation description ?,"db.movies.find({""title"": ""The Birth of a Nation""}, {""plot"": 1})" +Can you give me a brief summary of the movie Dekigokoro plot?,"db.movies.find({""title"":""Dekigokoro""}, {""plot"":1})" +What is the imdbID and genre of the movie 'Going Hollywood'?,"db.movies.find({""title"": ""Going Hollywood""}, {""imdb.id"": 1, ""genres"": 1, ""_id"": 0})" +who was A Night at the Opera directed by?,"db.movies.find({""title"": ""A Night at the Opera""}, {""directors"": 1})" +what is the movie Sherlock Jr. imdb rating?,"db.movies.find({""title"": ""Sherlock Jr.""}, {""imdb.rating"": 1})" +Who is the lead actress of the movie Two Seconds ?,"db.movies.find({""title"": ""Two Seconds""}, {""cast"":{""$slice"": 1},""title"":1})" +What is the MPAA rating of the film Wife! Be Like a Rose!?,"db.movies.find({""title"":""Wife! Be Like a Rose!""}, {""rated"":1})" +What is the running time of Tol'able David?,"db.movies.find({""title"":""Tol'able David""}, {""runtime"":1})" +which company produced the film Chapayev?,"db.movies.find({""title"":""Chapayev""}, {""tomatoes.production"":1})" +what was the release date of the film Movie Crazy?,"db.movies.find({""title"": ""Movie Crazy""}, {""released"": 1})" +who stars in A Day in the Country?,"db.movies.find({""title"": ""A Day in the Country""}, {""cast"": 1})" +"the movie Mayerling, was written by who?","db.movies.find({""title"": ""Mayerling""}, {""writers"": 1})" +"In movies directed by Wes Anderson, which actor has the highest number of performances?","db.movies.aggregate([ { ""$match"": { ""directors"": ""Wes Anderson"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +what sort of movie is Love Me Tonight?,"db.movies.find({""title"": ""Love Me Tonight""}, {""genres"": 1})" +What is the box office revenue of the movie The Prince and the Pauper in dollars?,"db.movies.find({""title"": ""The Prince and the Pauper""}, {""tomatoes.boxOffice"": 1})" +what kind of film is State Fair?,"db.movies.find({""title"": ""State Fair""}, {""genres"": 1})" +what is the movie The Man Who Could Work Miracles about?,"db.movies.find({""title"": ""The Man Who Could Work Miracles""}, {""plot"": 1})" +What is the box office revenue of the movie Metropolis in dollars?,"db.movies.find({""title"": ""Metropolis""}, {""tomatoes.boxOffice"": 1})" +Show Boat is a movie written by this person?,"db.movies.find({""title"": ""Show Boat""}, {""writers"": 1})" +how many awards did the film One Week win?,"db.movies.find({""title"":""One Week""}, {""awards.wins"":1})" +What is the critical reception of the movie Broadway Melody of 1936?,"db.movies.find({""title"":""Broadway Melody of 1936""}, {""tomatoes.critic"":1})" +who was Grass: A Nation's Battle for Life written by?,"db.movies.find({""title"": ""Grass: A Nation's Battle for Life""}, {""writers"": 1})" +Can you tell me which film genres Jacques Rivette has directed?,"db.movies.distinct(""genres"", { ""directors"": ""Jacques Rivette"" })" +"Has the movie For Heaven's Sake won any awards? If so, which ones?","db.movies.find({""title"":""For Heaven's Sake"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What is the ID of the movie The 39 Steps on IMDB?,"db.movies.find({""title"": ""The 39 Steps""}, {""imdb.id"": 1})" +what was the release year of Theodora Goes Wild?,"db.movies.find({""title"": ""Theodora Goes Wild""}, {""year"": 1})" +who acted in the film Robin Hood?,"db.movies.find({""title"": ""Robin Hood""}, {""cast"": 1})" +What is the Metacritic score of the movie They Won't Forget ?,"db.movies.find({ ""title"": ""They Won't Forget"" }, { ""metacritic"": 1})" +Who is the lead actor of the movie The Land Beyond the Sunset ?,"db.movies.find({""title"": ""The Land Beyond the Sunset""}, {""cast"":{""$slice"": 1},""title"":1})" +How many reviews have been submitted for the movie Flying Down to Rio on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Flying Down to Rio"" },{ ""tomatoes.viewer.numReviews"": 1 })" +what is the movie Asphalt about in details?,"db.movies.find({""title"": ""Asphalt""}, {""fullplot"": 1})" +How many reviews have been submitted for the movie The Story of Louis Pasteur on Rotten Tomatoes?,"db.movies.find({ ""title"": ""The Story of Louis Pasteur"" },{ ""tomatoes.viewer.numReviews"": 1 })" +What is the freshness score of the movie Kid Galahad on Rotten Tomatoes?,"db.movies.find({""title"": ""Kid Galahad""}, {""tomatoes.fresh"": 1})" +What is the production company of the film Snow White and the Seven Dwarfs?,"db.movies.find({""title"":""Snow White and the Seven Dwarfs""}, {""tomatoes.production"":1})" +What's the title of the shortest Oliver Stone-directed movie?,"db.movies.find({""directors"":""Oliver Stone""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +"Has the film The Scarlet Empress won any awards? If so, which ones?","db.movies.find({""title"":""The Scarlet Empress"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +Who are the actors that appear in the movie Man with a Movie Camera ?,"db.movies.find({ ""title"": ""Man with a Movie Camera"" },{ ""cast"": 1 })" +What is the production company of the film The Song of Night?,"db.movies.find({""title"":""The Song of Night""}, {""tomatoes.production"":1})" +What is the box office revenue of the movie Napoleon ?,"db.movies.find({""title"": ""Napoleon""}, { ""tomatoes.boxOffice"": 1})" +how many awards did the movie Dishonored win?,"db.movies.find({""title"":""Dishonored""}, {""awards.wins"":1})" +what genre of film is Maria Chapdelaine?,"db.movies.find({""title"": ""Maria Chapdelaine""}, {""genres"": 1})" +"the movie Battling Butler, was written by who?","db.movies.find({""title"": ""Battling Butler""}, {""writers"": 1})" +What is the Metacritic score of the movie Asphalt ?,"db.movies.find({ ""title"": ""Asphalt"" }, { ""metacritic"": 1})" +How did the audience and critics receive the movie The Wind?,"db.movies.find({""title"":""The Wind""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the Rotten Tomatoes rating for Orson Welles's highest-rated movie?,"db.movies.find({""directors"": ""Orson Welles"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +What is the MPAA rating of the film The Black Cat?,"db.movies.find({""title"":""The Black Cat""}, {""rated"":1})" +who produced the film Gold Diggers of 1933?,"db.movies.find({""title"":""Gold Diggers of 1933""}, {""tomatoes.production"":1})" +what is the movie Now or Never about?,"db.movies.find({""title"": ""Now or Never""}, {""plot"": 1})" +the movie Come and Get It starred who?,"db.movies.find({""title"": ""Come and Get It""}, {""cast"": 1})" +what was the release year of the movie Lenin in October?,"db.movies.find({""title"": ""Lenin in October""}, {""year"": 1})" +Who is the lead actor of the movie The Ace of Hearts ?,"db.movies.find({""title"": ""The Ace of Hearts""}, {""cast"":{""$slice"": 1},""title"":1})" +What is the rating of the movie The Iron Horse according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""The Iron Horse""}, {""tomatoes.viewer.rating"": 1})" +What is the movie The Charge of the Light Brigade about? Can you provide a brief summary?,"db.movies.find({""title"":""The Charge of the Light Brigade""}, {""plot"":1})" +who directed the movie From Hand to Mouth?,"db.movies.find({""title"": ""From Hand to Mouth""}, {""directors"": 1})" +what genre is Duck Soup?,"db.movies.find({""title"": ""Duck Soup""}, {""genres"": 1})" +What movie directed by Andrei Tarkovsky has the longest duration?,"db.movies.find({""directors"":""Andrei Tarkovsky""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +What is the percentage of positive reviews among critics for the movie The Black Pirate ?,"db.movies.find({ ""title"": ""The Black Pirate"" },{ ""tomatoes.critic.meter"": 1 })" +Which cinematic productions were directed by Steven Spielberg?,"db.movies.find({""directors"": ""Steven Spielberg""},{""title"":1})" +When was the information last updated for the movie The Good Earth ?,"db.movies.find({ ""title"": ""The Good Earth"" },{ ""lastupdated"": 1 })" +How does the movie Broadway Bill rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Broadway Bill"" },{ ""tomatoes.critic.meter"": 1 })" +what is Tarzan and His Mate about?,"db.movies.find({""title"": ""Tarzan and His Mate""}, {""plot"": 1})" +the film The Band Concert starred who?,"db.movies.find({""title"": ""The Band Concert""}, {""cast"": 1})" +What is the number of films that Quentin Tarantino has directed?,"db.movies.countDocuments({""directors"":""Quentin Tarantino""})" +What is the production company behind the movie x?,"db.movies.find({""title"": ""Earth""}, { ""tomatoes.production"": 1})" +What was the release date for the movie Ella Cinders?,"db.movies.find({""title"":""Ella Cinders""}, {""released"":1})" +What are the countries associated with the movie Toni ?,"db.movies.find({""title"": ""Toni""}, {""countries"": 1})" +the film The Freshman starred who?,"db.movies.find({""title"": ""The Freshman""}, {""cast"": 1})" +What languages are spoken in the movie The Devil to Pay!?,"db.movies.find({""title"":""The Devil to Pay!""}, {""languages"":1})" +what is the film Love Me Tonight about?,"db.movies.find({""title"": ""Love Me Tonight""}, {""plot"": 1})" +Who are the writers of the movie Tarzan the Ape Man ?,"db.movies.find({""title"": ""Tarzan the Ape Man""}, { ""writers"": 1})" +what is Sherlock Jr. description?,"db.movies.find({""title"": ""Sherlock Jr.""}, {""plot"": 1})" +what is the full plot for Earth?,"db.movies.find({""title"": ""Earth""}, {""fullplot"": 1})" +what is the plot for The Lower Depths?,"db.movies.find({""title"": ""The Lower Depths""}, {""plot"": 1})" +who wrote the film Come and Get It?,"db.movies.find({""title"": ""Come and Get It""}, {""writers"": 1})" +who starred in The Dark Angel?,"db.movies.find({""title"": ""The Dark Angel""}, {""cast"": 1})" +Who are the starring actors/actresses in the movie A Free Soul?,"db.movies.find({""title"":""A Free Soul""}, {""cast"":1})" +What is the box office revenue of the movie From Hand to Mouth in dollars?,"db.movies.find({""title"": ""From Hand to Mouth""}, {""tomatoes.boxOffice"": 1})" +What is the viewer rating for the movie Seven Chances on Rotten Tomatoes?,"db.movies.find({""title"":""Seven Chances""}, {""tomatoes.viewer.rating"":1})" +the director of The Informer was?,"db.movies.find({""title"": ""The Informer""}, {""directors"": 1})" +Wild Oranges was directed by who?,"db.movies.find({""title"": ""Wild Oranges""}, {""directors"": 1})" +What is the name of the director and cast for the movie 'Snow White and the Seven Dwarfs'?,"db.movies.find({""title"": ""Snow White and the Seven Dwarfs""}, {""directors"": 1, ""cast"": 1, ""_id"": 0})" +In what language was the movie Upstream released?,"db.movies.find({ ""title"": ""Upstream"" }, { ""languages"": 1})" +who directed the movie Safety Last!?,"db.movies.find({""title"": ""Safety Last!""}, {""directors"": 1})" +Has the movie The Jazz Singer won any awards?,"db.movies.find({""title"":""The Jazz Singer""}, {""awards.wins"":1})" +Could you inform me of the movies that Claude Chabrol directed?,"db.movies.find({""directors"": ""Claude Chabrol""},{""title"":1})" +What is the IMDB rating of the movie The Son of the Sheik ?,"db.movies.find({""title"": ""The Son of the Sheik""}, { ""imdb.rating"": 1})" +What is the movie Pèpè le Moko rating?,"db.movies.find({""title"":""Pèpè le Moko""}, {""rated"":1})" +What is the running time of the movie The Great Ziegfeld?,"db.movies.find({""title"":""The Great Ziegfeld""}, {""runtime"":1})" +who are the actors in the movie Viva Villa!?,"db.movies.find({""title"": ""Viva Villa!""}, {""cast"": 1})" +"How long, in total, are all the movies that Gus Van Sant has directed?","db.movies.aggregate([{ ""$match"": { ""directors"": ""Gus Van Sant"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +In what year was the movie Les vampires released ?,"db.movies.find({ ""title"": ""Les vampires"" }, { ""year"": 1})" +who was the writer of Frankenstein?,"db.movies.find({""title"": ""Frankenstein""}, {""writers"": 1})" +what was the release date of the film Secret Agent?,"db.movies.find({""title"": ""Secret Agent""}, {""released"": 1})" +what was the release year of the movie The Guardsman?,"db.movies.find({""title"": ""The Guardsman""}, {""year"": 1})" +Lonesome is written by this person?,"db.movies.find({""title"": ""Lonesome""}, {""writers"": 1})" +who was the movie Follow the Fleet written by?,"db.movies.find({""title"": ""Follow the Fleet""}, {""writers"": 1})" +Can you provide a longer version of the movie Ella Cinders plot?,"db.movies.find({""title"":""Ella Cinders""}, {""fullplot"":1})" +what sort of film is Topaze?,"db.movies.find({""title"": ""Topaze""}, {""genres"": 1})" +How many audience reviews have been submitted for the movie The Lost World?,"db.movies.find({ ""title"": ""The Lost World"" }, { ""tomatoes.viewer.numReviews"": 1 })" +In which countries was the movie Nosferatu produced?,"db.movies.find({""title"":""Nosferatu""}, {""countries"":1})" +what is Three Ages about?,"db.movies.find({""title"": ""Three Ages""}, {""plot"": 1})" +the movie David Copperfield starred who?,"db.movies.find({""title"": ""David Copperfield""}, {""cast"": 1})" +"the movie Triumph of the Will, was written by who?","db.movies.find({""title"": ""Triumph of the Will""}, {""writers"": 1})" +"What is the Rotten Tomatoes meter rating for the movie I Was Born, But... ?","db.movies.find({""title"":""I Was Born, But...""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +what is In the Land of the Head Hunters about?,"db.movies.find({""title"": ""In the Land of the Head Hunters""}, {""plot"": 1})" +How many reviews have been submitted by critics for the movie The General ?,"db.movies.find({""title"": ""The General""}, {""tomatoes.critic.numReviews"": 1})" +How many movies have the genre 'Musical'?,"db.movies.countDocuments({""genres"": ""Musical""})" +What is the Metacritic score of the movie Daughter of Shanghai ?,"db.movies.find({ ""title"": ""Daughter of Shanghai"" }, { ""metacritic"": 1})" +What are the genres this movie The Black Cat belongs to?,"db.movies.find({""title"":""The Black Cat""}, {""genres"":1})" +what genre of film is The Music Box?,"db.movies.find({""title"": ""The Music Box""}, {""genres"": 1})" +the movie The Divine Lady starred which actors?,"db.movies.find({""title"": ""The Divine Lady""}, {""cast"": 1})" +"The Chechahcos, was written by who?","db.movies.find({""title"": ""The Chechahcos""}, {""writers"": 1})" +How many reviews have been submitted by critics for the movie Foolish Wives?,"db.movies.find({ ""title"": ""Foolish Wives"" }, { ""tomatoes.critic.numReviews"": 1 })" +what was the genre of The Robber Symphony?,"db.movies.find({""title"": ""The Robber Symphony""}, {""genres"": 1})" +What is the MongoDB document ID of the movie Tol'able David?,"db.movies.find({""title"": ""Tol'able David""}, {""_id"": 1})" +Can you tell me which film genres Stanley Kubrick has directed?,"db.movies.distinct(""genres"", { ""directors"": ""Stanley Kubrick"" })" +who was the writer of Duck Soup?,"db.movies.find({""title"": ""Duck Soup""}, {""writers"": 1})" +"the movie The Red Head, was written by who?","db.movies.find({""title"": ""The Red Head""}, {""writers"": 1})" +What was the release date for the movie The Band Concert?,"db.movies.find({""title"":""The Band Concert""}, {""released"":1})" +"The Unknown, is written by who?","db.movies.find({""title"": ""The Unknown""}, {""writers"": 1})" +whats the total runtime of all the movies directed by Terrence Malick ?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Terrence Malick"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +"In Quentin Tarantino's directed movies, which actor has made the most appearances?","db.movies.aggregate([ { ""$match"": { ""directors"": ""Quentin Tarantino"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +Which types of movies has Woody Allen directed?,"db.movies.distinct(""genres"", { ""directors"": ""Woody Allen"" })" +the film Mèdchen in Uniform starred which actors?,"db.movies.find({""title"": ""Mèdchen in Uniform""}, {""cast"": 1})" +David Copperfield is a film written by this person?,"db.movies.find({""title"": ""David Copperfield""}, {""writers"": 1})" +What is the IMDB rating of the movie Sherlock Jr. ?,"db.movies.find({""title"": ""Sherlock Jr.""}, { ""imdb.rating"": 1})" +Can you provide more information about the Rotten Tomatoes rating for the movie A Woman of Paris: A Drama of Fate?,"db.movies.find({""title"": ""A Woman of Paris: A Drama of Fate""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +what year was the movie Street Angel released?,"db.movies.find({""title"": ""Street Angel""}, {""year"": 1})" +What is the running time of the film The 39 Steps?,"db.movies.find({""title"":""The 39 Steps""}, {""runtime"":1})" +What is the audience rating of the movie The Lower Depths ?,"db.movies.find({ ""title"": ""The Lower Depths"" },{ ""tomatoes.viewer.rating"": 1 })" +What is the runtime and rating for the movie 'The Four Horsemen of the Apocalypse'?,"db.movies.find({""title"": ""The Four Horsemen of the Apocalypse""}, {""runtime"": 1, ""rated"": 1})" +how many awards did the movie Beau Geste win?,"db.movies.find({""title"":""Beau Geste""}, {""awards.wins"":1})" +what year was The Cameraman released?,"db.movies.find({""title"": ""The Cameraman""}, {""year"": 1})" +When was the movie White Shadows released in theaters?,"db.movies.find({""title"": ""White Shadows""}, {""released"": 1})" +How many audience reviews have been submitted for the movie The Black Cat?,"db.movies.find({ ""title"": ""The Black Cat"" }, { ""tomatoes.viewer.numReviews"": 1 })" +what is the film She description ?,"db.movies.find({""title"": ""She""}, {""plot"": 1})" +How did the audience and critics receive the film Show Boat?,"db.movies.find({""title"":""Show Boat""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +Who holds the record for the most appearances in movies directed by Francis Ford Coppola?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Francis Ford Coppola"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +what sort of movie is Death Takes a Holiday?,"db.movies.find({""title"": ""Death Takes a Holiday""}, {""genres"": 1})" +What is the plot summary of the movie Roberta ?,"db.movies.find({ ""title"": ""Roberta"" }, { ""plot"": 1})" +what is the plot for the film Movie Crazy?,"db.movies.find({""title"": ""Movie Crazy""}, {""plot"": 1})" +How many audience reviews have been submitted for the movie The General ?,"db.movies.find({ ""title"": ""The General"" },{ ""tomatoes.viewer.numReviews"": 1 })" +what was the genre of the movie Forbidden?,"db.movies.find({""title"": ""Forbidden""}, {""genres"": 1})" +what was the release year of the film The Song of Night?,"db.movies.find({""title"": ""The Song of Night""}, {""year"": 1})" +What is the full plot summary of the movie The Hunchback of Notre Dame ?,"db.movies.find({""title"": ""The Hunchback of Notre Dame""}, {""plot"": 1})" +who was the film Broadway Melody of 1936 written by?,"db.movies.find({""title"": ""Broadway Melody of 1936""}, {""writers"": 1})" +What is the runtime of the movie Night Must Fall ?,"db.movies.find({""title"": ""Night Must Fall""}, { ""runtime"": 1})" +What is the runtime and rating for the movie 'Cimarron'?,"db.movies.find({""title"": ""Cimarron""}, {""runtime"": 1, ""rated"": 1})" +what year was the movie The Gold Rush released?,"db.movies.find({""title"": ""The Gold Rush""}, {""year"": 1})" +Who are the main actors/actresses in the movie It Happened One Night?,"db.movies.find({""title"":""It Happened One Night""}, {""cast"":1})" +what type of film is The Prisoner of Shark Island?,"db.movies.find({""title"": ""The Prisoner of Shark Island""}, {""genres"": 1})" +who was the writer of the movie Der Kaiser von Kalifornien?,"db.movies.find({""title"": ""Der Kaiser von Kalifornien""}, {""writers"": 1})" +What is the dominant genre of Alain Resnais's directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Alain Resnais"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +who directed The Good Earth?,"db.movies.find({""title"": ""The Good Earth""}, {""directors"": 1})" +What is the language of Steamboat Willie?,"db.movies.find({""title"":""Steamboat Willie""}, {""languages"":1})" +What's the title of the Joel Coen movie with the longest runtime?,"db.movies.find({""directors"":""Joel Coen""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +Which actor has the most frequent appearances in Federico Fellini's directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Federico Fellini"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What is the ID of the movie The Navigator on IMDB?,"db.movies.find({""title"": ""The Navigator""}, {""imdb.id"": 1})" +What is the running time of the film Tsirk?,"db.movies.find({""title"":""Tsirk""}, {""runtime"":1})" +What is the IMDb rating for the movie The Gold Rush?,"db.movies.find({""title"": ""The Gold Rush""}, {""imdb.rating"": 1})" +"The Hunchback of Notre Dame, is written by who?","db.movies.find({""title"": ""The Hunchback of Notre Dame""}, {""writers"": 1})" +What is the production company of The Crowd?,"db.movies.find({""title"":""The Crowd""}, {""tomatoes.production"":1})" +What is the Rotten Tomatoes meter rating for the movie Wings ?,"db.movies.find({""title"":""Wings""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +Who are the actors that appear in the movie Wonder Bar ?,"db.movies.find({ ""title"": ""Wonder Bar"" },{ ""cast"": 1 })" +What is the production company behind the movie Three Little Pigs ?,"db.movies.find({""title"": ""Three Little Pigs""}, {""tomatoes.production"": 1})" +What is the MPAA rating of the film The Broadway Melody?,"db.movies.find({""title"":""The Broadway Melody""}, {""rated"":1})" +In what language was the movie Three Little Pigs released?,"db.movies.find({ ""title"": ""Three Little Pigs"" }, { ""languages"": 1})" +"the movie Four Sons, was written by who?","db.movies.find({""title"": ""Four Sons""}, {""writers"": 1})" +What is the running time of Clash of the Wolves?,"db.movies.find({""title"":""Clash of the Wolves""}, {""runtime"":1})" +the movie Gold Diggers of 1933 starred who?,"db.movies.find({""title"": ""Gold Diggers of 1933""}, {""cast"": 1})" +can you describe the plot of Seven Chances?,"db.movies.find({""title"": ""Seven Chances""}, {""plot"": 1})" +What is the critical reception of the movie Mayerling?,"db.movies.find({""title"":""Mayerling""}, {""tomatoes.critic"":1})" +What is the rating of the movie Cops according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Cops""}, {""tomatoes.viewer.rating"": 1})" +How many reviews did the movie Cleopatra receive on Rotten Tomatoes?,"db.movies.find({""title"":""Cleopatra""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +What are the genres this movie Eskimo belongs to?,"db.movies.find({""title"":""Eskimo""}, {""genres"":1})" +What languages are spoken in the movie Daughter of Shanghai?,"db.movies.find({""title"":""Daughter of Shanghai""}, {""languages"":1})" +who is the director for The Kid Brother?,"db.movies.find({""title"": ""The Kid Brother""}, {""directors"": 1})" +who are the actors in Romance?,"db.movies.find({""title"": ""Romance""}, {""cast"": 1})" +How did the audience and critics receive the movie Broken Blossoms or The Yellow Man and the Girl?,"db.movies.find({""title"":""Broken Blossoms or The Yellow Man and the Girl""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the production company behind the movie x?,"db.movies.find({""title"": ""The Lost World""}, { ""tomatoes.production"": 1})" +what is the film The Gilded Lily description ?,"db.movies.find({""title"": ""The Gilded Lily""}, {""plot"": 1})" +Has the movie Les vampires won any awards?,"db.movies.find({""title"":""Les vampires""}, {""awards.wins"":1})" +How did the audience and critics receive the movie The Champ?,"db.movies.find({""title"":""The Champ""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the runtime and rating for the movie 'Lost Horizon'?,"db.movies.find({""title"": ""Lost Horizon""}, {""runtime"": 1, ""rated"": 1})" +what type of film is The Prince and the Pauper?,"db.movies.find({""title"": ""The Prince and the Pauper""}, {""genres"": 1})" +The Cheat is a film written by this person?,"db.movies.find({""title"": ""The Cheat""}, {""writers"": 1})" +What is the box office revenue of the movie Traffic in Souls ?,"db.movies.find({""title"": ""Traffic in Souls""}, { ""tomatoes.boxOffice"": 1})" +How did the audience and critics receive the movie All Quiet on the Western Front?,"db.movies.find({""title"":""All Quiet on the Western Front""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the overall length of all movies that Orson Welles has directed?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Orson Welles"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +What is the viewer rating for the movie Men Without Women on Rotten Tomatoes?,"db.movies.find({""title"":""Men Without Women""}, {""tomatoes.viewer.rating"":1})" +"What are the names of all the actors who starred in the movie 'I Was Born, But...'?","db.movies.find({""title"": ""I Was Born, But...""}, {""cast"": 1})" +What is the IMDb rating for Blacksmith Scene?,"db.movies.find({""title"": ""Blacksmith Scene""}, {""imdb.rating"": 1})" +When was the movie All Quiet on the Western Front released in theaters?,"db.movies.find({""title"": ""All Quiet on the Western Front""}, {""released"": 1})" +What is the MPAA rating of the movie The Lives of a Bengal Lancer?,"db.movies.find({""title"":""The Lives of a Bengal Lancer""}, {""rated"":1})" +what kind of film is Wild Oranges?,"db.movies.find({""title"": ""Wild Oranges""}, {""genres"": 1})" +what year was the movie The Power and the Glory released?,"db.movies.find({""title"": ""The Power and the Glory""}, {""year"": 1})" +who is the director that directed The Wind?,"db.movies.find({""title"": ""The Wind""}, {""directors"": 1})" +When was the information about the movie Zoo in Budapest last updated?,"db.movies.find({ ""title"": ""Zoo in Budapest"" }, { ""lastupdated"": 1})" +How many audience reviews have been submitted for the movie Gold Diggers of 1935?,"db.movies.find({ ""title"": ""Gold Diggers of 1935"" }, { ""tomatoes.viewer.numReviews"": 1 })" +the movie The Invisible Ray starred which actors?,"db.movies.find({""title"": ""The Invisible Ray""}, {""cast"": 1})" +What is the critical reception of the movie Berkeley Square?,"db.movies.find({""title"":""Berkeley Square""}, {""tomatoes.critic"":1})" +who wrote the movie Nosferatu?,"db.movies.find({""title"": ""Nosferatu""}, {""writers"": 1})" +what is Broken Blossoms or The Yellow Man and the Girl about in details?,"db.movies.find({""title"": ""Broken Blossoms or The Yellow Man and the Girl""}, {""fullplot"": 1})" +She is written by this person?,"db.movies.find({""title"": ""She""}, {""writers"": 1})" +How many audience reviews have been submitted for the movie Follow the Fleet ?,"db.movies.find({ ""title"": ""Follow the Fleet"" },{ ""tomatoes.viewer.numReviews"": 1 })" +what is the film The Hunchback of Notre Dame about?,"db.movies.find({""title"": ""The Hunchback of Notre Dame""}, {""plot"": 1})" +Could you tell me which Oliver Stone-directed film has the longest running time?,"db.movies.find({""directors"":""Oliver Stone""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +What type of media is Dracula?,"db.movies.find({ ""title"": ""Dracula"" }, { ""type"": 1})" +What is the box office revenue of the movie The Gay Divorcee in dollars?,"db.movies.find({""title"": ""The Gay Divorcee""}, {""tomatoes.boxOffice"": 1})" +How did the audience and critics receive Wings?,"db.movies.find({""title"":""Wings""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +who produced the film A Star Is Born?,"db.movies.find({""title"":""A Star Is Born""}, {""tomatoes.production"":1})" +How many reviews have been submitted by critics for the movie Our Hospitality?,"db.movies.find({ ""title"": ""Our Hospitality"" }, { ""tomatoes.critic.numReviews"": 1 })" +what kind of movie is Mr. Deeds Goes to Town?,"db.movies.find({""title"": ""Mr. Deeds Goes to Town""}, {""genres"": 1})" +what is the movie The Italian about in details?,"db.movies.find({""title"": ""The Italian""}, {""fullplot"": 1})" +what genre is the movie Footlight Parade?,"db.movies.find({""title"": ""Footlight Parade""}, {""genres"": 1})" +what is the movie Ella Cinders about?,"db.movies.find({""title"": ""Ella Cinders""}, {""plot"": 1})" +What is the box office revenue for the movie 'The Song of Night'?,"db.movies.find({""title"": ""The Song of Night""}, {""tomatoes.boxOffice"": 1})" +Can you provide a detailed summary of the movie Salomè plot?,"db.movies.find({ ""title"": ""Salomè"" }, { ""fullplot"": 1})" +what is the plot for Safety Last!?,"db.movies.find({""title"": ""Safety Last!""}, {""plot"": 1})" +What is the imdbID and year of release for the movie with a title of 'Nosferatu'?,"db.movies.find({""title"": ""Nosferatu""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +the movie Wild Oranges was directed by who?,"db.movies.find({""title"": ""Wild Oranges""}, {""directors"": 1})" +What is the box office revenue of the movie Kid Galahad ?,"db.movies.find({""title"": ""Kid Galahad""}, { ""tomatoes.boxOffice"": 1})" +what is the full plot for the movie Trouble in Paradise?,"db.movies.find({""title"": ""Trouble in Paradise""}, {""fullplot"": 1})" +who was the writer of the movie Becky Sharp?,"db.movies.find({""title"": ""Becky Sharp""}, {""writers"": 1})" +What is the box office revenue of the movie The Informer in dollars?,"db.movies.find({""title"": ""The Informer""}, {""tomatoes.boxOffice"": 1})" +what is the genre of The Iron Horse?,"db.movies.find({""title"": ""The Iron Horse""}, {""genres"": 1})" +who produced Les vampires?,"db.movies.find({""title"":""Les vampires""}, {""tomatoes.production"":1})" +Who are the main actors/actresses in the movie The New Gulliver?,"db.movies.find({""title"":""The New Gulliver""}, {""cast"":1})" +What is the highest-ranking Terrence Malick-directed film on Rotten Tomatoes?,"db.movies.find({""directors"": ""Terrence Malick"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +the movie It's a Gift starred who?,"db.movies.find({""title"": ""It's a Gift""}, {""cast"": 1})" +Was the movie Little Miss Marker well received by audiences and critics?,"db.movies.find({""title"":""Little Miss Marker""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what is The Song of Night about in details?,"db.movies.find({""title"": ""The Song of Night""}, {""fullplot"": 1})" +How did the audience and critics receive the film Death Takes a Holiday?,"db.movies.find({""title"":""Death Takes a Holiday""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what is the plot for the film Mr. Deeds Goes to Town?,"db.movies.find({""title"": ""Mr. Deeds Goes to Town""}, {""plot"": 1})" +who is the director for This Is My Affair?,"db.movies.find({""title"": ""This Is My Affair""}, {""directors"": 1})" +Who are the main actors/actresses in the movie Lonesome?,"db.movies.find({""title"":""Lonesome""}, {""cast"":1})" +How many reviews have been submitted by critics for the movie A Night at the Opera ?,"db.movies.find({""title"": ""A Night at the Opera""}, {""tomatoes.critic.numReviews"": 1})" +what is the genre for the movie The Man Who Knew Too Much?,"db.movies.find({""title"": ""The Man Who Knew Too Much""}, {""genres"": 1})" +what is Queen Christina about?,"db.movies.find({""title"": ""Queen Christina""}, {""plot"": 1})" +How did the audience and critics receive the film State Fair?,"db.movies.find({""title"":""State Fair""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +Which film directed by Ingmar Bergman has the highest rating on Rotten Tomatoes?,"db.movies.find({""directors"": ""Ingmar Bergman"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +What is the running time of the film Murders in the Rue Morgue?,"db.movies.find({""title"":""Murders in the Rue Morgue""}, {""runtime"":1})" +What is the quantity of movies that Michelangelo Antonioni has directed?,"db.movies.countDocuments({""directors"":""Michelangelo Antonioni""})" +What is the running time of the movie The Phantom of the Opera?,"db.movies.find({""title"":""The Phantom of the Opera""}, {""runtime"":1})" +What is the plot summary of the movie The Mummy ?,"db.movies.find({ ""title"": ""The Mummy"" }, { ""plot"": 1})" +What are the highest-rated News in the database?,"db.movies.find({""genres"": ""News""}).sort({""imdb.rating"": -1}).limit(10)" +the movie Secret Agent starred who?,"db.movies.find({""title"": ""Secret Agent""}, {""cast"": 1})" +"who stars in the film Winsor McCay, the Famous Cartoonist of the N.Y. Herald and His Moving Comics?","db.movies.find({""title"": ""Winsor McCay, the Famous Cartoonist of the N.Y. Herald and His Moving Comics""}, {""cast"": 1})" +Can you name the movie genres that Martin Scorsese has directed?,"db.movies.distinct(""genres"", { ""directors"": ""Martin Scorsese"" })" +what is the movie Stage Door about?,"db.movies.find({""title"": ""Stage Door""}, {""plot"": 1})" +Has the movie Moscow Laughs won any awards?,"db.movies.find({""title"":""Moscow Laughs""}, {""awards.wins"":1})" +What is the MPAA rating of the film The Prisoner of Shark Island?,"db.movies.find({""title"":""The Prisoner of Shark Island""}, {""rated"":1})" +who was Kid Galahad directed by?,"db.movies.find({""title"": ""Kid Galahad""}, {""directors"": 1})" +who is the writer of the movie Maria Chapdelaine?,"db.movies.find({""title"": ""Maria Chapdelaine""}, {""writers"": 1})" +who starred in the movie Flash Gordon?,"db.movies.find({""title"": ""Flash Gordon""}, {""cast"": 1})" +"Who are the starring actors/actresses in the movie I Was Born, But...?","db.movies.find({""title"":""I Was Born, But...""}, {""cast"":1})" +What is the rating of the movie Steamboat Willie ?,"db.movies.find({ ""title"": ""Steamboat Willie"" }, { ""rated"": 1})" +What is the freshness score of the movie Dames on Rotten Tomatoes?,"db.movies.find({""title"": ""Dames""}, {""tomatoes.fresh"": 1})" +Who is the lead actress of the movie Nosferatu ?,"db.movies.find({""title"": ""Nosferatu""}, {""cast"":{""$slice"": 1},""title"":1})" +what is the full plot for The Power and the Glory?,"db.movies.find({""title"": ""The Power and the Glory""}, {""fullplot"": 1})" +What is the production company of The Invisible Ray?,"db.movies.find({""title"":""The Invisible Ray""}, {""tomatoes.production"":1})" +who produced She?,"db.movies.find({""title"":""She""}, {""tomatoes.production"":1})" +How did the audience and critics receive Storm Over Asia?,"db.movies.find({""title"":""Storm Over Asia""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +who directed Movie Crazy?,"db.movies.find({""title"": ""Movie Crazy""}, {""directors"": 1})" +What is the MPAA rating of the film The Crowd?,"db.movies.find({""title"":""The Crowd""}, {""rated"":1})" +What is the MPAA rating of the film Broadway Melody of 1936?,"db.movies.find({""title"":""Broadway Melody of 1936""}, {""rated"":1})" +What is the box office revenue of the movie Curly Top in dollars?,"db.movies.find({""title"": ""Curly Top""}, {""tomatoes.boxOffice"": 1})" +who wrote White Shadows?,"db.movies.find({""title"": ""White Shadows""}, {""writers"": 1})" +What is the consensus among critics about the movie San Francisco ?,"db.movies.find({""title"": ""San Francisco""}, {""tomatoes.consensus"": 1})" +What is the plot summary of the movie Der Kaiser von Kalifornien ?,"db.movies.find({ ""title"": ""Der Kaiser von Kalifornien"" }, { ""plot"": 1})" +In what language was the movie The 3 Penny Opera released?,"db.movies.find({ ""title"": ""The 3 Penny Opera"" }, { ""languages"": 1})" +The Wind is written by this person?,"db.movies.find({""title"": ""The Wind""}, {""writers"": 1})" +Who is the lead actress of the movie David Copperfield ?,"db.movies.find({""title"": ""David Copperfield""}, {""cast"":{""$slice"": 1},""title"":1})" +who are the actors in the film Man with a Movie Camera?,"db.movies.find({""title"": ""Man with a Movie Camera""}, {""cast"": 1})" +what year was the movie The Unknown released?,"db.movies.find({""title"": ""The Unknown""}, {""year"": 1})" +who is the director for Three Ages?,"db.movies.find({""title"": ""Three Ages""}, {""directors"": 1})" +Which actor has the most frequent appearances in Steven Spielberg's directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Steven Spielberg"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +When was the information last updated for the movie Broadway Melody of 1936 ?,"db.movies.find({ ""title"": ""Broadway Melody of 1936"" },{ ""lastupdated"": 1 })" +What is the viewer rating for the movie Street Angel on Rotten Tomatoes?,"db.movies.find({""title"":""Street Angel""}, {""tomatoes.viewer.rating"":1})" +What is the production company behind the movie Hallelujah ?,"db.movies.find({""title"": ""Hallelujah""}, {""tomatoes.production"": 1})" +Which actor has the highest number of appearances in movies directed by Alain Resnais?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Alain Resnais"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +which person directed The Invisible Man?,"db.movies.find({""title"": ""The Invisible Man""}, {""directors"": 1})" +What is the language of the film The Band Concert?,"db.movies.find({""title"":""The Band Concert""}, {""languages"":1})" +the film The Lower Depths was directed by who?,"db.movies.find({""title"": ""The Lower Depths""}, {""directors"": 1})" +who is the author of In Old Arizona?,"db.movies.find({""title"": ""In Old Arizona""}, {""writers"": 1})" +Who is the director of the movie The Prisoner of Zenda?,"db.movies.find({""title"": ""The Prisoner of Zenda""}, { ""directors"": 1})" +What is the mean rating of all the James Cameron films in the database?,"db.movies.aggregate([{""$match"": {""directors"":""James Cameron""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +what was the release date of the film Rembrandt?,"db.movies.find({""title"": ""Rembrandt""}, {""released"": 1})" +who is the writer of Sons of the Desert?,"db.movies.find({""title"": ""Sons of the Desert""}, {""writers"": 1})" +What is the consensus among critics about the movie The New Gulliver?,"db.movies.find({""title"": ""The New Gulliver""}, { ""tomatoes.consensus"": 1})" +the film A Farewell to Arms starred which actors?,"db.movies.find({""title"": ""A Farewell to Arms""}, {""cast"": 1})" +the film Bad Girl was directed by who?,"db.movies.find({""title"": ""Bad Girl""}, {""directors"": 1})" +the film Final Accord was directed by who?,"db.movies.find({""title"": ""Final Accord""}, {""directors"": 1})" +who stars in Salomè?,"db.movies.find({""title"": ""Salomè""}, {""cast"": 1})" +"the film King of Jazz, was written by who?","db.movies.find({""title"": ""King of Jazz""}, {""writers"": 1})" +who was the film Camille written by?,"db.movies.find({""title"": ""Camille""}, {""writers"": 1})" +what was the genre of Zoo in Budapest?,"db.movies.find({""title"": ""Zoo in Budapest""}, {""genres"": 1})" +who was the writer of the film Dames?,"db.movies.find({""title"": ""Dames""}, {""writers"": 1})" +What is the website associated with the movie The Red Head on Rotten Tomatoes?,"db.movies.find({""title"": ""The Red Head""}, {""tomatoes.website"": 1})" +Can you provide a longer version of the movie Maria Chapdelaine plot?,"db.movies.find({""title"":""Maria Chapdelaine""}, {""fullplot"":1})" +What is the Rotten Tomatoes meter rating for the movie The Scarlet Empress ?,"db.movies.find({""title"":""The Scarlet Empress""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +How many awards did the movie win Sons of the Desert ?,"db.movies.find({ ""title"": ""Sons of the Desert"" },{ ""awards.wins"": 1 })" +How does the movie Lonesome rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Lonesome"" },{ ""tomatoes.critic.meter"": 1 })" +What is the production company behind the movie Four Sons ?,"db.movies.find({""title"": ""Four Sons""}, {""tomatoes.production"": 1})" +"the film Maria Chapdelaine, was written by who?","db.movies.find({""title"": ""Maria Chapdelaine""}, {""writers"": 1})" +What is the Metacritic score of the movie The Crowd ?,"db.movies.find({ ""title"": ""The Crowd"" }, { ""metacritic"": 1})" +Who is the lead actress of the movie The Circus ?,"db.movies.find({""title"": ""The Circus""}, {""cast"":{""$slice"": 1},""title"":1})" +What is the plot summary of the movie King Kong ?,"db.movies.find({ ""title"": ""King Kong"" }, { ""plot"": 1})" +How long is the movie Sons of the Desert in minutes?,"db.movies.find({""title"":""Sons of the Desert""}, {""runtime"":1})" +who was the film Seven Chances written by?,"db.movies.find({""title"": ""Seven Chances""}, {""writers"": 1})" +Can you tell me the total count of films that David Lynch has directed?,"db.movies.countDocuments({""directors"":""David Lynch""})" +What is the movie Duck Soup rating?,"db.movies.find({""title"":""Duck Soup""}, {""rated"":1})" +who directed Romance?,"db.movies.find({""title"": ""Romance""}, {""directors"": 1})" +What is the IMDb rating for the movie The Garden of Allah?,"db.movies.find({""title"": ""The Garden of Allah""}, {""imdb.rating"": 1})" +What is the language of Secret Agent?,"db.movies.find({""title"":""Secret Agent""}, {""languages"":1})" +How many award nominations did the movie receive Peter Pan ?,"db.movies.find({ ""title"": ""Peter Pan"" },{ ""awards.nominations"": 1 })" +What are the genres this movie Twentieth Century belongs to?,"db.movies.find({""title"":""Twentieth Century""}, {""genres"":1})" +Was the movie The Lost World well received by audiences and critics?,"db.movies.find({""title"":""The Lost World""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the text description of the movie Intolerance: Love's Struggle Throughout the Ages awards?,"db.movies.find({""title"":""Intolerance: Love's Struggle Throughout the Ages""}, {""awards.text"":1})" +what type of film is Final Accord?,"db.movies.find({""title"": ""Final Accord""}, {""genres"": 1})" +Which types of movies has Abbas Kiarostami directed?,"db.movies.distinct(""genres"", { ""directors"": ""Abbas Kiarostami"" })" +What is the text description of the movie Daughter of Shanghai awards?,"db.movies.find({""title"":""Daughter of Shanghai""}, {""awards.text"":1})" +What is the viewer rating for the movie The Man Who Could Work Miracles on Rotten Tomatoes?,"db.movies.find({""title"":""The Man Who Could Work Miracles""}, {""tomatoes.viewer.rating"":1})" +what is the genre of Grass: A Nation's Battle for Life?,"db.movies.find({""title"": ""Grass: A Nation's Battle for Life""}, {""genres"": 1})" +how many awards did Go West win?,"db.movies.find({""title"":""Go West""}, {""awards.wins"":1})" +What is the imdbID and genre of the movie 'Roberta'?,"db.movies.find({""title"": ""Roberta""}, {""imdb.id"": 1, ""genres"": 1, ""_id"": 0})" +What is the consensus among critics about the movie The Land Beyond the Sunset ?,"db.movies.find({""title"": ""The Land Beyond the Sunset""}, {""tomatoes.consensus"": 1})" +how many awards did Sisters of the Gion win?,"db.movies.find({""title"":""Sisters of the Gion""}, {""awards.wins"":1})" +How many reviews have been submitted by critics for the movie Rembrandt?,"db.movies.find({ ""title"": ""Rembrandt"" }, { ""tomatoes.critic.numReviews"": 1 })" +Was the movie Tarzan the Ape Man well received by audiences and critics?,"db.movies.find({""title"":""Tarzan the Ape Man""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +which person wrote the film College?,"db.movies.find({""title"": ""College""}, {""writers"": 1})" +What is the full plot summary of the movie Disraeli ?,"db.movies.find({""title"": ""Disraeli""}, {""plot"": 1})" +In what year was the movie The Beloved Vagabond released ?,"db.movies.find({ ""title"": ""The Beloved Vagabond"" }, { ""year"": 1})" +What is the average rating of all of Robert Bresson movies in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Robert Bresson""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +what is the genre for the film City Streets?,"db.movies.find({""title"": ""City Streets""}, {""genres"": 1})" +Who are the main actors in Scarface ?,"db.movies.find({ ""title"": ""Scarface"" }, { ""cast"": 1})" +what was the release year of the movie The Gold Rush?,"db.movies.find({""title"": ""The Gold Rush""}, {""year"": 1})" +When was the information about the movie Carnival in Flanders last updated?,"db.movies.find({ ""title"": ""Carnival in Flanders"" }, { ""lastupdated"": 1})" +What is the box office revenue of the movie I Am a Fugitive from a Chain Gang in dollars?,"db.movies.find({""title"": ""I Am a Fugitive from a Chain Gang""}, {""tomatoes.boxOffice"": 1})" +what is the full plot for the film The Thin Man?,"db.movies.find({""title"": ""The Thin Man""}, {""fullplot"": 1})" +who was the writer of the movie The Awful Truth?,"db.movies.find({""title"": ""The Awful Truth""}, {""writers"": 1})" +What is the Rotten Tomatoes meter rating for the movie Sunrise ?,"db.movies.find({""title"":""Sunrise""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +What is the ID of the movie Cleopatra on IMDB?,"db.movies.find({""title"": ""Cleopatra""}, {""imdb.id"": 1})" +What is the box office revenue of the movie Tsirk in dollars?,"db.movies.find({""title"": ""Tsirk""}, {""tomatoes.boxOffice"": 1})" +What is the language of the film Under the Roofs of Paris?,"db.movies.find({""title"":""Under the Roofs of Paris""}, {""languages"":1})" +Who are the main actors/actresses in the movie Frankenstein?,"db.movies.find({""title"":""Frankenstein""}, {""cast"":1})" +What is the Rotten Tomatoes meter rating for the movie Nosferatu ?,"db.movies.find({""title"":""Nosferatu""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +What is the language of the film Lonesome?,"db.movies.find({""title"":""Lonesome""}, {""languages"":1})" +What is the number of movies Jean Renoir released per year?,"db.movies.aggregate([{ $match: { ""directors"": ""Jean Renoir"" }},{""$group"": { ""_id"": ""$year"", ""count"": {""$sum"": 1}}}])" +When was the Tomatometer score and other Tomato-related information last updated for the movie The Land Beyond the Sunset?,"db.movies.find({""title"": ""The Land Beyond the Sunset""}, { ""tomatoes.lastUpdated"": 1})" +What is the production company of the film The Trail of the Lonesome Pine?,"db.movies.find({""title"":""The Trail of the Lonesome Pine""}, {""tomatoes.production"":1})" +Who are the writers of the movie Anthony Adverse ?,"db.movies.find({""title"": ""Anthony Adverse""}, { ""writers"": 1})" +How many reviews have been submitted for the movie Cops on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Cops"" },{ ""tomatoes.viewer.numReviews"": 1 })" +How many reviews did the movie Flesh and the Devil receive on Rotten Tomatoes?,"db.movies.find({""title"":""Flesh and the Devil""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +who directed Regeneration?,"db.movies.find({""title"": ""Regeneration""}, {""directors"": 1})" +what is the plot for the movie Swing Time?,"db.movies.find({""title"": ""Swing Time""}, {""plot"": 1})" +what is the full plot for the movie Dracula?,"db.movies.find({""title"": ""Dracula""}, {""fullplot"": 1})" +Which movies from the 1990s were directed by Wes Anderson?,"db.movies.find({""directors"": 'Wes Anderson', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +who was the writer of the film Toni?,"db.movies.find({""title"": ""Toni""}, {""writers"": 1})" +What is the audience rating of the movie The Italian ?,"db.movies.find({ ""title"": ""The Italian"" },{ ""tomatoes.viewer.rating"": 1 })" +who starred in King Solomon's Mines?,"db.movies.find({""title"": ""King Solomon's Mines""}, {""cast"": 1})" +who stars in the movie Mèdchen in Uniform?,"db.movies.find({""title"": ""Mèdchen in Uniform""}, {""cast"": 1})" +What is the movie Nosferatu about? Can you provide a brief summary?,"db.movies.find({""title"":""Nosferatu""}, {""plot"":1})" +What is the most common genre of movies that Alain Resnais directs?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Alain Resnais"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +How many audience reviews have been submitted for the movie The Champ?,"db.movies.find({ ""title"": ""The Champ"" }, { ""tomatoes.viewer.numReviews"": 1 })" +"How long, in total, are all the movies that Ethan Coen has directed?","db.movies.aggregate([{ ""$match"": { ""directors"": ""Ethan Coen"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +who's the director of Final Accord?,"db.movies.find({""title"": ""Final Accord""}, {""directors"": 1})" +what was the release date of the movie Mary of Scotland?,"db.movies.find({""title"": ""Mary of Scotland""}, {""released"": 1})" +what was the release year of the movie Metropolis?,"db.movies.find({""title"": ""Metropolis""}, {""year"": 1})" +What type of movie is He Who Gets Slapped ?,"db.movies.find({""title"":""He Who Gets Slapped""}, {""genres"":1})" +"the film A Damsel in Distress, was written by who?","db.movies.find({""title"": ""A Damsel in Distress""}, {""writers"": 1})" +How many votes does the movie Our Hospitality have on IMDb?,"db.movies.find({""title"":""Our Hospitality""}, {""imdb.votes"":1})" +How many votes does the movie Gold Diggers of 1935 have on IMDb?,"db.movies.find({""title"":""Gold Diggers of 1935""}, {""imdb.votes"":1})" +How many audience reviews have been submitted for the movie The Strong Man?,"db.movies.find({ ""title"": ""The Strong Man"" }, { ""tomatoes.viewer.numReviews"": 1 })" +What languages are spoken in the movie Dracula ?,"db.movies.find({""title"": ""Dracula""}, { ""languages"": 1})" +the movie The Champ starred which actors?,"db.movies.find({""title"": ""The Champ""}, {""cast"": 1})" +who directed the movie Tol'able David?,"db.movies.find({""title"": ""Tol'able David""}, {""directors"": 1})" +how many awards did Snow White and the Seven Dwarfs win?,"db.movies.find({""title"":""Snow White and the Seven Dwarfs""}, {""awards.wins"":1})" +What is the IMDb rating for the movie Two Seconds ?,"db.movies.find({""title"":""Two Seconds""}, {""imdb.rating"":1})" +which person directed Little Women?,"db.movies.find({""title"": ""Little Women""}, {""directors"": 1})" +what year was the movie In Old Arizona released?,"db.movies.find({""title"": ""In Old Arizona""}, {""year"": 1})" +the movie Intolerance: Love's Struggle Throughout the Ages starred which actors?,"db.movies.find({""title"": ""Intolerance: Love's Struggle Throughout the Ages""}, {""cast"": 1})" +What is the audience rating of the movie Modern Times ?,"db.movies.find({ ""title"": ""Modern Times"" },{ ""tomatoes.viewer.rating"": 1 })" +Can you provide more information about the Rotten Tomatoes rating for the movie Maria Chapdelaine?,"db.movies.find({""title"": ""Maria Chapdelaine""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +the movie Our Hospitality was directed by who?,"db.movies.find({""title"": ""Our Hospitality""}, {""directors"": 1})" +What is the IMDb rating for the film The Last of the Mohicans?,"db.movies.find({""title"": ""The Last of the Mohicans""}, {""imdb.rating"": 1})" +who is the writer of In the Land of the Head Hunters?,"db.movies.find({""title"": ""In the Land of the Head Hunters""}, {""writers"": 1})" +What type of movie is The Devil Is a Woman ?,"db.movies.find({""title"":""The Devil Is a Woman""}, {""genres"":1})" +What is the movie Under the Roofs of Paris about? Can you provide a brief summary?,"db.movies.find({""title"":""Under the Roofs of Paris""}, {""plot"":1})" +who directed the film The Ghost Goes West?,"db.movies.find({""title"": ""The Ghost Goes West""}, {""directors"": 1})" +Could you tell me which movie that Tim Burton directed has the longest runtime?,"db.movies.find({""directors"":""Tim Burton""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +What is the consensus among critics about the movie Three Little Pigs ?,"db.movies.find({""title"": ""Three Little Pigs""}, {""tomatoes.consensus"": 1})" +Which motion pictures were directed by Alfred Hitchcock?,"db.movies.find({""directors"": ""Alfred Hitchcock""},{""title"":1})" +Queen Kelly was directed by who?,"db.movies.find({""title"": ""Queen Kelly""}, {""directors"": 1})" +who are the actors in the movie Scrooge?,"db.movies.find({""title"": ""Scrooge""}, {""cast"": 1})" +which company produced the film The Cameraman?,"db.movies.find({""title"":""The Cameraman""}, {""tomatoes.production"":1})" +How did the audience and critics receive 7th Heaven?,"db.movies.find({""title"":""7th Heaven""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what is the film Cavalcade imdb rating?,"db.movies.find({""title"": ""Cavalcade""}, {""imdb.rating"": 1})" +who was L'opèra de quat'sous written by?,"db.movies.find({""title"": ""L'opèra de quat'sous""}, {""writers"": 1})" +how many awards did Toni win?,"db.movies.find({""title"":""Toni""}, {""awards.wins"":1})" +What is the MPAA rating of the movie Les Misèrables?,"db.movies.find({""title"":""Les Misèrables""}, {""rated"":1})" +what is the full plot for the movie The Sin of Madelon Claudet?,"db.movies.find({""title"": ""The Sin of Madelon Claudet""}, {""fullplot"": 1})" +Has the movie The Informer won any awards?,"db.movies.find({""title"":""The Informer""}, {""awards.wins"":1})" +what is the movie A Day in the Country description ?,"db.movies.find({""title"": ""A Day in the Country""}, {""plot"": 1})" +How many votes does the movie In the Land of the Head Hunters have on IMDb?,"db.movies.find({""title"":""In the Land of the Head Hunters""}, {""imdb.votes"":1})" +What is the ID of the movie Anthony Adverse on IMDB?,"db.movies.find({""title"": ""Anthony Adverse""}, {""imdb.id"": 1})" +Can you provide a detailed summary of the movie The Last Command plot?,"db.movies.find({ ""title"": ""The Last Command"" }, { ""fullplot"": 1})" +Which of Federico Fellini's movies has the highest Rotten Tomatoes rating?,"db.movies.find({""directors"": ""Federico Fellini"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +Can you give me a brief summary of the movie Alice Adams plot?,"db.movies.find({""title"":""Alice Adams""}, {""plot"":1})" +who was the writer of Nanook of the North?,"db.movies.find({""title"": ""Nanook of the North""}, {""writers"": 1})" +what is the film Scarface about?,"db.movies.find({""title"": ""Scarface""}, {""plot"": 1})" +I'm curious about the films that were directed by Ridley Scott. Can you name them?,"db.movies.find({""directors"": ""Ridley Scott""},{""title"":1})" +what was the release year of the film Peter Pan?,"db.movies.find({""title"": ""Peter Pan""}, {""year"": 1})" +the movie Eskimo starred who?,"db.movies.find({""title"": ""Eskimo""}, {""cast"": 1})" +who acted in the film The Lower Depths?,"db.movies.find({""title"": ""The Lower Depths""}, {""cast"": 1})" +which person wrote the film The Land Beyond the Sunset?,"db.movies.find({""title"": ""The Land Beyond the Sunset""}, {""writers"": 1})" +"When was the movie Laugh, Clown, Laugh released?","db.movies.find({""title"":""Laugh, Clown, Laugh""}, {""released"":1})" +What are the genres this movie Hallelujah belongs to?,"db.movies.find({""title"":""Hallelujah""}, {""genres"":1})" +How many viewer reviews did the movie Show People receive on Rotten Tomatoes?,"db.movies.find({""title"":""Show People""}, {""tomatoes.viewer.numReviews"":1})" +which person wrote the film The Wind?,"db.movies.find({""title"": ""The Wind""}, {""writers"": 1})" +When was the movie I Am a Fugitive from a Chain Gang released?,"db.movies.find({""title"":""I Am a Fugitive from a Chain Gang""}, {""released"":1})" +What is the runtime of the movie Les Misèrables ?,"db.movies.find({""title"": ""Les Misèrables""}, { ""runtime"": 1})" +what is the genre for the movie Four Sons?,"db.movies.find({""title"": ""Four Sons""}, {""genres"": 1})" +What is the Tomatometer score of the movie Swedenhielms Family ?,"db.movies.find({ ""title"": ""Swedenhielms Family"" },{ ""tomatoes.critic.meter"": 1 })" +Who is the lead actress of the movie Modern Times ?,"db.movies.find({""title"": ""Modern Times""}, {""cast"":{""$slice"": 1},""title"":1})" +Can you provide me with a list of Stanley Kubrick-directed movies with the highest ratings?,"db.movies.find({""directors"": 'Stanley Kubrick', ""imdb.rating"": {""$gt"": 8.5}})" +When was the Tomatometer score and other Tomato-related information last updated for the movie The Fall of the House of Usher?,"db.movies.find({""title"": ""The Fall of the House of Usher""}, { ""tomatoes.lastUpdated"": 1})" +"Has The Blue Bird won any awards? If so, which ones?","db.movies.find({""title"":""The Blue Bird"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What is the consensus among critics about the movie The Dark Angel?,"db.movies.find({""title"": ""The Dark Angel""}, { ""tomatoes.consensus"": 1})" +which person wrote Under the Roofs of Paris?,"db.movies.find({""title"": ""Under the Roofs of Paris""}, {""writers"": 1})" +who stars in Seven Chances?,"db.movies.find({""title"": ""Seven Chances""}, {""cast"": 1})" +who wrote the screenplay for Dekigokoro?,"db.movies.aggregate([ { ""$match"": { ""title"":""Dekigokoro""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +what was the genre of the movie The Invisible Ray?,"db.movies.find({""title"": ""The Invisible Ray""}, {""genres"": 1})" +What is the Rotten Tomatoes meter rating for the movie Sanders of the River ?,"db.movies.find({""title"":""Sanders of the River""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +what type of movie is The Man Who Knew Too Much?,"db.movies.find({""title"": ""The Man Who Knew Too Much""}, {""genres"": 1})" +What is the runtime of the movie The Lost World ?,"db.movies.find({""title"": ""The Lost World""}, { ""runtime"": 1})" +who was the movie Folies Bergère de Paris written by?,"db.movies.find({""title"": ""Folies Bergère de Paris""}, {""writers"": 1})" +What is the audience rating of the movie Grand Hotel ?,"db.movies.find({ ""title"": ""Grand Hotel"" },{ ""tomatoes.viewer.rating"": 1 })" +What is the running time of the film Traffic in Souls?,"db.movies.find({""title"":""Traffic in Souls""}, {""runtime"":1})" +How does the movie Sanders of the River rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Sanders of the River"" },{ ""tomatoes.critic.meter"": 1 })" +Can you provide more information about the IMDb rating for the movie Safety Last! ?,"db.movies.find({""title"":""Safety Last!""}, {""imdb"":1})" +who directed the movie The Circus?,"db.movies.find({""title"": ""The Circus""}, {""directors"": 1})" +what is Frankenstein imdb rating?,"db.movies.find({""title"": ""Frankenstein""}, {""imdb.rating"": 1})" +what was the release year of the film Scarface?,"db.movies.find({""title"": ""Scarface""}, {""year"": 1})" +What is the language of Queen Kelly?,"db.movies.find({""title"":""Queen Kelly""}, {""languages"":1})" +How does the movie Freaks rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Freaks"" },{ ""tomatoes.critic.meter"": 1 })" +What is the language of the movie The Blood of a Poet?,"db.movies.find({""title"":""The Blood of a Poet""}, {""languages"":1})" +What is the text representation of the awards won and nominations received by the movie Comradeship?,"db.movies.find({""title"": ""Comradeship""}, { ""awards.text"": 1})" +who are the actors in the movie She Done Him Wrong?,"db.movies.find({""title"": ""She Done Him Wrong""}, {""cast"": 1})" +How many audience reviews have been submitted for the movie Scarface?,"db.movies.find({ ""title"": ""Scarface"" }, { ""tomatoes.viewer.numReviews"": 1 })" +What is the running time of The 3 Penny Opera?,"db.movies.find({""title"":""The 3 Penny Opera""}, {""runtime"":1})" +How did the audience and critics receive the movie Steamboat Willie?,"db.movies.find({""title"":""Steamboat Willie""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +How does the movie Pandora's Box rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Pandora's Box"" },{ ""tomatoes.critic.meter"": 1 })" +what is the film The Immigrant description ?,"db.movies.find({""title"": ""The Immigrant""}, {""plot"": 1})" +what was the release year of the film Lenin in October?,"db.movies.find({""title"": ""Lenin in October""}, {""year"": 1})" +who wrote the screenplay for Intolerance: Love's Struggle Throughout the Ages?,"db.movies.aggregate([ { ""$match"": { ""title"":""Intolerance: Love's Struggle Throughout the Ages""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +What is the Metacritic score of the movie Alice Adams ?,"db.movies.find({ ""title"": ""Alice Adams"" }, { ""metacritic"": 1})" +What is the meter score of the movie Forbidden according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Forbidden""}, {""tomatoes.viewer.meter"": 1})" +When was the information about the movie The Edge of the World last updated?,"db.movies.find({ ""title"": ""The Edge of the World"" }, { ""lastupdated"": 1})" +what is the genre for the film Little Caesar?,"db.movies.find({""title"": ""Little Caesar""}, {""genres"": 1})" +who was The Passion of Joan of Arc directed by?,"db.movies.find({""title"": ""The Passion of Joan of Arc""}, {""directors"": 1})" +Can you provide more information about the Rotten Tomatoes rating for the movie Ben-Hur: A Tale of the Christ?,"db.movies.find({""title"": ""Ben-Hur: A Tale of the Christ""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +Who is the director of the movie It?,"db.movies.find({""title"": ""It""}, { ""directors"": 1})" +who was the movie Mayerling written by?,"db.movies.find({""title"": ""Mayerling""}, {""writers"": 1})" +What is the meter score of the movie The Dark Angel according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""The Dark Angel""}, {""tomatoes.viewer.meter"": 1})" +What is the IMDb rating for the film Night Must Fall?,"db.movies.find({""title"": ""Night Must Fall""}, {""imdb.rating"": 1})" +"The Ghost Goes West, was written by who?","db.movies.find({""title"": ""The Ghost Goes West""}, {""writers"": 1})" +What is the box office revenue of the movie White Shadows ?,"db.movies.find({""title"": ""White Shadows""}, { ""tomatoes.boxOffice"": 1})" +What is the runtime of the movie The Devil Is a Woman ?,"db.movies.find({""title"": ""The Devil Is a Woman""}, { ""runtime"": 1})" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie Lady Windermere's Fan ?,"db.movies.find({""title"":""Lady Windermere's Fan""}, {""tomatoes.viewer.meter"":1})" +What is the mean rating for Coen Brothers movies in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Coen Brothers""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +who produced the film Go West?,"db.movies.find({""title"":""Go West""}, {""tomatoes.production"":1})" +who starred in The Ace of Hearts?,"db.movies.find({""title"": ""The Ace of Hearts""}, {""cast"": 1})" +which person wrote the movie Show Boat?,"db.movies.find({""title"": ""Show Boat""}, {""writers"": 1})" +who is the director that directed A Star Is Born?,"db.movies.find({""title"": ""A Star Is Born""}, {""directors"": 1})" +what genre of film is Black Legion?,"db.movies.find({""title"": ""Black Legion""}, {""genres"": 1})" +What is the MPAA rating of the film High and Dizzy?,"db.movies.find({""title"":""High and Dizzy""}, {""rated"":1})" +who acted in the film The Phantom of the Opera?,"db.movies.find({""title"": ""The Phantom of the Opera""}, {""cast"": 1})" +who's the director of Becky Sharp?,"db.movies.find({""title"": ""Becky Sharp""}, {""directors"": 1})" +What is the box office revenue of the movie The Blood of a Poet ?,"db.movies.find({""title"": ""The Blood of a Poet""}, { ""tomatoes.boxOffice"": 1})" +what was the release date of the film Tol'able David?,"db.movies.find({""title"": ""Tol'able David""}, {""released"": 1})" +what was the genre of the film The Awful Truth?,"db.movies.find({""title"": ""The Awful Truth""}, {""genres"": 1})" +What is the rating of the movie He Who Gets Slapped according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""He Who Gets Slapped""}, {""tomatoes.viewer.rating"": 1})" +What is the box office revenue for the movie 'Wonder Bar'?,"db.movies.find({""title"": ""Wonder Bar""}, {""tomatoes.boxOffice"": 1})" +which company produced the movie The Iron Horse?,"db.movies.find({""title"":""The Iron Horse""}, {""tomatoes.production"":1})" +How does the movie The Crowd Roars rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""The Crowd Roars"" },{ ""tomatoes.critic.meter"": 1 })" +what was the genre of the film Love Me Tonight?,"db.movies.find({""title"": ""Love Me Tonight""}, {""genres"": 1})" +what sort of movie is Clash of the Wolves?,"db.movies.find({""title"": ""Clash of the Wolves""}, {""genres"": 1})" +What is the name of the director and cast for the movie 'Beau Geste'?,"db.movies.find({""title"": ""Beau Geste""}, {""directors"": 1, ""cast"": 1, ""_id"": 0})" +What type of media is These Three?,"db.movies.find({ ""title"": ""These Three"" }, { ""type"": 1})" +who stars in the movie The Gold Rush?,"db.movies.find({""title"": ""The Gold Rush""}, {""cast"": 1})" +Can you give me a brief summary of the movie The Private Life of Henry VIII. plot?,"db.movies.find({""title"":""The Private Life of Henry VIII.""}, {""plot"":1})" +What is the language of The Passion of Joan of Arc?,"db.movies.find({""title"":""The Passion of Joan of Arc""}, {""languages"":1})" +who was the writer of the film King Solomon's Mines?,"db.movies.find({""title"": ""King Solomon's Mines""}, {""writers"": 1})" +who is the writer of Grand Hotel?,"db.movies.find({""title"": ""Grand Hotel""}, {""writers"": 1})" +What is the rating of the movie Ella Cinders according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Ella Cinders""}, {""tomatoes.viewer.rating"": 1})" +who was the writer of the movie The Black Pirate?,"db.movies.find({""title"": ""The Black Pirate""}, {""writers"": 1})" +the movie Stage Door starred which actors?,"db.movies.find({""title"": ""Stage Door""}, {""cast"": 1})" +what is the film The Count of Monte Cristo description ?,"db.movies.find({""title"": ""The Count of Monte Cristo""}, {""plot"": 1})" +It Happened One Night is a film written by this person?,"db.movies.find({""title"": ""It Happened One Night""}, {""writers"": 1})" +how has These Three been recieved by critics and audience?,"db.movies.find({""title"":""These Three""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +how many awards did The Lost Patrol win?,"db.movies.find({""title"":""The Lost Patrol""}, {""awards.wins"":1})" +Who is the actor that appears the most in movies directed by Terrence Malick?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Terrence Malick"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What is the production company of the movie Zero for Conduct?,"db.movies.find({""title"":""Zero for Conduct""}, {""tomatoes.production"":1})" +who was the writer of the film The Champ?,"db.movies.find({""title"": ""The Champ""}, {""writers"": 1})" +What is the name of the director and cast for the movie 'Broadway Bill'?,"db.movies.find({""title"": ""Broadway Bill""}, {""directors"": 1, ""cast"": 1, ""_id"": 0})" +What is the Metacritic score of the movie Show People ?,"db.movies.find({ ""title"": ""Show People"" }, { ""metacritic"": 1})" +what is The Informer imdb rating?,"db.movies.find({""title"": ""The Informer""}, {""imdb.rating"": 1})" +who wrote the film Movie Crazy?,"db.movies.find({""title"": ""Movie Crazy""}, {""writers"": 1})" +What was the release date for the movie The Crusades?,"db.movies.find({""title"":""The Crusades""}, {""released"":1})" +What is the number of movies David Lynch released per year?,"db.movies.aggregate([{ $match: { ""directors"": ""David Lynch"" }},{""$group"": { ""_id"": ""$year"", ""count"": {""$sum"": 1}}}])" +what genre is the film The Thief of Bagdad?,"db.movies.find({""title"": ""The Thief of Bagdad""}, {""genres"": 1})" +Who are the starring actors/actresses in the movie The Private Life of Don Juan?,"db.movies.find({""title"":""The Private Life of Don Juan""}, {""cast"":1})" +What is the production company behind the movie x?,"db.movies.find({""title"": ""White Shadows""}, { ""tomatoes.production"": 1})" +the director of Mary of Scotland was?,"db.movies.find({""title"": ""Mary of Scotland""}, {""directors"": 1})" +How many reviews have been submitted by critics for the movie The Son of Kong?,"db.movies.find({ ""title"": ""The Son of Kong"" }, { ""tomatoes.critic.numReviews"": 1 })" +what was the release date of the film The Birth of a Nation?,"db.movies.find({""title"": ""The Birth of a Nation""}, {""released"": 1})" +In what year was the movie Foolish Wives released ?,"db.movies.find({ ""title"": ""Foolish Wives"" }, { ""year"": 1})" +How did the audience and critics receive Westfront 1918?,"db.movies.find({""title"":""Westfront 1918""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +Who are the main actors in Cleopatra ?,"db.movies.find({ ""title"": ""Cleopatra"" }, { ""cast"": 1})" +Who are the main actors in Make Way for Tomorrow ?,"db.movies.find({ ""title"": ""Make Way for Tomorrow"" }, { ""cast"": 1})" +How long is the runtime of the movie Love Me Tonight ?,"db.movies.find({""title"":""Love Me Tonight""}, {""runtime"":1})" +who wrote City Lights?,"db.movies.find({""title"": ""City Lights""}, {""writers"": 1})" +When was the information about the movie Tabu: A Story of the South Seas last updated?,"db.movies.find({ ""title"": ""Tabu: A Story of the South Seas"" }, { ""lastupdated"": 1})" +Who are the main actors/actresses in the movie Broken Blossoms or The Yellow Man and the Girl?,"db.movies.find({""title"":""Broken Blossoms or The Yellow Man and the Girl""}, {""cast"":1})" +Can you provide more information about the languages spoken in the movie Swedenhielms Family ?,"db.movies.find({""title"":""Swedenhielms Family""}, {""languages"":1})" +Was the movie The Birth of a Nation well received by audiences and critics?,"db.movies.find({""title"":""The Birth of a Nation""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +the film Daughter of Shanghai was directed by who?,"db.movies.find({""title"": ""Daughter of Shanghai""}, {""directors"": 1})" +How many reviews have been submitted by critics for the movie Safety Last!?,"db.movies.find({ ""title"": ""Safety Last!"" }, { ""tomatoes.critic.numReviews"": 1 })" +Footlight Parade is a film written by this person?,"db.movies.find({""title"": ""Footlight Parade""}, {""writers"": 1})" +who is the director for The Big Parade?,"db.movies.find({""title"": ""The Big Parade""}, {""directors"": 1})" +which person wrote Dishonored?,"db.movies.find({""title"": ""Dishonored""}, {""writers"": 1})" +Who is the lead actress of the movie The Land Beyond the Sunset ?,"db.movies.find({""title"": ""The Land Beyond the Sunset""}, {""cast"":{""$slice"": 1},""title"":1})" +Who are the starring actors/actresses in the movie Les Misèrables?,"db.movies.find({""title"":""Les Misèrables""}, {""cast"":1})" +What is the percentage of positive reviews among critics for the movie The Wedding Night ?,"db.movies.find({ ""title"": ""The Wedding Night"" },{ ""tomatoes.critic.meter"": 1 })" +who directed the film Frankenstein?,"db.movies.find({""title"": ""Frankenstein""}, {""directors"": 1})" +What is the IMDb rating for the film Little Miss Marker?,"db.movies.find({""title"": ""Little Miss Marker""}, {""imdb.rating"": 1})" +who starred in the film All Quiet on the Western Front?,"db.movies.find({""title"": ""All Quiet on the Western Front""}, {""cast"": 1})" +Can you provide a detailed summary of the movie One Night of Love plot?,"db.movies.find({ ""title"": ""One Night of Love"" }, { ""fullplot"": 1})" +When was the movie One Night of Love released in theaters?,"db.movies.find({""title"": ""One Night of Love""}, {""released"": 1})" +what is the film The Front Page about?,"db.movies.find({""title"": ""The Front Page""}, {""plot"": 1})" +which person wrote The Invisible Ray?,"db.movies.find({""title"": ""The Invisible Ray""}, {""writers"": 1})" +what is San Francisco about?,"db.movies.find({""title"": ""San Francisco""}, {""plot"": 1})" +What is the consensus among critics about the movie Show People?,"db.movies.find({""title"": ""Show People""}, { ""tomatoes.consensus"": 1})" +"Where Are My Children?, is written by who?","db.movies.find({""title"": ""Where Are My Children?""}, {""writers"": 1})" +who was the writer of the movie The Passion of Joan of Arc?,"db.movies.find({""title"": ""The Passion of Joan of Arc""}, {""writers"": 1})" +What is the movie The 3 Penny Opera rating?,"db.movies.find({""title"":""The 3 Penny Opera""}, {""rated"":1})" +What are the names of all the actors who starred in the movie 'Go West'?,"db.movies.find({""title"": ""Go West""}, {""cast"": 1})" +Who are the writers of the movie Final Accord ?,"db.movies.find({""title"": ""Final Accord""}, { ""writers"": 1})" +what year was the movie The Four Horsemen of the Apocalypse released?,"db.movies.find({""title"": ""The Four Horsemen of the Apocalypse""}, {""year"": 1})" +How did the audience and critics receive The Crusades?,"db.movies.find({""title"":""The Crusades""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the movie The Land Beyond the Sunset about? Can you provide a brief summary?,"db.movies.find({""title"":""The Land Beyond the Sunset""}, {""plot"":1})" +what was the release year of the film The Music Box?,"db.movies.find({""title"": ""The Music Box""}, {""year"": 1})" +Who is the director of the movie Beau Geste?,"db.movies.find({""title"": ""Beau Geste""}, { ""directors"": 1})" +What is the freshness score of the movie The Story of a Cheat on Rotten Tomatoes?,"db.movies.find({""title"": ""The Story of a Cheat""}, {""tomatoes.fresh"": 1})" +who was the writer of The Wind?,"db.movies.find({""title"": ""The Wind""}, {""writers"": 1})" +What is the box office revenue of the movie In the Land of the Head Hunters ?,"db.movies.find({""title"": ""In the Land of the Head Hunters""}, { ""tomatoes.boxOffice"": 1})" +the director of The Docks of New York was?,"db.movies.find({""title"": ""The Docks of New York""}, {""directors"": 1})" +"In Terrence Malick's directed movies, which actor has made the most appearances?","db.movies.aggregate([ { ""$match"": { ""directors"": ""Terrence Malick"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +which company produced The Garden of Allah?,"db.movies.find({""title"":""The Garden of Allah""}, {""tomatoes.production"":1})" +What is the IMDb rating for the film The Unknown?,"db.movies.find({""title"": ""The Unknown""}, {""imdb.rating"": 1})" +Can you give me a brief summary of the movie Queen Kelly plot?,"db.movies.find({""title"":""Queen Kelly""}, {""plot"":1})" +the film The Barretts of Wimpole Street was directed by who?,"db.movies.find({""title"": ""The Barretts of Wimpole Street""}, {""directors"": 1})" +what kind of film is Frankenstein?,"db.movies.find({""title"": ""Frankenstein""}, {""genres"": 1})" +what year was the movie Forbidden released?,"db.movies.find({""title"": ""Forbidden""}, {""year"": 1})" +what is the genre for the film Twentieth Century?,"db.movies.find({""title"": ""Twentieth Century""}, {""genres"": 1})" +what is the plot for Les Misèrables?,"db.movies.find({""title"": ""Les Misèrables""}, {""plot"": 1})" +What is the consensus among critics about the movie Foolish Wives?,"db.movies.find({""title"": ""Foolish Wives""}, { ""tomatoes.consensus"": 1})" +In what language was the movie Queen Christina released?,"db.movies.find({ ""title"": ""Queen Christina"" }, { ""languages"": 1})" +The World Moves On is a film written by this person?,"db.movies.find({""title"": ""The World Moves On""}, {""writers"": 1})" +Can you name the movie genres that Jean-Luc Godard has directed?,"db.movies.distinct(""genres"", { ""directors"": ""Jean-Luc Godard"" })" +the movie Going Hollywood starred which actors?,"db.movies.find({""title"": ""Going Hollywood""}, {""cast"": 1})" +What is the box office revenue of the movie Footlight Parade in dollars?,"db.movies.find({""title"": ""Footlight Parade""}, {""tomatoes.boxOffice"": 1})" +What is the running time of the film Payment Deferred?,"db.movies.find({""title"":""Payment Deferred""}, {""runtime"":1})" +What is the running time of White Shadows?,"db.movies.find({""title"":""White Shadows""}, {""runtime"":1})" +What is the IMDb ID for the movie Children in the Wind?,"db.movies.find({""title"":""Children in the Wind""}, {""imdb.id"":1})" +What is the IMDb rating for the movie The Lower Depths?,"db.movies.find({""title"": ""The Lower Depths""}, {""imdb.rating"": 1})" +What is the average score assigned to all Gus Van Sant movies in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Gus Van Sant""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +who is listed as director for The Ace of Hearts?,"db.movies.find({""title"": ""The Ace of Hearts""}, {""directors"": 1})" +what genre of movie is Lenin in October?,"db.movies.find({""title"": ""Lenin in October""}, {""genres"": 1})" +what is Lenin in October about in details?,"db.movies.find({""title"": ""Lenin in October""}, {""fullplot"": 1})" +who produced the film Captains Courageous?,"db.movies.find({""title"":""Captains Courageous""}, {""tomatoes.production"":1})" +what year was the movie Wife! Be Like a Rose! released?,"db.movies.find({""title"": ""Wife! Be Like a Rose!""}, {""year"": 1})" +What is the rating of the movie The Land Beyond the Sunset ?,"db.movies.find({ ""title"": ""The Land Beyond the Sunset"" }, { ""rated"": 1})" +what is the movie Mèdchen in Uniform imdb rating?,"db.movies.find({""title"": ""Mèdchen in Uniform""}, {""imdb.rating"": 1})" +When was the movie Tarzan the Ape Man released?,"db.movies.find({""title"":""Tarzan the Ape Man""}, {""released"":1})" +can you describe the plot of Little Caesar?,"db.movies.find({""title"": ""Little Caesar""}, {""plot"": 1})" +the director of The Public Enemy was?,"db.movies.find({""title"": ""The Public Enemy""}, {""directors"": 1})" +Can you tell me how many movies Roberto Rossellini directed for each year they were released?,"db.movies.aggregate([{ $match: { ""directors"": ""Roberto Rossellini"" }},{""$group"": { ""_id"": ""$year"", ""count"": {""$sum"": 1}}}])" +What is the running time of Morocco?,"db.movies.find({""title"":""Morocco""}, {""runtime"":1})" +Could you tell me the main category of movies that Roman Polanski directs?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Roman Polanski"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What is the language of the film The Lost Patrol?,"db.movies.find({""title"":""The Lost Patrol""}, {""languages"":1})" +Which types of movies has Jean Renoir directed?,"db.movies.distinct(""genres"", { ""directors"": ""Jean Renoir"" })" +which company produced the movie The Passion of Joan of Arc?,"db.movies.find({""title"":""The Passion of Joan of Arc""}, {""tomatoes.production"":1})" +What is the Metacritic score of the movie A Midsummer Night's Dream ?,"db.movies.find({ ""title"": ""A Midsummer Night's Dream"" }, { ""metacritic"": 1})" +Can you provide a detailed summary of the movie Frankenstein plot?,"db.movies.find({ ""title"": ""Frankenstein"" }, { ""fullplot"": 1})" +What is the rating of the movie The Birth of a Nation according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""The Birth of a Nation""}, {""tomatoes.viewer.rating"": 1})" +What is the ID of the movie Secret Agent on IMDB?,"db.movies.find({""title"": ""Secret Agent""}, {""imdb.id"": 1})" +How many votes does the movie Asphalt have on IMDb?,"db.movies.find({""title"":""Asphalt""}, {""imdb.votes"":1})" +what sort of film is The Italian?,"db.movies.find({""title"": ""The Italian""}, {""genres"": 1})" +What is the MPAA rating of the movie Blacksmith Scene?,"db.movies.find({""title"":""Blacksmith Scene""}, {""rated"":1})" +What is the audience rating of the movie The Blood of a Poet ?,"db.movies.find({ ""title"": ""The Blood of a Poet"" },{ ""tomatoes.viewer.rating"": 1 })" +"Has the film David Copperfield won any awards? If so, which ones?","db.movies.find({""title"":""David Copperfield"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +what year was the movie Cimarron released?,"db.movies.find({""title"": ""Cimarron""}, {""year"": 1})" +who stars in the movie Zoo in Budapest?,"db.movies.find({""title"": ""Zoo in Budapest""}, {""cast"": 1})" +who starred in the movie The Great Ziegfeld?,"db.movies.find({""title"": ""The Great Ziegfeld""}, {""cast"": 1})" +what was the release date of the movie Two Seconds?,"db.movies.find({""title"": ""Two Seconds""}, {""released"": 1})" +what was the genre of A Day in the Country?,"db.movies.find({""title"": ""A Day in the Country""}, {""genres"": 1})" +What is the freshness score of the movie The Kid on Rotten Tomatoes?,"db.movies.find({""title"": ""The Kid""}, {""tomatoes.fresh"": 1})" +What is the MPAA rating of the film The Story of Louis Pasteur?,"db.movies.find({""title"":""The Story of Louis Pasteur""}, {""rated"":1})" +What is the IMDb ID for the movie Scarface?,"db.movies.find({""title"":""Scarface""}, {""imdb.id"":1})" +who wrote the film Sons of the Desert?,"db.movies.find({""title"": ""Sons of the Desert""}, {""writers"": 1})" +What is the production company behind the movie Bride of Frankenstein ?,"db.movies.find({""title"": ""Bride of Frankenstein""}, { ""tomatoes.production"": 1})" +Can you provide more information about the IMDb rating for the movie The Italian ?,"db.movies.find({""title"":""The Italian""}, {""imdb"":1})" +what was the genre of the film Tol'able David?,"db.movies.find({""title"": ""Tol'able David""}, {""genres"": 1})" +"Pandora's Box, was written by who?","db.movies.find({""title"": ""Pandora's Box""}, {""writers"": 1})" +What is the rating of the movie Dante's Inferno on IMDb?,"db.movies.find({""title"":""Dante's Inferno""}, {""imdb.rating"":1})" +In which genre do the movies directed by Roberto Rossellini mainly fall under?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Roberto Rossellini"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +How many reviews have been submitted for the movie Lenin in October on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Lenin in October"" },{ ""tomatoes.viewer.numReviews"": 1 })" +the movie The Garden of Allah was directed by who?,"db.movies.find({""title"": ""The Garden of Allah""}, {""directors"": 1})" +who was the film The Lives of a Bengal Lancer written by?,"db.movies.find({""title"": ""The Lives of a Bengal Lancer""}, {""writers"": 1})" +which person wrote the film The Green Pastures?,"db.movies.find({""title"": ""The Green Pastures""}, {""writers"": 1})" +what genre is Nanook of the North?,"db.movies.find({""title"": ""Nanook of the North""}, {""genres"": 1})" +How many viewer reviews did the movie Two Seconds receive on Rotten Tomatoes?,"db.movies.find({""title"":""Two Seconds""}, {""tomatoes.viewer.numReviews"":1})" +who wrote the screenplay for For Heaven's Sake?,"db.movies.aggregate([ { ""$match"": { ""title"":""For Heaven's Sake""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +who is the director that directed Elephant Boy?,"db.movies.find({""title"": ""Elephant Boy""}, {""directors"": 1})" +"Has the movie The Black Pirate won any awards? If so, which ones?","db.movies.find({""title"":""The Black Pirate"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +what is the film The Public Enemy about in details?,"db.movies.find({""title"": ""The Public Enemy""}, {""fullplot"": 1})" +What is the runtime of the movie La Grande Illusion ?,"db.movies.find({""title"": ""La Grande Illusion""}, { ""runtime"": 1})" +What is the audience rating of the movie The Perils of Pauline ?,"db.movies.find({ ""title"": ""The Perils of Pauline"" },{ ""tomatoes.viewer.rating"": 1 })" +What is the chief film category that Terrence Malick's directed movies are classified under?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Terrence Malick"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +What is the IMDb ID for the movie Topaze?,"db.movies.find({""title"":""Topaze""}, {""imdb.id"":1})" +who was the film Zero for Conduct written by?,"db.movies.find({""title"": ""Zero for Conduct""}, {""writers"": 1})" +who wrote the film Folies Bergère de Paris?,"db.movies.find({""title"": ""Folies Bergère de Paris""}, {""writers"": 1})" +what was the release year of Anna Karenina?,"db.movies.find({""title"": ""Anna Karenina""}, {""year"": 1})" +"what year was Laugh, Clown, Laugh released?","db.movies.find({""title"": ""Laugh, Clown, Laugh""}, {""year"": 1})" +who stars in the film The Blood of a Poet?,"db.movies.find({""title"": ""The Blood of a Poet""}, {""cast"": 1})" +"How long, in total, are all the movies that James Cameron has directed?","db.movies.aggregate([{ ""$match"": { ""directors"": ""James Cameron"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +What is the Tomatometer score of the movie Civilization ?,"db.movies.find({ ""title"": ""Civilization"" },{ ""tomatoes.critic.meter"": 1 })" +How many wins did the movie Wild Boys of the Road receive?,"db.movies.find({""title"":""Wild Boys of the Road""}, {""awards.wins"":1})" +what is the movie The Song of Night about in details?,"db.movies.find({""title"": ""The Song of Night""}, {""fullplot"": 1})" +what is the plot for the movie Night Must Fall?,"db.movies.find({""title"": ""Night Must Fall""}, {""plot"": 1})" +What is the audience rating of the movie Masquerade in Vienna ?,"db.movies.find({ ""title"": ""Masquerade in Vienna"" },{ ""tomatoes.viewer.rating"": 1 })" +what is the film She Done Him Wrong about?,"db.movies.find({""title"": ""She Done Him Wrong""}, {""plot"": 1})" +When was the information about the movie Foolish Wives last updated?,"db.movies.find({ ""title"": ""Foolish Wives"" }, { ""lastupdated"": 1})" +who wrote the screenplay for The Lives of a Bengal Lancer?,"db.movies.aggregate([ { ""$match"": { ""title"":""The Lives of a Bengal Lancer""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +what type of movie is The Land Beyond the Sunset?,"db.movies.find({""title"": ""The Land Beyond the Sunset""}, {""genres"": 1})" +Can you tell me how many movies Terrence Malick directed for each year they were released?,"db.movies.aggregate([{ $match: { ""directors"": ""Terrence Malick"" }},{""$group"": { ""_id"": ""$year"", ""count"": {""$sum"": 1}}}])" +what is the film Modern Times about?,"db.movies.find({""title"": ""Modern Times""}, {""plot"": 1})" +what is The Front Page description?,"db.movies.find({""title"": ""The Front Page""}, {""plot"": 1})" +which company produced the movie Red Dust?,"db.movies.find({""title"":""Red Dust""}, {""tomatoes.production"":1})" +Can you provide me with a list of Darren Aronofsky-directed movies with the highest ratings?,"db.movies.find({""directors"": 'Darren Aronofsky', ""imdb.rating"": {""$gt"": 8.5}})" +What is the MPAA rating of The 3 Penny Opera?,"db.movies.find({""title"":""The 3 Penny Opera""}, {""rated"":1})" +What is the running time of the movie Flying Down to Rio?,"db.movies.find({""title"":""Flying Down to Rio""}, {""runtime"":1})" +what is the plot for the movie Man with a Movie Camera?,"db.movies.find({""title"": ""Man with a Movie Camera""}, {""plot"": 1})" +who is the writer of Daughter of Shanghai?,"db.movies.find({""title"": ""Daughter of Shanghai""}, {""writers"": 1})" +how many awards did Mutiny on the Bounty win?,"db.movies.find({""title"":""Mutiny on the Bounty""}, {""awards.wins"":1})" +What is the consensus among critics about the movie A Free Soul?,"db.movies.find({""title"": ""A Free Soul""}, { ""tomatoes.consensus"": 1})" +What is the running time of Movie Crazy?,"db.movies.find({""title"":""Movie Crazy""}, {""runtime"":1})" +what is The Navigator description?,"db.movies.find({""title"": ""The Navigator""}, {""plot"": 1})" +what is the plot for the movie Rembrandt?,"db.movies.find({""title"": ""Rembrandt""}, {""plot"": 1})" +What are the highest-rated Sport in the database?,"db.movies.find({""genres"": ""Sport""}).sort({""imdb.rating"": -1}).limit(10)" +can you describe the plot of High and Dizzy?,"db.movies.find({""title"": ""High and Dizzy""}, {""plot"": 1})" +What is the IMDb rating for Man of Aran?,"db.movies.find({""title"": ""Man of Aran""}, {""imdb.rating"": 1})" +Was the movie Peter Pan well received by audiences and critics?,"db.movies.find({""title"":""Peter Pan""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What was the release date for the movie The Freshman?,"db.movies.find({""title"":""The Freshman""}, {""released"":1})" +Can you provide more information about the Rotten Tomatoes rating for the movie Wonder Bar?,"db.movies.find({""title"": ""Wonder Bar""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +who stars in the movie Steamboat Willie?,"db.movies.find({""title"": ""Steamboat Willie""}, {""cast"": 1})" +who's the director of The Strong Man?,"db.movies.find({""title"": ""The Strong Man""}, {""directors"": 1})" +Which cinematic productions were directed by Coen Brothers?,"db.movies.find({""directors"": ""Coen Brothers""},{""title"":1})" +How many reviews have been submitted by critics for the movie Three Smart Girls?,"db.movies.find({ ""title"": ""Three Smart Girls"" }, { ""tomatoes.critic.numReviews"": 1 })" +When was the Tomatometer score and other Tomato-related information last updated for the movie Napoleon?,"db.movies.find({""title"": ""Napoleon""}, { ""tomatoes.lastUpdated"": 1})" +What is the runtime of the movie Little Miss Marker ?,"db.movies.find({""title"": ""Little Miss Marker""}, { ""runtime"": 1})" +who's the director of Gold Diggers of 1933?,"db.movies.find({""title"": ""Gold Diggers of 1933""}, {""directors"": 1})" +who stars in the movie The Robber Symphony?,"db.movies.find({""title"": ""The Robber Symphony""}, {""cast"": 1})" +who starred in the movie Under the Roofs of Paris?,"db.movies.find({""title"": ""Under the Roofs of Paris""}, {""cast"": 1})" +Can you provide more information about the languages spoken in the movie Les Misèrables ?,"db.movies.find({""title"":""Les Misèrables""}, {""languages"":1})" +How many audience reviews have been submitted for the movie The 3 Penny Opera ?,"db.movies.find({ ""title"": ""The 3 Penny Opera"" },{ ""tomatoes.viewer.numReviews"": 1 })" +What is the rating of the movie Wild and Woolly ?,"db.movies.find({ ""title"": ""Wild and Woolly"" }, { ""rated"": 1})" +what is the movie M about in details?,"db.movies.find({""title"": ""M""}, {""fullplot"": 1})" +the movie The Immigrant starred which actors?,"db.movies.find({""title"": ""The Immigrant""}, {""cast"": 1})" +What is the Metacritic score of the movie Foolish Wives ?,"db.movies.find({ ""title"": ""Foolish Wives"" }, { ""metacritic"": 1})" +How many audience reviews have been submitted for the movie The Front Page ?,"db.movies.find({ ""title"": ""The Front Page"" },{ ""tomatoes.viewer.numReviews"": 1 })" +What is the IMDb rating for the film Morocco?,"db.movies.find({""title"": ""Morocco""}, {""imdb.rating"": 1})" +the film The Iron Horse starred who?,"db.movies.find({""title"": ""The Iron Horse""}, {""cast"": 1})" +Who are the main actors/actresses in the movie The Green Pastures?,"db.movies.find({""title"":""The Green Pastures""}, {""cast"":1})" +How many movies by Darren Aronofsky were released in each year?,"db.movies.aggregate([{ $match: { ""directors"": ""Darren Aronofsky"" }},{""$group"": { ""_id"": ""$year"", ""count"": {""$sum"": 1}}}])" +How many reviews did the movie Men Without Women receive on Rotten Tomatoes?,"db.movies.find({""title"":""Men Without Women""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +who is the author of The Hurricane?,"db.movies.find({""title"": ""The Hurricane""}, {""writers"": 1})" +How many reviews have been submitted by critics for the movie Where Are My Children? ?,"db.movies.find({""title"": ""Where Are My Children?""}, {""tomatoes.critic.numReviews"": 1})" +who starred in Three Little Pigs?,"db.movies.find({""title"": ""Three Little Pigs""}, {""cast"": 1})" +what is the genre of They Won't Forget?,"db.movies.find({""title"": ""They Won't Forget""}, {""genres"": 1})" +What is the freshness score of the movie Scarface on Rotten Tomatoes?,"db.movies.find({""title"": ""Scarface""}, {""tomatoes.fresh"": 1})" +What is the production company behind the movie King of Jazz ?,"db.movies.find({""title"": ""King of Jazz""}, {""tomatoes.production"": 1})" +Smilin' Through is a movie written by this person?,"db.movies.find({""title"": ""Smilin' Through""}, {""writers"": 1})" +what year was the movie The Mummy released?,"db.movies.find({""title"": ""The Mummy""}, {""year"": 1})" +Who are the starring actors/actresses in the movie Maria Chapdelaine?,"db.movies.find({""title"":""Maria Chapdelaine""}, {""cast"":1})" +Has the movie Gold Diggers of 1933 won any awards?,"db.movies.find({""title"":""Gold Diggers of 1933""}, {""awards.wins"":1})" +the film One Week starred which actors?,"db.movies.find({""title"": ""One Week""}, {""cast"": 1})" +Has the movie The Blood of a Poet won any awards?,"db.movies.find({""title"":""The Blood of a Poet""}, {""awards.wins"":1})" +What is the box office revenue of the movie This Is My Affair in dollars?,"db.movies.find({""title"": ""This Is My Affair""}, {""tomatoes.boxOffice"": 1})" +what is the movie Forbidden description ?,"db.movies.find({""title"": ""Forbidden""}, {""plot"": 1})" +Which Ridley Scott-directed movie has the highest score on Rotten Tomatoes?,"db.movies.find({""directors"": ""Ridley Scott"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +what was the release year of the film Clash of the Wolves?,"db.movies.find({""title"": ""Clash of the Wolves""}, {""year"": 1})" +What is the text description of the movie The Great Ziegfeld awards?,"db.movies.find({""title"":""The Great Ziegfeld""}, {""awards.text"":1})" +How does the movie In Old Chicago rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""In Old Chicago"" },{ ""tomatoes.critic.meter"": 1 })" +What is the website associated with the movie The Private Life of Don Juan on Rotten Tomatoes?,"db.movies.find({""title"": ""The Private Life of Don Juan""}, {""tomatoes.website"": 1})" +What is the MPAA rating of Steamboat Willie?,"db.movies.find({""title"":""Steamboat Willie""}, {""rated"":1})" +What is the IMDB rating of the movie Nosferatu ?,"db.movies.find({""title"": ""Nosferatu""}, { ""imdb.rating"": 1})" +what is the genre of Rembrandt?,"db.movies.find({""title"": ""Rembrandt""}, {""genres"": 1})" +How did the audience and critics receive the film The Crowd?,"db.movies.find({""title"":""The Crowd""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +How many reviews did the movie Les Misèrables receive on Rotten Tomatoes?,"db.movies.find({""title"":""Les Misèrables""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +Who are the main actors/actresses in the movie Wild Boys of the Road?,"db.movies.find({""title"":""Wild Boys of the Road""}, {""cast"":1})" +how has The Devil Is a Woman been recieved by critics and audience?,"db.movies.find({""title"":""The Devil Is a Woman""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +who is the writer of the film 42nd Street?,"db.movies.find({""title"": ""42nd Street""}, {""writers"": 1})" +Who are the starring actors/actresses in the movie Final Accord?,"db.movies.find({""title"":""Final Accord""}, {""cast"":1})" +what is the film Upstream imdb rating?,"db.movies.find({""title"": ""Upstream""}, {""imdb.rating"": 1})" +What is the audience rating of the movie The Red Head ?,"db.movies.find({ ""title"": ""The Red Head"" },{ ""tomatoes.viewer.rating"": 1 })" +who stars in A Free Soul?,"db.movies.find({""title"": ""A Free Soul""}, {""cast"": 1})" +who produced Beau Geste?,"db.movies.find({""title"":""Beau Geste""}, {""tomatoes.production"":1})" +who wrote the screenplay for the movie She Done Him Wrong?,"db.movies.aggregate([ { ""$match"": { ""title"":""She Done Him Wrong""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +what was the release year of Forbidden?,"db.movies.find({""title"": ""Forbidden""}, {""year"": 1})" +When was the information about the movie Secret Agent last updated?,"db.movies.find({ ""title"": ""Secret Agent"" }, { ""lastupdated"": 1})" +What is the audience rating of the movie The Invisible Man ?,"db.movies.find({ ""title"": ""The Invisible Man"" },{ ""tomatoes.viewer.rating"": 1 })" +the film Imitation of Life starred which actors?,"db.movies.find({""title"": ""Imitation of Life""}, {""cast"": 1})" +What is the movie The Story of a Cheat rating?,"db.movies.find({""title"":""The Story of a Cheat""}, {""rated"":1})" +what is the genre for the movie Baby Face?,"db.movies.find({""title"": ""Baby Face""}, {""genres"": 1})" +What is the IMDb rating for the movie A Star Is Born?,"db.movies.find({""title"": ""A Star Is Born""}, {""imdb.rating"": 1})" +what is the film Little Miss Marker about?,"db.movies.find({""title"": ""Little Miss Marker""}, {""plot"": 1})" +What is the rating of the movie The Blue Bird according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""The Blue Bird""}, {""tomatoes.viewer.rating"": 1})" +what is the film David Golder description ?,"db.movies.find({""title"": ""David Golder""}, {""plot"": 1})" +Can you provide a detailed summary of the movie Wings plot?,"db.movies.find({ ""title"": ""Wings"" }, { ""fullplot"": 1})" +"Two Seconds, was written by who?","db.movies.find({""title"": ""Two Seconds""}, {""writers"": 1})" +Who are the writers of the movie 42nd Street ?,"db.movies.find({""title"": ""42nd Street""}, { ""writers"": 1})" +Was the movie Asphalt well received by audiences?,"db.movies.find({""title"":""Asphalt""}, {""tomatoes.viewer"":1})" +what kind of film is The Dark Angel?,"db.movies.find({""title"": ""The Dark Angel""}, {""genres"": 1})" +What is the principal film genre that Luchino Visconti focuses on in his directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Luchino Visconti"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +who produced the film The Lost World?,"db.movies.find({""title"":""The Lost World""}, {""tomatoes.production"":1})" +What is the added duration of all movies directed by Jean-Pierre Melville?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Jean-Pierre Melville"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +What is the production company behind the movie The Lower Depths ?,"db.movies.find({""title"": ""The Lower Depths""}, {""tomatoes.production"": 1})" +Can you provide a detailed summary of the movie City Lights plot?,"db.movies.find({ ""title"": ""City Lights"" }, { ""fullplot"": 1})" +What is the IMDb rating for the film The Lost World?,"db.movies.find({""title"": ""The Lost World""}, {""imdb.rating"": 1})" +How many audience reviews have been submitted for the movie Peter Pan ?,"db.movies.find({ ""title"": ""Peter Pan"" },{ ""tomatoes.viewer.numReviews"": 1 })" +How many wins did the movie A Day in the Country receive?,"db.movies.find({""title"":""A Day in the Country""}, {""awards.wins"":1})" +What is the production company of Theodora Goes Wild?,"db.movies.find({""title"":""Theodora Goes Wild""}, {""tomatoes.production"":1})" +In which countries was the movie Sons of the Desert produced?,"db.movies.find({""title"":""Sons of the Desert""}, {""countries"":1})" +what is the full plot for Safety Last!?,"db.movies.find({""title"": ""Safety Last!""}, {""fullplot"": 1})" +What is the plot summary of the movie The Wind ?,"db.movies.find({ ""title"": ""The Wind"" }, { ""plot"": 1})" +the movie Alice Adams starred which actors?,"db.movies.find({""title"": ""Alice Adams""}, {""cast"": 1})" +What is the text description of the movie The Divine Lady awards?,"db.movies.find({""title"":""The Divine Lady""}, {""awards.text"":1})" +What is the sum of the runtimes of all the films directed by Stanley Kubrick?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Stanley Kubrick"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +"what is the full plot for the movie Laugh, Clown, Laugh?","db.movies.find({""title"": ""Laugh, Clown, Laugh""}, {""fullplot"": 1})" +what sort of movie is San Francisco?,"db.movies.find({""title"": ""San Francisco""}, {""genres"": 1})" +When was the movie Wild Boys of the Road released in theaters?,"db.movies.find({""title"": ""Wild Boys of the Road""}, {""released"": 1})" +"How long is the runtime of the movie Winsor McCay, the Famous Cartoonist of the N.Y. Herald and His Moving Comics ?","db.movies.find({""title"":""Winsor McCay, the Famous Cartoonist of the N.Y. Herald and His Moving Comics""}, {""runtime"":1})" +What is the audience rating of the movie The Awful Truth ?,"db.movies.find({ ""title"": ""The Awful Truth"" },{ ""tomatoes.viewer.rating"": 1 })" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie The Freshman ?,"db.movies.find({""title"":""The Freshman""}, {""tomatoes.viewer.meter"":1})" +who stars in Tsirk?,"db.movies.find({""title"": ""Tsirk""}, {""cast"": 1})" +What is the movie Swing Time about? Can you provide a brief summary?,"db.movies.find({""title"":""Swing Time""}, {""plot"":1})" +who was The Gilded Lily directed by?,"db.movies.find({""title"": ""The Gilded Lily""}, {""directors"": 1})" +Can you share with me the names of the top-rated movies directed by Oliver Stone?,"db.movies.find({""directors"": 'Oliver Stone', ""imdb.rating"": {""$gt"": 8.5}})" +What is the running time of the film Mèdchen in Uniform?,"db.movies.find({""title"":""Mèdchen in Uniform""}, {""runtime"":1})" +What type of media is Shanghai Express?,"db.movies.find({ ""title"": ""Shanghai Express"" }, { ""type"": 1})" +who starred in the movie Applause?,"db.movies.find({""title"": ""Applause""}, {""cast"": 1})" +what was the genre of the film Foolish Wives?,"db.movies.find({""title"": ""Foolish Wives""}, {""genres"": 1})" +What is the rating of the movie Becky Sharp according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Becky Sharp""}, {""tomatoes.viewer.rating"": 1})" +What are the names of all the actors who starred in the movie 'A Night at the Opera'?,"db.movies.find({""title"": ""A Night at the Opera""}, {""cast"": 1})" +What is the runtime and rating for the movie 'The Hunchback of Notre Dame'?,"db.movies.find({""title"": ""The Hunchback of Notre Dame""}, {""runtime"": 1, ""rated"": 1})" +What is the IMDb rating for the movie The Iron Horse?,"db.movies.find({""title"": ""The Iron Horse""}, {""imdb.rating"": 1})" +What is the language of the movie Tsirk?,"db.movies.find({""title"":""Tsirk""}, {""languages"":1})" +who produced the movie Robin Hood?,"db.movies.find({""title"":""Robin Hood""}, {""tomatoes.production"":1})" +Was the movie Berkeley Square well received by audiences and critics?,"db.movies.find({""title"":""Berkeley Square""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +who was It Happened One Night directed by?,"db.movies.find({""title"": ""It Happened One Night""}, {""directors"": 1})" +what is Popeye the Sailor Meets Sindbad the Sailor imdb rating?,"db.movies.find({""title"": ""Popeye the Sailor Meets Sindbad the Sailor""}, {""imdb.rating"": 1})" +What is the production company behind the movie x?,"db.movies.find({""title"": ""Popeye the Sailor Meets Sindbad the Sailor""}, { ""tomatoes.production"": 1})" +how has The Pearls of the Crown been recieved by critics and audience?,"db.movies.find({""title"":""The Pearls of the Crown""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what was the genre of the film The Immigrant?,"db.movies.find({""title"": ""The Immigrant""}, {""genres"": 1})" +How long is the movie The Edge of the World in minutes?,"db.movies.find({""title"":""The Edge of the World""}, {""runtime"":1})" +how has The Poor Little Rich Girl been recieved by critics and audience?,"db.movies.find({""title"":""The Poor Little Rich Girl""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +who directed the film Popeye the Sailor Meets Sindbad the Sailor?,"db.movies.find({""title"": ""Popeye the Sailor Meets Sindbad the Sailor""}, {""directors"": 1})" +who produced the movie The Pearls of the Crown?,"db.movies.find({""title"":""The Pearls of the Crown""}, {""tomatoes.production"":1})" +What is the box office revenue of the movie Wild Boys of the Road in dollars?,"db.movies.find({""title"": ""Wild Boys of the Road""}, {""tomatoes.boxOffice"": 1})" +who stars in The Edge of the World?,"db.movies.find({""title"": ""The Edge of the World""}, {""cast"": 1})" +who is the author of Baby Face?,"db.movies.find({""title"": ""Baby Face""}, {""writers"": 1})" +what was the release date of the film Wild and Woolly?,"db.movies.find({""title"": ""Wild and Woolly""}, {""released"": 1})" +what genre is the movie The Poor Little Rich Girl?,"db.movies.find({""title"": ""The Poor Little Rich Girl""}, {""genres"": 1})" +who was the movie Show People written by?,"db.movies.find({""title"": ""Show People""}, {""writers"": 1})" +When was the information last updated for the movie The Prince and the Pauper ?,"db.movies.find({ ""title"": ""The Prince and the Pauper"" },{ ""lastupdated"": 1 })" +Who is the lead actor of the movie The Big Trail ?,"db.movies.find({""title"": ""The Big Trail""}, {""cast"":{""$slice"": 1},""title"":1})" +In what year was the movie Elephant Boy released?,"db.movies.find({""title"":""Elephant Boy""}, {""year"":1})" +who starred in Tabu: A Story of the South Seas?,"db.movies.find({""title"": ""Tabu: A Story of the South Seas""}, {""cast"": 1})" +who wrote the screenplay for Cops?,"db.movies.aggregate([ { ""$match"": { ""title"":""Cops""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +A Damsel in Distress is a film written by this person?,"db.movies.find({""title"": ""A Damsel in Distress""}, {""writers"": 1})" +Has the movie The Ace of Hearts won any awards?,"db.movies.find({""title"":""The Ace of Hearts""}, {""awards.wins"":1})" +who are the actors in the movie Bride of Frankenstein?,"db.movies.find({""title"": ""Bride of Frankenstein""}, {""cast"": 1})" +How many votes does the movie The Song of Night have on IMDb?,"db.movies.find({""title"":""The Song of Night""}, {""imdb.votes"":1})" +what is the full plot for the film One Hundred Men and a Girl?,"db.movies.find({""title"": ""One Hundred Men and a Girl""}, {""fullplot"": 1})" +Can you provide a detailed summary of the movie A Star Is Born plot?,"db.movies.find({ ""title"": ""A Star Is Born"" }, { ""fullplot"": 1})" +who starred in Pandora's Box?,"db.movies.find({""title"": ""Pandora's Box""}, {""cast"": 1})" +What is the plot summary of the movie Gold Diggers of 1935 ?,"db.movies.find({ ""title"": ""Gold Diggers of 1935"" }, { ""plot"": 1})" +who is the author of Nanook of the North?,"db.movies.find({""title"": ""Nanook of the North""}, {""writers"": 1})" +who is the director for These Three?,"db.movies.find({""title"": ""These Three""}, {""directors"": 1})" +"the film The 39 Steps, was written by who?","db.movies.find({""title"": ""The 39 Steps""}, {""writers"": 1})" +what is the genre of Broadway Bill?,"db.movies.find({""title"": ""Broadway Bill""}, {""genres"": 1})" +What is the added duration of all movies directed by Roman Polanski?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Roman Polanski"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +What is the MPAA rating of Wings?,"db.movies.find({""title"":""Wings""}, {""rated"":1})" +What is the text description of the movie The Wedding March awards?,"db.movies.find({""title"":""The Wedding March""}, {""awards.text"":1})" +what is the movie The Guardsman imdb rating?,"db.movies.find({""title"": ""The Guardsman""}, {""imdb.rating"": 1})" +Who are the actors that appear in the movie The Divorcee ?,"db.movies.find({ ""title"": ""The Divorcee"" },{ ""cast"": 1 })" +who stars in Intolerance: Love's Struggle Throughout the Ages?,"db.movies.find({""title"": ""Intolerance: Love's Struggle Throughout the Ages""}, {""cast"": 1})" +What is the MPAA rating of the movie David Golder?,"db.movies.find({""title"":""David Golder""}, {""rated"":1})" +what is the full plot for The Ace of Hearts?,"db.movies.find({""title"": ""The Ace of Hearts""}, {""fullplot"": 1})" +Who is the lead actress of the movie The Informer ?,"db.movies.find({""title"": ""The Informer""}, {""cast"":{""$slice"": 1},""title"":1})" +What is the box office revenue of the movie The Iron Horse in dollars?,"db.movies.find({""title"": ""The Iron Horse""}, {""tomatoes.boxOffice"": 1})" +What is the runtime of the movie Blacksmith Scene ?,"db.movies.find({""title"": ""Blacksmith Scene""}, { ""runtime"": 1})" +What is the percentage of positive reviews among critics for the movie The Immigrant ?,"db.movies.find({ ""title"": ""The Immigrant"" },{ ""tomatoes.critic.meter"": 1 })" +what was the genre of the movie Pandora's Box?,"db.movies.find({""title"": ""Pandora's Box""}, {""genres"": 1})" +What is the imdbID and genre of the movie 'Dames'?,"db.movies.find({""title"": ""Dames""}, {""imdb.id"": 1, ""genres"": 1, ""_id"": 0})" +Can you provide more information about the Rotten Tomatoes rating for the movie Les vampires?,"db.movies.find({""title"": ""Les vampires""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +Who are the starring actors/actresses in the movie For Heaven's Sake?,"db.movies.find({""title"":""For Heaven's Sake""}, {""cast"":1})" +what is the genre for the movie Make Way for Tomorrow?,"db.movies.find({""title"": ""Make Way for Tomorrow""}, {""genres"": 1})" +How many wins did the movie Four Sons receive?,"db.movies.find({""title"":""Four Sons""}, {""awards.wins"":1})" +Can you tell me which film genres Alain Resnais has directed?,"db.movies.distinct(""genres"", { ""directors"": ""Alain Resnais"" })" +What is the Rotten Tomatoes meter rating for the movie They Won't Forget ?,"db.movies.find({""title"":""They Won't Forget""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +what is the movie Payment Deferred about?,"db.movies.find({""title"": ""Payment Deferred""}, {""plot"": 1})" +How many votes does the movie La Grande Illusion have on IMDb?,"db.movies.find({""title"":""La Grande Illusion""}, {""imdb.votes"":1})" +What is the plot summary of the movie San Francisco ?,"db.movies.find({ ""title"": ""San Francisco"" }, { ""plot"": 1})" +What type of movie is The Hunchback of Notre Dame ?,"db.movies.find({""title"":""The Hunchback of Notre Dame""}, {""genres"":1})" +What is the running time of The Charge of the Light Brigade?,"db.movies.find({""title"":""The Charge of the Light Brigade""}, {""runtime"":1})" +who stars in the film Pandora's Box?,"db.movies.find({""title"": ""Pandora's Box""}, {""cast"": 1})" +what type of film is Nosferatu?,"db.movies.find({""title"": ""Nosferatu""}, {""genres"": 1})" +Who are the main actors in Stage Door ?,"db.movies.find({ ""title"": ""Stage Door"" }, { ""cast"": 1})" +What type of movie is Cleopatra ?,"db.movies.find({""title"":""Cleopatra""}, {""genres"":1})" +what was the genre of the movie The Barretts of Wimpole Street?,"db.movies.find({""title"": ""The Barretts of Wimpole Street""}, {""genres"": 1})" +"The Trail of the Lonesome Pine, is written by who?","db.movies.find({""title"": ""The Trail of the Lonesome Pine""}, {""writers"": 1})" +Could you tell me the exact number of films that have been directed by David Lynch?,"db.movies.countDocuments({""directors"":""David Lynch""})" +who wrote the screenplay for The Trail of the Lonesome Pine?,"db.movies.aggregate([ { ""$match"": { ""title"":""The Trail of the Lonesome Pine""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +who wrote the screenplay for the film The Crowd?,"db.movies.aggregate([ { ""$match"": { ""title"":""The Crowd""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +what was the genre of In Old Arizona?,"db.movies.find({""title"": ""In Old Arizona""}, {""genres"": 1})" +what is the full plot for In Old Arizona?,"db.movies.find({""title"": ""In Old Arizona""}, {""fullplot"": 1})" +What are the genres associated with the movie Safety Last! ?,"db.movies.find({ ""title"": ""Safety Last!"" }, { ""genres"": 1})" +what's the main genre of the movies directed by Claude Chabrol ?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Claude Chabrol"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +How many reviews have been submitted by critics for the movie Triumph of the Will ?,"db.movies.find({""title"": ""Triumph of the Will""}, {""tomatoes.critic.numReviews"": 1})" +"what genre of film is I Was Born, But...?","db.movies.find({""title"": ""I Was Born, But...""}, {""genres"": 1})" +What is the consensus among critics about the movie Swedenhielms Family?,"db.movies.find({""title"": ""Swedenhielms Family""}, { ""tomatoes.consensus"": 1})" +what genre is the film Go West?,"db.movies.find({""title"": ""Go West""}, {""genres"": 1})" +Which film directed by Woody Allen has the highest rating on Rotten Tomatoes?,"db.movies.find({""directors"": ""Woody Allen"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +what year was the movie The Perils of Pauline released?,"db.movies.find({""title"": ""The Perils of Pauline""}, {""year"": 1})" +who directed the film Queen Christina?,"db.movies.find({""title"": ""Queen Christina""}, {""directors"": 1})" +What is the Tomatometer score of the movie White Shadows ?,"db.movies.find({ ""title"": ""White Shadows"" },{ ""tomatoes.critic.meter"": 1 })" +What is the MPAA rating of Our Hospitality?,"db.movies.find({""title"":""Our Hospitality""}, {""rated"":1})" +What is the ID of the movie The Devil Is a Woman on IMDB?,"db.movies.find({""title"": ""The Devil Is a Woman""}, {""imdb.id"": 1})" +Can you provide more information about the Rotten Tomatoes rating for the movie Regeneration?,"db.movies.find({""title"": ""Regeneration""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +What is the production company of the film Hallelujah?,"db.movies.find({""title"":""Hallelujah""}, {""tomatoes.production"":1})" +What is the production company of the film She Done Him Wrong?,"db.movies.find({""title"":""She Done Him Wrong""}, {""tomatoes.production"":1})" +Who are the main actors in The General ?,"db.movies.find({ ""title"": ""The General"" }, { ""cast"": 1})" +what was the release year of the movie One Night of Love?,"db.movies.find({""title"": ""One Night of Love""}, {""year"": 1})" +Can you give me a brief summary of the movie The Gay Divorcee plot?,"db.movies.find({""title"":""The Gay Divorcee""}, {""plot"":1})" +What is the MPAA rating of the film Stage Door?,"db.movies.find({""title"":""Stage Door""}, {""rated"":1})" +what is Tsirk imdb rating?,"db.movies.find({""title"": ""Tsirk""}, {""imdb.rating"": 1})" +Can you provide more information about the languages spoken in the movie The Private Life of Don Juan ?,"db.movies.find({""title"":""The Private Life of Don Juan""}, {""languages"":1})" +What are the genres this movie L'opèra de quat'sous belongs to?,"db.movies.find({""title"":""L'opèra de quat'sous""}, {""genres"":1})" +what sort of film is The Kid?,"db.movies.find({""title"": ""The Kid""}, {""genres"": 1})" +"Has the film The Big Trail won any awards? If so, which ones?","db.movies.find({""title"":""The Big Trail"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What is the imdbID and genre of the movie 'The General'?,"db.movies.find({""title"": ""The General""}, {""imdb.id"": 1, ""genres"": 1, ""_id"": 0})" +What is the box office revenue of the movie The Phantom of the Opera in dollars?,"db.movies.find({""title"": ""The Phantom of the Opera""}, {""tomatoes.boxOffice"": 1})" +How does the movie Skippy rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Skippy"" },{ ""tomatoes.critic.meter"": 1 })" +What was the release date for the movie The Gilded Lily?,"db.movies.find({""title"":""The Gilded Lily""}, {""released"":1})" +what is the film The Scarlet Empress about in details?,"db.movies.find({""title"": ""The Scarlet Empress""}, {""fullplot"": 1})" +What is the rating of the movie Lonesome according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Lonesome""}, {""tomatoes.viewer.rating"": 1})" +"who is the director of I Was Born, But...?","db.movies.find({""title"": ""I Was Born, But...""}, {""directors"": 1})" +who wrote the screenplay for the movie Traffic in Souls?,"db.movies.aggregate([ { ""$match"": { ""title"":""Traffic in Souls""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +Who are the writers of the movie The Iron Horse ?,"db.movies.find({""title"": ""The Iron Horse""}, { ""writers"": 1})" +what kind of movie is Morocco?,"db.movies.find({""title"": ""Morocco""}, {""genres"": 1})" +what is the film One Week imdb rating?,"db.movies.find({""title"": ""One Week""}, {""imdb.rating"": 1})" +What was the release date for the movie 7th Heaven?,"db.movies.find({""title"":""7th Heaven""}, {""released"":1})" +how many awards did the movie Peter Pan win?,"db.movies.find({""title"":""Peter Pan""}, {""awards.wins"":1})" +How many reviews have been submitted by critics for the movie Mary of Scotland ?,"db.movies.find({""title"": ""Mary of Scotland""}, {""tomatoes.critic.numReviews"": 1})" +what was the genre of In Old Chicago?,"db.movies.find({""title"": ""In Old Chicago""}, {""genres"": 1})" +what is the plot for the film Mayerling?,"db.movies.find({""title"": ""Mayerling""}, {""plot"": 1})" +What are the names of all the actors who starred in the movie 'The 39 Steps'?,"db.movies.find({""title"": ""The 39 Steps""}, {""cast"": 1})" +what was the release date of Wings?,"db.movies.find({""title"": ""Wings""}, {""released"": 1})" +What is the rating of the movie Red Dust according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Red Dust""}, {""tomatoes.viewer.rating"": 1})" +Can you provide more information about the Rotten Tomatoes rating for the movie Asphalt?,"db.movies.find({""title"": ""Asphalt""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +What are the highest-rated Biography movies in the database?,"db.movies.find({""genres"": ""Biography""}).sort({""imdb.rating"": -1}).limit(10)" +who wrote The Scarlet Empress?,"db.movies.find({""title"": ""The Scarlet Empress""}, {""writers"": 1})" +what is the movie The 3 Penny Opera description ?,"db.movies.find({""title"": ""The 3 Penny Opera""}, {""plot"": 1})" +How does the movie Popeye the Sailor Meets Sindbad the Sailor rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Popeye the Sailor Meets Sindbad the Sailor"" },{ ""tomatoes.critic.meter"": 1 })" +What is the production company behind the movie The Private Life of Henry VIII. ?,"db.movies.find({""title"": ""The Private Life of Henry VIII.""}, {""tomatoes.production"": 1})" +what genre is the film Broadway Bill?,"db.movies.find({""title"": ""Broadway Bill""}, {""genres"": 1})" +In what year was the movie Modern Times released ?,"db.movies.find({ ""title"": ""Modern Times"" }, { ""year"": 1})" +How many award nominations did the movie receive Movie Crazy ?,"db.movies.find({ ""title"": ""Movie Crazy"" },{ ""awards.nominations"": 1 })" +In what year was the movie The Emperor Jones released?,"db.movies.find({""title"":""The Emperor Jones""}, {""year"":1})" +College is written by this person?,"db.movies.find({""title"": ""College""}, {""writers"": 1})" +"the film Topaze, was written by who?","db.movies.find({""title"": ""Topaze""}, {""writers"": 1})" +What is the movie The Crowd rating?,"db.movies.find({""title"":""The Crowd""}, {""rated"":1})" +When was the movie Naughty Marietta released in theaters?,"db.movies.find({""title"": ""Naughty Marietta""}, {""released"": 1})" +who is the author of High and Dizzy?,"db.movies.find({""title"": ""High and Dizzy""}, {""writers"": 1})" +who was the movie The Public Enemy written by?,"db.movies.find({""title"": ""The Public Enemy""}, {""writers"": 1})" +the movie The Last Command starred which actors?,"db.movies.find({""title"": ""The Last Command""}, {""cast"": 1})" +what is Viva Villa! imdb rating?,"db.movies.find({""title"": ""Viva Villa!""}, {""imdb.rating"": 1})" +who are the actors in The Barretts of Wimpole Street?,"db.movies.find({""title"": ""The Barretts of Wimpole Street""}, {""cast"": 1})" +who was the film Love Me Tonight written by?,"db.movies.find({""title"": ""Love Me Tonight""}, {""writers"": 1})" +what is the film The Wedding Night imdb rating?,"db.movies.find({""title"": ""The Wedding Night""}, {""imdb.rating"": 1})" +how many awards did The Cameraman win?,"db.movies.find({""title"":""The Cameraman""}, {""awards.wins"":1})" +"Has In the Land of the Head Hunters won any awards? If so, which ones?","db.movies.find({""title"":""In the Land of the Head Hunters"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +who directed the film The Prince and the Pauper?,"db.movies.find({""title"": ""The Prince and the Pauper""}, {""directors"": 1})" +what is the film Dante's Inferno about?,"db.movies.find({""title"": ""Dante's Inferno""}, {""plot"": 1})" +Sanders of the River is written by this person?,"db.movies.find({""title"": ""Sanders of the River""}, {""writers"": 1})" +what is the movie Within Our Gates about in details?,"db.movies.find({""title"": ""Within Our Gates""}, {""fullplot"": 1})" +Which films did Martin Scorsese direct in the 1990s?,"db.movies.find({""directors"": 'Martin Scorsese', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +What is the quantity of movies that Gus Van Sant has directed?,"db.movies.countDocuments({""directors"":""Gus Van Sant""})" +Wonder Bar is a movie written by this person?,"db.movies.find({""title"": ""Wonder Bar""}, {""writers"": 1})" +What is the running time of the movie Civilization?,"db.movies.find({""title"":""Civilization""}, {""runtime"":1})" +what is Go West about in details?,"db.movies.find({""title"": ""Go West""}, {""fullplot"": 1})" +Can you give me a brief summary of the movie Safety Last! plot?,"db.movies.find({""title"":""Safety Last!""}, {""plot"":1})" +What is the text description of the movie Going Hollywood awards?,"db.movies.find({""title"":""Going Hollywood""}, {""awards.text"":1})" +What is the average rating of movies with the genre 'Mystery'?,"db.movies.aggregate([{""$match"": {""genres"": ""Mystery""}}, {""$group"": { ""_id"": ""null"", ""avgRating"": {""$avg"": ""$imdb.rating"":}}}])" +what sort of film is The Dark Angel?,"db.movies.find({""title"": ""The Dark Angel""}, {""genres"": 1})" +What is the meter score of the movie Folies Bergère de Paris according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Folies Bergère de Paris""}, {""tomatoes.viewer.meter"": 1})" +who are the actors in Steamboat Willie?,"db.movies.find({""title"": ""Steamboat Willie""}, {""cast"": 1})" +What is the critical reception of the movie 7th Heaven?,"db.movies.find({""title"":""7th Heaven""}, {""tomatoes.critic"":1})" +What is the MPAA rating of the film The Prisoner of Zenda?,"db.movies.find({""title"":""The Prisoner of Zenda""}, {""rated"":1})" +"Has Blacksmith Scene won any awards? If so, which ones?","db.movies.find({""title"":""Blacksmith Scene"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What are the names of all the actors who starred in the movie 'Black Fury'?,"db.movies.find({""title"": ""Black Fury""}, {""cast"": 1})" +the movie The Private Life of Henry VIII. starred who?,"db.movies.find({""title"": ""The Private Life of Henry VIII.""}, {""cast"": 1})" +who produced Nanook of the North?,"db.movies.find({""title"":""Nanook of the North""}, {""tomatoes.production"":1})" +what is the movie The Public Enemy imdb rating?,"db.movies.find({""title"": ""The Public Enemy""}, {""imdb.rating"": 1})" +What is the MPAA rating of The Thin Man?,"db.movies.find({""title"":""The Thin Man""}, {""rated"":1})" +what was the genre of Tarzan the Ape Man?,"db.movies.find({""title"": ""Tarzan the Ape Man""}, {""genres"": 1})" +How many audience reviews have been submitted for the movie The Song of Night ?,"db.movies.find({ ""title"": ""The Song of Night"" },{ ""tomatoes.viewer.numReviews"": 1 })" +What is the plot summary of the movie A Story of Floating Weeds ?,"db.movies.find({ ""title"": ""A Story of Floating Weeds"" }, { ""plot"": 1})" +What is the MPAA rating of the movie Grand Hotel?,"db.movies.find({""title"":""Grand Hotel""}, {""rated"":1})" +who wrote the film Wonder Bar?,"db.movies.find({""title"": ""Wonder Bar""}, {""writers"": 1})" +who produced the movie Eskimo?,"db.movies.find({""title"":""Eskimo""}, {""tomatoes.production"":1})" +Was the movie The Docks of New York well received by audiences and critics?,"db.movies.find({""title"":""The Docks of New York""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what is the plot for Stage Door?,"db.movies.find({""title"": ""Stage Door""}, {""plot"": 1})" +"Among all the actors who have appeared in Roberto Rossellini's movies, who has appeared the most times?","db.movies.aggregate([ { ""$match"": { ""directors"": ""Roberto Rossellini"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +How many audience reviews have been submitted for the movie Flying Down to Rio?,"db.movies.find({ ""title"": ""Flying Down to Rio"" }, { ""tomatoes.viewer.numReviews"": 1 })" +What is the percentage of positive reviews among critics for the movie Fury ?,"db.movies.find({ ""title"": ""Fury"" },{ ""tomatoes.critic.meter"": 1 })" +Who are the main actors/actresses in the movie Storm Over Asia?,"db.movies.find({""title"":""Storm Over Asia""}, {""cast"":1})" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie Kid Galahad ?,"db.movies.find({""title"":""Kid Galahad""}, {""tomatoes.viewer.meter"":1})" +the film Fury starred who?,"db.movies.find({""title"": ""Fury""}, {""cast"": 1})" +who produced the movie Lloyd's of London?,"db.movies.find({""title"":""Lloyd's of London""}, {""tomatoes.production"":1})" +what sort of movie is Hallelujah?,"db.movies.find({""title"": ""Hallelujah""}, {""genres"": 1})" +What is the percentage of positive reviews among critics for the movie Rembrandt ?,"db.movies.find({ ""title"": ""Rembrandt"" },{ ""tomatoes.critic.meter"": 1 })" +What is the critical reception of the movie Death Takes a Holiday?,"db.movies.find({""title"":""Death Takes a Holiday""}, {""tomatoes.critic"":1})" +What is the IMDb rating for the movie The Immigrant?,"db.movies.find({""title"": ""The Immigrant""}, {""imdb.rating"": 1})" +what was the release year of the film The Gay Divorcee?,"db.movies.find({""title"": ""The Gay Divorcee""}, {""year"": 1})" +what is The Son of the Sheik imdb rating?,"db.movies.find({""title"": ""The Son of the Sheik""}, {""imdb.rating"": 1})" +the movie The Unknown starred who?,"db.movies.find({""title"": ""The Unknown""}, {""cast"": 1})" +What is the viewer rating for the movie Death Takes a Holiday on Rotten Tomatoes?,"db.movies.find({""title"":""Death Takes a Holiday""}, {""tomatoes.viewer.rating"":1})" +"Has the movie Man with a Movie Camera won any awards? If so, which ones?","db.movies.find({""title"":""Man with a Movie Camera"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What is the IMDb ID for the movie Anna Karenina?,"db.movies.find({""title"":""Anna Karenina""}, {""imdb.id"":1})" +How did the audience and critics receive the film Lonesome?,"db.movies.find({""title"":""Lonesome""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +Who is the director of the movie Bad Girl?,"db.movies.find({""title"": ""Bad Girl""}, { ""directors"": 1})" +who was the writer of Secret Agent?,"db.movies.find({""title"": ""Secret Agent""}, {""writers"": 1})" +Could you tell me the typical rating of Satyajit Ray movies in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Satyajit Ray""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +What is the production company of Morocco?,"db.movies.find({""title"":""Morocco""}, {""tomatoes.production"":1})" +How long is the movie My Man Godfrey in minutes?,"db.movies.find({""title"":""My Man Godfrey""}, {""runtime"":1})" +What is the text description of the movie Romeo and Juliet awards?,"db.movies.find({""title"":""Romeo and Juliet""}, {""awards.text"":1})" +What languages are spoken in the movie Romeo and Juliet ?,"db.movies.find({""title"": ""Romeo and Juliet""}, { ""languages"": 1})" +Can you provide a longer version of the movie The Lower Depths plot?,"db.movies.find({""title"":""The Lower Depths""}, {""fullplot"":1})" +Can you provide a detailed summary of the movie Dodsworth plot?,"db.movies.find({ ""title"": ""Dodsworth"" }, { ""fullplot"": 1})" +How many wins did the movie Battling Butler receive?,"db.movies.find({""title"":""Battling Butler""}, {""awards.wins"":1})" +which person wrote the movie It's a Gift?,"db.movies.find({""title"": ""It's a Gift""}, {""writers"": 1})" +What is the meter score of the movie The Hurricane according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""The Hurricane""}, {""tomatoes.viewer.meter"": 1})" +How did the audience and critics receive the film The Barretts of Wimpole Street?,"db.movies.find({""title"":""The Barretts of Wimpole Street""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +who's the director of One Week?,"db.movies.find({""title"": ""One Week""}, {""directors"": 1})" +"Has the film Wife! Be Like a Rose! won any awards? If so, which ones?","db.movies.find({""title"":""Wife! Be Like a Rose!"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +what kind of film is The Great Train Robbery?,"db.movies.find({""title"": ""The Great Train Robbery""}, {""genres"": 1})" +Can you provide more information about the languages spoken in the movie The 3 Penny Opera ?,"db.movies.find({""title"":""The 3 Penny Opera""}, {""languages"":1})" +Who are the main actors/actresses in the movie Dante's Inferno?,"db.movies.find({""title"":""Dante's Inferno""}, {""cast"":1})" +What is the MPAA rating of the film In the Land of the Head Hunters?,"db.movies.find({""title"":""In the Land of the Head Hunters""}, {""rated"":1})" +who starred in the film The Music Box?,"db.movies.find({""title"": ""The Music Box""}, {""cast"": 1})" +who's the director of A Midsummer Night's Dream?,"db.movies.find({""title"": ""A Midsummer Night's Dream""}, {""directors"": 1})" +what genre is 42nd Street?,"db.movies.find({""title"": ""42nd Street""}, {""genres"": 1})" +What is the Metacritic score of the movie Dekigokoro ?,"db.movies.find({ ""title"": ""Dekigokoro"" }, { ""metacritic"": 1})" +What languages are spoken in the movie Triumph of the Will ?,"db.movies.find({""title"": ""Triumph of the Will""}, { ""languages"": 1})" +How many reviews have been submitted for the movie The Charge of the Light Brigade on Rotten Tomatoes?,"db.movies.find({ ""title"": ""The Charge of the Light Brigade"" },{ ""tomatoes.viewer.numReviews"": 1 })" +How many comments have been posted by users on the movie The Strong Man's page on the Mflix platform?,"db.movies.find({ ""title"": ""The Strong Man"" }, { ""num_mflix_comments"": 1 })" +How many viewer reviews did the movie The Fall of the House of Usher receive on Rotten Tomatoes?,"db.movies.find({""title"":""The Fall of the House of Usher""}, {""tomatoes.viewer.numReviews"":1})" +who was the movie Fury written by?,"db.movies.find({""title"": ""Fury""}, {""writers"": 1})" +What is the name of the director and cast for the movie 'The Big Parade'?,"db.movies.find({""title"": ""The Big Parade""}, {""directors"": 1, ""cast"": 1, ""_id"": 0})" +what genre of movie is Upstream?,"db.movies.find({""title"": ""Upstream""}, {""genres"": 1})" +What is the Rotten Tomatoes meter rating for the movie The Cheat ?,"db.movies.find({""title"":""The Cheat""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +what is the movie Stage Door imdb rating?,"db.movies.find({""title"": ""Stage Door""}, {""imdb.rating"": 1})" +What are the genres this movie Topaze belongs to?,"db.movies.find({""title"":""Topaze""}, {""genres"":1})" +what year was the movie The Fall of the House of Usher released?,"db.movies.find({""title"": ""The Fall of the House of Usher""}, {""year"": 1})" +What is the production company behind the movie x?,"db.movies.find({""title"": ""The Guardsman""}, { ""tomatoes.production"": 1})" +What is the website associated with the movie Love Me Tonight on Rotten Tomatoes?,"db.movies.find({""title"": ""Love Me Tonight""}, {""tomatoes.website"": 1})" +How did the audience and critics receive One Week?,"db.movies.find({""title"":""One Week""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +what is the plot for the movie The Life of Emile Zola?,"db.movies.find({""title"": ""The Life of Emile Zola""}, {""plot"": 1})" +who was the writer of the film Dekigokoro?,"db.movies.find({""title"": ""Dekigokoro""}, {""writers"": 1})" +what is the plot for the movie The Invisible Man?,"db.movies.find({""title"": ""The Invisible Man""}, {""plot"": 1})" +When was the information last updated for the movie The Green Pastures ?,"db.movies.find({ ""title"": ""The Green Pastures"" },{ ""lastupdated"": 1 })" +What is the Tomatometer score of the movie Queen Christina ?,"db.movies.find({ ""title"": ""Queen Christina"" },{ ""tomatoes.critic.meter"": 1 })" +What type of movie is Black Legion ?,"db.movies.find({""title"":""Black Legion""}, {""genres"":1})" +What is the text description of the movie The Prince and the Pauper awards?,"db.movies.find({""title"":""The Prince and the Pauper""}, {""awards.text"":1})" +who directed the film The Champ?,"db.movies.find({""title"": ""The Champ""}, {""directors"": 1})" +who stars in the film Peter Pan?,"db.movies.find({""title"": ""Peter Pan""}, {""cast"": 1})" +who is the director that directed Imitation of Life?,"db.movies.find({""title"": ""Imitation of Life""}, {""directors"": 1})" +"the movie The Beloved Vagabond, was written by who?","db.movies.find({""title"": ""The Beloved Vagabond""}, {""writers"": 1})" +What is the plot summary of the movie The Crowd Roars ?,"db.movies.find({ ""title"": ""The Crowd Roars"" }, { ""plot"": 1})" +What is the production company of the movie The Divine Lady?,"db.movies.find({""title"":""The Divine Lady""}, {""tomatoes.production"":1})" +What are the genres this movie Lady Windermere's Fan belongs to?,"db.movies.find({""title"":""Lady Windermere's Fan""}, {""genres"":1})" +"The Black Cat, was written by who?","db.movies.find({""title"": ""The Black Cat""}, {""writers"": 1})" +who starred in the film Tabu: A Story of the South Seas?,"db.movies.find({""title"": ""Tabu: A Story of the South Seas""}, {""cast"": 1})" +How many nominations did the movie The Scarlet Empress receive?,"db.movies.find({""title"":""The Scarlet Empress""}, {""awards.nominations"":1})" +what is the full plot for The General?,"db.movies.find({""title"": ""The General""}, {""fullplot"": 1})" +What is the consensus among critics about the movie The Passion of Joan of Arc ?,"db.movies.find({""title"": ""The Passion of Joan of Arc""}, {""tomatoes.consensus"": 1})" +What is the IMDb rating for the movie A Story of Floating Weeds?,"db.movies.find({""title"": ""A Story of Floating Weeds""}, {""imdb.rating"": 1})" +How many viewer reviews did the movie The Mummy receive on Rotten Tomatoes?,"db.movies.find({""title"":""The Mummy""}, {""tomatoes.viewer.numReviews"":1})" +How many audience reviews have been submitted for the movie The Fall of the House of Usher ?,"db.movies.find({ ""title"": ""The Fall of the House of Usher"" },{ ""tomatoes.viewer.numReviews"": 1 })" +what genre is the film The Ace of Hearts?,"db.movies.find({""title"": ""The Ace of Hearts""}, {""genres"": 1})" +What is the average rating of movies with the genre 'War'?,"db.movies.aggregate([{""$match"": {""genres"": ""War""}}, {""$group"": { ""_id"": ""null"", ""avgRating"": {""$avg"": ""$imdb.rating"":}}}])" +How does the movie The Passion of Joan of Arc rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""The Passion of Joan of Arc"" },{ ""tomatoes.critic.meter"": 1 })" +What is the text representation of the awards won and nominations received by the movie The 39 Steps?,"db.movies.find({""title"": ""The 39 Steps""}, { ""awards.text"": 1})" +What is the text representation of the awards won and nominations received by the movie I Am a Fugitive from a Chain Gang?,"db.movies.find({""title"": ""I Am a Fugitive from a Chain Gang""}, { ""awards.text"": 1})" +how many awards did the movie The Public Enemy win?,"db.movies.find({""title"":""The Public Enemy""}, {""awards.wins"":1})" +who stars in the movie Love Me Tonight?,"db.movies.find({""title"": ""Love Me Tonight""}, {""cast"": 1})" +What is the text representation of the awards won and nominations received by the movie Ben-Hur: A Tale of the Christ?,"db.movies.find({""title"": ""Ben-Hur: A Tale of the Christ""}, { ""awards.text"": 1})" +What is the box office revenue for the movie 'Bad Girl'?,"db.movies.find({""title"": ""Bad Girl""}, {""tomatoes.boxOffice"": 1})" +what was the release date of The Blood of a Poet?,"db.movies.find({""title"": ""The Blood of a Poet""}, {""released"": 1})" +"On Rotten Tomatoes, what is the top-rated film directed by Jean-Luc Godard?","db.movies.find({""directors"": ""Jean-Luc Godard"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +the movie One Hundred Men and a Girl was directed by who?,"db.movies.find({""title"": ""One Hundred Men and a Girl""}, {""directors"": 1})" +What is the box office revenue for the movie 'The Dark Angel'?,"db.movies.find({""title"": ""The Dark Angel""}, {""tomatoes.boxOffice"": 1})" +"the movie Footlight Parade, was written by who?","db.movies.find({""title"": ""Footlight Parade""}, {""writers"": 1})" +which person wrote It's a Gift?,"db.movies.find({""title"": ""It's a Gift""}, {""writers"": 1})" +who was Wild Boys of the Road directed by?,"db.movies.find({""title"": ""Wild Boys of the Road""}, {""directors"": 1})" +What is the website associated with the movie Go West on Rotten Tomatoes?,"db.movies.find({""title"": ""Go West""}, {""tomatoes.website"": 1})" +what year was Romance released?,"db.movies.find({""title"": ""Romance""}, {""year"": 1})" +who wrote the movie Harvest?,"db.movies.find({""title"": ""Harvest""}, {""writers"": 1})" +What is the critical reception of the movie Three Little Pigs?,"db.movies.find({""title"":""Three Little Pigs""}, {""tomatoes.critic"":1})" +who acted in the movie The 39 Steps?,"db.movies.find({""title"": ""The 39 Steps""}, {""cast"": 1})" +How many reviews did the movie Greed receive on Rotten Tomatoes?,"db.movies.find({""title"":""Greed""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +what is the movie It imdb rating?,"db.movies.find({""title"": ""It""}, {""imdb.rating"": 1})" +What is the dominant genre of Christopher Nolan's directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Christopher Nolan"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +what is The Thief of Bagdad about?,"db.movies.find({""title"": ""The Thief of Bagdad""}, {""plot"": 1})" +What is the text representation of the awards won and nominations received by the movie High and Dizzy?,"db.movies.find({""title"": ""High and Dizzy""}, { ""awards.text"": 1})" +What is the text description of the movie Shanghai Express awards?,"db.movies.find({""title"":""Shanghai Express""}, {""awards.text"":1})" +What is the box office revenue of the movie The Ghost Goes West ?,"db.movies.find({""title"": ""The Ghost Goes West""}, { ""tomatoes.boxOffice"": 1})" +What is the consensus among critics about the movie The Invisible Man ?,"db.movies.find({""title"": ""The Invisible Man""}, {""tomatoes.consensus"": 1})" +How many audience reviews have been submitted for the movie Cleopatra ?,"db.movies.find({ ""title"": ""Cleopatra"" },{ ""tomatoes.viewer.numReviews"": 1 })" +What is the name of the David Lynch-directed movie with the least runtime?,"db.movies.find({""directors"":""David Lynch""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +What are some of the types of movies that Martin Scorsese has directed?,"db.movies.distinct(""genres"", { ""directors"": ""Martin Scorsese"" })" +What is the highest-ranking James Cameron-directed film on Rotten Tomatoes?,"db.movies.find({""directors"": ""James Cameron"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +what is the movie State Fair about in details?,"db.movies.find({""title"": ""State Fair""}, {""fullplot"": 1})" +who starred in the movie The Chechahcos?,"db.movies.find({""title"": ""The Chechahcos""}, {""cast"": 1})" +who are the actors in Greed?,"db.movies.find({""title"": ""Greed""}, {""cast"": 1})" +Who is the director of the movie Wild Boys of the Road?,"db.movies.find({""title"": ""Wild Boys of the Road""}, { ""directors"": 1})" +What is the production company behind the movie My Man Godfrey ?,"db.movies.find({""title"": ""My Man Godfrey""}, { ""tomatoes.production"": 1})" +what is the plot for the film The Life of Emile Zola?,"db.movies.find({""title"": ""The Life of Emile Zola""}, {""plot"": 1})" +who are the actors in the movie The Crusades?,"db.movies.find({""title"": ""The Crusades""}, {""cast"": 1})" +who directed All Quiet on the Western Front?,"db.movies.find({""title"": ""All Quiet on the Western Front""}, {""directors"": 1})" +Who are the writers of the movie A Damsel in Distress ?,"db.movies.find({""title"": ""A Damsel in Distress""}, { ""writers"": 1})" +How long is the runtime of the movie Tabu: A Story of the South Seas ?,"db.movies.find({""title"":""Tabu: A Story of the South Seas""}, {""runtime"":1})" +Who are the starring actors/actresses in the movie The Devil to Pay!?,"db.movies.find({""title"":""The Devil to Pay!""}, {""cast"":1})" +what genre is the film The Immigrant?,"db.movies.find({""title"": ""The Immigrant""}, {""genres"": 1})" +which company produced The Power and the Glory?,"db.movies.find({""title"":""The Power and the Glory""}, {""tomatoes.production"":1})" +what is the film Les Misèrables about?,"db.movies.find({""title"": ""Les Misèrables""}, {""plot"": 1})" +"How long, in total, are all the movies that Luchino Visconti has directed?","db.movies.aggregate([{ ""$match"": { ""directors"": ""Luchino Visconti"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +Who are the starring actors/actresses in the movie Go West?,"db.movies.find({""title"":""Go West""}, {""cast"":1})" +what is the movie The Invisible Ray imdb rating?,"db.movies.find({""title"": ""The Invisible Ray""}, {""imdb.rating"": 1})" +what is the full plot for the movie The General?,"db.movies.find({""title"": ""The General""}, {""fullplot"": 1})" +what kind of movie is Duck Soup?,"db.movies.find({""title"": ""Duck Soup""}, {""genres"": 1})" +what is the movie The Gilded Lily description ?,"db.movies.find({""title"": ""The Gilded Lily""}, {""plot"": 1})" +what is Street Angel about in details?,"db.movies.find({""title"": ""Street Angel""}, {""fullplot"": 1})" +which person wrote King Solomon's Mines?,"db.movies.find({""title"": ""King Solomon's Mines""}, {""writers"": 1})" +who produced the film The Prince and the Pauper?,"db.movies.find({""title"":""The Prince and the Pauper""}, {""tomatoes.production"":1})" +who was The Wedding Night written by?,"db.movies.find({""title"": ""The Wedding Night""}, {""writers"": 1})" +who stars in the movie The Crowd Roars?,"db.movies.find({""title"": ""The Crowd Roars""}, {""cast"": 1})" +Who are the main actors/actresses in the movie Queen Kelly?,"db.movies.find({""title"":""Queen Kelly""}, {""cast"":1})" +Can you provide more information about the languages spoken in the movie Tabu: A Story of the South Seas ?,"db.movies.find({""title"":""Tabu: A Story of the South Seas""}, {""languages"":1})" +what was the release date of King of Jazz?,"db.movies.find({""title"": ""King of Jazz""}, {""released"": 1})" +what sort of film is Dekigokoro?,"db.movies.find({""title"": ""Dekigokoro""}, {""genres"": 1})" +who are the actors in the film Wild Oranges?,"db.movies.find({""title"": ""Wild Oranges""}, {""cast"": 1})" +What is the box office revenue of the movie La Grande Illusion ?,"db.movies.find({""title"": ""La Grande Illusion""}, { ""tomatoes.boxOffice"": 1})" +what year was Rembrandt released?,"db.movies.find({""title"": ""Rembrandt""}, {""year"": 1})" +How many reviews have been submitted for the movie Three Little Pigs on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Three Little Pigs"" },{ ""tomatoes.viewer.numReviews"": 1 })" +what is the genre of The Dark Angel?,"db.movies.find({""title"": ""The Dark Angel""}, {""genres"": 1})" +What is the website associated with the movie Gold Diggers of 1933 on Rotten Tomatoes?,"db.movies.find({""title"": ""Gold Diggers of 1933""}, {""tomatoes.website"": 1})" +What is the production company of the film Blacksmith Scene?,"db.movies.find({""title"":""Blacksmith Scene""}, {""tomatoes.production"":1})" +What is the Metacritic score of the movie Secret Agent ?,"db.movies.find({ ""title"": ""Secret Agent"" }, { ""metacritic"": 1})" +"Has the film Mèdchen in Uniform won any awards? If so, which ones?","db.movies.find({""title"":""Mèdchen in Uniform"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What is the imdbID and year of release for the movie with a title of 'Topaze'?,"db.movies.find({""title"": ""Topaze""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +Who are the writers of the movie Daughter of Shanghai ?,"db.movies.find({""title"": ""Daughter of Shanghai""}, { ""writers"": 1})" +Can you provide more information about the languages spoken in the movie A Woman of Paris: A Drama of Fate ?,"db.movies.find({""title"":""A Woman of Paris: A Drama of Fate""}, {""languages"":1})" +What is the text description of the movie Steamboat Willie awards?,"db.movies.find({""title"":""Steamboat Willie""}, {""awards.text"":1})" +who stars in the film Dishonored?,"db.movies.find({""title"": ""Dishonored""}, {""cast"": 1})" +"How did the audience and critics receive Winsor McCay, the Famous Cartoonist of the N.Y. Herald and His Moving Comics?","db.movies.find({""title"":""Winsor McCay, the Famous Cartoonist of the N.Y. Herald and His Moving Comics""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the audience rating of the movie Come and Get It ?,"db.movies.find({ ""title"": ""Come and Get It"" },{ ""tomatoes.viewer.rating"": 1 })" +What is the critical reception of the movie Romeo and Juliet?,"db.movies.find({""title"":""Romeo and Juliet""}, {""tomatoes.critic"":1})" +What is the imdbID and genre of the movie 'It'?,"db.movies.find({""title"": ""It""}, {""imdb.id"": 1, ""genres"": 1, ""_id"": 0})" +who directed the film Go West?,"db.movies.find({""title"": ""Go West""}, {""directors"": 1})" +What is the viewer rating for the movie The Sin of Madelon Claudet on Rotten Tomatoes?,"db.movies.find({""title"":""The Sin of Madelon Claudet""}, {""tomatoes.viewer.rating"":1})" +the film San Francisco was directed by who?,"db.movies.find({""title"": ""San Francisco""}, {""directors"": 1})" +Could you tell me the exact number of films that have been directed by Spike Lee?,"db.movies.countDocuments({""directors"":""Spike Lee""})" +What is the running time of the film The Dark Angel?,"db.movies.find({""title"":""The Dark Angel""}, {""runtime"":1})" +What is the MPAA rating of the movie L'opèra de quat'sous?,"db.movies.find({""title"":""L'opèra de quat'sous""}, {""rated"":1})" +how many awards did Twentieth Century win?,"db.movies.find({""title"":""Twentieth Century""}, {""awards.wins"":1})" +what is the film Masquerade in Vienna about?,"db.movies.find({""title"": ""Masquerade in Vienna""}, {""plot"": 1})" +What is the text representation of the awards won and nominations received by the movie Children in the Wind?,"db.movies.find({""title"": ""Children in the Wind""}, { ""awards.text"": 1})" +When was the information about the movie Toni last updated?,"db.movies.find({ ""title"": ""Toni"" }, { ""lastupdated"": 1})" +What is the IMDb rating for the film Becky Sharp?,"db.movies.find({""title"": ""Becky Sharp""}, {""imdb.rating"": 1})" +what is the genre for the film Go West?,"db.movies.find({""title"": ""Go West""}, {""genres"": 1})" +What are the most critically acclaimed movies directed by Eric Rohmer?,"db.movies.find({""directors"": 'Eric Rohmer', ""imdb.rating"": {""$gt"": 8.5}})" +What is the IMDb rating for the movie Carnival in Flanders?,"db.movies.find({""title"": ""Carnival in Flanders""}, {""imdb.rating"": 1})" +what is the film Triumph of the Will about?,"db.movies.find({""title"": ""Triumph of the Will""}, {""plot"": 1})" +How did the audience and critics receive Marked Woman?,"db.movies.find({""title"":""Marked Woman""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +the movie One Night of Love was directed by who?,"db.movies.find({""title"": ""One Night of Love""}, {""directors"": 1})" +the director of Shanghai Express was?,"db.movies.find({""title"": ""Shanghai Express""}, {""directors"": 1})" +"Has the movie Death Takes a Holiday won any awards? If so, which ones?","db.movies.find({""title"":""Death Takes a Holiday"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +what was the release date of the movie The Immigrant?,"db.movies.find({""title"": ""The Immigrant""}, {""released"": 1})" +what is the full plot for the film The Cameraman?,"db.movies.find({""title"": ""The Cameraman""}, {""fullplot"": 1})" +what is the movie Dishonored imdb rating?,"db.movies.find({""title"": ""Dishonored""}, {""imdb.rating"": 1})" +How does the movie The Blood of a Poet rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""The Blood of a Poet"" },{ ""tomatoes.critic.meter"": 1 })" +What is the MPAA rating of The Prisoner of Shark Island?,"db.movies.find({""title"":""The Prisoner of Shark Island""}, {""rated"":1})" +who is the director that directed White Shadows?,"db.movies.find({""title"": ""White Shadows""}, {""directors"": 1})" +what genre of film is Gold Diggers of 1933?,"db.movies.find({""title"": ""Gold Diggers of 1933""}, {""genres"": 1})" +What is the language of the film Miss Lulu Bett?,"db.movies.find({""title"":""Miss Lulu Bett""}, {""languages"":1})" +In which countries was the movie My Man Godfrey produced?,"db.movies.find({""title"":""My Man Godfrey""}, {""countries"":1})" +How did the audience and critics receive Little Caesar?,"db.movies.find({""title"":""Little Caesar""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the rating of the movie State Fair on IMDb?,"db.movies.find({""title"":""State Fair""}, {""imdb.rating"":1})" +who wrote Mayerling?,"db.movies.find({""title"": ""Mayerling""}, {""writers"": 1})" +who is listed as director for The General?,"db.movies.find({""title"": ""The General""}, {""directors"": 1})" +How many votes does the movie Intolerance: Love's Struggle Throughout the Ages have on IMDb?,"db.movies.find({""title"":""Intolerance: Love's Struggle Throughout the Ages""}, {""imdb.votes"":1})" +In what language was the movie Mèdchen in Uniform released?,"db.movies.find({ ""title"": ""Mèdchen in Uniform"" }, { ""languages"": 1})" +What are the genres associated with the movie Lloyd's of London ?,"db.movies.find({ ""title"": ""Lloyd's of London"" }, { ""genres"": 1})" +What is the rating of the movie Duck Soup according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Duck Soup""}, {""tomatoes.viewer.rating"": 1})" +What is the MPAA rating of La Grande Illusion?,"db.movies.find({""title"":""La Grande Illusion""}, {""rated"":1})" +What was the release date for the movie Safety Last!?,"db.movies.find({""title"":""Safety Last!""}, {""released"":1})" +Who are the main actors/actresses in the movie Modern Times?,"db.movies.find({""title"":""Modern Times""}, {""cast"":1})" +how many awards did The Edge of the World win?,"db.movies.find({""title"":""The Edge of the World""}, {""awards.wins"":1})" +Who are the actors in the movie Scarface?,"db.movies.find({""title"":""Scarface""}, {""cast"":1})" +"The Informer, was written by who?","db.movies.find({""title"": ""The Informer""}, {""writers"": 1})" +who was the writer of The Invisible Man?,"db.movies.find({""title"": ""The Invisible Man""}, {""writers"": 1})" +what's the main genre of the movies directed by Orson Welles ?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Orson Welles"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +what is the film Beau Geste imdb rating?,"db.movies.find({""title"": ""Beau Geste""}, {""imdb.rating"": 1})" +When was the information last updated for the movie Maria Chapdelaine ?,"db.movies.find({ ""title"": ""Maria Chapdelaine"" },{ ""lastupdated"": 1 })" +what is the movie Elephant Boy description ?,"db.movies.find({""title"": ""Elephant Boy""}, {""plot"": 1})" +what is the movie Mr. Deeds Goes to Town about in details?,"db.movies.find({""title"": ""Mr. Deeds Goes to Town""}, {""fullplot"": 1})" +How many reviews have been submitted for the movie Under the Roofs of Paris on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Under the Roofs of Paris"" },{ ""tomatoes.viewer.numReviews"": 1 })" +What is the MPAA rating of the film Folies Bergère de Paris?,"db.movies.find({""title"":""Folies Bergère de Paris""}, {""rated"":1})" +"The Circus, is written by who?","db.movies.find({""title"": ""The Circus""}, {""writers"": 1})" +What is the rating of the movie Mayerling according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""Mayerling""}, {""tomatoes.viewer.rating"": 1})" +what kind of movie is David Copperfield?,"db.movies.find({""title"": ""David Copperfield""}, {""genres"": 1})" +"the film A Midsummer Night's Dream, was written by who?","db.movies.find({""title"": ""A Midsummer Night's Dream""}, {""writers"": 1})" +can you describe the plot of The Life of Emile Zola?,"db.movies.find({""title"": ""The Life of Emile Zola""}, {""plot"": 1})" +What is the Rotten Tomatoes meter rating for the movie Berkeley Square ?,"db.movies.find({""title"":""Berkeley Square""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +the movie The Four Horsemen of the Apocalypse starred which actors?,"db.movies.find({""title"": ""The Four Horsemen of the Apocalypse""}, {""cast"": 1})" +In what language was the movie Carnival in Flanders released?,"db.movies.find({ ""title"": ""Carnival in Flanders"" }, { ""languages"": 1})" +Who is the director of the movie China Seas?,"db.movies.find({""title"": ""China Seas""}, { ""directors"": 1})" +The Freshman is written by this person?,"db.movies.find({""title"": ""The Freshman""}, {""writers"": 1})" +What is the meter score of the movie M according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""M""}, {""tomatoes.viewer.meter"": 1})" +what is the film Dishonored imdb rating?,"db.movies.find({""title"": ""Dishonored""}, {""imdb.rating"": 1})" +What are the films directed by Spike Lee?,"db.movies.find({""directors"": ""Spike Lee""},{""title"":1})" +What is the full plot summary of the movie The Navigator ?,"db.movies.find({""title"": ""The Navigator""}, {""plot"": 1})" +What are the countries associated with the movie The Great Ziegfeld ?,"db.movies.find({""title"": ""The Great Ziegfeld""}, {""countries"": 1})" +What is the language of the movie King Kong?,"db.movies.find({""title"":""King Kong""}, {""languages"":1})" +What is the text representation of the awards won and nominations received by the movie Go West?,"db.movies.find({""title"": ""Go West""}, { ""awards.text"": 1})" +who are the actors in Three Smart Girls?,"db.movies.find({""title"": ""Three Smart Girls""}, {""cast"": 1})" +What is the percentage of positive reviews among critics for the movie Mary of Scotland ?,"db.movies.find({ ""title"": ""Mary of Scotland"" },{ ""tomatoes.critic.meter"": 1 })" +which person directed Four Sons?,"db.movies.find({""title"": ""Four Sons""}, {""directors"": 1})" +who acted in the film Bride of Frankenstein?,"db.movies.find({""title"": ""Bride of Frankenstein""}, {""cast"": 1})" +which company produced the movie Romeo and Juliet?,"db.movies.find({""title"":""Romeo and Juliet""}, {""tomatoes.production"":1})" +What are some of the films that Jean Renoir has directed?,"db.movies.find({""directors"": ""Jean Renoir""},{""title"":1})" +what genre of film is The Immigrant?,"db.movies.find({""title"": ""The Immigrant""}, {""genres"": 1})" +who wrote the movie Love Me Tonight?,"db.movies.find({""title"": ""Love Me Tonight""}, {""writers"": 1})" +who is listed as director for Flash Gordon?,"db.movies.find({""title"": ""Flash Gordon""}, {""directors"": 1})" +what genre is Tol'able David?,"db.movies.find({""title"": ""Tol'able David""}, {""genres"": 1})" +which person wrote the film Forbidden?,"db.movies.find({""title"": ""Forbidden""}, {""writers"": 1})" +who is the writer of the movie A Story of Floating Weeds?,"db.movies.find({""title"": ""A Story of Floating Weeds""}, {""writers"": 1})" +In which countries was the movie Berkeley Square produced?,"db.movies.find({""title"":""Berkeley Square""}, {""countries"":1})" +"the movie Twentieth Century, was written by who?","db.movies.find({""title"": ""Twentieth Century""}, {""writers"": 1})" +Was the movie David Golder well received by audiences and critics?,"db.movies.find({""title"":""David Golder""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the runtime of the movie The Last of the Mohicans ?,"db.movies.find({""title"": ""The Last of the Mohicans""}, { ""runtime"": 1})" +What is the critical reception of the movie Dracula?,"db.movies.find({""title"":""Dracula""}, {""tomatoes.critic"":1})" +How many comments have been posted by users on the movie Steamboat Willie's page on the Mflix platform?,"db.movies.find({ ""title"": ""Steamboat Willie"" }, { ""num_mflix_comments"": 1 })" +When was the information about the movie They Won't Forget last updated?,"db.movies.find({ ""title"": ""They Won't Forget"" }, { ""lastupdated"": 1})" +how many awards did the movie Imitation of Life win?,"db.movies.find({""title"":""Imitation of Life""}, {""awards.wins"":1})" +Which Jean-Pierre Melville film has the shortest duration?,"db.movies.find({""directors"":""Jean-Pierre Melville""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +who is the author of Civilization?,"db.movies.find({""title"": ""Civilization""}, {""writers"": 1})" +What is the MongoDB document ID of the movie The Iron Horse?,"db.movies.find({""title"": ""The Iron Horse""}, {""_id"": 1})" +who is the writer of the film Wild Oranges?,"db.movies.find({""title"": ""Wild Oranges""}, {""writers"": 1})" +which person directed The Italian?,"db.movies.find({""title"": ""The Italian""}, {""directors"": 1})" +Who are the main actors in It Happened One Night ?,"db.movies.find({ ""title"": ""It Happened One Night"" }, { ""cast"": 1})" +What is the language of the film Nanook of the North?,"db.movies.find({""title"":""Nanook of the North""}, {""languages"":1})" +What is the running time of the movie Applause?,"db.movies.find({""title"":""Applause""}, {""runtime"":1})" +What are the names of all the actors who starred in the movie 'The Lives of a Bengal Lancer'?,"db.movies.find({""title"": ""The Lives of a Bengal Lancer""}, {""cast"": 1})" +what kind of movie is Seven Chances?,"db.movies.find({""title"": ""Seven Chances""}, {""genres"": 1})" +Who are the starring actors/actresses in the movie The Land Beyond the Sunset?,"db.movies.find({""title"":""The Land Beyond the Sunset""}, {""cast"":1})" +What is the runtime and rating for the movie 'The Blue Bird'?,"db.movies.find({""title"": ""The Blue Bird""}, {""runtime"": 1, ""rated"": 1})" +What is the IMDB rating of the movie Wild and Woolly ?,"db.movies.find({""title"": ""Wild and Woolly""}, { ""imdb.rating"": 1})" +Has the movie Sanders of the River won any awards?,"db.movies.find({""title"":""Sanders of the River""}, {""awards.wins"":1})" +what is the film Comradeship imdb rating?,"db.movies.find({""title"": ""Comradeship""}, {""imdb.rating"": 1})" +which person wrote the movie The General?,"db.movies.find({""title"": ""The General""}, {""writers"": 1})" +How many reviews have been submitted by critics for the movie Dante's Inferno?,"db.movies.find({ ""title"": ""Dante's Inferno"" }, { ""tomatoes.critic.numReviews"": 1 })" +What is the production company of the movie The Green Pastures?,"db.movies.find({""title"":""The Green Pastures""}, {""tomatoes.production"":1})" +Who is the lead actor of the movie The Life of Emile Zola ?,"db.movies.find({""title"": ""The Life of Emile Zola""}, {""cast"":{""$slice"": 1},""title"":1})" +Broken Blossoms or The Yellow Man and the Girl is a film written by this person?,"db.movies.find({""title"": ""Broken Blossoms or The Yellow Man and the Girl""}, {""writers"": 1})" +What is the text description of the movie Nosferatu awards?,"db.movies.find({""title"":""Nosferatu""}, {""awards.text"":1})" +In what year was the movie Movie Crazy released ?,"db.movies.find({ ""title"": ""Movie Crazy"" }, { ""year"": 1})" +What is the consensus among critics about the movie The Iron Horse?,"db.movies.find({""title"": ""The Iron Horse""}, { ""tomatoes.consensus"": 1})" +What is the percentage of positive reviews among critics for the movie The Hurricane ?,"db.movies.find({ ""title"": ""The Hurricane"" },{ ""tomatoes.critic.meter"": 1 })" +who directed Swedenhielms Family?,"db.movies.find({""title"": ""Swedenhielms Family""}, {""directors"": 1})" +what is the movie Baby Face about in details?,"db.movies.find({""title"": ""Baby Face""}, {""fullplot"": 1})" +How many awards did the movie win Show People ?,"db.movies.find({ ""title"": ""Show People"" },{ ""awards.wins"": 1 })" +what genre of movie is One Week?,"db.movies.find({""title"": ""One Week""}, {""genres"": 1})" +the film Nosferatu starred who?,"db.movies.find({""title"": ""Nosferatu""}, {""cast"": 1})" +What is the running time of the movie The Big Parade?,"db.movies.find({""title"":""The Big Parade""}, {""runtime"":1})" +Can you provide me with a list of movies directed by Akira Kurosawa?,"db.movies.find({""directors"": ""Akira Kurosawa""},{""title"":1})" +the movie The Birth of a Nation was directed by who?,"db.movies.find({""title"": ""The Birth of a Nation""}, {""directors"": 1})" +what kind of film is Forbidden?,"db.movies.find({""title"": ""Forbidden""}, {""genres"": 1})" +What is the text representation of the awards won and nominations received by the movie The Barretts of Wimpole Street?,"db.movies.find({""title"": ""The Barretts of Wimpole Street""}, { ""awards.text"": 1})" +who was the writer of Mutiny on the Bounty?,"db.movies.find({""title"": ""Mutiny on the Bounty""}, {""writers"": 1})" +What is the Rotten Tomatoes meter rating for the movie Show People ?,"db.movies.find({""title"":""Show People""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +What are the genres associated with the movie The Ace of Hearts ?,"db.movies.find({ ""title"": ""The Ace of Hearts"" }, { ""genres"": 1})" +what was the genre of the movie Top Hat?,"db.movies.find({""title"": ""Top Hat""}, {""genres"": 1})" +which person wrote the film Little Caesar?,"db.movies.find({""title"": ""Little Caesar""}, {""writers"": 1})" +who produced the movie The Chechahcos?,"db.movies.find({""title"":""The Chechahcos""}, {""tomatoes.production"":1})" +In what year was the movie Applause released?,"db.movies.find({""title"":""Applause""}, {""year"":1})" +In what language was the movie Cimarron released?,"db.movies.find({ ""title"": ""Cimarron"" }, { ""languages"": 1})" +What is the MPAA rating of the movie Now or Never?,"db.movies.find({""title"":""Now or Never""}, {""rated"":1})" +Can you provide more information about the IMDb rating for the movie The World Moves On ?,"db.movies.find({""title"":""The World Moves On""}, {""imdb"":1})" +what is the genre for the movie Snow White and the Seven Dwarfs?,"db.movies.find({""title"": ""Snow White and the Seven Dwarfs""}, {""genres"": 1})" +what is the plot for the film The Dark Angel?,"db.movies.find({""title"": ""The Dark Angel""}, {""plot"": 1})" +who was the film The Gay Divorcee written by?,"db.movies.find({""title"": ""The Gay Divorcee""}, {""writers"": 1})" +who was Harvest written by?,"db.movies.find({""title"": ""Harvest""}, {""writers"": 1})" +what sort of movie is Topaze?,"db.movies.find({""title"": ""Topaze""}, {""genres"": 1})" +Could you tell me the exact number of films that have been directed by Ethan Coen?,"db.movies.countDocuments({""directors"":""Ethan Coen""})" +What is the language of the movie The Last Command?,"db.movies.find({""title"":""The Last Command""}, {""languages"":1})" +who are the actors in the film Romance?,"db.movies.find({""title"": ""Romance""}, {""cast"": 1})" +what was the release year of the movie Roberta?,"db.movies.find({""title"": ""Roberta""}, {""year"": 1})" +How long is the runtime of the movie Safety Last! ?,"db.movies.find({""title"":""Safety Last!""}, {""runtime"":1})" +How did the audience and critics receive the film The Pearls of the Crown?,"db.movies.find({""title"":""The Pearls of the Crown""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the language of the film The Big Parade?,"db.movies.find({""title"":""The Big Parade""}, {""languages"":1})" +What is the language of The Wedding Night?,"db.movies.find({""title"":""The Wedding Night""}, {""languages"":1})" +What is the name of the director and cast for the movie 'Now or Never'?,"db.movies.find({""title"": ""Now or Never""}, {""directors"": 1, ""cast"": 1, ""_id"": 0})" +what year was the movie Final Accord released?,"db.movies.find({""title"": ""Final Accord""}, {""year"": 1})" +What is the Tomatometer score of the movie Two Seconds ?,"db.movies.find({ ""title"": ""Two Seconds"" },{ ""tomatoes.critic.meter"": 1 })" +who acted in the movie Wild and Woolly?,"db.movies.find({""title"": ""Wild and Woolly""}, {""cast"": 1})" +Can you provide me with a list of Ingmar Bergman-directed movies with the highest ratings?,"db.movies.find({""directors"": 'Ingmar Bergman', ""imdb.rating"": {""$gt"": 8.5}})" +What is the language of the film Three Ages?,"db.movies.find({""title"":""Three Ages""}, {""languages"":1})" +What is the percentage of positive reviews among critics for the movie Mutiny on the Bounty ?,"db.movies.find({ ""title"": ""Mutiny on the Bounty"" },{ ""tomatoes.critic.meter"": 1 })" +What is the website associated with the movie David Copperfield on Rotten Tomatoes?,"db.movies.find({""title"": ""David Copperfield""}, {""tomatoes.website"": 1})" +What type of media is The Cheat?,"db.movies.find({ ""title"": ""The Cheat"" }, { ""type"": 1})" +what is the plot for Applause?,"db.movies.find({""title"": ""Applause""}, {""plot"": 1})" +what is the plot for the movie Trouble in Paradise?,"db.movies.find({""title"": ""Trouble in Paradise""}, {""plot"": 1})" +what is the movie The Life of Emile Zola about?,"db.movies.find({""title"": ""The Life of Emile Zola""}, {""plot"": 1})" +How many audience reviews have been submitted for the movie The Circus ?,"db.movies.find({ ""title"": ""The Circus"" },{ ""tomatoes.viewer.numReviews"": 1 })" +who is the director of 42nd Street?,"db.movies.find({""title"": ""42nd Street""}, {""directors"": 1})" +"Has the movie It's a Gift won any awards? If so, which ones?","db.movies.find({""title"":""It's a Gift"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie Make Way for Tomorrow ?,"db.movies.find({""title"":""Make Way for Tomorrow""}, {""tomatoes.viewer.meter"":1})" +What is the production company of All Quiet on the Western Front?,"db.movies.find({""title"":""All Quiet on the Western Front""}, {""tomatoes.production"":1})" +What is the IMDb rating for Mayerling?,"db.movies.find({""title"": ""Mayerling""}, {""imdb.rating"": 1})" +what is the genre for the film Lost Horizon?,"db.movies.find({""title"": ""Lost Horizon""}, {""genres"": 1})" +What type of media is Twentieth Century?,"db.movies.find({ ""title"": ""Twentieth Century"" }, { ""type"": 1})" +how many awards did Smilin' Through win?,"db.movies.find({""title"":""Smilin' Through""}, {""awards.wins"":1})" +what is Foolish Wives description?,"db.movies.find({""title"": ""Foolish Wives""}, {""plot"": 1})" +Which genre does Michelangelo Antonioni's directed movies predominantly belong to?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Michelangelo Antonioni"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +Can you provide more information about the Rotten Tomatoes rating for the movie Cops?,"db.movies.find({""title"": ""Cops""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +who is listed as director for Cleopatra?,"db.movies.find({""title"": ""Cleopatra""}, {""directors"": 1})" +What are the movies directed by Wes Anderson?,"db.movies.find({""directors"": ""Wes Anderson""},{""title"":1})" +In which countries was the movie The Docks of New York produced?,"db.movies.find({""title"":""The Docks of New York""}, {""countries"":1})" +How does the movie The Blue Light rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""The Blue Light"" },{ ""tomatoes.critic.meter"": 1 })" +What is the Rotten Tomatoes meter rating for the movie Dames ?,"db.movies.find({""title"":""Dames""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +When was the information last updated for the movie Nanook of the North ?,"db.movies.find({ ""title"": ""Nanook of the North"" },{ ""lastupdated"": 1 })" +What is the audience rating of the movie The Blue Light ?,"db.movies.find({ ""title"": ""The Blue Light"" },{ ""tomatoes.viewer.rating"": 1 })" +What is the IMDB rating of the movie Theodora Goes Wild ?,"db.movies.find({""title"": ""Theodora Goes Wild""}, { ""imdb.rating"": 1})" +Was the movie The Life of Emile Zola well received by audiences?,"db.movies.find({""title"":""The Life of Emile Zola""}, {""tomatoes.viewer"":1})" +Can you inform me of the Kenji Mizoguchi movie with the shortest duration?,"db.movies.find({""directors"":""Kenji Mizoguchi""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +who was the writer of The Divorcee?,"db.movies.find({""title"": ""The Divorcee""}, {""writers"": 1})" +What is the MPAA rating of the film King of Jazz?,"db.movies.find({""title"":""King of Jazz""}, {""rated"":1})" +What is the consensus among critics about the movie Triumph of the Will?,"db.movies.find({""title"": ""Triumph of the Will""}, { ""tomatoes.consensus"": 1})" +what is the plot for the film Grass: A Nation's Battle for Life?,"db.movies.find({""title"": ""Grass: A Nation's Battle for Life""}, {""plot"": 1})" +"Has the film Bad Girl won any awards? If so, which ones?","db.movies.find({""title"":""Bad Girl"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +Can you give me a brief summary of the movie Lenin in October plot?,"db.movies.find({""title"":""Lenin in October""}, {""plot"":1})" +"Eskimo, was written by who?","db.movies.find({""title"": ""Eskimo""}, {""writers"": 1})" +How many votes does the movie 7th Heaven have on IMDb?,"db.movies.find({""title"":""7th Heaven""}, {""imdb.votes"":1})" +what was the release date of the movie Masquerade in Vienna?,"db.movies.find({""title"": ""Masquerade in Vienna""}, {""released"": 1})" +Which movies were helmed by Roberto Rossellini and came out in the 1990s?,"db.movies.find({""directors"": 'Roberto Rossellini', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +Was the movie Folies Bergère de Paris well received by audiences and critics?,"db.movies.find({""title"":""Folies Bergère de Paris""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the movie Theodora Goes Wild rating?,"db.movies.find({""title"":""Theodora Goes Wild""}, {""rated"":1})" +who's the director of The Divine Lady?,"db.movies.find({""title"": ""The Divine Lady""}, {""directors"": 1})" +"Shall We Dance, was written by who?","db.movies.find({""title"": ""Shall We Dance""}, {""writers"": 1})" +What are the genres this movie Captains Courageous belongs to?,"db.movies.find({""title"":""Captains Courageous""}, {""genres"":1})" +Can you give me a brief summary of the movie Mèdchen in Uniform plot?,"db.movies.find({""title"":""Mèdchen in Uniform""}, {""plot"":1})" +the director of Forbidden was?,"db.movies.find({""title"": ""Forbidden""}, {""directors"": 1})" +What is the ID of the movie Grand Hotel on IMDB?,"db.movies.find({""title"": ""Grand Hotel""}, {""imdb.id"": 1})" +Can you provide more information about the Rotten Tomatoes rating for the movie The Strong Man?,"db.movies.find({""title"": ""The Strong Man""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +What are the names of all the actors who starred in the movie 'The Story of Louis Pasteur'?,"db.movies.find({""title"": ""The Story of Louis Pasteur""}, {""cast"": 1})" +what is the movie The Kid imdb rating?,"db.movies.find({""title"": ""The Kid""}, {""imdb.rating"": 1})" +what is the genre of Earth?,"db.movies.find({""title"": ""Earth""}, {""genres"": 1})" +what is the film The Crusades about?,"db.movies.find({""title"": ""The Crusades""}, {""plot"": 1})" +What is the best-reviewed movie on Rotten Tomatoes that was directed by Christopher Nolan?,"db.movies.find({""directors"": ""Christopher Nolan"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +What languages are spoken in the movie Hell's Hinges ?,"db.movies.find({""title"": ""Hell's Hinges""}, { ""languages"": 1})" +who is the director that directed A Midsummer Night's Dream?,"db.movies.find({""title"": ""A Midsummer Night's Dream""}, {""directors"": 1})" +who wrote the screenplay for A Corner in Wheat?,"db.movies.aggregate([ { ""$match"": { ""title"":""A Corner in Wheat""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +In what year was the movie The Invisible Ray released ?,"db.movies.find({ ""title"": ""The Invisible Ray"" }, { ""year"": 1})" +In what language was the movie Everybody's Woman released?,"db.movies.find({ ""title"": ""Everybody's Woman"" }, { ""languages"": 1})" +How many audience reviews have been submitted for the movie The Trail of the Lonesome Pine ?,"db.movies.find({ ""title"": ""The Trail of the Lonesome Pine"" },{ ""tomatoes.viewer.numReviews"": 1 })" +Who is the lead actress of the movie Go West ?,"db.movies.find({""title"": ""Go West""}, {""cast"":{""$slice"": 1},""title"":1})" +What is the rating of the movie Theodora Goes Wild ?,"db.movies.find({ ""title"": ""Theodora Goes Wild"" }, { ""rated"": 1})" +who produced White Shadows?,"db.movies.find({""title"":""White Shadows""}, {""tomatoes.production"":1})" +what is the genre of Tarzan and His Mate?,"db.movies.find({""title"": ""Tarzan and His Mate""}, {""genres"": 1})" +who is the director that directed In Old Chicago?,"db.movies.find({""title"": ""In Old Chicago""}, {""directors"": 1})" +Can you share with me the names of the top-rated movies directed by David Fincher?,"db.movies.find({""directors"": 'David Fincher', ""imdb.rating"": {""$gt"": 8.5}})" +"What is the production company behind the movie Laugh, Clown, Laugh ?","db.movies.find({""title"": ""Laugh, Clown, Laugh""}, { ""tomatoes.production"": 1})" +What is the IMDB rating of the movie Shanghai Express ?,"db.movies.find({""title"": ""Shanghai Express""}, { ""imdb.rating"": 1})" +How many votes does the movie The Chechahcos have on IMDb?,"db.movies.find({""title"":""The Chechahcos""}, {""imdb.votes"":1})" +What is the production company behind the movie Elephant Boy ?,"db.movies.find({""title"": ""Elephant Boy""}, { ""tomatoes.production"": 1})" +What is the ID of the movie The General on IMDB?,"db.movies.find({""title"": ""The General""}, {""imdb.id"": 1})" +who wrote the screenplay for the film Bride of Frankenstein?,"db.movies.aggregate([ { ""$match"": { ""title"":""Bride of Frankenstein""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +Can you provide more information about the Rotten Tomatoes rating for the movie The Hunchback of Notre Dame?,"db.movies.find({""title"": ""The Hunchback of Notre Dame""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +the film The Wedding March starred who?,"db.movies.find({""title"": ""The Wedding March""}, {""cast"": 1})" +What is the Metacritic score of the movie Trouble in Paradise ?,"db.movies.find({ ""title"": ""Trouble in Paradise"" }, { ""metacritic"": 1})" +who wrote the screenplay for The Scarlet Empress?,"db.movies.aggregate([ { ""$match"": { ""title"":""The Scarlet Empress""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +What is the language of the film Queen Christina?,"db.movies.find({""title"":""Queen Christina""}, {""languages"":1})" +How did the audience and critics receive the film Tol'able David?,"db.movies.find({""title"":""Tol'able David""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the percentage of positive reviews among critics for the movie Queen Kelly ?,"db.movies.find({ ""title"": ""Queen Kelly"" },{ ""tomatoes.critic.meter"": 1 })" +In what year was the movie The Kid released ?,"db.movies.find({ ""title"": ""The Kid"" }, { ""year"": 1})" +which company produced Man of Aran?,"db.movies.find({""title"":""Man of Aran""}, {""tomatoes.production"":1})" +who was the film Modern Times written by?,"db.movies.find({""title"": ""Modern Times""}, {""writers"": 1})" +What is the rating of the movie The Dark Angel ?,"db.movies.find({ ""title"": ""The Dark Angel"" }, { ""rated"": 1})" +What is the running time of the movie Movie Crazy?,"db.movies.find({""title"":""Movie Crazy""}, {""runtime"":1})" +What languages are spoken in the movie Les Misèrables?,"db.movies.find({""title"":""Les Misèrables""}, {""languages"":1})" +who starred in the movie The Life of Emile Zola?,"db.movies.find({""title"": ""The Life of Emile Zola""}, {""cast"": 1})" +What are the movies directed by Alfred Hitchcock?,"db.movies.find({""directors"": ""Alfred Hitchcock""},{""title"":1})" +What is the imdbID and genre of the movie 'One Week'?,"db.movies.find({""title"": ""One Week""}, {""imdb.id"": 1, ""genres"": 1, ""_id"": 0})" +what is Sanders of the River imdb rating?,"db.movies.find({""title"": ""Sanders of the River""}, {""imdb.rating"": 1})" +Can you provide more information about the Rotten Tomatoes rating for the movie Twentieth Century?,"db.movies.find({""title"": ""Twentieth Century""}, { ""tomatoes.critic"": 1, ""tomatoes.viewer"": 1, ""tomatoes.consensus"": 1 })" +who produced the film Footlight Parade?,"db.movies.find({""title"":""Footlight Parade""}, {""tomatoes.production"":1})" +Can you provide a longer version of the movie She Done Him Wrong plot?,"db.movies.find({""title"":""She Done Him Wrong""}, {""fullplot"":1})" +What is the MongoDB document ID of the movie Mr. Deeds Goes to Town?,"db.movies.find({""title"": ""Mr. Deeds Goes to Town""}, {""_id"": 1})" +can you describe the plot of In Old Arizona?,"db.movies.find({""title"": ""In Old Arizona""}, {""plot"": 1})" +what is the genre of The World Moves On?,"db.movies.find({""title"": ""The World Moves On""}, {""genres"": 1})" +who produced the film The Count of Monte Cristo?,"db.movies.find({""title"":""The Count of Monte Cristo""}, {""tomatoes.production"":1})" +what is the plot for the movie Sanders of the River?,"db.movies.find({""title"": ""Sanders of the River""}, {""plot"": 1})" +In which countries was the movie Metropolis produced?,"db.movies.find({""title"":""Metropolis""}, {""countries"":1})" +who is the writer of It?,"db.movies.find({""title"": ""It""}, {""writers"": 1})" +how many awards did the movie Greed win?,"db.movies.find({""title"":""Greed""}, {""awards.wins"":1})" +what is the genre for the film Blacksmith Scene?,"db.movies.find({""title"": ""Blacksmith Scene""}, {""genres"": 1})" +what is the film Anthony Adverse about?,"db.movies.find({""title"": ""Anthony Adverse""}, {""plot"": 1})" +What is the IMDB rating 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""}, { ""imdb.rating"": 1})" +What is the website associated with the movie Man of Aran on Rotten Tomatoes?,"db.movies.find({""title"": ""Man of Aran""}, {""tomatoes.website"": 1})" +What is the IMDb rating for the movie Metropolis ?,"db.movies.find({""title"":""Metropolis""}, {""imdb.rating"":1})" +What is the Metacritic score of the movie The Beloved Vagabond ?,"db.movies.find({ ""title"": ""The Beloved Vagabond"" }, { ""metacritic"": 1})" +The Guardsman is written by this person?,"db.movies.find({""title"": ""The Guardsman""}, {""writers"": 1})" +what is the movie Frankenstein about?,"db.movies.find({""title"": ""Frankenstein""}, {""plot"": 1})" +what is the genre of Tabu: A Story of the South Seas?,"db.movies.find({""title"": ""Tabu: A Story of the South Seas""}, {""genres"": 1})" +What is the typical rating for all Ethan Coen movies in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Ethan Coen""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +What is the freshness score of the movie The Private Life of Don Juan on Rotten Tomatoes?,"db.movies.find({""title"": ""The Private Life of Don Juan""}, {""tomatoes.fresh"": 1})" +what was the genre of the movie It Happened One Night?,"db.movies.find({""title"": ""It Happened One Night""}, {""genres"": 1})" +what year was the movie Napoleon released?,"db.movies.find({""title"": ""Napoleon""}, {""year"": 1})" +who are the actors in Sisters of the Gion?,"db.movies.find({""title"": ""Sisters of the Gion""}, {""cast"": 1})" +What is the imdbID and genre of the movie 'The Jazz Singer'?,"db.movies.find({""title"": ""The Jazz Singer""}, {""imdb.id"": 1, ""genres"": 1, ""_id"": 0})" +who is the author of A Night at the Opera?,"db.movies.find({""title"": ""A Night at the Opera""}, {""writers"": 1})" +What is the box office revenue of the movie Toni ?,"db.movies.find({""title"": ""Toni""}, { ""tomatoes.boxOffice"": 1})" +What is the highest-rated movie directed by Ethan Coen on rotten tomatoes?,"db.movies.find({""directors"": ""Ethan Coen"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +What is the text representation of the awards won and nominations received by the movie The Story of Louis Pasteur?,"db.movies.find({""title"": ""The Story of Louis Pasteur""}, { ""awards.text"": 1})" +which company produced Little Miss Marker?,"db.movies.find({""title"":""Little Miss Marker""}, {""tomatoes.production"":1})" +What is the viewer rating for the movie Four Sons on Rotten Tomatoes?,"db.movies.find({""title"":""Four Sons""}, {""tomatoes.viewer.rating"":1})" +who produced the film The Crusades?,"db.movies.find({""title"":""The Crusades""}, {""tomatoes.production"":1})" +"the movie Regeneration, was written by who?","db.movies.find({""title"": ""Regeneration""}, {""writers"": 1})" +what is the full plot for the movie The Lower Depths?,"db.movies.find({""title"": ""The Lower Depths""}, {""fullplot"": 1})" +Who is the director of the movie Mèdchen in Uniform?,"db.movies.find({""title"": ""Mèdchen in Uniform""}, { ""directors"": 1})" +Who are the writers of the movie Pèpè le Moko ?,"db.movies.find({""title"": ""Pèpè le Moko""}, { ""writers"": 1})" +the movie Marked Woman was directed by who?,"db.movies.find({""title"": ""Marked Woman""}, {""directors"": 1})" +what is Harvest about in details?,"db.movies.find({""title"": ""Harvest""}, {""fullplot"": 1})" +who acted in the film It Happened One Night?,"db.movies.find({""title"": ""It Happened One Night""}, {""cast"": 1})" +In what year was the movie Pèpè le Moko released?,"db.movies.find({""title"":""Pèpè le Moko""}, {""year"":1})" +"which company produced the film Steamboat Bill, Jr.?","db.movies.find({""title"":""Steamboat Bill, Jr.""}, {""tomatoes.production"":1})" +the film Rembrandt starred which actors?,"db.movies.find({""title"": ""Rembrandt""}, {""cast"": 1})" +who is listed as director for Man with a Movie Camera?,"db.movies.find({""title"": ""Man with a Movie Camera""}, {""directors"": 1})" +who are the actors in the movie The Pearls of the Crown?,"db.movies.find({""title"": ""The Pearls of the Crown""}, {""cast"": 1})" +What is the IMDB rating of the movie Swing Time ?,"db.movies.find({""title"": ""Swing Time""}, { ""imdb.rating"": 1})" +How many comments have been posted by users on the movie The Awful Truth's page on the Mflix platform?,"db.movies.find({ ""title"": ""The Awful Truth"" }, { ""num_mflix_comments"": 1 })" +In what language was the movie Berkeley Square released?,"db.movies.find({ ""title"": ""Berkeley Square"" }, { ""languages"": 1})" +What is the production company behind the movie x?,"db.movies.find({""title"": ""Queen Kelly""}, { ""tomatoes.production"": 1})" +Who are the writers of the movie The Dark Angel ?,"db.movies.find({""title"": ""The Dark Angel""}, { ""writers"": 1})" +What is the MPAA rating of the movie The Big Trail?,"db.movies.find({""title"":""The Big Trail""}, {""rated"":1})" +Can you share with me the names of the top-rated movies directed by Yasujiro Ozu?,"db.movies.find({""directors"": 'Yasujiro Ozu', ""imdb.rating"": {""$gt"": 8.5}})" +In which countries was the movie Cleopatra produced?,"db.movies.find({""title"":""Cleopatra""}, {""countries"":1})" +who was the film The Mummy written by?,"db.movies.find({""title"": ""The Mummy""}, {""writers"": 1})" +"Salomè, is written by who?","db.movies.find({""title"": ""Salomè""}, {""writers"": 1})" +What are the genres associated with the movie Pèpè le Moko ?,"db.movies.find({ ""title"": ""Pèpè le Moko"" }, { ""genres"": 1})" +what is the full plot for The Four Horsemen of the Apocalypse?,"db.movies.find({""title"": ""The Four Horsemen of the Apocalypse""}, {""fullplot"": 1})" +What is the runtime and rating for the movie 'The Perils of Pauline'?,"db.movies.find({""title"": ""The Perils of Pauline""}, {""runtime"": 1, ""rated"": 1})" +what is the genre of The Big Parade?,"db.movies.find({""title"": ""The Big Parade""}, {""genres"": 1})" +who was the writer of the film The Crowd Roars?,"db.movies.find({""title"": ""The Crowd Roars""}, {""writers"": 1})" +What is the movie The Lives of a Bengal Lancer rating?,"db.movies.find({""title"":""The Lives of a Bengal Lancer""}, {""rated"":1})" +What is Stanley Kubrick's highest-rated movie on Rotten Tomatoes?,"db.movies.find({""directors"": ""Stanley Kubrick"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +What is the movie Three Smart Girls rating?,"db.movies.find({""title"":""Three Smart Girls""}, {""rated"":1})" +which company produced the film Three Smart Girls?,"db.movies.find({""title"":""Three Smart Girls""}, {""tomatoes.production"":1})" +who was the writer of Topaze?,"db.movies.find({""title"": ""Topaze""}, {""writers"": 1})" +"A Free Soul, was written by who?","db.movies.find({""title"": ""A Free Soul""}, {""writers"": 1})" +who was the movie Disraeli written by?,"db.movies.find({""title"": ""Disraeli""}, {""writers"": 1})" +"Skippy, is written by who?","db.movies.find({""title"": ""Skippy""}, {""writers"": 1})" +What is the production company of the movie The Divorcee?,"db.movies.find({""title"":""The Divorcee""}, {""tomatoes.production"":1})" +What is the critical reception of the movie Two Seconds?,"db.movies.find({""title"":""Two Seconds""}, {""tomatoes.critic"":1})" +Could you inform me of the total runtime of all Roberto Rossellini-directed movies?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Roberto Rossellini"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +What is the box office revenue of the movie Frankenstein ?,"db.movies.find({""title"": ""Frankenstein""}, { ""tomatoes.boxOffice"": 1})" +who wrote the film Mr. Deeds Goes to Town?,"db.movies.find({""title"": ""Mr. Deeds Goes to Town""}, {""writers"": 1})" +Was the movie Love Me Tonight well received by audiences and critics?,"db.movies.find({""title"":""Love Me Tonight""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What was the release date for the movie Dante's Inferno?,"db.movies.find({""title"":""Dante's Inferno""}, {""released"":1})" +who directed The Count of Monte Cristo?,"db.movies.find({""title"": ""The Count of Monte Cristo""}, {""directors"": 1})" +who acted in the movie It?,"db.movies.find({""title"": ""It""}, {""cast"": 1})" +"Has City Lights won any awards? If so, which ones?","db.movies.find({""title"":""City Lights"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +Can you tell me which movie that David Fincher directed has the shortest running time?,"db.movies.find({""directors"":""David Fincher""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +What is the mean rating of all the Joel Coen films in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Joel Coen""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +what is the genre for the film M?,"db.movies.find({""title"": ""M""}, {""genres"": 1})" +what is the genre of The Trail of the Lonesome Pine?,"db.movies.find({""title"": ""The Trail of the Lonesome Pine""}, {""genres"": 1})" +How many audience reviews have been submitted for the movie The Last of the Mohicans?,"db.movies.find({ ""title"": ""The Last of the Mohicans"" }, { ""tomatoes.viewer.numReviews"": 1 })" +What is the critical reception of the movie Disraeli?,"db.movies.find({""title"":""Disraeli""}, {""tomatoes.critic"":1})" +"How long, in total, are all the movies that Abbas Kiarostami has directed?","db.movies.aggregate([{ ""$match"": { ""directors"": ""Abbas Kiarostami"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +who is the writer of the movie The Four Horsemen of the Apocalypse?,"db.movies.find({""title"": ""The Four Horsemen of the Apocalypse""}, {""writers"": 1})" +who acted in the movie The Son of Kong?,"db.movies.find({""title"": ""The Son of Kong""}, {""cast"": 1})" +what is the full plot for the movie Final Accord?,"db.movies.find({""title"": ""Final Accord""}, {""fullplot"": 1})" +What is the movie The Big Trail about? Can you provide a brief summary?,"db.movies.find({""title"":""The Big Trail""}, {""plot"":1})" +which person wrote Man of Aran?,"db.movies.find({""title"": ""Man of Aran""}, {""writers"": 1})" +How many comments have been posted by users on the movie The Phantom of the Opera's page on the Mflix platform?,"db.movies.find({ ""title"": ""The Phantom of the Opera"" }, { ""num_mflix_comments"": 1 })" +how has The Four Horsemen of the Apocalypse been recieved by critics and audience?,"db.movies.find({""title"":""The Four Horsemen of the Apocalypse""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What languages are spoken in the movie Broken Lullaby?,"db.movies.find({""title"":""Broken Lullaby""}, {""languages"":1})" +"Going Hollywood, is written by who?","db.movies.find({""title"": ""Going Hollywood""}, {""writers"": 1})" +who is the writer of the film Broadway Melody of 1936?,"db.movies.find({""title"": ""Broadway Melody of 1936""}, {""writers"": 1})" +What is the Metacritic score of the movie Lloyd's of London ?,"db.movies.find({ ""title"": ""Lloyd's of London"" }, { ""metacritic"": 1})" +What is the rating of the movie The Thief of Bagdad ?,"db.movies.find({ ""title"": ""The Thief of Bagdad"" }, { ""rated"": 1})" +What are the genres this movie The Black Pirate belongs to?,"db.movies.find({""title"":""The Black Pirate""}, {""genres"":1})" +who is the writer of Les Misèrables?,"db.movies.find({""title"": ""Les Misèrables""}, {""writers"": 1})" +who are the actors in the movie Bad Girl?,"db.movies.find({""title"": ""Bad Girl""}, {""cast"": 1})" +When was the information last updated for the movie Mayerling ?,"db.movies.find({ ""title"": ""Mayerling"" },{ ""lastupdated"": 1 })" +What is the imdbID and genre of the movie 'Bad Girl'?,"db.movies.find({""title"": ""Bad Girl""}, {""imdb.id"": 1, ""genres"": 1, ""_id"": 0})" +What is the meter score of the movie A Story of Floating Weeds according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""A Story of Floating Weeds""}, {""tomatoes.viewer.meter"": 1})" +who is the director that directed City Lights?,"db.movies.find({""title"": ""City Lights""}, {""directors"": 1})" +the film Smilin' Through was directed by who?,"db.movies.find({""title"": ""Smilin' Through""}, {""directors"": 1})" +who is the writer of the film Battleship Potemkin?,"db.movies.find({""title"": ""Battleship Potemkin""}, {""writers"": 1})" +What is the plot summary of the movie The Music Box ?,"db.movies.find({ ""title"": ""The Music Box"" }, { ""plot"": 1})" +How many viewer reviews did the movie Blacksmith Scene receive on Rotten Tomatoes?,"db.movies.find({""title"":""Blacksmith Scene""}, {""tomatoes.viewer.numReviews"":1})" +How many awards did the movie win The Song of Night ?,"db.movies.find({ ""title"": ""The Song of Night"" },{ ""awards.wins"": 1 })" +What is the average rating of movies with the genre 'Drama'?,"db.movies.aggregate([{""$match"": {""genres"": ""Drama""}}, {""$group"": { ""_id"": ""null"", ""avgRating"": {""$avg"": ""$imdb.rating"":}}}])" +the movie The Prisoner of Shark Island starred which actors?,"db.movies.find({""title"": ""The Prisoner of Shark Island""}, {""cast"": 1})" +How many comments have been posted by users on the movie Comradeship's page on the Mflix platform?,"db.movies.find({ ""title"": ""Comradeship"" }, { ""num_mflix_comments"": 1 })" +what was the genre of the film Comradeship?,"db.movies.find({""title"": ""Comradeship""}, {""genres"": 1})" +what is the full plot for Broken Lullaby?,"db.movies.find({""title"": ""Broken Lullaby""}, {""fullplot"": 1})" +what is the genre for the movie The Blue Light?,"db.movies.find({""title"": ""The Blue Light""}, {""genres"": 1})" +the movie Captains Courageous starred who?,"db.movies.find({""title"": ""Captains Courageous""}, {""cast"": 1})" +How did the audience and critics receive the film Regeneration?,"db.movies.find({""title"":""Regeneration""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +who produced the movie Earth?,"db.movies.find({""title"":""Earth""}, {""tomatoes.production"":1})" +What is the viewer rating for the movie Bride of Frankenstein on Rotten Tomatoes?,"db.movies.find({""title"":""Bride of Frankenstein""}, {""tomatoes.viewer.rating"":1})" +who is the director that directed Stage Door?,"db.movies.find({""title"": ""Stage Door""}, {""directors"": 1})" +What are the countries associated with the movie Where Are My Children? ?,"db.movies.find({""title"": ""Where Are My Children?""}, {""countries"": 1})" +What is the movie In the Land of the Head Hunters about? Can you provide a brief summary?,"db.movies.find({""title"":""In the Land of the Head Hunters""}, {""plot"":1})" +The Big Parade is a film written by this person?,"db.movies.find({""title"": ""The Big Parade""}, {""writers"": 1})" +How many audience reviews have been submitted for the movie High and Dizzy ?,"db.movies.find({ ""title"": ""High and Dizzy"" },{ ""tomatoes.viewer.numReviews"": 1 })" +What are the genres associated with the movie The Hunchback of Notre Dame ?,"db.movies.find({ ""title"": ""The Hunchback of Notre Dame"" }, { ""genres"": 1})" +what genre is the film It's a Gift?,"db.movies.find({""title"": ""It's a Gift""}, {""genres"": 1})" +what is the film Romance description ?,"db.movies.find({""title"": ""Romance""}, {""plot"": 1})" +who was the writer of the movie The Son of Kong?,"db.movies.find({""title"": ""The Son of Kong""}, {""writers"": 1})" +what was the genre of Tol'able David?,"db.movies.find({""title"": ""Tol'able David""}, {""genres"": 1})" +what was the genre of the movie The Black Cat?,"db.movies.find({""title"": ""The Black Cat""}, {""genres"": 1})" +What is the full plot summary of the movie The Broadway Melody ?,"db.movies.find({""title"": ""The Broadway Melody""}, {""plot"": 1})" +what is Broadway Bill about in details?,"db.movies.find({""title"": ""Broadway Bill""}, {""fullplot"": 1})" +What is the runtime of the movie Mary of Scotland ?,"db.movies.find({""title"": ""Mary of Scotland""}, { ""runtime"": 1})" +How many award nominations did the movie receive Salomè ?,"db.movies.find({ ""title"": ""Salomè"" },{ ""awards.nominations"": 1 })" +"Has Mary of Scotland won any awards? If so, which ones?","db.movies.find({""title"":""Mary of Scotland"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +what is the full plot for The Son of the Sheik?,"db.movies.find({""title"": ""The Son of the Sheik""}, {""fullplot"": 1})" +What is the plot summary of the movie The General ?,"db.movies.find({ ""title"": ""The General"" }, { ""plot"": 1})" +When was the information last updated for the movie Steamboat Willie ?,"db.movies.find({ ""title"": ""Steamboat Willie"" },{ ""lastupdated"": 1 })" +What is the consensus among critics about the movie King Kong ?,"db.movies.find({""title"": ""King Kong""}, {""tomatoes.consensus"": 1})" +what is the full plot for the movie In Old Arizona?,"db.movies.find({""title"": ""In Old Arizona""}, {""fullplot"": 1})" +what sort of film is Ruggles of Red Gap?,"db.movies.find({""title"": ""Ruggles of Red Gap""}, {""genres"": 1})" +How long is the movie Clash of the Wolves in minutes?,"db.movies.find({""title"":""Clash of the Wolves""}, {""runtime"":1})" +what was the genre of the film The Barretts of Wimpole Street?,"db.movies.find({""title"": ""The Barretts of Wimpole Street""}, {""genres"": 1})" +What is the consensus among critics about the movie The Cameraman ?,"db.movies.find({""title"": ""The Cameraman""}, {""tomatoes.consensus"": 1})" +How did the audience and critics receive Steamboat Willie?,"db.movies.find({""title"":""Steamboat Willie""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +In what year was the movie The Poor Little Rich Girl released?,"db.movies.find({""title"":""The Poor Little Rich Girl""}, {""year"":1})" +what genre of film is The Devil to Pay!?,"db.movies.find({""title"": ""The Devil to Pay!""}, {""genres"": 1})" +what is the full plot for the film The Informer?,"db.movies.find({""title"": ""The Informer""}, {""fullplot"": 1})" +What is the rating of the movie She according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""She""}, {""tomatoes.viewer.rating"": 1})" +"the film I Was Born, But..., was written by who?","db.movies.find({""title"": ""I Was Born, But...""}, {""writers"": 1})" +what year was Sunrise released?,"db.movies.find({""title"": ""Sunrise""}, {""year"": 1})" +what is the full plot for the movie Maria Chapdelaine?,"db.movies.find({""title"": ""Maria Chapdelaine""}, {""fullplot"": 1})" +What is the IMDb rating for the movie The Son of Kong?,"db.movies.find({""title"": ""The Son of Kong""}, {""imdb.rating"": 1})" +What is the MPAA rating of The Freshman?,"db.movies.find({""title"":""The Freshman""}, {""rated"":1})" +What is the audience rating of the movie Now or Never ?,"db.movies.find({ ""title"": ""Now or Never"" },{ ""tomatoes.viewer.rating"": 1 })" +what is The Count of Monte Cristo imdb rating?,"db.movies.find({""title"": ""The Count of Monte Cristo""}, {""imdb.rating"": 1})" +What is the box office revenue for the movie 'Camille'?,"db.movies.find({""title"": ""Camille""}, {""tomatoes.boxOffice"": 1})" +what is the movie The Great Ziegfeld imdb rating?,"db.movies.find({""title"": ""The Great Ziegfeld""}, {""imdb.rating"": 1})" +In what year was the movie Where Are My Children? released ?,"db.movies.find({ ""title"": ""Where Are My Children?"" }, { ""year"": 1})" +What is the running time of the movie High and Dizzy?,"db.movies.find({""title"":""High and Dizzy""}, {""runtime"":1})" +How many movies has Francis Ford Coppola directed in total?,"db.movies.countDocuments({""directors"":""Francis Ford Coppola""})" +What is the movie Gertie the Dinosaur rating?,"db.movies.find({""title"":""Gertie the Dinosaur""}, {""rated"":1})" +What is the runtime of the movie Beau Geste ?,"db.movies.find({""title"": ""Beau Geste""}, { ""runtime"": 1})" +What type of media is For Heaven's Sake?,"db.movies.find({ ""title"": ""For Heaven's Sake"" }, { ""type"": 1})" +Which films directed by Sergei Eisenstein have the highest ratings?,"db.movies.find({""directors"": 'Sergei Eisenstein', ""imdb.rating"": {""$gt"": 8.5}})" +how many awards did Le grand jeu win?,"db.movies.find({""title"":""Le grand jeu""}, {""awards.wins"":1})" +Can you provide a longer version of the movie Red Dust plot?,"db.movies.find({""title"":""Red Dust""}, {""fullplot"":1})" +What is the IMDb rating for Forbidden?,"db.movies.find({""title"": ""Forbidden""}, {""imdb.rating"": 1})" +who was the movie Flying Down to Rio written by?,"db.movies.find({""title"": ""Flying Down to Rio""}, {""writers"": 1})" +"What is the general rating of Roman Polanski's films in the database, calculated as an average?","db.movies.aggregate([{""$match"": {""directors"":""Roman Polanski""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +What is the movie The Perils of Pauline rating?,"db.movies.find({""title"":""The Perils of Pauline""}, {""rated"":1})" +who wrote the movie King Solomon's Mines?,"db.movies.find({""title"": ""King Solomon's Mines""}, {""writers"": 1})" +What is the IMDb ID for the movie The Broadway Melody?,"db.movies.find({""title"":""The Broadway Melody""}, {""imdb.id"":1})" +"Has the film The Garden of Allah won any awards? If so, which ones?","db.movies.find({""title"":""The Garden of Allah"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What is the Tomatometer score 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"" },{ ""tomatoes.critic.meter"": 1 })" +can you describe the plot of Lost Horizon?,"db.movies.find({""title"": ""Lost Horizon""}, {""plot"": 1})" +What is the imdbID and genre of the movie 'The Navigator'?,"db.movies.find({""title"": ""The Navigator""}, {""imdb.id"": 1, ""genres"": 1, ""_id"": 0})" +Can you tell me which movie that Satyajit Ray directed has the shortest running time?,"db.movies.find({""directors"":""Satyajit Ray""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +what sort of movie is Stage Door?,"db.movies.find({""title"": ""Stage Door""}, {""genres"": 1})" +what genre of movie is The Lost Patrol?,"db.movies.find({""title"": ""The Lost Patrol""}, {""genres"": 1})" +What is the IMDb ID for the movie Wife! Be Like a Rose!?,"db.movies.find({""title"":""Wife! Be Like a Rose!""}, {""imdb.id"":1})" +"What are the genres associated with the movie I Was Born, But... ?","db.movies.find({ ""title"": ""I Was Born, But..."" }, { ""genres"": 1})" +What is the IMDB rating of the movie Romeo and Juliet ?,"db.movies.find({""title"": ""Romeo and Juliet""}, { ""imdb.rating"": 1})" +What is the quantity of movies that Robert Bresson has directed?,"db.movies.countDocuments({""directors"":""Robert Bresson""})" +Which movie genre does Louis Malle mainly specialize in as a director?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Louis Malle"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +Which movies were helmed by Francois Truffaut and came out in the 1990s?,"db.movies.find({""directors"": 'Francois Truffaut', ""year"": {""$gte"": 1990, ""$lt"": 2000}})" +what is A Midsummer Night's Dream description?,"db.movies.find({""title"": ""A Midsummer Night's Dream""}, {""plot"": 1})" +what is the plot for the film I Am a Fugitive from a Chain Gang?,"db.movies.find({""title"": ""I Am a Fugitive from a Chain Gang""}, {""plot"": 1})" +What is the MongoDB document ID of the movie Regeneration?,"db.movies.find({""title"": ""Regeneration""}, {""_id"": 1})" +What is the production company behind the movie Anna Karenina ?,"db.movies.find({""title"": ""Anna Karenina""}, { ""tomatoes.production"": 1})" +who is the writer of the film Daughter of Shanghai?,"db.movies.find({""title"": ""Daughter of Shanghai""}, {""writers"": 1})" +What is the website associated with the movie Trouble in Paradise on Rotten Tomatoes?,"db.movies.find({""title"": ""Trouble in Paradise""}, {""tomatoes.website"": 1})" +Who is the lead actor of the movie Secret Agent ?,"db.movies.find({""title"": ""Secret Agent""}, {""cast"":{""$slice"": 1},""title"":1})" +who is the director of Love Me Tonight?,"db.movies.find({""title"": ""Love Me Tonight""}, {""directors"": 1})" +Who are the actors that appear in the movie Pèpè le Moko ?,"db.movies.find({ ""title"": ""Pèpè le Moko"" },{ ""cast"": 1 })" +what is the genre of Twentieth Century?,"db.movies.find({""title"": ""Twentieth Century""}, {""genres"": 1})" +what is The Son of the Sheik description?,"db.movies.find({""title"": ""The Son of the Sheik""}, {""plot"": 1})" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie The Garden of Allah ?,"db.movies.find({""title"":""The Garden of Allah""}, {""tomatoes.viewer.meter"":1})" +How many reviews did the movie Sherlock Jr. receive on Rotten Tomatoes?,"db.movies.find({""title"":""Sherlock Jr.""}, {""tomatoes.viewer.numReviews"": 1,""tomatoes.critic.numReviews"":1})" +the film A Story of Floating Weeds was directed by who?,"db.movies.find({""title"": ""A Story of Floating Weeds""}, {""directors"": 1})" +what genre is the film Now or Never?,"db.movies.find({""title"": ""Now or Never""}, {""genres"": 1})" +What is the runtime and rating for the movie 'The Unknown'?,"db.movies.find({""title"": ""The Unknown""}, {""runtime"": 1, ""rated"": 1})" +What is the meter score of the movie The Last Command according to viewers on Rotten Tomatoes?,"db.movies.find({""title"": ""The Last Command""}, {""tomatoes.viewer.meter"": 1})" +What is the runtime and rating for the movie 'The Great Train Robbery'?,"db.movies.find({""title"": ""The Great Train Robbery""}, {""runtime"": 1, ""rated"": 1})" +Can you provide a longer version of the movie The Wedding March plot?,"db.movies.find({""title"":""The Wedding March""}, {""fullplot"":1})" +what is the movie Grand Hotel description ?,"db.movies.find({""title"": ""Grand Hotel""}, {""plot"": 1})" +what is the plot for the movie San Francisco?,"db.movies.find({""title"": ""San Francisco""}, {""plot"": 1})" +"I Was Born, But... is a film written by this person?","db.movies.find({""title"": ""I Was Born, But...""}, {""writers"": 1})" +who starred in the film Sisters of the Gion?,"db.movies.find({""title"": ""Sisters of the Gion""}, {""cast"": 1})" +What is the running time of the movie Toni?,"db.movies.find({""title"":""Toni""}, {""runtime"":1})" +Who are the main actors/actresses in the movie One Night of Love?,"db.movies.find({""title"":""One Night of Love""}, {""cast"":1})" +What is the runtime and rating for the movie 'The Blue Light'?,"db.movies.find({""title"": ""The Blue Light""}, {""runtime"": 1, ""rated"": 1})" +Who is the lead actor of the movie The Prince and the Pauper ?,"db.movies.find({""title"": ""The Prince and the Pauper""}, {""cast"":{""$slice"": 1},""title"":1})" +what was the release date of David Golder?,"db.movies.find({""title"": ""David Golder""}, {""released"": 1})" +Can you share with me the film genres that were helmed by Darren Aronofsky?,"db.movies.distinct(""genres"", { ""directors"": ""Darren Aronofsky"" })" +who produced the movie In Old Chicago?,"db.movies.find({""title"":""In Old Chicago""}, {""tomatoes.production"":1})" +What is the critical reception of the movie Sherlock Jr.?,"db.movies.find({""title"":""Sherlock Jr.""}, {""tomatoes.critic"":1})" +what type of movie is Upstream?,"db.movies.find({""title"": ""Upstream""}, {""genres"": 1})" +"What is the runtime and rating for the movie 'Steamboat Bill, Jr.'?","db.movies.find({""title"": ""Steamboat Bill, Jr.""}, {""runtime"": 1, ""rated"": 1})" +Who are the starring actors/actresses in the movie Tarzan the Ape Man?,"db.movies.find({""title"":""Tarzan the Ape Man""}, {""cast"":1})" +What are the genres associated with the movie Trouble in Paradise ?,"db.movies.find({ ""title"": ""Trouble in Paradise"" }, { ""genres"": 1})" +When was the information last updated for the movie Topaze ?,"db.movies.find({ ""title"": ""Topaze"" },{ ""lastupdated"": 1 })" +how has One Night of Love been recieved by critics and audience?,"db.movies.find({""title"":""One Night of Love""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +Can you give me a brief summary of the movie The Green Pastures plot?,"db.movies.find({""title"":""The Green Pastures""}, {""plot"":1})" +what type of movie is Gold Diggers of 1935?,"db.movies.find({""title"": ""Gold Diggers of 1935""}, {""genres"": 1})" +Can you provide more information about the IMDb rating for the movie King Kong ?,"db.movies.find({""title"":""King Kong""}, {""imdb"":1})" +What is the production company behind the movie Gertie the Dinosaur ?,"db.movies.find({""title"": ""Gertie the Dinosaur""}, { ""tomatoes.production"": 1})" +how has The Birth of a Nation been recieved by critics and audience?,"db.movies.find({""title"":""The Birth of a Nation""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +What is the MPAA rating of the film A Story of Floating Weeds?,"db.movies.find({""title"":""A Story of Floating Weeds""}, {""rated"":1})" +can you describe the plot of è Nous la Libertè?,"db.movies.find({""title"": ""è Nous la Libertè""}, {""plot"": 1})" +the movie Topaze was directed by who?,"db.movies.find({""title"": ""Topaze""}, {""directors"": 1})" +How many audience reviews have been submitted for the movie Pandora's Box ?,"db.movies.find({ ""title"": ""Pandora's Box"" },{ ""tomatoes.viewer.numReviews"": 1 })" +What is the text description of the movie Seven Chances awards?,"db.movies.find({""title"":""Seven Chances""}, {""awards.text"":1})" +"Has the movie Cavalcade won any awards? If so, which ones?","db.movies.find({""title"":""Cavalcade"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +What is the language of the movie Zero for Conduct?,"db.movies.find({""title"":""Zero for Conduct""}, {""languages"":1})" +who produced the film It?,"db.movies.find({""title"":""It""}, {""tomatoes.production"":1})" +the movie It's a Gift starred which actors?,"db.movies.find({""title"": ""It's a Gift""}, {""cast"": 1})" +Who is the lead actor of the movie Three Smart Girls ?,"db.movies.find({""title"": ""Three Smart Girls""}, {""cast"":{""$slice"": 1},""title"":1})" +When was the movie A Farewell to Arms released?,"db.movies.find({""title"":""A Farewell to Arms""}, {""released"":1})" +What is the average score assigned to all Louis Malle movies in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Louis Malle""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +"what is the film Laugh, Clown, Laugh about?","db.movies.find({""title"": ""Laugh, Clown, Laugh""}, {""plot"": 1})" +What are the genres associated with the movie She ?,"db.movies.find({ ""title"": ""She"" }, { ""genres"": 1})" +What is the imdbID and year of release for the movie with a title of 'Curly Top'?,"db.movies.find({""title"": ""Curly Top""}, {""imdb.id"": 1, ""year"": 1, ""_id"": 0})" +What is the running time of Red Dust?,"db.movies.find({""title"":""Red Dust""}, {""runtime"":1})" +What is the MongoDB document ID of the movie Wild Oranges?,"db.movies.find({""title"": ""Wild Oranges""}, {""_id"": 1})" +Can you name the movie genres that Yasujiro Ozu has directed?,"db.movies.distinct(""genres"", { ""directors"": ""Yasujiro Ozu"" })" +What is the full plot summary of the movie Tabu: A Story of the South Seas ?,"db.movies.find({""title"": ""Tabu: A Story of the South Seas""}, {""plot"": 1})" +what genre is The Divine Lady?,"db.movies.find({""title"": ""The Divine Lady""}, {""genres"": 1})" +who was the writer of the movie Swedenhielms Family?,"db.movies.find({""title"": ""Swedenhielms Family""}, {""writers"": 1})" +who is the director that directed The Story of a Cheat?,"db.movies.find({""title"": ""The Story of a Cheat""}, {""directors"": 1})" +Can you tell me which films were helmed by Woody Allen?,"db.movies.find({""directors"": ""Woody Allen""},{""title"":1})" +who produced Metropolis?,"db.movies.find({""title"":""Metropolis""}, {""tomatoes.production"":1})" +"Has the film Nanook of the North won any awards? If so, which ones?","db.movies.find({""title"":""Nanook of the North"",""awards.wins"": {""$gt"": 0}}, {""awards.text"": 1})" +which company produced the movie Metropolis?,"db.movies.find({""title"":""Metropolis""}, {""tomatoes.production"":1})" +What are the highest-rated movies directed by Yasujiro Ozu?,"db.movies.find({""directors"": 'Yasujiro Ozu', ""imdb.rating"": {""$gt"": 8.5}})" +Cops is a movie written by this person?,"db.movies.find({""title"": ""Cops""}, {""writers"": 1})" +What is the box office revenue for the movie 'Smilin' Through'?,"db.movies.find({""title"": ""Smilin' Through""}, {""tomatoes.boxOffice"": 1})" +how many awards did the movie The Blue Light win?,"db.movies.find({""title"":""The Blue Light""}, {""awards.wins"":1})" +how many awards did the film The Lost World win?,"db.movies.find({""title"":""The Lost World""}, {""awards.wins"":1})" +who wrote the movie Within Our Gates?,"db.movies.find({""title"": ""Within Our Gates""}, {""writers"": 1})" +what was the release year of the movie Zero for Conduct?,"db.movies.find({""title"": ""Zero for Conduct""}, {""year"": 1})" +what year was Chapayev released?,"db.movies.find({""title"": ""Chapayev""}, {""year"": 1})" +What type of movie is Children in the Wind ?,"db.movies.find({""title"":""Children in the Wind""}, {""genres"":1})" +what is the full plot for the film Regeneration?,"db.movies.find({""title"": ""Regeneration""}, {""fullplot"": 1})" +How many viewer reviews did the movie Who Killed Cock Robin? receive on Rotten Tomatoes?,"db.movies.find({""title"":""Who Killed Cock Robin?""}, {""tomatoes.viewer.numReviews"":1})" +who produced The Big Parade?,"db.movies.find({""title"":""The Big Parade""}, {""tomatoes.production"":1})" +how many awards did the film A Damsel in Distress win?,"db.movies.find({""title"":""A Damsel in Distress""}, {""awards.wins"":1})" +Which Claude Chabrol-directed movie has the highest score on Rotten Tomatoes?,"db.movies.find({""directors"": ""Claude Chabrol"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +what genre is the movie This Is My Affair?,"db.movies.find({""title"": ""This Is My Affair""}, {""genres"": 1})" +what is the movie The Great Train Robbery about in details?,"db.movies.find({""title"": ""The Great Train Robbery""}, {""fullplot"": 1})" +How many comments have been posted by users on the movie The Saphead's page on the Mflix platform?,"db.movies.find({ ""title"": ""The Saphead"" }, { ""num_mflix_comments"": 1 })" +How many audience reviews have been submitted for the movie The Four Horsemen of the Apocalypse ?,"db.movies.find({ ""title"": ""The Four Horsemen of the Apocalypse"" },{ ""tomatoes.viewer.numReviews"": 1 })" +"the film Swing Time, was written by who?","db.movies.find({""title"": ""Swing Time""}, {""writers"": 1})" +Can you tell me how many movies Roman Polanski directed for each year they were released?,"db.movies.aggregate([{ $match: { ""directors"": ""Roman Polanski"" }},{""$group"": { ""_id"": ""$year"", ""count"": {""$sum"": 1}}}])" +who directed the movie For Heaven's Sake?,"db.movies.find({""title"": ""For Heaven's Sake""}, {""directors"": 1})" +what year was The Cheat released?,"db.movies.find({""title"": ""The Cheat""}, {""year"": 1})" +What type of media is Death Takes a Holiday?,"db.movies.find({ ""title"": ""Death Takes a Holiday"" }, { ""type"": 1})" +who acted in the movie Queen Kelly?,"db.movies.find({""title"": ""Queen Kelly""}, {""cast"": 1})" +What is the overall length of all movies that Roberto Rossellini has directed?,"db.movies.aggregate([{ ""$match"": { ""directors"": ""Roberto Rossellini"" } }, { ""$group"": { ""_id"": null, ""totalRuntime"": { $sum: ""$runtime"" } } }])" +which person wrote the film Death Takes a Holiday?,"db.movies.find({""title"": ""Death Takes a Holiday""}, {""writers"": 1})" +What is the IMDb rating for the film The Life of Emile Zola?,"db.movies.find({""title"": ""The Life of Emile Zola""}, {""imdb.rating"": 1})" +Snow White and the Seven Dwarfs is written by this person?,"db.movies.find({""title"": ""Snow White and the Seven Dwarfs""}, {""writers"": 1})" +the movie King Kong was directed by who?,"db.movies.find({""title"": ""King Kong""}, {""directors"": 1})" +What is the production company of the film They Won't Forget?,"db.movies.find({""title"":""They Won't Forget""}, {""tomatoes.production"":1})" +Can you share with me the film genres that were helmed by Alain Resnais?,"db.movies.distinct(""genres"", { ""directors"": ""Alain Resnais"" })" +who directed the movie The Gay Divorcee?,"db.movies.find({""title"": ""The Gay Divorcee""}, {""directors"": 1})" +what is the movie Trouble in Paradise about?,"db.movies.find({""title"": ""Trouble in Paradise""}, {""plot"": 1})" +How long is the runtime of the movie Les Misèrables ?,"db.movies.find({""title"":""Les Misèrables""}, {""runtime"":1})" +who's the director of Murders in the Rue Morgue?,"db.movies.find({""title"": ""Murders in the Rue Morgue""}, {""directors"": 1})" +Can you name the movie genres that Louis Malle has directed?,"db.movies.distinct(""genres"", { ""directors"": ""Louis Malle"" })" +Can you provide more information about the languages spoken in the movie Cops ?,"db.movies.find({""title"":""Cops""}, {""languages"":1})" +What is the Tomatometer score of the movie City Lights ?,"db.movies.find({ ""title"": ""City Lights"" },{ ""tomatoes.critic.meter"": 1 })" +What is the Tomatometer score of the movie The Story of a Cheat ?,"db.movies.find({ ""title"": ""The Story of a Cheat"" },{ ""tomatoes.critic.meter"": 1 })" +what was the release date of the film The Good Earth?,"db.movies.find({""title"": ""The Good Earth""}, {""released"": 1})" +the film Baby Face was directed by who?,"db.movies.find({""title"": ""Baby Face""}, {""directors"": 1})" +what sort of film is Go West?,"db.movies.find({""title"": ""Go West""}, {""genres"": 1})" +who directed the movie Men Without Women?,"db.movies.find({""title"": ""Men Without Women""}, {""directors"": 1})" +who is the author of Triumph of the Will?,"db.movies.find({""title"": ""Triumph of the Will""}, {""writers"": 1})" +When was the movie Broken Lullaby released in theaters?,"db.movies.find({""title"": ""Broken Lullaby""}, {""released"": 1})" +Which cinematic productions were directed by Michelangelo Antonioni?,"db.movies.find({""directors"": ""Michelangelo Antonioni""},{""title"":1})" +Who are the main actors in The Prisoner of Shark Island ?,"db.movies.find({ ""title"": ""The Prisoner of Shark Island"" }, { ""cast"": 1})" +How did the audience and critics receive the movie King Kong?,"db.movies.find({""title"":""King Kong""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +who is the writer of the movie Carnival in Flanders?,"db.movies.find({""title"": ""Carnival in Flanders""}, {""writers"": 1})" +what type of movie is Payment Deferred?,"db.movies.find({""title"": ""Payment Deferred""}, {""genres"": 1})" +What is the runtime and rating for the movie 'Payment Deferred'?,"db.movies.find({""title"": ""Payment Deferred""}, {""runtime"": 1, ""rated"": 1})" +What is the critical reception of the movie The Broadway Melody?,"db.movies.find({""title"":""The Broadway Melody""}, {""tomatoes.critic"":1})" +"How many votes did the movie Winsor McCay, the Famous Cartoonist of the N.Y. Herald and His Moving Comics receive on IMDB?","db.movies.find({""title"": ""Winsor McCay, the Famous Cartoonist of the N.Y. Herald and His Moving Comics""}, { ""imdb.votes"": 1})" +what was the release year of the movie Der Kaiser von Kalifornien?,"db.movies.find({""title"": ""Der Kaiser von Kalifornien""}, {""year"": 1})" +what is the film A Story of Floating Weeds imdb rating?,"db.movies.find({""title"": ""A Story of Floating Weeds""}, {""imdb.rating"": 1})" +What is the consensus among critics about the movie The Life of Emile Zola?,"db.movies.find({""title"": ""The Life of Emile Zola""}, { ""tomatoes.consensus"": 1})" +When was the information about the movie Greed last updated?,"db.movies.find({ ""title"": ""Greed"" }, { ""lastupdated"": 1})" +"Tol'able David, was written by who?","db.movies.find({""title"": ""Tol'able David""}, {""writers"": 1})" +who was the movie The Good Earth written by?,"db.movies.find({""title"": ""The Good Earth""}, {""writers"": 1})" +How many comments have been posted by users on the movie Maria Chapdelaine's page on the Mflix platform?,"db.movies.find({ ""title"": ""Maria Chapdelaine"" }, { ""num_mflix_comments"": 1 })" +which company produced the film The Spanish Earth?,"db.movies.find({""title"":""The Spanish Earth""}, {""tomatoes.production"":1})" +What is the production company of the movie White Shadows?,"db.movies.find({""title"":""White Shadows""}, {""tomatoes.production"":1})" +who starred in The Man Who Knew Too Much?,"db.movies.find({""title"": ""The Man Who Knew Too Much""}, {""cast"": 1})" +What's the title of the Spike Lee movie with the longest runtime?,"db.movies.find({""directors"":""Spike Lee""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +who wrote the movie Wild Oranges?,"db.movies.find({""title"": ""Wild Oranges""}, {""writers"": 1})" +what is the genre for the film Curly Top?,"db.movies.find({""title"": ""Curly Top""}, {""genres"": 1})" +Can you provide a longer version of the movie The Front Page plot?,"db.movies.find({""title"":""The Front Page""}, {""fullplot"":1})" +"Naughty Marietta, was written by who?","db.movies.find({""title"": ""Naughty Marietta""}, {""writers"": 1})" +What is the production company behind the movie x?,"db.movies.find({""title"": ""The Invisible Ray""}, { ""tomatoes.production"": 1})" +what is Everybody's Woman about in details?,"db.movies.find({""title"": ""Everybody's Woman""}, {""fullplot"": 1})" +who stars in The Good Earth?,"db.movies.find({""title"": ""The Good Earth""}, {""cast"": 1})" +What is the Rotten Tomatoes meter rating for the viewer reviews of the movie Sherlock Jr. ?,"db.movies.find({""title"":""Sherlock Jr.""}, {""tomatoes.viewer.meter"":1})" +which company produced The Story of Louis Pasteur?,"db.movies.find({""title"":""The Story of Louis Pasteur""}, {""tomatoes.production"":1})" +who was the film The Charge of the Light Brigade written by?,"db.movies.find({""title"": ""The Charge of the Light Brigade""}, {""writers"": 1})" +what sort of film is Dr. Jekyll and Mr. Hyde?,"db.movies.find({""title"": ""Dr. Jekyll and Mr. Hyde""}, {""genres"": 1})" +what type of film is Anthony Adverse?,"db.movies.find({""title"": ""Anthony Adverse""}, {""genres"": 1})" +Which actor has the most frequent appearances in Abbas Kiarostami's directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Abbas Kiarostami"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +what was the release year of the movie Hallelujah?,"db.movies.find({""title"": ""Hallelujah""}, {""year"": 1})" +who acted in the film Come and Get It?,"db.movies.find({""title"": ""Come and Get It""}, {""cast"": 1})" +who starred in the movie King of Jazz?,"db.movies.find({""title"": ""King of Jazz""}, {""cast"": 1})" +How does the movie One Week rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""One Week"" },{ ""tomatoes.critic.meter"": 1 })" +How many movies has Yasujiro Ozu directed in total?,"db.movies.countDocuments({""directors"":""Yasujiro Ozu""})" +How does the movie Nosferatu rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Nosferatu"" },{ ""tomatoes.critic.meter"": 1 })" +who is the writer of The Blue Light?,"db.movies.find({""title"": ""The Blue Light""}, {""writers"": 1})" +How many audience reviews have been submitted for the movie Three Ages?,"db.movies.find({ ""title"": ""Three Ages"" }, { ""tomatoes.viewer.numReviews"": 1 })" +When was the information last updated for the movie Beau Geste ?,"db.movies.find({ ""title"": ""Beau Geste"" },{ ""lastupdated"": 1 })" +What languages are spoken in the movie High and Dizzy?,"db.movies.find({""title"":""High and Dizzy""}, {""languages"":1})" +Which actor has the most frequent appearances in Martin Scorsese's directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Martin Scorsese"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +what kind of movie is Where Are My Children??,"db.movies.find({""title"": ""Where Are My Children?""}, {""genres"": 1})" +what was the release date of the movie Frankenstein?,"db.movies.find({""title"": ""Frankenstein""}, {""released"": 1})" +Wild and Woolly is a film written by this person?,"db.movies.find({""title"": ""Wild and Woolly""}, {""writers"": 1})" +What are the names of all the actors who starred in the movie 'Chapayev'?,"db.movies.find({""title"": ""Chapayev""}, {""cast"": 1})" +What languages are spoken in the movie Lloyd's of London ?,"db.movies.find({""title"": ""Lloyd's of London""}, { ""languages"": 1})" +How many audience reviews have been submitted for the movie The Prince and the Pauper?,"db.movies.find({ ""title"": ""The Prince and the Pauper"" }, { ""tomatoes.viewer.numReviews"": 1 })" +How long is the runtime of the movie Broken Lullaby ?,"db.movies.find({""title"":""Broken Lullaby""}, {""runtime"":1})" +How does the movie Man of Aran rate on Rotten Tomatoes?,"db.movies.find({ ""title"": ""Man of Aran"" },{ ""tomatoes.critic.meter"": 1 })" +"who wrote the screenplay for Steamboat Bill, Jr.?","db.movies.aggregate([ { ""$match"": { ""title"":""Steamboat Bill, Jr.""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +Was the movie Snow White and the Seven Dwarfs well received by audiences?,"db.movies.find({""title"":""Snow White and the Seven Dwarfs""}, {""tomatoes.viewer"":1})" +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})" +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})" +What are the highest-rated movies directed by Vittorio De Sica?,"db.movies.find({""directors"": 'Vittorio De Sica', ""imdb.rating"": {""$gt"": 8.5}})" +Was the movie In the Land of the Head Hunters well received by audiences and critics?,"db.movies.find({""title"":""In the Land of the Head Hunters""}, {""tomatoes.viewer"": 1,""tomatoes.critic"":1})" +who was the writer of the movie The Invisible Ray?,"db.movies.find({""title"": ""The Invisible Ray""}, {""writers"": 1})" +what is the movie Westfront 1918 imdb rating?,"db.movies.find({""title"": ""Westfront 1918""}, {""imdb.rating"": 1})" +which person wrote The Italian?,"db.movies.find({""title"": ""The Italian""}, {""writers"": 1})" +what genre is the film The Prince and the Pauper?,"db.movies.find({""title"": ""The Prince and the Pauper""}, {""genres"": 1})" +who stars in Ruggles of Red Gap?,"db.movies.find({""title"": ""Ruggles of Red Gap""}, {""cast"": 1})" +What is the IMDb rating for the film It Happened One Night?,"db.movies.find({""title"": ""It Happened One Night""}, {""imdb.rating"": 1})" +What is the audience rating of the movie The Private Life of Don Juan ?,"db.movies.find({ ""title"": ""The Private Life of Don Juan"" },{ ""tomatoes.viewer.rating"": 1 })" +The Front Page was directed by who?,"db.movies.find({""title"": ""The Front Page""}, {""directors"": 1})" +Which of Martin Scorsese's movies has the highest Rotten Tomatoes rating?,"db.movies.find({""directors"": ""Martin Scorsese"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +Can you provide more information about the IMDb rating for the movie The Devil Is a Woman ?,"db.movies.find({""title"":""The Devil Is a Woman""}, {""imdb"":1})" +what is the plot for the movie Scrooge?,"db.movies.find({""title"": ""Scrooge""}, {""plot"": 1})" +What are the genres this movie The Blue Bird belongs to?,"db.movies.find({""title"":""The Blue Bird""}, {""genres"":1})" +Who are the writers of the movie Scrooge ?,"db.movies.find({""title"": ""Scrooge""}, { ""writers"": 1})" +what is the film Death Takes a Holiday imdb rating?,"db.movies.find({""title"": ""Death Takes a Holiday""}, {""imdb.rating"": 1})" +What is the dominant genre of Akira Kurosawa's directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""Akira Kurosawa"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +who is the author of The Freshman?,"db.movies.find({""title"": ""The Freshman""}, {""writers"": 1})" +the director of The General was?,"db.movies.find({""title"": ""The General""}, {""directors"": 1})" +What is the IMDb rating for the movie The Ghost Goes West?,"db.movies.find({""title"": ""The Ghost Goes West""}, {""imdb.rating"": 1})" +what is the movie Imitation of Life description ?,"db.movies.find({""title"": ""Imitation of Life""}, {""plot"": 1})" +What type of movie is The Birth of a Nation ?,"db.movies.find({""title"":""The Birth of a Nation""}, {""genres"":1})" +who wrote the film Cimarron?,"db.movies.find({""title"": ""Cimarron""}, {""writers"": 1})" +what is Blacksmith Scene description?,"db.movies.find({""title"": ""Blacksmith Scene""}, {""plot"": 1})" +How many awards did the movie win The Son of Kong ?,"db.movies.find({ ""title"": ""The Son of Kong"" },{ ""awards.wins"": 1 })" +Gertie the Dinosaur is written by this person?,"db.movies.find({""title"": ""Gertie the Dinosaur""}, {""writers"": 1})" +Can you provide more information about the languages spoken in the movie Three Ages ?,"db.movies.find({""title"":""Three Ages""}, {""languages"":1})" +what is the plot for the movie Intolerance: Love's Struggle Throughout the Ages?,"db.movies.find({""title"": ""Intolerance: Love's Struggle Throughout the Ages""}, {""plot"": 1})" +What is the audience rating of the movie A Farewell to Arms ?,"db.movies.find({ ""title"": ""A Farewell to Arms"" },{ ""tomatoes.viewer.rating"": 1 })" +who directed the film Flying Down to Rio?,"db.movies.find({""title"": ""Flying Down to Rio""}, {""directors"": 1})" +What type of movie is The Blood of a Poet ?,"db.movies.find({""title"":""The Blood of a Poet""}, {""genres"":1})" +I'm curious about the films that were directed by Joel Coen. Can you name them?,"db.movies.find({""directors"": ""Joel Coen""},{""title"":1})" +what genre is Les Misèrables?,"db.movies.find({""title"": ""Les Misèrables""}, {""genres"": 1})" +what kind of film is A Story of Floating Weeds?,"db.movies.find({""title"": ""A Story of Floating Weeds""}, {""genres"": 1})" +what is the film One Hundred Men and a Girl imdb rating?,"db.movies.find({""title"": ""One Hundred Men and a Girl""}, {""imdb.rating"": 1})" +How many nominations did the movie Napoleon receive?,"db.movies.find({""title"":""Napoleon""}, {""awards.nominations"":1})" +How many reviews have been submitted by critics for the movie The Devil Is a Woman ?,"db.movies.find({""title"": ""The Devil Is a Woman""}, {""tomatoes.critic.numReviews"": 1})" +How many award nominations did the movie receive M ?,"db.movies.find({ ""title"": ""M"" },{ ""awards.nominations"": 1 })" +What is the MPAA rating of the movie Mutiny on the Bounty?,"db.movies.find({""title"":""Mutiny on the Bounty""}, {""rated"":1})" +What is the percentage of positive reviews among critics for the movie State Fair ?,"db.movies.find({ ""title"": ""State Fair"" },{ ""tomatoes.critic.meter"": 1 })" +How many awards did the movie win Fury ?,"db.movies.find({ ""title"": ""Fury"" },{ ""awards.wins"": 1 })" +What is the principal film genre that David Fincher focuses on in his directed movies?,"db.movies.aggregate([ { ""$match"": { ""directors"": ""David Fincher"" } }, { ""$unwind"": ""$genres"" }, { ""$group"": { ""_id"": ""$genres"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +Could you tell me which Francois Truffaut-directed film has the longest running time?,"db.movies.find({""directors"":""Francois Truffaut""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": -1}).limit(1)" +What is the Metacritic score of the movie Ruggles of Red Gap ?,"db.movies.find({ ""title"": ""Ruggles of Red Gap"" }, { ""metacritic"": 1})" +What was the release date for the movie Imitation of Life?,"db.movies.find({""title"":""Imitation of Life""}, {""released"":1})" +What is the Rotten Tomatoes rating for Terrence Malick's highest-rated movie?,"db.movies.find({""directors"": ""Terrence Malick"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +can you describe the plot of My Man Godfrey?,"db.movies.find({""title"": ""My Man Godfrey""}, {""plot"": 1})" +What is the Rotten Tomatoes rating for Stanley Kubrick's highest-rated movie?,"db.movies.find({""directors"": ""Stanley Kubrick"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +"On Rotten Tomatoes, what is the top-rated film directed by Sergei Eisenstein?","db.movies.find({""directors"": ""Sergei Eisenstein"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +the movie The Divorcee starred who?,"db.movies.find({""title"": ""The Divorcee""}, {""cast"": 1})" +"what type of film is Winsor McCay, the Famous Cartoonist of the N.Y. Herald and His Moving Comics?","db.movies.find({""title"": ""Winsor McCay, the Famous Cartoonist of the N.Y. Herald and His Moving Comics""}, {""genres"": 1})" +Could you share with me the titles of the films that Joel Coen directed?,"db.movies.find({""directors"": ""Joel Coen""},{""title"":1})" +who produced the movie Tarzan and His Mate?,"db.movies.find({""title"":""Tarzan and His Mate""}, {""tomatoes.production"":1})" +Broken Blossoms or The Yellow Man and the Girl is a movie written by this person?,"db.movies.find({""title"": ""Broken Blossoms or The Yellow Man and the Girl""}, {""writers"": 1})" +can you describe the plot of The Saphead?,"db.movies.find({""title"": ""The Saphead""}, {""plot"": 1})" +who is the author of Little Caesar?,"db.movies.find({""title"": ""Little Caesar""}, {""writers"": 1})" +Who are the writers of the movie The Thief of Bagdad ?,"db.movies.find({""title"": ""The Thief of Bagdad""}, { ""writers"": 1})" +what sort of film is The Crowd Roars?,"db.movies.find({""title"": ""The Crowd Roars""}, {""genres"": 1})" +What is the Metacritic score of the movie Tarzan the Ape Man ?,"db.movies.find({ ""title"": ""Tarzan the Ape Man"" }, { ""metacritic"": 1})" +what is the plot for The Kid?,"db.movies.find({""title"": ""The Kid""}, {""plot"": 1})" +Can you provide more information about the IMDb rating for the movie Final Accord ?,"db.movies.find({""title"":""Final Accord""}, {""imdb"":1})" +"Among all the actors who have appeared in Stanley Kubrick's movies, who has appeared the most times?","db.movies.aggregate([ { ""$match"": { ""directors"": ""Stanley Kubrick"" } }, { ""$unwind"": ""$cast"" }, { ""$group"": { ""_id"": ""$cast"", ""count"": { ""$sum"": 1 } } }, { ""$sort"": { ""count"": -1 } }, { ""$limit"": 1 }])" +who directed the movie The Four Horsemen of the Apocalypse?,"db.movies.find({""title"": ""The Four Horsemen of the Apocalypse""}, {""directors"": 1})" +who starred in the movie The Four Horsemen of the Apocalypse?,"db.movies.find({""title"": ""The Four Horsemen of the Apocalypse""}, {""cast"": 1})" +which person wrote the film The Lost World?,"db.movies.find({""title"": ""The Lost World""}, {""writers"": 1})" +What is the MongoDB document ID of the movie Queen Christina?,"db.movies.find({""title"": ""Queen Christina""}, {""_id"": 1})" +what is the genre for the film Pandora's Box?,"db.movies.find({""title"": ""Pandora's Box""}, {""genres"": 1})" +what sort of film is Peter Pan?,"db.movies.find({""title"": ""Peter Pan""}, {""genres"": 1})" +What is the text representation of the awards won and nominations received by the movie The Guardsman?,"db.movies.find({""title"": ""The Guardsman""}, { ""awards.text"": 1})" +Which of Joel Coen's directed films has the briefest duration?,"db.movies.find({""directors"":""Joel Coen""}, {""title"": 1, ""runtime"": 1}).sort({""runtime"": 1}).limit(1)" +How many audience reviews have been submitted for the movie It ?,"db.movies.find({ ""title"": ""It"" },{ ""tomatoes.viewer.numReviews"": 1 })" +What is the box office revenue of the movie The Saphead ?,"db.movies.find({""title"": ""The Saphead""}, { ""tomatoes.boxOffice"": 1})" +what year was the movie Dames released?,"db.movies.find({""title"": ""Dames""}, {""year"": 1})" +who wrote the film Going Hollywood?,"db.movies.find({""title"": ""Going Hollywood""}, {""writers"": 1})" +What is the runtime and rating for the movie 'The Invisible Ray'?,"db.movies.find({""title"": ""The Invisible Ray""}, {""runtime"": 1, ""rated"": 1})" +"who is the director of Laugh, Clown, Laugh?","db.movies.find({""title"": ""Laugh, Clown, Laugh""}, {""directors"": 1})" +who is the author of Captains Courageous?,"db.movies.find({""title"": ""Captains Courageous""}, {""writers"": 1})" +In what language was the movie The Cheat released?,"db.movies.find({ ""title"": ""The Cheat"" }, { ""languages"": 1})" +What is the mean rating of all the Michelangelo Antonioni films in the database?,"db.movies.aggregate([{""$match"": {""directors"":""Michelangelo Antonioni""}}, {""$group"": { ""_id"":""null"", ""avgRating"": {""$avg"": ""$imdb.rating""}}}])" +How many comments have been posted by users on the movie Captains Courageous's page on the Mflix platform?,"db.movies.find({ ""title"": ""Captains Courageous"" }, { ""num_mflix_comments"": 1 })" +who acted in the movie Captains Courageous?,"db.movies.find({""title"": ""Captains Courageous""}, {""cast"": 1})" +who produced Show People?,"db.movies.find({""title"":""Show People""}, {""tomatoes.production"":1})" +Who is the lead actor of the movie Civilization ?,"db.movies.find({""title"": ""Civilization""}, {""cast"":{""$slice"": 1},""title"":1})" +what year was Gold Diggers of 1933 released?,"db.movies.find({""title"": ""Gold Diggers of 1933""}, {""year"": 1})" +what sort of film is The 3 Penny Opera?,"db.movies.find({""title"": ""The 3 Penny Opera""}, {""genres"": 1})" +what was the release date of Gertie the Dinosaur?,"db.movies.find({""title"": ""Gertie the Dinosaur""}, {""released"": 1})" +who is the director for They Won't Forget?,"db.movies.find({""title"": ""They Won't Forget""}, {""directors"": 1})" +What is the website associated with the movie The Birth of a Nation on Rotten Tomatoes?,"db.movies.find({""title"": ""The Birth of a Nation""}, {""tomatoes.website"": 1})" +who wrote the screenplay for the movie The Phantom of the Opera?,"db.movies.aggregate([ { ""$match"": { ""title"":""The Phantom of the Opera""} }, { ""$project"": { ""_id"": 0, ""writers"": {""$filter"": { ""input"": ""$writers"", ""as"": ""writer"", ""cond"": { ""$regexMatch"": { ""input"": ""$$writer"", ""regex"": ""screenplay"", ""options"":""i"" } } } } } }])" +the movie Wild and Woolly starred who?,"db.movies.find({""title"": ""Wild and Woolly""}, {""cast"": 1})" +What is the MPAA rating of the movie Mr. Deeds Goes to Town?,"db.movies.find({""title"":""Mr. Deeds Goes to Town""}, {""rated"":1})" +What is the consensus among critics about the movie Night Must Fall ?,"db.movies.find({""title"": ""Night Must Fall""}, {""tomatoes.consensus"": 1})" +What is the movie The World Moves On rating?,"db.movies.find({""title"":""The World Moves On""}, {""rated"":1})" +what was the release date of the movie The Devil Is a Woman?,"db.movies.find({""title"": ""The Devil Is a Woman""}, {""released"": 1})" +the film The Big Parade starred which actors?,"db.movies.find({""title"": ""The Big Parade""}, {""cast"": 1})" +What is the audience rating of the movie Now or Never ?,"db.movies.find({ ""title"": ""Now or Never"" },{ ""tomatoes.viewer.rating"": 1 })" +What is the Metacritic score of the movie Scarface ?,"db.movies.find({ ""title"": ""Scarface"" }, { ""metacritic"": 1})" +What is the Rotten Tomatoes meter rating for the movie The Robber Symphony ?,"db.movies.find({""title"":""The Robber Symphony""}, {""tomatoes.viewer.meter"": 1,""tomatoes.critic.meter"":1})" +who directed the film Mary of Scotland?,"db.movies.find({""title"": ""Mary of Scotland""}, {""directors"": 1})" +How many wins did the movie Triumph of the Will receive?,"db.movies.find({""title"":""Triumph of the Will""}, {""awards.wins"":1})" +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})" +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})" +What is the best-reviewed movie on Rotten Tomatoes that was directed by Claude Chabrol?,"db.movies.find({""directors"": ""Claude Chabrol"", ""tomatoes.critic.rating"": {""$exists"": true}}, {""title"": 1, ""_id"": 0}).sort({""tomatoes.critic.rating"": -1}).limit(1)" +what was the genre of Tarzan and His Mate?,"db.movies.find({""title"": ""Tarzan and His Mate""}, {""genres"": 1})" +what year was Masquerade in Vienna released?,"db.movies.find({""title"": ""Masquerade in Vienna""}, {""year"": 1})" +what was the release year of Asphalt?,"db.movies.find({""title"": ""Asphalt""}, {""year"": 1})" +which person wrote the film The Ghost Goes West?,"db.movies.find({""title"": ""The Ghost Goes West""}, {""writers"": 1})"