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

    Interface QueryConditionIn<V>

    Query condition for the in operator. Ensures that all elements in the array or set are of the same type.

    interface QueryConditionIn<V extends NativeScalarAttributeValue> {
        operator: "in";
        property: string;
        value?: Set<V> | V[];
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    operator: "in"

    Operator discriminator.

    property: string

    Attribute/property name in the DynamoDB item.

    value?: Set<V> | V[]

    Values for the IN list. Missing/empty values result in no condition being added.