react-query-questions
solid-query-questions
table-questions
virtual-questions
router-questions
react-charts-questions
ranger-questions
vue-query-questions
svelte-query-questions
bling-questions
form-questions
angular-query-questions
start-questions
db-questions
start-showcase
router-showcase
📣-announcements
Svelte Query SSR doesn't work with ORPC
query.isLoading
, it log true
on the server but it render the UI without waiting the prefetch query, I guess. I also await the prefetch query and also use the fetch
from svelte as well. Did anyone got that issue?
```ts
export const load: PageLoad = async ({ fetch, parent }) => {
const orpc = getApiClient(fetch);
const { queryClient } = await parent();...Caching response in layout files
+layout.svelte
file where I fetch my data. The problem is that every time I navigate to another subpage that uses this layout, the data gets fetched again. Is there a way to configure Svelte Query so that it caches the data in the layout instead of refetching it on each navigation?Query parameter doesn't appear on query
Svelte Query Prefetching
Devtools in hosted environments
I need some help with a code
Question for Help with SvelteKit and TanStack Query Integration

Destructuring `createQuery` attributes causes my code to stop working
script
tag of my component:
```javascript...Cache Invalidation Issue with Prefetching
+page.ts
file,
```ts
export const load = async ({ parent, fetch }) => {...Issues with Caching and Error Handling in TanStack Svelte Query
How to do dependent queries in svelte?
Bug: Making a query returns `process not defined` on CSR application
QueryClientProvider
and trying to make a request with createQuery
. When I do that I get the error ReferenceError: process is not defined
. This seems like a Node error, and we don't do any server side rendering for now.
I tried changing imports from @tanstack/svelte-query
to @sveltestack/svelte-query
so that I use sveltestack's library and when I use that one it works, so I don't see anything specific from our app being a problem.
...Bug: SvelteKit - page store params becomes undefined during navigation
$page
store, they suddenly become undefined during navigation. (navigating out of page, where they're used along with createQuery
).
Error
```...Fetch query after another query has already been fetched
Query not fired with changing queryKey
Is it possible to create queries outside of context?
+layout.ts
I'm running a adapter-static, so all this is purely on the browser.
```ts...