Sometimes we can't write some complicated filters with AQ because we have multiple conditions and subconditions :
((id == 1 || id == 2 || id == 3) && color.Contains("blue")) || (quantity >= 5 && quantity < 10)
We need to add a new filter clause (while keeping the old way) to make complicated filters like this :
filter=or(and(id(1,2,3),color(contains=blue),quantity(>=5,<10))
Sometimes we can't write some complicated filters with AQ because we have multiple conditions and subconditions :
We need to add a new filter clause (while keeping the old way) to make complicated filters like this :