diff --git a/src/apis/shops/shops.service.ts b/src/apis/shops/shops.service.ts index 2b2aac0..a092dcb 100644 --- a/src/apis/shops/shops.service.ts +++ b/src/apis/shops/shops.service.ts @@ -82,7 +82,13 @@ export class ShopsService { async findById({ shopId }: IShopsServiceFindById): Promise { const myShop = await this.shopsRepository.findOne({ where: { id: shopId }, - relations: ['reservation', 'image', 'review'], + relations: [ + 'reservation', + 'image', + 'review', + 'reservation.review', + 'reservation.user', + ], }); if (!myShop) {