include질문이요
const fullPost = await Post.findOne({ where: { id: post.id, }, include: [ { model: User, // 게시글 작성자 attributes: ["id", "nickname"], }, ], include에서 model User에는 수많은 유저들이 있을텐데 그중에서 어떻게 post.id에 관한 게시글을 작성한 User를 찾을 수 있는 것인지에 대한 의문입니다. Post.associate랑 연관 되어 있는 것 같은데 잘 모르겠습니다.