interface GetDocumentQueryArgsParams<C> {
    hashKey: string;
    hashKeyToken: C["HashKey"] | C["ShardedKeys"];
    indexParamsMap: Record<string, IndexParams>;
    indexToken: string;
    pageKey?: PageKey<C>;
    pageSize?: number;
    tableName: string;
}

Type Parameters

Properties

hashKey: string
hashKeyToken: C["HashKey"] | C["ShardedKeys"]
indexParamsMap: Record<string, IndexParams>
indexToken: string
pageKey?: PageKey<C>
pageSize?: number
tableName: string