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

    Interface QueryConditionBeginsWith

    Query condition for the begins_with operator.

    interface QueryConditionBeginsWith {
        operator: "begins_with";
        property: string;
        value?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    operator: "begins_with"

    Operator discriminator.

    property: string

    Attribute/property name in the DynamoDB item.

    value?: string

    Value passed to begins_with(...). Omitted/empty values result in no condition being added.