/* @refresh reload */ import { QueryClient, QueryClientProvider, useQuery, } from '@tanstack/solid-query' import { SolidQueryDevtools } from '@tanstack/solid-query-devtools' import { For, Match, Show, Switch, createSignal } from 'solid-js' import { render } from 'solid-js/web' import type { Setter } from 'solid-js' import type { QueryFunction } from '@tanstack/solid-query' // Define a default query function that will receive the query key const defaultQueryFn: QueryFunction = async ({ queryKey }) => { const response = await fetch( `https://jsonplaceholder.typicode.com${queryKey[0]}`, { method: 'GET', }, ) return response.json() } // provide the default query function to your app via the query client const queryClient = new QueryClient({ defaultOptions: { queries: { queryFn: defaultQueryFn, }, }, }) function App() { const [postId, setPostId] = createSignal(-1) return (

As you visit the posts below, you will notice them in a loading state the first time you load them. However, after you return to this list and click on any posts you have already visited again, you will see them load instantly and background refresh right before your eyes!{' '} (You may need to throttle your network speed to simulate longer loading sequences)

-1} fallback={}>
) } function Posts(props: { setPostId: Setter }) { // All you have to do now is pass a key! const state = useQuery(() => ({ queryKey: ['/posts'] })) return (

Posts

Loading... Error: {(state.error as Error).message} <>
{state.isFetching ? 'Background Updating...' : ' '}
) } function Post(props: { postId: number; setPostId: Setter }) { // You can even leave out the queryFn and just go straight into options const state = useQuery(() => ({ queryKey: [`/posts/${props.postId}`], enabled: !!props.postId, })) return (
Loading... Error: {(state.error as Error).message} <>

{state.data.title}

{state.data.body}

{state.isFetching ? 'Background Updating...' : ' '}
) } render(() => , document.getElementById('root') as HTMLElement)