zibri
    Preparing search index...
    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.