bạn có thể thử tổng hợp này với $reduce
không
db.t63.aggregate([
{$addFields : {array : {$reduce : {
input : "$array",
initialValue : {age : 0},
in : {$cond: [{$gte : ["$$this.age", "$$value.age"]},"$$this", "$$value"]}}
}}}
])
đầu ra
{ "_id" : "notImportant", "array" : { "name" : "Carl", "age" : 21 } }