The DynamoDB client instance to use.
The query input.
Paginate through a query and pass each page of results to a callback.
Pagination can be aborted by returning false
(or a Promise that
resolves to false
) from the callback.
For large results this can use significantly less memory than queryAll.
The DynamoDB client instance to use.
The query input.
A function that each page of results is passed to. Return
false
(or a Promise that resolves to false
) to abort the query.
Paginate through a query to count all results. This is more efficient than queryAll when only the count is needed.
The DynamoDB client instance to use.
The query input.
Generated using TypeDoc
Paginate through a query to collect all results.
For large results this can use significantly more memory than queryByCallback.