-
Notifications
You must be signed in to change notification settings - Fork 0
/
updateUser.js
27 lines (25 loc) · 856 Bytes
/
updateUser.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import * as dynamoDbLib from "./libs/dynamodb-lib";
import { success, failure } from "./libs/response-lib";
export async function main(event, context) {
const data = JSON.parse(event.body);
const params = {
TableName: "user_table",
Key: {
username: data.username,
},
UpdateExpression: "SET liked_components = :liked_components, liked_workouts = :liked_workouts",
ExpressionAttributeValues: {
":liked_components": data.liked_components,
":liked_workouts": data.liked_workouts
},
// 'ReturnValues' specifies if and how to return the item's attributes,
// where ALL_NEW returns all attributes of the item after the update
ReturnValues: "ALL_NEW"
};
try {
await dynamoDbLib.call("update", params);
return success(params.Item);
} catch (e) {
return failure({ status: false });
}
}