Stale data loading with ensureQueryData and useSuspenseQuery
I have a scenario where i go to this page, so the data is loaded, i go to a different page and call a mutation which invalidates
postsQueryOptions . When i go back to the first page the data is not fetched again since ensureQueryData doesn't care about stale data. What is the preferred way of handling this? There is an parameter
revalidateIfStale from ensureQueryData (Which i made the PR for) but wouldn't that throw an error on the useSuspenseQuery if that api for some reason throws an error?