Från och med MongoDB 4.4, $merge kan skriva ut till samma samling som aggregeras:
db.products.aggregate([
{ /**
* from: The target collection.
* localField: The local join field.
* foreignField: The target join field.
* as: The name for the results.
* pipeline: The pipeline to run on the joined collection.
* let: Optional variables to use in the pipeline field stages.
*/
$lookup: {
from: 'events',
localField: '_id',
foreignField: 'product_id',
as: 'events'
}},
{/**
* into: The target collection.
* on: Fields to identify.
* whenMatched: Action for matching docs.
* whenNotMatched: Action for non-matching docs.
*/
$merge: {
into: 'products',
on: "_id",
whenMatched: 'merge',
whenNotMatched: 'insert'
}}
])
Var medveten om: När $merge utdata till samma samling som samlas kan dokument uppdateras flera gånger eller så kan operationen resultera i en oändlig loop. Mer information här https://docs .mongodb.com/manual/reference/operator/aggregation/merge/#merge-behavior-same-collection
Om det är en engångsuppdatering kan du skydda pipelinen genom att lägga till initialfilter som första steg för att säkerställa att ett dokument uppdateras exakt en gång:
{ $match: { events: { $exists: false } }