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

    Interface QueryConditionBetween<V>

    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"

    Operator discriminator.

    property: string

    Attribute/property name in the DynamoDB item.

    value: { from?: V; to?: V }

    Inclusive bounds. If both are missing, no condition is added.

    Type Declaration

    • Optionalfrom?: V

      Inclusive lower bound.

    • Optionalto?: V

      Inclusive upper bound.