Interface BinaryObjectFilterClauseBeta

Represents a filter clause with binary operations in a query object. It supports operations involving a column, a binary operator, and a comparator value.

interface BinaryObjectFilterClause {
    col: string;
    op: BinaryOperator;
    val: Comparator;
}

Properties

Properties

col: string