Experimenteel (afhankelijk van de grootte van uw verzameling) kunt u proberen om $unwind
waarvoor een includeArrayIndex
. nodig is parameter:
db.collection.aggregate([
{
$group: {
_id: null,
docs: { $push: "$$ROOT" }
}
},
{
$unwind: {
path: "$docs",
includeArrayIndex: "index"
}
},
{
$replaceRoot: {
newRoot: {
$mergeObjects: [ "$docs", { place: "$index" } ]
}
}
}
])
U kunt ook $out overwegen om bestaande verzameling te vervangen door het bovenstaande aggregatieresultaat