notIn.php
Table of Contents
Functions
- notIn() : string
- Returns an AQL expression that checks if the left operand is not contained in the right operand array.
Functions
notIn()
Returns an AQL expression that checks if the left operand is not contained in the right operand array.
notIn(mixed $leftOperand, mixed $rightOperand) : string
Equivalent to the ArangoDB NOT IN comparison operator.
Example:
42 NOT IN [ 2, 3, 1.5 ]returnstrue1.5 NOT IN [ 2, 3, 1.5 ]returnsfalse
Parameters
- $leftOperand : mixed
-
The value or expression to look for.
- $rightOperand : mixed
-
The array expression to search in.
Tags
Return values
string —The AQL predicate string.