Hozifa Elgharbawy commited on
Commit
dd1edf0
·
1 Parent(s): b798149

update list in CrudService

Browse files
Files changed (1) hide show
  1. src/lib/services/crud.service.ts +10 -4
src/lib/services/crud.service.ts CHANGED
@@ -1,4 +1,5 @@
1
  import { HttpError } from "@lib/error-handling/http-error";
 
2
  import { AnyKeys, Document, FilterQuery, Model } from "mongoose";
3
 
4
  export const CrudService = <ModelDoc extends Document>(
@@ -28,8 +29,11 @@ export const CrudService = <ModelDoc extends Document>(
28
  limit?: number;
29
  skip?: number;
30
  } = {
31
- limit: 10,
32
- skip: 0,
 
 
 
33
  }
34
  ): Promise<{
35
  docs: ModelDoc[];
@@ -39,11 +43,13 @@ export const CrudService = <ModelDoc extends Document>(
39
  perPage: number;
40
  };
41
  }> {
42
- const docs = await this.model
43
  .find(filter)
44
  .limit(paginationOptions.limit)
45
- .skip(paginationOptions.skip);
 
46
 
 
47
  const total = await this.model.countDocuments(filter);
48
  const paginationData = {
49
  total: total,
 
1
  import { HttpError } from "@lib/error-handling/http-error";
2
+ import { populate } from "dotenv";
3
  import { AnyKeys, Document, FilterQuery, Model } from "mongoose";
4
 
5
  export const CrudService = <ModelDoc extends Document>(
 
29
  limit?: number;
30
  skip?: number;
31
  } = {
32
+ limit: 10,
33
+ skip: 0,
34
+ },
35
+ options?: {
36
+ populateObject: any
37
  }
38
  ): Promise<{
39
  docs: ModelDoc[];
 
43
  perPage: number;
44
  };
45
  }> {
46
+ const queryInstruction = this.model
47
  .find(filter)
48
  .limit(paginationOptions.limit)
49
+ .skip(paginationOptions.skip)
50
+ if (options?.populateObject) queryInstruction.populate(options.populateObject);
51
 
52
+ const docs = await queryInstruction
53
  const total = await this.model.countDocuments(filter);
54
  const paginationData = {
55
  total: total,