How to run multiple requests in queue? #3555
Unanswered
robert-janaszek
asked this question in
Q&A
Replies: 2 comments
-
I think you'd need something like a request pooling library that sits between react-query and the network, something like swimmer maybe? |
Beta Was this translation helpful? Give feedback.
0 replies
-
There is a nice solution here using |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have long list of long-running queries and I want to run them in queue (eg 2 at the time). How can I achieve that in react-query? I can't run them all at once, because it will clog up the browser. I tried playing with
enabled
flag, but this causes massive amount of issues.Beta Was this translation helpful? Give feedback.
All reactions