user.js
$project: {
_id: 1,
totalQuestClearCount: {
$reduce: {
input: { $ifNull: ["$quests", []] },
initialValue: 0,
in: {
$cond: [{ $eq: ["$$this.storyId", 0], $eq: ["$$this.totalClearCount", 1] },
{ $add: ["$$value", 1] },
"$$value"
]
}
}
},
}