FindAllOptions: BaseRepositoryOptions & OmitStrict<
    FindManyOptions<T>,
    "transaction" | "where" | "relations" | "withDeleted",
> & { relations?: (keyof T)[]; where?: Where<T> }

Options for finding multiple entities.

Type Parameters

Type declaration

  • Optionalrelations?: (keyof T)[]

    The relations to include in the found entities.

  • Optionalwhere?: Where<T>

    The where filter to find the options by.