Or
Or(value_1, value_2, ...)
Or(value_1, value_2, ...)
Or(value_1, value_2, ...)
Or(value_1, value_2, ...)
or_(value_1, value_2, ...)
Or(value_1, value_2, ...)
Description
The Or
function operates on one or more values and returns
true
if at least one of the values is "true", and false
otherwise.
Prior to version 3.0.0, all items in the value
list were evaluated.
With version 3.0.0, evaluation is short-circuited when a true
value is
encountered. For example, a collection is no longer created with this
query:
Or(true, CreateCollection({ name: "test" }))
Returns
A Boolean value.
Examples
The following query returns true
because at least one of the provided
values is "true":
BooleanV(True)
true
true
true
True
true
Is this article helpful?
Tell Fauna how the article can be improved:
Visit Fauna's forums
or email docs@fauna.com
Thank you for your feedback!