Mulai dari MongoDB 4.4, $merge dapat menampilkan koleksi yang sama yang sedang dikumpulkan:
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'
}}
])
Berhati-hatilah: ketika $merge menghasilkan ke koleksi yang sama yang sedang dikumpulkan, dokumen mungkin diperbarui beberapa kali atau operasi dapat menghasilkan loop tak terbatas. Detail selengkapnya di sini https://docs .mongodb.com/manual/reference/operator/aggregation/merge/#merge-behavior-same-collection
Jika ini adalah pembaruan satu kali, Anda dapat mengamankan saluran dengan menambahkan filter awal sebagai tahap pertama untuk memastikan dokumen diperbarui tepat satu kali:
{ $match: { events: { $exists: false } }