Develop & Deploy Serverless App Lesson 3 Serverless Framework: Queries With Node.js
yt link
An example of how to send a query to DynamoDB with Node.js
const docClient = new AWS.DynamoDB.DocumentClient()
const result = await docClient.query({
TableName: 'GameScore',
KeyConditionExpression: 'GameId = :gameId',
ExpressionAtt...