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

    Interface CreateQueryBuilderOptions<C, ET, CF>

    Options for createQueryBuilder.

    interface CreateQueryBuilderOptions<
        C extends BaseConfigMap,
        ET extends EntityToken<C>,
        CF = unknown,
    > {
        entityClient: EntityClient<C, CF>;
        entityToken: ET;
        hashKeyToken: C["HashKey"] | C["ShardedKeys"];
        pageKeyMap?: string;
    }

    Type Parameters

    Index

    Properties

    entityClient: EntityClient<C, CF>

    EntityClient instance.

    entityToken: ET

    Entity token for the query.

    hashKeyToken: C["HashKey"] | C["ShardedKeys"]

    Hash key token (global or sharded).

    pageKeyMap?: string

    Optional dehydrated page-key map string to resume paging.