카테고리 없음
SequelizeEagerLoadingError: Comment is not associated to Comment!
tpghks9245
2023. 2. 2. 10:56
const fullComment = await Comment.findOne({
where: { id: comment.id },
include: [{
model: User,
attributes: ['id'],
}],
})
user 라우터 fullComment를 만드는 과정에서 include 속성을 잘못 줘서 발생된 오류.