Any
Copied!
Any( values )
The run time of To work around this, you may specify a larger query timeout via the driver that you are using. |
Examples
The following query uses Any
multiple times to demonstrate how
the function evaluates several groups of values:
Copied!
client.query([
q.Any([true, true, true]),
q.Any([false, true, true]),
q.Any([false, false, false]),
q.Any([]),
]).then((ret) => console.log(ret))
[ true, true, false, false ]
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!