Skip to content
Legacy docs for Tenzir v5.x. For the latest Tenzir v6 series, visit docs.tenzir.com. Migrating from v5? Read the Tenzir v6 migration guide.

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}

Last updated: