Not

Not(value)
Not(value)
Not(value)
Not(value)
not_(value)
Not(value)

Description

The Not function computes the negation of a boolean value, returning true if its argument is "false", or false if its argument is "true".

Parameters

Argument Type Definition and Requirements

value

Boolean

A single boolean value.

Returns

A boolean value.

Examples

The query below returns false because an argument of "true" is provided.

client.Query(Not(true));
false
curl https://db.fauna.com/ \
    -u fnAChGwBcAACAO70ziE0cfROosNJHdgBmJU1PgpL: \
    -d '{ "not": true }'
HTTP/1.1 200 OK
{ "resource": false }
result, _ := client.Query(f.Not(true))

fmt.Println(result)
false
System.out.println(client.query(Not(Value(true))).get());
false
client.query(q.Not(true))
.then((ret) => console.log(ret))
false
client.query(q.not_(True))
false
client.query(Not(true))
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!