시리즈 리스트 조회 API

- offset, limit 적용
This commit is contained in:
Klaus 2024-04-25 21:55:47 +09:00
parent 7b04803aa0
commit b10af9d9f1
1 changed files with 2 additions and 0 deletions

View File

@ -54,6 +54,8 @@ class ContentSeriesQueryRepositoryImpl(
return queryFactory return queryFactory
.selectFrom(series) .selectFrom(series)
.where(where) .where(where)
.offset(offset)
.limit(limit)
.fetch() .fetch()
} }
} }