DynamoDB: Get Last 10 Records (Guide w/ Code Examples)

Provided by Rafal Wilinski
To retrieve the last 10 records from a DynamoDB table using the JavaScript SDK, you can use the query or scan methods with the following parameters:
**TableName**: Name of the table you want to query**Limit**: Maximum number of records you want to retrieve (in this case, 10)**ScanIndexForward**: false ( To get the last 10 items )**KeyConditionExpression**: 'partitionKey = :partitionKey'**ExpressionAttributeValues**: {':partitionKey': partitionKeyValue }
var AWS = require('aws-sdk'); var ddb = new AWS.DynamoDB({apiVersion: '2012-08-10'}); var params = { TableName: 'myTable', Limit: 10, ScanIndexForward: false, KeyConditionExpression: 'partitionKey = :partitionKey', ExpressionAttributeValues: { ':partitionKey': partitionKeyValue } }; ddb.query(params, function(err, data) { if (err) { console.log("Error", err); } else { console.log("Success", data.Items); } });
Similar Code Examples
- DynamoDB BatchWriteItem in Typescript
- DynamoDB: Create if Not Exists
- DynamoDB: Query Greater Than
- DynamoDB: BatchGetItem
- DynamoDB: Delete Multiple Items in Javascript
- DynamoDB: Not Begins With
- DynamoDB: Batch Get
- DynamoDB: Query Group By
- DynamoDB: Get Last Inserted Item
- DynamoDB: Get Random Item
- DynamoDB: Query Ends With
- DynamoDB: Query KeyConditionExpression
- DynamoDB: Query Date Range
- DynamoDB Get in Typescript
- DynamoDB: Bulk Insert
Dynobase is a Professional GUI Client for DynamoDB
Try 7-day free trial. No credit card needed.
Product Features
DynamoDB Tools
DynamoDB Info
© 2025 Dynobase