dynamodb-toolbox icon indicating copy to clipboard operation
dynamodb-toolbox copied to clipboard

A simple set of tools for working with Amazon DynamoDB and the DocumentClient

Results 130 dynamodb-toolbox issues
Sort by recently updated
recently updated
newest added

Whenever I need to use query or scan and need to paginate the results I find myself using the same code over and over. My suggestion would be to add...

HI there! I'm having problems updating the status of a key on a secondary index, when updating the related attribute. I've the following entity definition: `gsi2pk: { type: 'string', prefix:...

This is not an issue. Just want to know is there a timeline for the migration from v2 to v3 library as it gives some performance improvement due to bundle...

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Iterators_and_Generators > In JavaScript an iterator is an object which defines a sequence and potentially a return value upon its termination. > > Specifically, an iterator is any object which...

enhancement
help wanted
good first issue

Hi, does anyone know how to use a one-time attribute in two indexes? The point is that we want to display all events according to the start in the organization...

I am receiving this error when I call MyEntity.parse() without an active Table connection: `Error: The 'MyProduct' entity must be attached to a Table to perform this operation` I have...

Similar to https://github.com/jeremydaly/dynamodb-toolbox/commit/71f55dba615c7219325f3e4c9ac6f8b7dcae4b72 and the related issue #34. I'm getting "Invalid Entity" under certain minification conditions where `instanceof` fails.

Entity: ```ts export const TenantMessageEntity = new Entity({ name: "TenantMessage", attributes: { // (messageId, isSystem) messageId: { partitionKey: true, type: "string", prefix: IdPrefixes.message, default: v4, }, isSystem: { type: "string",...

When performing an update operation with the `$set` operator, it is possible to end up with an invalid DynamoDB request. Using the following example works fine where `item.partialMap` is not...