Имате нужда от два допълнителни етапа. Първо можете да стартирате $reduce
за изравняване на ExerciseDetail
което сега е масив от масиви. След като приключите, можете да стартирате $map
с вложен $filter
за сдвояване на Sets
с ExerciseDetails
:
{
$addFields: {
ExerciseDetail: {
$reduce: {
input: "$ExerciseDetail",
initialValue: [],
in: {
$concatArrays: [ "$$value", "$$this" ]
}
}
}
}
},
{
$project: {
_id: 1,
Sets: {
$map: {
input: "$Sets",
as: "set",
in: {
$let: {
vars: {
exDetail: {
$arrayElemAt: [
{ $filter: { input: "$ExerciseDetail", cond: { $eq: [ "$$this._id", "$$set.ExerciseId" ] } } },
0
]
}
},
in: {
$mergeObjects: [
"$$set", "$$exDetail"
]
}
}
}
}
}
}
}