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 conjunction (AND) of all grouped boolean values.

all(xs:list) -> bool

The all function returns true if all values in xs are true and false otherwise.

A list of boolean values.

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

Last updated: