model Products {
id String @id @default(auto()) @map("_id") @db.ObjectId
csso Json
}
const addProd = await prisma.products.create({
data: {
csso: {
image: req.file.filename,
name: req.body.name,
desc: req.body.desc
}
}
})