diff --git a/plu-domain/src/main/kotlin/com/th/plu/domain/domain/answer/repository/AnswerRepositoryCustom.kt b/plu-domain/src/main/kotlin/com/th/plu/domain/domain/answer/repository/AnswerRepositoryCustom.kt index 5648300..2d9362d 100644 --- a/plu-domain/src/main/kotlin/com/th/plu/domain/domain/answer/repository/AnswerRepositoryCustom.kt +++ b/plu-domain/src/main/kotlin/com/th/plu/domain/domain/answer/repository/AnswerRepositoryCustom.kt @@ -10,7 +10,7 @@ interface AnswerRepositoryCustom { fun findEveryAnswersWithCursorAndPageSize(questionId: Long, lastAnswerId: Long, pageSize: Long): List - fun findPublicAnswersCountByQuestionId(questionId: Long): Long + fun findPublicAnswersCountByQuestionId(questionId: Long): Long? fun findPublicAnswersLikeTopN(questionId: Long, getCount: Long): List }