fix: ดึง relations มาด้วย

This commit is contained in:
Net 2024-03-20 16:03:46 +07:00
parent 4dbef45d2c
commit b1f772408f

View file

@ -69,7 +69,14 @@ export class ProfileInformationController extends Controller {
],
})
public async detailProfileInformation(@Path() profileId: string) {
const getProfileInformation = await this.profileInformationRepo.findBy({ profileId });
const getProfileInformation = await this.profileInformationRepo.findOne({
relations: {
bloodGroup: true,
relationship: true,
gender: true,
},
where: { profileId },
});
if (!getProfileInformation) {
throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล");
}
@ -106,8 +113,15 @@ export class ProfileInformationController extends Controller {
],
})
public async getProfileInformationHistory(@Path() informationId: string) {
const record = await this.profileInformationHistoryRepo.findBy({
profileInformationId: informationId,
const record = await this.profileInformationHistoryRepo.find({
relations: {
bloodGroup: true,
relationship: true,
gender: true,
},
where: {
profileInformationId: informationId,
},
});
if (!record) {
throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล");