Interface QueryConditionBetween<V>Protected

Query condition for the between operator. Ensures that both from and to are of the same type.

interface QueryConditionBetween<V> {
    operator: "between";
    property: string;
    value: {
        from?: V;
        to?: V;
    };
}

Type Parameters

Hierarchy (view full)

Properties

operator
property: string
value: {
    from?: V;
    to?: V;
}