FindAllOptions: BaseRepositoryOptions & Pick<
    FindManyOptions<T>,
    "order" | "skip" | "take",
> & { 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.