I have a bunch of information stored in my state that I need to pass to my graphQL server using mutations, but I need to use the results of each mutation before I call the next one since I need to:
- Create a new object in my database
- Use the id generated for that object to create another object
- Modify the original object to store the id generated by the second object
I noticed that apollo Mutation components have an onCompleted callback, but I don't know how to use this callback to fire off another mutation or whether it's the right way solve my problem. I also looked into batching my mutations to send them all at once but it doesn't seem like that is the solution either. Any help would be appreciated
All you need to do is nest these mutations depending on the data being passed.
The
onCompleted
andonError
props can be used in your case, and they have access to the new data result too. But I personally think a nested format is more readable and easier to debug later.It would be something like:
As you've mentioned, the unique way to solve it is batching all the mutations, check out the issue related!
Actually, it's not that bad to compose them, you could do something like this:
Let me know if you're struggling with something!