Any
Not available in this language yet.
Not available in this language yet.
Any( values )
Any( values )
Not available in this language yet.
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:
Not available in this language yet.
Not available in this language yet.
System.out.println(
client.query(
Arr(
Any(Arr(Value(true), Value(true), Value(true))),
Any(Arr(Value(false), Value(true), Value(true))),
Any(Arr(Value(false), Value(false), Value(false))),
Any(Arr())
)
).get());
[true, true, false, false]
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 ]
Not available in this language yet.
println(Await.result(
client.query(
Arr(
Any(Arr(true, true, true)),
Any(Arr(false, true, true)),
Any(Arr(false, false, false)),
Any(Arr())
)
),
5.seconds
))
[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!