apoc.coll.isEqualCollection
Function
apoc.coll.isEqualCollection(coll [Any], values [Any])
- returns true if the two collections contain the same elements with the same cardinality in any order (using a HashMap).
Usage examples
The following checks if two collections contain exactly the same values in any order:
RETURN apoc.coll.isEqualCollection([1,4,5], [1,5,4]) AS output;
Output |
---|
TRUE |
If the collections contain the same unique values but have a different cardinality, they aren’t considered equal:
RETURN apoc.coll.isEqualCollection([1,4,4,5], [1,5,4]) AS output;
Output |
---|
FALSE |
Was this page helpful?