[][src]Module faunadb::query::logical

Logical functions

Structs

And

The And function computes the conjunction of a list of boolean values, returning true if all elements are "true", and false otherwise.

Contains

The Contains function returns true if the argument passed as in contains a value at the specified path, and false otherwise.

Equals

The Equals function tests equivalence between a list of values.

Exists

The Exists function returns boolean true if the provided ref exists at the specified timestamp (in the case of an instance), or is non-empty (in the case of a set), and false otherwise.

Gt

The Gt function returns true if each specified value is greater than the ones following it, and false otherwise.

Gte

The Gte function returns true if each specified value is greater than or equal to the ones following it, and false otherwise.

Lt

The Lt function returns true if each specified value is less than the ones following it, and false otherwise.

Lte

The Lte function returns true if each specified value is less than or equal to the ones following it, and false otherwise.

Not

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

Or

The Or function operates on one or more values and returns true if at least one of the values is true.