시리즈 #167

Merged
klaus merged 35 commits from test into main 2024-04-26 18:51:10 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 0350f86322 - Show all commits

View File

@ -97,7 +97,7 @@ class ContentSeriesQueryRepositoryImpl(
return queryFactory
.select(hashTag.tag)
.from(series)
.innerJoin(series.keywordList, seriesKeyword).fetchJoin()
.innerJoin(series.keywordList, seriesKeyword)
.innerJoin(seriesKeyword.keyword, hashTag)
.where(series.id.eq(seriesId))
.fetch()
@ -112,7 +112,7 @@ class ContentSeriesQueryRepositoryImpl(
)
)
.from(series)
.innerJoin(series.contentList, seriesContent).fetchJoin()
.innerJoin(series.contentList, seriesContent)
.innerJoin(seriesContent.content, audioContent)
.where(series.id.eq(seriesId))
.fetchFirst()