@karmaniverous/entity-client-dynamodb
    Preparing search index...

    Interface QueryConditionBetween<V>Protected

    Query condition for the between operator. Ensures that both from and to are of the same type.

    interface QueryConditionBetween<V extends ActuallyScalarAttributeValue> {
        operator: "between";
        property: string;
        value: { from?: V; to?: V };
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    operator: "between"
    property: string
    value: { from?: V; to?: V }