DeleteOperation
Summary
Canonical delete statement shape consumed by adapters.
Signature
type DeleteOperation<table> = {
kind: "delete";
returning?: ReturningSelection;
table: table;
where: Predicate[];
};
Canonical delete statement shape consumed by adapters.
type DeleteOperation<table> = {
kind: "delete";
returning?: ReturningSelection;
table: table;
where: Predicate[];
};