Per combinare condizioni logiche in un $cond
operatore quindi avvolgere le condizioni con un $and
operatore:
db.workouts.aggregate([
{ "$match": { "user_id": ObjectId("....") }},
{ "$project": {
"20": { "$cond": [
{ "$and": [
{ "$gt": [ "$avg_intensity", 20 ] },
{ "$lt": [ "$avg_intensity", 25 ] }
]},
"$total_volume",
0
]}
}}
])