Not

Copied!
(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.

Copied!
client.query(q.(true))
.then((ret) => console.log(ret))
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!