Is it possible to create queries outside of context?
I have a load function in a
I'm running a adapter-static, so all this is purely on the browser.
I'd like to send the query through as a store to the pages.
Unfortunately, it looks like
Is this a bug in tanstacks context.ts, or just not possible with the design?
+layout.tsI'm running a adapter-static, so all this is purely on the browser.
I'd like to send the query through as a store to the pages.
Unfortunately, it looks like
@tanstack/svelte-query/context.ts has a call getIsRestoringContext = (): Readable<boolean> which results in a call to getContext in svelte - which throws.Is this a bug in tanstacks context.ts, or just not possible with the design?