We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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" }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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:
However, when I get the same item using the DynamoDB-Manager, this is the response I get:
The text was updated successfully, but these errors were encountered: