AWS - DynamoDB
Given this DynamoDB query code snippet, what will be the output if the table contains items with
userId 'user1' and 'user2' only?const params = {
TableName: 'Users',
KeyConditionExpression: 'userId = :uid',
ExpressionAttributeValues: { ':uid': 'user1' }
};
const result = await dynamoDBClient.query(params);
console.log(result.Items);