AGGREGATE Movies Tutorial
From NoSQLZoo
Investigating the Movie Database
The movie database includes thousands of movies with documents such as:
Casablanca
Show the details of the movie Casablanca
db.world.aggregate([ {$match:{ title:'Casablanca' }}, ])
db.world.aggregate([
{$match:{ title:'Casablanca' }},
])