Interface WidgetSourceFilterClause

interface WidgetSourceFilterClause {
    appliesTo?: readonly string[];
    field: string;
    operator:
        | "in"
        | "!="
        | "<"
        | "<="
        | ">"
        | ">="
        | "="
        | "between"
        | "is-null"
        | "is-not-null"
        | "like"
        | "not-in";
    value?: unknown;
}

Properties

appliesTo?: readonly string[]
field: string
operator:
    | "in"
    | "!="
    | "<"
    | "<="
    | ">"
    | ">="
    | "="
    | "between"
    | "is-null"
    | "is-not-null"
    | "like"
    | "not-in"
value?: unknown