xxxxxxxxxx
// Run inside `async` function
const user = await prisma.user.create({
data: {
name: req.body.name,
email: req.body.email,
posts: {
createMany: { title: req.body.post.title, content: req.body.post.content },
},
},
})