S02.01.intro

Yesterday, we got acquainted with MongoDB on the Atlas hosting service

db.movies.find(
    {runtime: {$gt : 180}},  // Filter on movie duration
    { _id: 0, title: 1, runtime: 1, "imdb.rating": 1 }  // Projection to include title and imdb.rating, exclude _id
)

Today

Today we continue working with MongoDB

And talk about

and on a more hands on level:

You should all have a chosen a good dataset

Practice

But first, do you have any qestions regarding the MongoDB project ?