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

Reviewed-on: 
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
src/main/kotlin/kr/co/vividnext/sodalive/content

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()
}