is it possible to execute a "bulk delete" via a mu...
# prisma-whats-new
r
is it possible to execute a "bulk delete" via a mutation (e.g., pass in an array of IDs)?
s
This is available on the developer preview: https://github.com/graphcool/framework/pull/1318 as
deleteMany
.
Right now I use a custom resolver that does bulk deletes though - you might give that a try in the interim. Check this out as well: https://www.graph.cool/forum/t/deleting-associated-nodes-in-a-one-to-many-relationship/551/3
r
thanks!