FunctionsanyVersion: v4.23On this pageanyComputes the disjunction (OR) of all grouped boolean values.any(xs:list) -> boolDescriptionThe any function returns true if any value in xs is true and false otherwise.xs: listA list of boolean values.ExamplesCheck if any value is truefrom [ {x: false}, {x: false}, {x: true}, ] summarize result=any(x){result: true}See Alsoall