Interface UnaryObjectFilterClauseBeta

Represents a filter clause with unary operations in a query object. It supports operations for checking null or not-null conditions.

interface UnaryObjectFilterClause {
    col: string;
    op: "IS NULL" | "IS NOT NULL";
}

Properties

Properties

col: string
op: "IS NULL" | "IS NOT NULL"