크리에이터 커뮤니티 #102

Merged
klaus merged 18 commits from test into main 2023-12-21 15:10:56 +00:00
1 changed files with 1 additions and 0 deletions
Showing only changes of commit 0df0d71660 - Show all commits

View File

@ -49,6 +49,7 @@ class CreatorCommunityQueryRepositoryImpl(private val queryFactory: JPAQueryFact
.where(where) .where(where)
.offset(offset) .offset(offset)
.limit(limit) .limit(limit)
.orderBy(creatorCommunity.createdAt.desc())
.fetch() .fetch()
} }