Skip to content

Commit

Permalink
⚡️ :: 쿼리 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
lyutvs committed May 6, 2023
1 parent ae6c76a commit ed63565
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@ class CustomSettingRepositoryImpl(
return jpaQueryFactory
.select(settingEntity.settingId.userId)
.from(settingEntity)
.leftJoin(categoryEntity.settingList, settingEntity)
.leftJoin(settingEntity.settingId.categoryEntity, categoryEntity)
.where(
settingEntity.isActivated.eq(isActivated)
.and(categoryEntity.topic.`in`(topic))
.and(categoryEntity.topic.eq(topic))
)
.fetch()
}
Expand Down

0 comments on commit ed63565

Please sign in to comment.