Marcel Overdijk
async function main() { const allPosts = await prisma.post.findMany({ include: { author: true }, }) console.dir(allPosts, { depth: null }) }