LTE
LTE(value_1, value_2, ...)
LTE(value_1, value_2, ...)
LTE(value_1, value_2, ...)
LTE(value_1, value_2, ...)
lte(value_1, value_2, ...)
lte value_1, value_2, ...
LTE(value_1, value_2, ...)
LTE(value_1, value_2, ...)
Description
The LTE
function returns true
if each specified value is less than
or equal to the ones following it, and false
otherwise. The function
takes one or more arguments; it always returns true
if it has a single
argument.
Examples
The query below returns true
because the value 1 is less than or equal
to the value 2, and the value 2 is less than or equal to the second
value 2.
curl https://db.fauna.com/ \
-u fnAChGwBcAACAO70ziE0cfROosNJHdgBmJU1PgpL: \
-d '{ "lte": [ 1, 2, 2 ] }'
client.Query(LTE(1, 2, 2));
System.out.println(
client.query(LTE(Value(1), Value(2), Value(2)))
.get());
result, _ := client.Query(f.LTE(1, 2, 2))
fmt.Println(result)
client.query(LTE(1, 2, 2))
client.query(q.lte(1, 2, 2))
$client.query do
lte 1, 2, 2
end
client.query(LTE(1, 2, 2))
client.query(q.LTE(1, 2, 2))
.then((ret) => console.log(ret))
HTTP/1.1 200 OK
{ "resource": true }
true
true
true
true
true
true
true
true
Was this article helpful?
We're sorry to hear that.
Tell us how we can improve!
documentation@fauna.com
Thank you for your feedback!