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

We feed arrays to dynamo-toolbox and it converts it to set. But dynamoDB or aws-sdk can't handle empty array. ```js dymanoDB.createSet([]) // throws error ``` I tried to mitigate this...

bug

Implements #142 Supports referenced attributes on FilterExpressions' fields 'eq' | 'ne' | 'lt' | 'lte' | 'gt' | 'gte'. How To: ```ts TestEntity.update({ // ... conditions: { attr: 'a', eq:...

Fixes a bug that occurs when adding or updating an entity with an attribute that is an object with a null prototype. Hopefully I understood the surrounding code correctly. If...

I know this isn't 100% right because it is causing a few dozen typescript errors, but I think it is important to assign & export a type to `Entity.schema`. I'm...

When trying to delete nested values in a map, I ran into issues, that it would crash when providing `null` as value. So I added it to have the same...

Hello there, While using the `Entity.putBatch` followed by `table.batchWrite()` I incurred in the following error: `Error: Field 'newField' does not have a mapping or alias` The entity I want to...

enhancement

``` FooEntity.update({ dictionary: { $set: { 'field-with-dash': 'bar', }, }, }) ``` This update will fail as the update method will generate an ExpressionAttributeName containing `{ '#field-with-dash': 'field-with-dash' }` and...

bug
good first issue

For the table item I am getting correctly parsed result but for GSI1 result is not parsed. for table I get ``` { playerId : '123', otherId : '32' }...

question

Strings containing whitespace only (e.g. `" "`) are treated as null and removed by default. Though it's possible to turn this behavior off by disabling `removeNullAttributes`, it's not possible to...

enhancement

we don't know our schema well yet; every time we try to save an item with that has a property not defined in the Entity constructor, the operation crashes and...

enhancement