Interface QueryConditionGroup<C>Protected

Grouping of multiple query conditions using logical operators. Allows for nesting of conditions.

interface QueryConditionGroup<C> {
    conditions: C[];
    operator: "or" | "and";
}

Type Parameters

Properties

Properties

conditions: C[]
operator: "or" | "and"