We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
모임 목록 조회 시 중복 데이터가 조회되는 오류가 발생
모임 목록 조회 API 요청 시에 중복 데이터가 조회됨
@Query("SELECT new com.namo.spring.db.mysql.domains.schedule.dto.ScheduleSummaryQuery(" + "s.id, " + "p.customTitle, " + "s.period.startDate, " + "p.customImage, " + "s.participantCount, " + "s.participantNicknames, " + "p.hasDiary, " + "a.id) " + "FROM Participant p " + "LEFT JOIN Schedule s ON p.schedule = s " + "LEFT OUTER JOIN Activity a ON a.schedule = s " + "LEFT JOIN Member m ON p.member = m " + "WHERE m.id = :memberId " + "AND s.scheduleType = :scheduleType")
활동 존재 여부를 함께 조회는 로직을 추가하면서, 일정에 관련된 활동의 개수만큼 반환됨.
The text was updated successfully, but these errors were encountered:
joowojr
Successfully merging a pull request may close this issue.
⛔️Bug
모임 목록 조회 시 중복 데이터가 조회되는 오류가 발생
Bug Situation
모임 목록 조회 API 요청 시에 중복 데이터가 조회됨
Expected behavior
활동 존재 여부를 함께 조회는 로직을 추가하면서, 일정에 관련된 활동의 개수만큼 반환됨.
Screenshots
Version
Additional context
The text was updated successfully, but these errors were encountered: