集約フレームワークを使用すると、次のようになります
db.getCollection('yourCollection').aggregate([
{
$unwind: '$arr'
},
{
$match: {
$or: [
{ 'arr.name': /world/i },
{ 'arr.description': /world/i }
]
}
},
{
$project: {
_id: '$arr._id',
name: '$arr.name',
description: '$arr.description'
}
}
])
これにより、サンプルデータに対して次の出力が生成されます。
{
"_id" : 1,
"name" : "Random",
"description" : "Hello world"
}
{
"_id" : 2,
"name" : "World",
"description" : "This is a random description"
}
質問に示されているように、結果のドキュメントを含む単一の配列が必要な場合は、toArray()
をチェーンするだけです。 パイプラインの最後で呼び出す-