以下の集計を試すことができます:
ChoreChart.aggregate([
{ "$match": { "affiliation": affiliation, "year": week.year, "weekNumber": week.number } },
{
$addFields: {
chart: {
$filter: {
input: "$chart",
cond: { $eq: [ "$$this.ordinal", 2 ] }
}
}
}
}
])
$ addFields
既存のフィールドとordinal
以降 は、クエリで文字列ではなく数値を指定する必要がある数値です。