apoc.coll.different
Function APOC Core
apoc.coll.different(values) - returns true if values are different
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 |
Was this page helpful?