UpdateOperation
Summary
Canonical update statement shape consumed by adapters.
Signature
type UpdateOperation<table> = {
changes: Record<string, unknown>;
kind: "update";
returning?: ReturningSelection;
table: table;
where: Predicate[];
};
Canonical update statement shape consumed by adapters.
type UpdateOperation<table> = {
changes: Record<string, unknown>;
kind: "update";
returning?: ReturningSelection;
table: table;
where: Predicate[];
};