All
This Flow Script tutorial explains how to use the All function with syntax and examples.
Last updated
Was this helpful?
This Flow Script tutorial explains how to use the All function with syntax and examples.
Last updated
Was this helpful?
Was this helpful?
All([a: 1] & [a: 2], {a > 1})
Result: False
All(orderQuantity,{Quantity > 2})
Result: True
All(orderQuantity,{Quantity > 10})
Result: False
The Any function to do the same check:
not Any(orderQuantity where Quantity <= 10)
Result: False