typedorm icon indicating copy to clipboard operation
typedorm copied to clipboard

Strongly typed ORM for DynamoDB - Built with the single-table-design pattern in mind.

Results 95 typedorm issues
Sort by recently updated
recently updated
newest added

I wonder what is the best practice to query multiple items of the same entity type. I want to archive something like this ``` // mongoose example const batchAuthors =...

It is required for all unique attributes to be set when the record is created. https://github.com/typedorm/typedorm/blob/e6f36b9c87f929d282f6082411566bf8046ac9e9/packages/core/src/classes/transformer/document-client-request-transformer.ts#L225 But, sometimes in some case, the unique attribute is not available to be set...

enhancement
effort small
feature accepted

Verified that switching to v2 client works fine without changing anything. It looks like the query being passed to the client is ``` 'my-key' ``` instead of ``` { S:...

bug
released on @beta

Attribute `names` used by the `primary key` should be unique and shall not be reused by any entities. When this happens, TypeDORM should throw a validation error, indicating that this...

enhancement
effort small
released on @beta

Hello, I am trying to use this nice library in some AWS lambda functions, but I am facing issues with bundling with both esbuild and webpack. Webpack is complaining with:...

enhancement
effort medium
released on @beta

Hello! I have a case where I am creating multiple records via `BatchManager`. Part of the PartitionKey is generated using the `UUID4` strategy. For example: ```typescript @AutoGenerateAttribute({ strategy: AUTO_GENERATE_ATTRIBUTE_STRATEGY.UUID4, })...

enhancement
effort small
released on @beta
feature accepted
released on @alpha

I searched docs and some of the source for options to pass in the ability to read w/ strong consistency but couldn't find anything. Is this automatically applied, or currently...

enhancement
effort medium
released on @beta
released on @alpha

Mentioned here: https://github.com/typedorm/typedorm/issues/251, the testing module currently requires the aws-sdk library (v2) however the beta branch allows the usage of version 3 of the aws sdk. Link to code: https://github.com/typedorm/typedorm/blob/beta/packages/testing/index.ts...

bug

For Single table design, add support for efficiently querying OneToMany relations: Here are some thoughts on how it is likely to work: ![IMG_5020](https://user-images.githubusercontent.com/22066605/102730391-891c2800-4384-11eb-8532-22af2ccfc4bc.jpg)

enhancement
effort large
blocked

It is not possible to determine without the help of `isEnum` attribute to determine if the type of property is enum or object, but when one is not specified, do...

enhancement
effort small