refetchOnMount behavior differs between useQuery and useSuspenseQuery - Intentional? #8829
Unanswered
lackner-codefy
asked this question in
Q&A
Replies: 1 comment 2 replies
-
do you reset the error boundary after componentA unmounts? there won’t be another fetch until the error boundary is reset. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi community,
I stumpled upon this issue, and I'm not sure if its considered a bug or expected behavior. At least it feels "wrong" to me. The situation is as follows:
In my project, for a particular query key, some locations in the code use
useQuery
and handle errors manually:Other locations use
useSuspenseQuery
:Now, consider the following situation:
Despite
refetchOnMount
being true, the error boundary is triggered immediately, without giving the component any chance to actually load data. Note that results also don't change by setting it explicitly totrue
, or setting it to"always"
.As said above, this feels wrong to me, and limits the ability to mix
useQuery
anduseSuspenseQuery
in the same project. ComponentB knows nothing about ComponentA attempting to fetch the data before. ComponentB is located somewhere, where it is guaranteed that the backend will provide a useful response, but the code never attempts to load it. Note that remounting ComponentA actually attempts to refetch, as expected.For testing, you can use the following patch that modifies the
suspense
testcase within this repo:https://github.com/lackner-codefy/query/commit/638b09e8e7b2d39476800d9bf70a9416c78d64b3.patch
Or alternatively, clone the fork below:
https://github.com/lackner-codefy/query/tree/testcase-suspense-query/examples/react/suspense
Would be great to get some input on this :)
Best Regards
Beta Was this translation helpful? Give feedback.
All reactions