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