Skip to content

PreparedGetTransaction

type PreparedGetTransaction<Schema> = object;

Represents a TransactGet command bound to a specific entity, ready to be included in a table-level TransactGet command.

Schema extends ZodObject

The Zod schema type associated with the DynamoEntity.

entity: DynamoEntity<Schema>;

keys: object[];
Key: DynamoKey;
TableName: string;

parseResults(items, skipValidation): Promise<(
| EntitySchema<Schema>
| undefined)[]>;

unknown[]

boolean

Promise<( | EntitySchema<Schema> | undefined)[]>