typedorm
typedorm copied to clipboard
Strongly typed ORM for DynamoDB - Built with the single-table-design pattern in mind.
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...
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:...
Attribute `names` used by the `primary key` should be unique and shall not be reused by any entities
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...
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:...
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, })...
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...
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...
For Single table design, add support for efficiently querying OneToMany relations: Here are some thoughts on how it is likely to work: 
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...