Skip to content

Commit 32caa07

Browse files
committed
docs(react-query): broken prefetching links
1 parent 361f704 commit 32caa07

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

docs/framework/react/guides/prefetching.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ There are a few different prefetching patterns:
1212
3. Via router integration
1313
4. During Server Rendering (another form of router integration)
1414

15-
In this guide, we'll take a look at the first three, while the fourth will be covered in depth in the [Server Rendering & Hydration guide](../ssr) and the [Advanced Server Rendering guide](../advanced-ssr).
15+
In this guide, we'll take a look at the first three, while the fourth will be covered in depth in the [Server Rendering & Hydration guide](../guides/ssr) and the [Advanced Server Rendering guide](../guides/advanced-ssr).
1616

17-
One specific use of prefetching is to avoid Request Waterfalls, for an in-depth background and explanation of those, see the [Performance & Request Waterfalls guide](../request-waterfalls).
17+
One specific use of prefetching is to avoid Request Waterfalls, for an in-depth background and explanation of those, see the [Performance & Request Waterfalls guide](../guides/request-waterfalls).
1818

1919
## prefetchQuery & prefetchInfiniteQuery
2020

@@ -196,7 +196,7 @@ This starts fetching `'article-comments'` immediately and flattens the waterfall
196196

197197
[//]: # 'Suspense'
198198

199-
If you want to prefetch together with Suspense, you will have to do things a bit differently. You can't use `useSuspenseQueries` to prefetch, since the prefetch would block the component from rendering. You also can not use `useQuery` for the prefetch, because that wouldn't start the prefetch until after suspenseful query had resolved. For this scenario, you can use the [`usePrefetchQuery`](../../reference/usePrefetchQuery), the [`usePrefetchQueries`](../../reference/usePrefetchQueries) or the [`usePrefetchInfiniteQuery`](../../reference/usePrefetchInfiniteQuery) hooks available in the library.
199+
If you want to prefetch together with Suspense, you will have to do things a bit differently. You can't use `useSuspenseQueries` to prefetch, since the prefetch would block the component from rendering. You also can not use `useQuery` for the prefetch, because that wouldn't start the prefetch until after suspenseful query had resolved. For this scenario, you can use the [`usePrefetchQuery`](../reference/usePrefetchQuery), the [`usePrefetchQueries`](../reference/usePrefetchQueries) or the [`usePrefetchInfiniteQuery`](../reference/usePrefetchInfiniteQuery) hooks available in the library.
200200

201201
You can now use `useSuspenseQuery` in the component that actually needs the data. You _might_ want to wrap this later component in its own `<Suspense>` boundary so the "secondary" query we are prefetching does not block rendering of the "primary" data.
202202

@@ -267,7 +267,7 @@ Let's look at a slightly more advanced case next.
267267

268268
### Dependent Queries & Code Splitting
269269

270-
Sometimes we want to prefetch conditionally, based on the result of another fetch. Consider this example borrowed from the [Performance & Request Waterfalls guide](../request-waterfalls):
270+
Sometimes we want to prefetch conditionally, based on the result of another fetch. Consider this example borrowed from the [Performance & Request Waterfalls guide](../guides/request-waterfalls):
271271

272272
[//]: # 'ExampleConditionally1'
273273

@@ -412,13 +412,13 @@ const articleRoute = new Route({
412412
})
413413
```
414414

415-
Integration with other routers is also possible, see the [React Router example](../../examples/react-router) for another demonstration.
415+
Integration with other routers is also possible, see the [React Router example](../examples/react-router) for another demonstration.
416416

417417
[//]: # 'Router'
418418

419419
## Manually Priming a Query
420420

421-
If you already have the data for your query synchronously available, you don't need to prefetch it. You can just use the [Query Client's `setQueryData` method](../../../../reference/QueryClient/#queryclientsetquerydata) to directly add or update a query's cached result by key.
421+
If you already have the data for your query synchronously available, you don't need to prefetch it. You can just use the [Query Client's `setQueryData` method](../../../reference/QueryClient/#queryclientsetquerydata) to directly add or update a query's cached result by key.
422422

423423
[//]: # 'ExampleManualPriming'
424424

@@ -431,8 +431,8 @@ queryClient.setQueryData(['todos'], todos)
431431

432432
## Further reading
433433

434-
For a deep-dive on how to get data into your Query Cache before you fetch, have a look at [#17: Seeding the Query Cache](../community/tkdodos-blog#17-seeding-the-query-cache) from the Community Resources.
434+
For a deep-dive on how to get data into your Query Cache before you fetch, have a look at [#17: Seeding the Query Cache](https://tkdodo.eu/blog/seeding-the-query-cache) from the Community Resources.
435435

436-
Integrating with Server Side routers and frameworks is very similar to what we just saw, with the addition that the data has to passed from the server to the client to be hydrated into the cache there. To learn how, continue on to the [Server Rendering & Hydration guide](../ssr).
436+
Integrating with Server Side routers and frameworks is very similar to what we just saw, with the addition that the data has to passed from the server to the client to be hydrated into the cache there. To learn how, continue on to the [Server Rendering & Hydration guide](../guides/ssr).
437437

438438
[//]: # 'Materials'

0 commit comments

Comments
 (0)