InsertManyOperation

View Source

Summary

Canonical bulk-insert statement shape consumed by adapters.

Signature

type InsertManyOperation<table> = {
  kind: "insertMany";
  returning?: ReturningSelection;
  table: table;
  values: Record<string, unknown>[];
};