prisma renvoie un nombre de relations avec inclure
const usersWithCount = await prisma.user.findMany({
include: {
_count: {
select: { posts: true },
},
},
})
Puzzled Puffin