apoc.coll.containsAll
Function
apoc.coll.containsAll(coll1 [Any], coll2 [Any])
- returns whether or not all of the given values exist in the given collection (using a HashSet).
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 |
Was this page helpful?