apoc.coll.different
Syntax |
|
||
Description |
Returns true if all the values in the given |
||
Arguments |
Name |
Type |
Description |
|
|
The list to check for duplicates. |
|
Returns |
|
Usage examples
The following indicates whether all values in a collection are different:
RETURN apoc.coll.different([1,3,5,7,9]) AS output;
Output |
---|
true |
The following indicates that at least one value in the collection is a duplicate:
RETURN apoc.coll.different([1,1,5,7,9]) AS output;
Output |
---|
false |