apoc.coll.min

Function APOC Core

apoc.coll.min([0.5,1,2.3])

Signature

apoc.coll.min(values :: LIST? OF ANY?) :: (ANY?)

Input parameters

Name Type Default

values

LIST? OF ANY?

null

Usage Examples

The following computes the minimum of values in a list:

RETURN apoc.coll.min([1,2,3,4,5]) AS output;
Table 1. Results
Output

1