I have two entities A & B and a many-many relation entity AB. How to implement the following sequence in the most appropriate react way without terminal actions
- Fetch AB by idAB
- Fetch A by AB.idA, update & save A
- Fetch B by Ab.idB, update & save B
- Delete AB by idAB
- Return the updated A Thank you in advance, Sergey