`keepPreviousData` with `useSuspenseQuery` with nextjs streaming ssr
useSuspenseQuery with ReactQueryStreamedHydration from @tanstack/react-query-next-experimentalThis works great
However my query has a regular changing query key, but I want to show the previous data during loading states
So I switched
useSuspenseQuery to useQuery with placeholderData: keepPreviousData, this also worked great however it lost all of the server streaming behaviorIs it possible to get both here as
useSuspenseQuery does not have a placeholderData optionI tried dehydrating pending queries along with a
HydrationBoundary as shown here https://tanstack.com/query/latest/docs/framework/react/guides/advanced-ssr#streaming-with-server-componentsbut I was unable to replicate the same behavior as before (I see the fetch on the server and the client have the initial pending query state but it still makes another immediate request despite I have global
staleTime: Infinity (this did not happen with the original setup))any help is appriciated thanks
