Hi there
I’ve just stumbled on an interesting use-case. Is there a way how to prevent specific query from being aborted once the component that uses useQuery
hook unmounts? In this use case this component might get mounted/unmounted repeatedly in very short time and I would like to achieve a scenario where the very first request actually gets fulfilled and if the second request would come in the meantime it would get resolved using deduplication.
Thanks in advance for any tips
Currently using "@apollo/client": "3.6.8"