InsertOperation

View Source

Summary

Canonical insert statement shape consumed by adapters.

Signature

type InsertOperation<table> = {
  kind: "insert";
  returning?: ReturningSelection;
  table: table;
  values: Record<string, unknown>;
};