apoc.coll.isEqualCollection
Syntax |
|
||
Description |
Returns true if the two collections contain the same elements with the same cardinality in any order (using a HashMap). |
||
Arguments |
Name |
Type |
Description |
|
|
The list of values to compare against |
|
|
|
The list of values to compare against |
|
Returns |
|
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 |