Top-level interface for all operations in dynamodb-entity-store. Typically use the for(entity) method, but use the other methods here for more advanced usage

interface AllEntitiesStore {
    transactions: TransactionOperations;
    for<TItem, TPKSource, TSKSource>(entity: Entity<TItem, TPKSource, TSKSource>): SingleEntityOperations<TItem, TPKSource, TSKSource>;
    forMultiple(entities: Entity<any, any, any>[]): MultipleEntityOperations;
}

Properties

Methods

Properties

transactions: TransactionOperations

An object to wrap all transactional operations

Methods