Correction exercice 11
db.restaurants.find(
{
$and: [
{
$or: [{ borough: "Bronx" }, { borough: "Brooklyn" }],
},
{
name: /coffee/i,
},
{ grades: { $size: 4 } },
],
},
{ _id: 0, name: 1, grades: 1 }
);
16 June 2025