Do server components cache their results with React Query?
I have a project that uses RSC to break down a single client component that fetches data into many server components and the minimal required client components. I am pretty sure Server Components don't cache their results, so is there a way I can update a server component to re-fetch the data? I'd rather not do some hacky thing like upping a counter to force a refresh. Can't say I didn't think about it though lol.
