FindOneOptions

View Source

Summary

Options for loading a single row from a table.

Signature

type FindOneOptions<table, relations> = Omit<
  FindManyOptions<table, relations>,
  "limit" | "offset"
> & { where: SingleTableWhere<table> };