Advanced logic
Why JSON, not Drag-and-Drop?
Common patterns
Both conditions must be true — $and
$and{
"$and": [
{
"distance_to_office": {
"$lte": 75
}
},
{
"is_qualified": true
}
]
}At least one condition is true - $or
Answer is one of several values — $in
$inAnswer is not in a list of values — $nin
$ninAnswer is defined — $exists
$existsLast updated
Was this helpful?