Interface IDatabaseTableQueryWhereValue

Interface for a where clause with basic operators and a single value.

interface IDatabaseTableQueryWhereValue {
    key: string;
    operator:
        | "=="
        | "!="
        | ">"
        | "<"
        | "<="
        | ">=";
    value: SupportedIndexType;
}

Properties

Properties

key: string

The key must be a valid indexed key path for the table.

operator:
    | "=="
    | "!="
    | ">"
    | "<"
    | "<="
    | ">="

The operator must be a valid operator for the key type.

The value must be a single valid value for the key type.