Replies: 2 comments
-
I am pretty sure you can already achieve something like this with a combination of |
Beta Was this translation helpful? Give feedback.
0 replies
-
I have this is my app https://gist.github.com/tchak/bdcba6668610520fe8196747d5b27b4b |
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
-
If you are building something like a dashboard that needs to be updated from time to time without expecting the user to navigate you have right now the option to use Remix loaders to get the initial data and then React Query (or any similar library) providing that initial data and let RQ use their revalidation strategies to keep the data up to date.
If Remix exposed a way to trigger a refetch this could be solved with smaller implementations of only the revalidation strategy you want to use
Example API
Beta Was this translation helpful? Give feedback.
All reactions