Sends a 204 No Content response with no body. Use for successful DELETE operations or updates where no data needs returning.
204 No Content
Express response object
await prisma.membership.delete({ where: { ... } })NoContent(res) Copy
await prisma.membership.delete({ where: { ... } })NoContent(res)
Sends a
204 No Contentresponse with no body. Use for successful DELETE operations or updates where no data needs returning.