Home

Prefetch

Loading...
const queryClient = makeQueryClient();
await queryClient.prefetchQuery(
  rq(listTodos).queryOptions({
    query: { limit: 10, offset: 0 },
  })
);

// Client — data already in cache
const { data } = useQuery(
  rq(listTodos).queryOptions({
    query: { limit: 10, offset: 0 },
  })
);