Interface QueryConditionComparison<V>Protected

Query condition for comparison operators.

interface QueryConditionComparison<V> {
    operator:
        | "<"
        | "<="
        | ">"
        | ">="
        | "="
        | "<>";
    property: string;
    value?: V;
}

Type Parameters

Hierarchy (view full)

Properties

operator:
    | "<"
    | "<="
    | ">"
    | ">="
    | "="
    | "<>"
property: string
value?: V