apollo-link-queue
apollo-link-queue copied to clipboard
Queue does not persist when application is closed
Hi, I've issue when closed the app and then run again, the data in queue don't persist. Any solutions?
This feature is critical to me as well (as users can sometimes stay offline for a few days). Couldn't queued items be stored locally in a lightweight database? :)
@alexisthual Did you find solution for this?
No I didn't! :)
Did you guys find a solution for this or went with another library? Like tanstack? @alexisthual @mircovippinn @qsdnedzid
I have the same issue, this is most likely to be handled by your app not by QueueLink itself. This is tricky due to how Apollo Operation is constructed with its Forward function and Observer being both closely tied to the specific network request.
This being said, it would be extremely helpful If enqueue function of QueueLink was typed as protected not as private. @helfer