Interface IDatabaseTableQueryWhereValues

Interface for a where values are 'in' or 'not-in' the given values.

interface IDatabaseTableQueryWhereValues {
    key: string;
    operator: "in" | "not-in";
    value: SupportedIndexType[];
}

Properties

Properties

key: string

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

operator: "in" | "not-in"

The operator must be 'in' or 'not-in'.

The value must be an array of values.

Generated using TypeDoc