Możesz użyć cond
w $project
lub $expr
w $match
etap jako:
collectionName.aggregate([
{
$match: {
$expr: {
$cond: {
if: {
$gt: [
"$audiPrice",
null
]
},
then: {
$and: [
{
$gte: [
"$audiPrice",
price * 0.25
]
},
{
$lte: [
"$audiPrice",
price * 1.75
]
}
]
},
else: {
$and: [
{
$gte: [
"$price",
price * 0.25
]
},
{
$lte: [
"$price",
price * 1.75
]
}
]
}
}
}
}
}
])
Tutaj najpierw sprawdzasz, czy pole audiPrice nie jest puste, a następnie przeprowadzasz dopasowanie na tym kluczu, a następnie na kluczu ceny.