remix/data-table · TypeView Source
InsertOperation
Summary
Canonical insert statement shape consumed by adapters.
Signature
type InsertOperation<table> = {
kind: "insert";
returning?: ReturningSelection;
table: table;
values: Record<string, unknown>;
};