$ cond
>
$ project
の演算子 空のattr
を置き換えるステージ null
のようなプレースホルダーを含む配列 これは、このドキュメントに attr
が含まれていないことを示すマーカーとして使用できます。 要素。
したがって、追加の $ project
を挿入します $ unwind
の直前にこのようなステージ :
{
$project: {
attrs: {$cond: {
if: {$eq: ['$attrs', [] ]},
then: [null],
else: '$attrs'
}}
}
},
唯一の注意点は、 null
になってしまうことです。 最終的なattrs
の値 attrs
のない少なくとも1つのドキュメントを含むグループの配列 要素なので、それらのクライアント側を無視する必要があります。
例
この例では、変更された $ match
を使用しています 例のステージは有効ではないためです。
入力ドキュメント
[
{_id: {type: 1, id: 2}, attrs: []},
{_id: {type: 2, id: 1}, attrs: []},
{_id: {type: 2, id: 2}, attrs: [{name: 'john', type: 22}, {name: 'bob', type: 44}]}
]
出力
{
"result" : [
{
"_id" : 1,
"attrs" : [
null
]
},
{
"_id" : 2,
"attrs" : [
{
"name" : "bob",
"type" : 44
},
{
"name" : "john",
"type" : 22
},
null
]
}
],
"ok" : 1
}
集約コマンド
db.test.aggregate([
{
$match: {
'_id.servicePath': {
$in: [
null
]
}
}
},
{
$project: {
_id: 1,
"attrs.name": 1,
"attrs.type": 1
}
},
{
$project: {
attrs: {$cond: {
if: {$eq: ['$attrs', [] ]},
then: [null],
else: '$attrs'
}}
}
},
{
$unwind: "$attrs"
},
{
$group: {
_id: "$_id.type",
attrs: {
$addToSet: "$attrs"
}
}
},
{
$sort: {
_id: 1
}
}
])