Query condition for the in operator. Ensures that all elements in the array or set are of the same type.

interface QueryConditionIn<V> {
    operator: "in";
    property: string;
    value?: Set<V> | V[];
}

Type Parameters

Hierarchy (view full)

Properties

operator
property: string
value?: Set<V> | V[]