FunctionsfirstVersion: v4.23On this pagefirstTakes the first non-null grouped value.first(xs:list) -> anyDescriptionThe first function returns the first non-null value in xs.xs: listThe values to search.ExamplesGet the first non-null valuefrom [ {x: null}, {x: 2}, {x: 3}, ] summarize first_value=first(x){first_value: 2}See Alsolast