-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
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
[FEAT] 경기 목록 조회 라운드, 팀 아이디로도 조회할 수 있도록 수정 #118
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
수고하셨습니다! 테스트 작성에 시간을 많이 쓴 PR 같네요.. 머지해도 될 것 같습니다~
.and(() -> game.sport.id.in(gamesQueryRequestDto.getSportIds())) | ||
.and(() -> game.round.in(gamesQueryRequestDto.getRound())) | ||
.and(() -> game.id.in( | ||
gameTeamDynamicRepository.findAllByLeagueTeamIds(gamesQueryRequestDto.getLeagueTeamIds()))); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
엄청 복잡한 쿼리 괴물이 만들어지는 중... ㅋㅋㅋㅋㅋ
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ㅠ,ㅠ....
🌍 이슈 번호
📝 구현 내용
🍀 확인해야 할 부분
GamesQueryConditionMapper.mapOrderCondition()
를 우선 뒀는데 삭제할까요 아니면 그대로 두는 게 나을까요?