hi there, anyone of u implement soft delete witho...
# orm-help
e
hi there, anyone of u implement soft delete without we need descript all at middleware like current ? Thanks all https://www.prisma.io/docs/concepts/components/prisma-client/middleware/soft-delete-middleware
n
Hey 👋 Are you facing any issues in implementing soft delete through middleware?
e
just what i think if can use as simple like this more helpful, thanks
Copy code
model Person {
   // ...
   deleted Date?  @softDelete(type: "cascade")
}
n
Hmm, Probably worth opening a Feature Request, this would involve implementing a new annotation, our engineering team should be able to respond on the implications on having this if you can create a feature request.