All
All( values )
All( values )
All( values )
All( values )
all( values )
All( values )
Description
The All
function tests the provided values
and returns true
if all of the items in values
are true
, otherwise it returns
false
.
All
is a better choice for handling collections of values than
the similar And
function.
The run time of For query "width" errors, the underlying set or page involves more than
100K items. This can happen when using a set function, such as
For example, instead of:
use:
This does mean that if the entire set must be evaluated to arrive at the
correct result, you would have to page through the For query timeout errors, you may specify a larger query timeout via the driver that you are using. |
Returns
A Boolean indicating whether all of the items in values
are
true
.
Examples
The following query uses All
multiple times to demonstrate how
the function evaluates several groups of values:
Arr(BooleanV(True), BooleanV(False), BooleanV(True))
[true false true]
[true, false, true]
[ true, false, true ]
[True, False, True]
[ true, false, 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!