Skip to content

Commit

Permalink
Add arc.tables.scanAll docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanblock committed Aug 10, 2023
1 parent 3654419 commit 18e8c5e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/views/docs/en/reference/runtime-helpers/node.js.md
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,11 @@ Each table has the following methods:
- Query a table by passing a full document query object
- [Additional documentation](https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/DynamoDB/DocumentClient.html#query-property)
- `scan([options][, callback]) → [Promise]`
- Scan the entire table; accepts document filter object
- Scan the table until pagination; accepts document filter object
- [Additional documentation](https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/DynamoDB/DocumentClient.html#scan-property)
- `scanAll([options][, callback]) → [Promise]`
- Scan the entire table with pagination handled automatically; accepts document filter object
- Larger tables generally equate to greater latency as `scanAll` paginates through all contents
- [Additional documentation](https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/DynamoDB/DocumentClient.html#scan-property)
- `update(record[, callback]) → [Promise]`
- Upsert a record; accepts document update object
Expand Down

0 comments on commit 18e8c5e

Please sign in to comment.