Skip to content

any

Computes the disjunction (OR) of all grouped boolean values.

any(xs:list) -> bool

The any function returns true if any value in xs is true and false otherwise.

A list of boolean values.

from {x: false}, {x: false}, {x: true}
summarize result=any(x)
{result: true}

all