Skip to content

Commit

Permalink
[Fix] #284 - 쿼리문 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
0lynny committed Jun 1, 2024
1 parent 6bf7c41 commit 4c3b22d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ private OrderSpecifier<?> order(Criteria criteria) {
@Override
public List<Objective> findSocialObjectives() {
return queryFactory.selectFrom(objective).distinct()
.leftJoin(objective.user).fetchJoin()
.join(objective.user).fetchJoin()
.leftJoin(objective.keyResultList, keyResult).fetchJoin()
.leftJoin(keyResult.taskList, task)
.where(objective.isPublic.eq(true))
Expand Down

0 comments on commit 4c3b22d

Please sign in to comment.