I am trying to return a post with all comments that have been approved. So I want all fields from the post object and all comments with approved set to true. It seems like this query is only giving me comments. How do I modify it to get what I want?
const post = await prisma.post.findUnique({
where: { slug },
select: { Comment: { where: { approved: true } } },
});
Thanks for any help.