-
Notifications
You must be signed in to change notification settings - Fork 52
Open
Description
Example Data:
let data = [{userid: "user1",someAttribute: "removeThis"},{userid: "user2",someAttribute: "value"}]
Then I want to remove an attribute from one User:
userTable().remove({userid: "user1", range: "someAttribute"})
userTable().update(userid: "user1",{ someAttribute: ""}) Does not work cause dynamodb does not allow empty string in database
But both does not work.
I want the following result:
let data = [{userid: "user1"},{userid: "user2",someAttribute: "value"}]
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels