クエリオブジェクトを次のように直接作成するのがおそらく最も簡単です:
Test.find({
$and: [
{ $or: [{a: 1}, {b: 1}] },
{ $or: [{c: 1}, {d: 1}] }
]
}, function (err, results) {
...
}
ただし、Query#and
を使用することもできます 最近の3.xMongooseリリースで利用可能なヘルパー:
Test.find()
.and([
{ $or: [{a: 1}, {b: 1}] },
{ $or: [{c: 1}, {d: 1}] }
])
.exec(function (err, results) {
...
});