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)
);
LongV(90)
result, err := client.Query(
f.Subtract(100, 10))
if err != nil {
fmt.Fprintln(os.Stderr, err)
} else {
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))
.catch((err) => console.error('Error: %s', err))
90
result = client.query(
q.subtract(100, 10)
)
print(result)
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!