Merge pull request '콘텐츠 랭킹 데이터 전체보기 API - 페이징 추가' (#45) from test into main

Reviewed-on: #45
This commit is contained in:
klaus 2023-10-14 21:20:19 +00:00
commit 52fae596fa
1 changed files with 1 additions and 0 deletions

View File

@ -478,6 +478,7 @@ class AudioContentQueryRepositoryImpl(private val queryFactory: JPAQueryFactory)
.where(where)
.groupBy(audioContent.id)
.orderBy(order.can.sum().desc())
.offset(offset)
.limit(limit)
.fetch()
}