const story = await prisma.story.create({
data: {
connect: {
authorId: { user.id }
},
title: "The Fjord of the Things",
description: "Defintiely NOT a derivative work",
chapters: {
create: [
{
title: "A Non-Expected Party"
content: "Froyo Shmaggins decided to throw a party."
}
]
}
}
});
const story = await prisma.story.create({
data: {
connect: {
authorId: { user.id }
},
title: "The Fjord of the Things",
description: "Defintiely NOT a derivative work",
chapters: {
create: [
{
title: "A Non-Expected Party"
content: "Froyo Shmaggins decided to throw a party."
}
]
}
}
});