UpdateOperation

View Source

Summary

Canonical update statement shape consumed by adapters.

Signature

type UpdateOperation<table> = {
  changes: Record<string, unknown>;
  kind: "update";
  returning?: ReturningSelection;
  table: table;
  where: Predicate[];
};