Even I would like to have the same functionality, where i need to call useMutation in Side a loop where data is prepared and send as payload
aDeleteVariantData.forEach((oDeleteItem, nIndex) => { oDeleteVariants.mutate(oDeleteItem); // We are able to delete with axios directly but not using the mutate functionality. // how should achive this. // delete(`/varient varientId= ${(oDeleteItem.id)}`) //For Each delete we have different url parameters which is not possible with the mutate // Is there anything like useQuries for useMutate
});
You can make your mutate function fire off many delete requests via Promise.all. It would still be only one mutation then.
Promise.all
1.4m articles
1.4m replys
5 comments
57.0k users