FQL v4 will be decommissioned on June 30, 2025. Ensure that you complete your migration from FQL v4 to FQL v10 by that date. For more details, review the migration guide. Contact support@fauna.com with any questions. |
Or
This reference topic applies to FQL v4. Go to this page for the latest FQL v10 reference topics. |
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" }))
Or does not support parameters that include
Objects, Arrays, Pages, Sets, or
FQL expressions. The similar Any function supports
Arrays, Pages, and type:[]sets.
|
Examples
The following query returns true
because at least one of the provided
values is "true":
true
True
true
BooleanV(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!