UpdateManyOptions

View Source

Summary

Options for updating many rows.

Signature

type UpdateManyOptions<table> = {
  limit?: number;
  offset?: number;
  orderBy?: OrderByInput<table>;
  touch?: boolean;
  where: SingleTableWhere<table>;
};