DeleteOperation

View Source

Summary

Canonical delete statement shape consumed by adapters.

Signature

type DeleteOperation<table> = {
  kind: "delete";
  returning?: ReturningSelection;
  table: table;
  where: Predicate[];
};