Skip to content

or(expressions): Expression

Defined in: src/query/expression.ts:403

At least one of these must hold.

A single expression is returned unwrapped.

readonly Expression[]

The expressions, as separate arguments or one array.

Expression

If given nothing to combine.

or(eq("status", "open"), not(exists("closedAt")))

or(…expressions): Expression

Defined in: src/query/expression.ts:404

At least one of these must hold.

A single expression is returned unwrapped.

Expression[]

The expressions, as separate arguments or one array.

Expression

If given nothing to combine.

or(eq("status", "open"), not(exists("closedAt")))