-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathget.js
More file actions
23 lines (19 loc) · 732 Bytes
/
get.js
File metadata and controls
23 lines (19 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import handler from "./libs/handler-lib";
import dynamoDb from "./libs/dynamodb-lib";
export const main = handler(async (event, context) => {
const params = {
TableName: process.env.tableName,
// key defines the partition key and sort key of the item to be retrieved
Key: {
userId: event.requestContext.identity.cognitoIdentityId, // the id of the author
noteId: event.pathParameters.id, // the id of the note from the path
},
};
const result = await dynamoDb.get(params);
console.log('RES', result, "\n PARAMS", params);
if (!result.Item) {
throw new Error("Item not found.");
}
// return the retrieved item
return result.Item;
});