La requête dans MongoDB ressemble à :
Database.collection_name.find(
// This is the condition
{
$and: [
{
$or: [
{province: 'nb'},
{province: 'on'}
]
},
{
city: "toronto"
},
{
first_name: "steven"
}
]
},
// Specify the fields that you need
{
first_name: 1,
_id: 1
}
)
Documentation pour $et $ou
Quelques exemples et la documentation officielle de MongoDB se trouvent ici.