Je bent heel dichtbij, wat je wilt doen is gewoon de nieuwe locatie aan de array toevoegen vóór $unwind
het.
zoals zo:
db.collection.aggregate([
{
"$addFields": {
"user.olderAdress": {
"$concatArrays": [
"$user.olderAdress",
[
{
"localization": "NABOO",
"createDate": "$$NOW"
}
]
]
}
}
},
... rest of pipeline ...
])