La query in MongoDB è simile a:
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
}
)
Documentazione per $e $o
Alcuni esempi e la documentazione ufficiale per MongoDB si trovano qui.