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, ...
Subtract( value_1, value_2, ... )
Subtract( value_1, value_2, ... )

Description

The Subtract function returns the difference of a list of numbers.

Parameters

Argument Type Definition and Requirements

value

Number

Take the difference of values.

Returns

A number which is the difference.

Examples

The query in the following example returns the result of subtracting 10 from 100:

curl https://db.fauna.com/ \
    -u fnAChGwBcAACAO70ziE0cfROosNJHdgBmJU1PgpL: \
    -d '{ "subtract": [ 100, 10 ] }'
client.Query(Subtract(100, 10));
System.out.println(
       client.query(Subtract(Value(100), Value(10)))
       .get());
result, _ := client.Query(f.Subtract(100, 10))

fmt.Println(result)
client.query(Subtract(100, 10))
client.query(q.subtract(100, 10))
$client.query do
  subtract 100, 10
end
client.query(Subtract(100, 10))
client.query(q.Subtract(100, 10))
.then((ret) => console.log(ret))
HTTP/1.1 200 OK
{ "resource": 90 }
90
90
90
90
90
90
90
90

Was this article helpful?

We're sorry to hear that.
Tell us how we can improve! documentation@fauna.com

Thank you for your feedback!