Skip to content

Instantly share code, notes, and snippets.

@mchernyavskaya
Created September 30, 2022 17:24
Show Gist options
  • Save mchernyavskaya/2edb5c3207440864bb417b8117d96ba7 to your computer and use it in GitHub Desktop.
Save mchernyavskaya/2edb5c3207440864bb417b8117d96ba7 to your computer and use it in GitHub Desktop.
db.movies.find(
{$text: {$search: "drama -action -crime"}, "imdb.rating": {$ne: ""}},
{"title": 1, "plot": 1, "genres": 1, "imdb.rating": 1, "_id": 0})
.limit(5)
.sort({ "imdb.rating": -1 }
)
[
{
plot: 'Ten television drama films, each one based on one of the Ten Commandments.',
genres: [ 'Drama' ],
title: 'The Decalogue',
imdb: { rating: 9.2 }
},
{
plot: "Jane Austen's classic novel about the prejudice that occurred between the 19th century classes and the pride which would keep lovers apart.",
genres: [ 'Drama', 'Romance' ],
title: 'Pride and Prejudice',
imdb: { rating: 9.1 }
},
{
plot: 'The Topalovic family has been in the burial business for generations. When the old (150 yrs old) Pantelija dies, five generations of his heirs start to fight for the inheritance.',
genres: [ 'Comedy', 'Drama' ],
title: 'The Marathon Family',
imdb: { rating: 9 }
},
{
plot: `Old Prof. Preobrazhensky and his young colleague Dr. Bormental inserted the human's hypophysis into a dog's brain. Couple of weeks later the dog became "human looking". The main question is...`,
genres: [ 'Comedy', 'Drama', 'Sci-Fi' ],
title: 'Heart of a Dog',
imdb: { rating: 9 }
},
{
plot: "North and South is a four part adaptation of Elizabeth Gaskell's love story of Margaret Hale, a middle class southerner who is forced to move to the northern town of Milton.",
genres: [ 'Drama', 'Romance' ],
title: 'North & South',
imdb: { rating: 9 }
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment