diff --git a/src/controllers/InsigniaController.ts b/src/controllers/InsigniaController.ts index 15a25eff..dbbf09ba 100644 --- a/src/controllers/InsigniaController.ts +++ b/src/controllers/InsigniaController.ts @@ -304,7 +304,7 @@ export class InsigniaController extends Controller { } const insignia = await this.insigniaRepository.find({ - select: ["id", "level", "insigniaTypeId"], + // select: ["id", "level", "insigniaTypeId"], where: { insigniaTypeId: insigniaTypeId }, }); diff --git a/src/controllers/ProfileEducationsController.ts b/src/controllers/ProfileEducationsController.ts index 8e8713be..43843960 100644 --- a/src/controllers/ProfileEducationsController.ts +++ b/src/controllers/ProfileEducationsController.ts @@ -260,7 +260,7 @@ export class ProfileEducationsController extends Controller { } const education = await this.profileEducationRepo.find({ - select: ["id", "level", "profileId", "isUse"], + // select: ["id", "level", "profileId", "isUse"], where: { profileId: profileId }, }); diff --git a/src/controllers/ProfileEducationsEmployeeController.ts b/src/controllers/ProfileEducationsEmployeeController.ts index a10e6479..cde8c6ec 100644 --- a/src/controllers/ProfileEducationsEmployeeController.ts +++ b/src/controllers/ProfileEducationsEmployeeController.ts @@ -278,7 +278,7 @@ export class ProfileEducationsEmployeeController extends Controller { } const education = await this.profileEducationRepo.find({ - select: ["id", "level", "profileEmployeeId"], + // select: ["id", "level", "profileEmployeeId"], where: { profileEmployeeId: profileId }, }); diff --git a/src/controllers/ProfileEducationsEmployeeTempController.ts b/src/controllers/ProfileEducationsEmployeeTempController.ts index 64b75789..e90dfc1c 100644 --- a/src/controllers/ProfileEducationsEmployeeTempController.ts +++ b/src/controllers/ProfileEducationsEmployeeTempController.ts @@ -261,7 +261,7 @@ export class ProfileEducationsEmployeeTempController extends Controller { } const education = await this.profileEducationRepo.find({ - select: ["id", "level", "profileEmployeeId"], + // select: ["id", "level", "profileEmployeeId"], where: { profileEmployeeId: profileId }, });