remix/data-table · TypeView Source
UpdateManyOptions
Summary
Options for updating many rows.
Signature
type UpdateManyOptions<table> = {
limit?: number;
offset?: number;
orderBy?: OrderByInput<table>;
touch?: boolean;
where: SingleTableWhere<table>;
};