```async function main() { const allPosts = awa...
# prisma-client
m
Copy code
async function main() {

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