InsertManyOperation
Summary
Canonical bulk-insert statement shape consumed by adapters.
Signature
type InsertManyOperation<table> = {
kind: "insertMany";
returning?: ReturningSelection;
table: table;
values: Record<string, unknown>[];
};
Canonical bulk-insert statement shape consumed by adapters.
type InsertManyOperation<table> = {
kind: "insertMany";
returning?: ReturningSelection;
table: table;
values: Record<string, unknown>[];
};