Open
Description
First of all, thanks for the amazing tool!
I am working on a project using Localstack to development, and we use the DynamoDB-Manager to check the data we are putting into the database.
However, we use DynamoDB Atomic operations, which means that at some points we send some SET commands to the database.
When I check the data using the aws cli, this is the response I get:
{
"Item": {
"DbVersion": {
"N": "0"
},
"Roles": {
"SS": [
"admin"
]
},
"Id": {
"S": "0123"
}
}
}
However, when I get the same item using the DynamoDB-Manager, this is the response I get:
{
"DbVersion": 0,
"Roles": {
"wrapperName": "Set",
"values": [
"admin"
],
"type": "String"
},
"Id": "0123"
}
Metadata
Metadata
Assignees
Labels
No labels