FunctionsmaxVersion: v4.23On this pagemaxComputes the maximum of all grouped values.max(xs:list) -> numberDescriptionThe max function returns the largest numeric value in xs.xs: listThe values to evaluate.ExamplesFind the maximum valuefrom [ {x: 1}, {x: 2}, {x: 3}, ] summarize max_value=max(x){max_value: 3}See Alsomin, mean, sum