diff --git a/api/src/utils/generics/base-repository.ts b/api/src/utils/generics/base-repository.ts index 717c3f78..c13a57be 100644 --- a/api/src/utils/generics/base-repository.ts +++ b/api/src/utils/generics/base-repository.ts @@ -255,13 +255,26 @@ export abstract class BaseRepository< return await this.executeOne(query, this.clsPopulate); } + /** + * @deprecated + */ + protected findQuery( + filter: TFilterQuery, + pageQuery?: QuerySortDto, + projection?: ProjectionType, + ); + + protected findQuery( + filter: TFilterQuery, + pageQuery?: PageQueryDto, + projection?: ProjectionType, + ); + protected findQuery( filter: TFilterQuery, - // TODO: QuerySortDto type need to be removed pageQuery?: QuerySortDto | PageQueryDto, projection?: ProjectionType, ) { - // TODO: current block need to be removed if (Array.isArray(pageQuery)) { const query = this.model.find(filter, projection); return query.sort([pageQuery] as [string, SortOrder][]); @@ -286,7 +299,7 @@ export abstract class BaseRepository< async find( filter: TFilterQuery, - pageQuery?: QuerySortDto | PageQueryDto, + pageQuery?: PageQueryDto, projection?: ProjectionType, ): Promise; @@ -295,6 +308,11 @@ export abstract class BaseRepository< pageQuery?: QuerySortDto | PageQueryDto, projection?: ProjectionType, ): Promise { + if (Array.isArray(pageQuery)) { + const query = this.findQuery(filter, pageQuery, projection); + return await this.execute(query, this.cls); + } + const query = this.findQuery(filter, pageQuery, projection); return await this.execute(query, this.cls); } @@ -326,10 +344,17 @@ export abstract class BaseRepository< projection?: ProjectionType, ): Promise { this.ensureCanPopulate(); - const query = this.findQuery(filters, pageQuery, projection).populate( - this.populate, - ); - return await this.execute(query, this.clsPopulate); + if (Array.isArray(pageQuery)) { + const query = this.findQuery(filters, pageQuery, projection).populate( + this.populate, + ); + return await this.execute(query, this.clsPopulate); + } else { + const query = this.findQuery(filters, pageQuery, projection).populate( + this.populate, + ); + return await this.execute(query, this.clsPopulate); + } } protected findAllQuery(sort?: QuerySortDto) {