Compare commits

..

2 Commits

2 changed files with 4 additions and 0 deletions

View File

@ -200,6 +200,8 @@ class AdminCalculateQueryRepository(private val queryFactory: JPAQueryFactory) {
) )
.groupBy(formattedDate, creatorCommunity.id) .groupBy(formattedDate, creatorCommunity.id)
.orderBy(member.id.asc(), formattedDate.desc()) .orderBy(member.id.asc(), formattedDate.desc())
.offset(offset)
.limit(limit)
.fetch() .fetch()
} }
} }

View File

@ -289,6 +289,8 @@ class CreatorAdminCalculateQueryRepository(private val queryFactory: JPAQueryFac
) )
.groupBy(formattedDate, creatorCommunity.id) .groupBy(formattedDate, creatorCommunity.id)
.orderBy(member.id.asc(), formattedDate.desc()) .orderBy(member.id.asc(), formattedDate.desc())
.offset(offset)
.limit(limit)
.fetch() .fetch()
} }
} }