FindManyOptions

View Source

Summary

Options for loading many rows from a table.

Signature

type FindManyOptions<table, relations> = {
  limit?: number;
  offset?: number;
  orderBy?: OrderByInput<table>;
  where?: SingleTableWhere<table>;
  with?: relations;
};