시리즈 리스트 조회 API

- offset, limit 적용
This commit is contained in:
2024-04-25 21:55:47 +09:00
parent 7b04803aa0
commit b10af9d9f1

View File

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