実験的に (コレクションのサイズによって異なります) $ unwind
includeArrayIndex
を取ります パラメータ:
db.collection.aggregate([
{
$group: {
_id: null,
docs: { $push: "$$ROOT" }
}
},
{
$unwind: {
path: "$docs",
includeArrayIndex: "index"
}
},
{
$replaceRoot: {
newRoot: {
$mergeObjects: [ "$docs", { place: "$index" } ]
}
}
}
])
$out を検討することもできます。 既存のコレクションを上記の集計結果に置き換える