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
});
question from:https://stackoverflow.com/questions/65938804/calling-usemutation-in-a-loop-like-usequeries-in-react-query