Subtract
Subtract( value_1, value_2, ... )
Subtract( value_1, value_2, ... )
Subtract( value_1, value_2, ... )
Subtract( value_1, value_2, ... )
subtract( value_1, value_2, ... )
Subtract( value_1, value_2, ... )
Examples
The query in the following example returns the result of subtracting 10 from 100:
client.Query(Subtract(100, 10));
90
curl https://db.fauna.com/ \
-u fnAChGwBcAACAO70ziE0cfROosNJHdgBmJU1PgpL: \
-d '{ "subtract": [ 100, 10 ] }'
HTTP/1.1 200 OK
{ "resource": 90 }
result, _ := client.Query(f.Subtract(100, 10))
fmt.Println(result)
90
System.out.println(
client.query(Subtract(Value(100), Value(10)))
.get());
90
client.query(q.Subtract(100, 10))
.then((ret) => console.log(ret))
90
client.query(q.subtract(100, 10))
90
client.query(Subtract(100, 10))
90
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!