noneNotIn.php
Table of Contents
Functions
- noneNotIn() : string
- Returns an AQL expression that checks if none of the elements of an array are contained in another array (NOT IN).
Functions
noneNotIn()
Returns an AQL expression that checks if none of the elements of an array are contained in another array (NOT IN).
noneNotIn(mixed $leftOperand, mixed $rightOperand) : string
Equivalent to the ArangoDB NONE NOT IN array comparison operator.
Example:
[ 1, 2, 3 ] NONE NOT IN [ 1, 2, 3 ]returnstrue[ 1, 2, 3 ] NONE NOT IN [ 4, 5, 6 ]returnsfalse
Parameters
- $leftOperand : mixed
-
The array or expression to evaluate.
- $rightOperand : mixed
-
The array or expression to test membership against.
Tags
Return values
string —The AQL predicate string.