Skip to content

min

Computes the minimum of all grouped values.

min(xs:list) -> number

The min function returns the smallest numeric value in xs.

The values to evaluate.

from {x: 1}, {x: 2}, {x: 3}
summarize min_value=min(x)
{min_value: 1}

max, mean, sum