apoc.coll.containsAll
Syntax |
|
||
Description |
Returns whether or not all of the given values exist in the given collection (using a HashSet). |
||
Arguments |
Name |
Type |
Description |
|
|
The list to search for the given values in. |
|
|
|
The list of values in the given list to check for the existence of. |
|
Returns |
|
Usage examples
The following checks if a collection contains all the values from another collection:
RETURN apoc.coll.containsAll([1,2,3,4,5], [3,7]) AS output;
Output |
---|
FALSE |
RETURN apoc.coll.containsAll([1,2,3,4,5], [1,3]) AS output;
Output |
---|
TRUE |
RETURN apoc.coll.containsAll([1,2,3,4,5], [4,1]) AS output;
Output |
---|
TRUE |