AWS - DynamoDB
This query code returns no items even though the table has matching data:
What is the error?
const params = {
TableName: 'Employees',
KeyConditionExpression: 'EmployeeId = :id',
ExpressionAttributeValues: { ':id': 'E123' }
};
const data = await client.query(params);
console.log(data.Items.length);What is the error?
