interface ds.DataQuery

Allow querying against a single field.

Will be mapped to a specific query technology by the underlying Datastore implementation.

Properties

op

Signature
op: "EQ" | "LT" | "GT" | "LTE" | "GTE" | "BETWEEN" | "IN" | "OBJECT" | "LIKE" | "ARRAY_CONTAINS";

value

Signature
value: string | number | [number, number] | string[] | boolean | {
        [key: string]: any;
    };