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

    Interface QueryConditionIn<V>Protected

    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"
    property: string
    value?: Set<V> | V[]