Interface IDatabaseTableQueryWhereBetween

Interface for a where values are 'between' the lower and upper bounds. Between is always inclusive.

interface IDatabaseTableQueryWhereBetween {
    key: string;
    operator: "between";
    value: [SupportedIndexType, SupportedIndexType];
}

Properties

Properties

key: string

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

operator: "between"

The operator must be 'between'.

The value must be an array of two elements. The first element is the lower bound and the second element is the upper bound.

Generated using TypeDoc