© 2026 Hedgehog Software, LLC
model Post { id String @id @default(cuid()) title String slug String content String updatedAt DateTime @updatedAt createdAt DateTime @default(now()) }
const post = await prisma.post.findUnique({ where: { slug } });
prisma.user.findUnique()