Not
Copied!
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".
Examples
The query below returns false
because an argument of "true" is provided.
Copied!
client.query(q.Not(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!