I am working on an application where there are projects with a nested tree of assets. In the backend, the changed-date of the project is updated when one of the children of grandchildren (or grand-grand-children) is updated.
In react-apollo, I have set-up all queries such that the updated object is returned and the cache of apollo is updated with the updated data. But I would also like to update the changed-date of the project (which may be a parent, grandparent, etc).
One solution is to use the refetchQueries option. However, that would mean I need to implement this refetchQueries option in all pieces where the useMutation hook is used, which causes a lot of code duplication plus the risk that it may be forgotten by other developers (team of 4). A better option is to create a custom hook that wraps the useMutation hook, but devs still need to use it.
So I am now looking at using apollo-link for this, which will affect all mutations performed. However, I can't figure out if it is possible to add a query to the operation, or to queue a query, and if possible - how to do it?
Thanks for your help!