DynamoDB: Query Items (Guide w/ Code Examples)

Provided by Rafal Wilinski
You can use the query
operation to query items using the AWS JavaScript SDK. It takes in several parameters, including the table name, an object that defines the query, and a callback function to handle the query results.
Here is an example of how to query items from a DynamoDB table called myTable
where the id
attribute is equal to a specific value:
var AWS = require('aws-sdk'); var dynamoDb = new AWS.DynamoDB.DocumentClient(); var params = { TableName: "myTable", KeyConditionExpression: "id = :idValue", ExpressionAttributeValues: { ":idValue": "someIdValue" } }; dynamoDb.query(params, function(err, data) { if (err) { console.log(err); } else { console.log(data); } });
Similar Code Examples
- DynamoDB: Create if Not Exists
- DynamoDB: Get All Items
- DynamoDB: Delete Table
- DynamoDB: Batch Get
- DynamoDB: Get Random Item
- DynamoDB: Bulk Insert
- DynamoDB: Query Group By
- DynamoDB: BatchGetItem
- DynamoDB: Delete All Items With Partition Key
- DynamoDB: Get By ID
- DynamoDB: Get Last Inserted Item
- DynamoDB: Query Greater Than
- DynamoDB: Query JSON
- DynamoDB: Not Begins With
- DynamoDB: Query Global Secondary Index in Nodejs
Spend less time in the AWS console, use Dynobase.
First 7 days are. No credit card needed.
Product Features
DynamoDB Tools
DynamoDB Info
© 2025 Dynobase