Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
390 views
Welcome To Ask or Share your Answers For Others

1 Answer

You can make your mutate function fire off many delete requests via Promise.all. It would still be only one mutation then.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...