apoc.coll.min
Function
apoc.coll.min(values [Any])
- returns the minimum of all values in the given list.
Usage examples
The following computes the minimum of values in a list:
RETURN apoc.coll.min([1,2,3,4,5]) AS output;
Output |
---|
1 |
Was this page helpful?