FunctionsallVersion: v4.23On this pageallComputes the conjunction (AND) of all grouped boolean values.all(xs:list) -> boolDescriptionThe all function returns true if all values in xs are true and false otherwise.xs: listA list of boolean values.ExamplesCheck if all values are truefrom [ {x: true}, {x: true}, {x: false}, ] summarize result=all(x){result: false}See Alsoany