Quindi, in base al tuo esempio, vuoi produrre il ranktime
a meno che è SOURCE2
e la stessa data è già stata aggiunta all'output (ma solo per SOURCE2
).
Puoi usare $reduce
come in precedenza, ma è necessario scansionare gli elementi aggiunti in precedenza che possono essere ottenuti utilizzando $ anyElementTrue
operatore e poiché il tuo output contiene il terzo elemento, presumo che la data ripetuta sia una condizione di arresto solo se è stata aggiunta la stessa data per SORUCE2
quindi $filter
è necessario anche per preparare il set di SOURCE2
precedentemente aggiunto s:
db.col.updateMany({}, [
{
$set: {
ranktime: {
$reduce: {
input: "$ranktime",
initialValue: [],
in: {
$cond: [
{
$and: [
{ "$eq": [ "$$this.source", "SOURCE2" ] },
{
$anyElementTrue: {
$map: {
input: { $filter: { input: "$$value", as: "prev", cond: { $eq: { "$$prev.source", "SOURCE2" } } } }, // already added SOURCE2 elements
as: "addedElement",
in: { "$eq": [ { $substr: [ "$$addedElement.datum", 0, 15 ] }, { $substr: [ "$$this.datum", 0, 15 ] } ] }
}
}
}
]
},
"$$value", // skip current element ($$this)
{ $concatArrays: [ "$$value", [ "$$this" ] ] } // add current element to the output
]
}
}
}
}
}
])