Abstract
Readonly
createdThe timestamp marking when the entity was created
Readonly
idA unique identifier for the entity itself, automatically generated upon creation.
Readonly
typeThe type of the Entity
Readonly
updatedThe timestamp marking the last update to the entity. Initially set to the same value as createdAt
.
Same as the static update
method but on an instance. Returns the full updated instance
Static
createCreate an entity. If foreign keys are included in the attributes then links will be demoralized accordingly
Attributes of the model to create
The new Entity
const newUser = await User.create({ name: "Alice", email: "alice@example.com", profileId: "123" });
Static
deleteDelete an entity by ID
The id of the entity to update
Static
findFind an entity by Id and optionally include associations.
Entity Id.
Optional
options: undefinedNo options provided, returns the entity without included associations.
An entity without included associations serialized.
Find an entity by Id and optionally include associations.
Entity Id.
No options provided, returns the entity without included associations.
An entity without included associations serialized.
Static
partitionStatic
queryQuery an EntityPartition by EntityId and optional SortKey/Filter conditions. QueryByIndex not supported. Use Query with keys if indexName is needed
Optional
options: OptionsWithoutIndexQueryOptions. Supports filter, consistentRead and skCondition. indexName is not supported
Query by PartitionKey and optional SortKey/Filter/Index conditions without and index When querying without an index the key conditions must be the PartitionKey and SortKey defined on the entity
PartitionKey value and optional SortKey condition. Keys must be attributes defined on the model
Optional
options: OptionsWithoutIndexQueryBuilderOptions
const user = await User.query({ pk: "User#123", sk: "Profile#123" });
const user = await User.query({ pk: "User#123", sk: { $beginsWith: "Profile" } });
const result = await User.query(
{
myPk: "User|123"
},
{
filter: {
type: ["Profile", "Preferences"],
createdAt: { $beginsWith: "2023" },
$or: [
{
name: "John",
email: { $beginsWith: "testing }
},
{
name: "Jane",
updatedAt: { $beginsWith: "2024" },
},
{
id: "123"
}
]
}
}
);
Query by PartitionKey and optional SortKey/Filter/Index conditions with an index When querying on an index, any of the entities attributes can be part of the key condition
Any attribute defined on the entity that is part of an index's keys
QueryBuilderOptions
Static
updateUpdate an entity. If foreign keys are included in the attribute then:
The id of the entity to update
Attributes to update
Serves as an abstract base class for entities in the ORM system. It defines standard fields such as
id
,type
,createdAt
, andupdatedAt
, and provides static methods for CRUD operations and queries. This class encapsulates common behaviors and properties that all entities share, leveraging decorators for attribute metadata and supporting operations like finding, creating, updating, and deleting entities.Table classes should extend this class, and each entity should extend the table class
Entities extending
DynaRecord
can utilize these operations to interact with their corresponding records in the database, including handling relationships between different entities.Example