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

Hello all, I have the following issue: I have an entity called CreatedAt, storing for specific types a CreatedAt record (for a specific sortkey lookup). One of my attributes is...

enhancement
good first issue
question

Citing this test https://github.com/jeremydaly/dynamodb-toolbox/blob/6d20a3026cb94a46b2858bf3457cbb38c1824a11/src/__tests__/table-creation.unit.test.ts#L21-L22 the `autoExecute` and `autoParse` options need to be annotated as to their default values. (I went looking for this tonight and had to sourcedive to find...

documentation
good first issue

Hi. I'm trying to apply a filter with nested attribute but it's not retrieving the results. Does it work? const options: any = { beginsWith: 'VALUE#', index: 'GSI1', limit: +input.limit,...

question

Currently, if we want to inspect the payload and its auto-generated values, we have to step outside of the `Table.transactWrite` method and use something like this: ```ts const payload =...

enhancement

Thanks for the quick release of the previous fix! However, the update method types overlay is still not working for me, I found another possible issue: The return type of...

Not sure or anyone else noticed it but when we moved from v3 to the current version where TS support was added, we noticed a lot of delay in VSCode...

Hello, I work with document includes array with object (0.3.5) ```json { "recordId": 1234, "photos": [ {"id": 1, "item_front": "abcd", "item_back": "efgh"}, ... ] } ``` How can I set...