Skip to content

Commit 976b9ee

Browse files
committed
update old links
1 parent 6dfb8f4 commit 976b9ee

17 files changed

Lines changed: 26 additions & 31 deletions

docs/framework/react/guides/advanced-ssr.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -626,6 +626,6 @@ Similarly, it would be impossible to teach all the intricacies of this new parad
626626

627627
## Further reading
628628

629-
To understand if your application can benefit from React Query when also using Server Components, have a look at [You Might Not Need React Query](../../community/tkdodos-blog.md#20-you-might-not-need-react-query) from the Community Resources.
629+
To understand if your application can benefit from React Query when also using Server Components, see the article [You Might Not Need React Query](https://tkdodo.eu/blog/you-might-not-need-react-query).
630630

631631
[//]: # 'Materials'

docs/framework/react/guides/important-defaults.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ Out of the box, TanStack Query is configured with **aggressive but sane** defaul
4040

4141
## Further Reading
4242

43-
Have a look at the following articles from our Community Resources for further explanations of the defaults:
43+
Have a look at the following articles from our [Community Resources](../../../community-resources.md) for further explanations of the defaults:
4444

45-
- [Practical React Query](../../community/tkdodos-blog.md#1-practical-react-query)
46-
- [React Query as a State Manager](../../community/tkdodos-blog.md#10-react-query-as-a-state-manager)
47-
- [Thinking in React Query](../../community/tkdodos-blog.md#21-thinking-in-react-query)
45+
- [Practical React Query](https://tkdodo.eu/blog/practical-react-query)
46+
- [React Query as a State Manager](https://tkdodo.eu/blog/react-query-as-a-state-manager)
47+
- [Thinking in React Query](https://tkdodo.eu/blog/thinking-in-react-query)
4848

4949
[//]: # 'Materials'

docs/framework/react/guides/infinite-queries.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,6 @@ return useInfiniteQuery({
261261

262262
## Further reading
263263

264-
To get a better understanding of how Infinite Queries work under the hood, read [How Infinite Queries work](../../community/tkdodos-blog.md#26-how-infinite-queries-work) from
265-
the Community Resources.
264+
To get a better understanding of how Infinite Queries work under the hood, see the article [How Infinite Queries work](https://tkdodo.eu/blog/how-infinite-queries-work).
266265

267266
[//]: # 'Materials'

docs/framework/react/guides/initial-query-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,6 @@ const result = useQuery({
170170

171171
## Further reading
172172

173-
For a comparison between `Initial Data` and `Placeholder Data`, have a look at the [Community Resources](../../community/tkdodos-blog.md#9-placeholder-and-initial-data-in-react-query).
173+
For a comparison between `Initial Data` and `Placeholder Data`, see the [article by TkDodo](https://tkdodo.eu/blog/placeholder-and-initial-data-in-react-query).
174174

175175
[//]: # 'Materials'

docs/framework/react/guides/invalidations-from-mutations.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ You can wire up your invalidations to happen using any of the callbacks availabl
5252

5353
## Further reading
5454

55-
For a technique to automatically invalidate Queries after Mutations, have a look at [Automatic Query Invalidation after Mutations](../../community/tkdodos-blog.md#25-automatic-query-invalidation-after-mutations) from
56-
the Community Resources.
55+
For a technique to automatically invalidate Queries after Mutations, have a look at [TkDodo's article on Automatic Query Invalidation after Mutations](https://tkdodo.eu/blog/automatic-query-invalidation-after-mutations).
5756

5857
[//]: # 'Materials'

docs/framework/react/guides/mutations.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,6 @@ const mutation = useMutation({
408408

409409
## Further reading
410410

411-
For more information about mutations, have a look at [#12: Mastering Mutations in React Query](../../community/tkdodos-blog.md#12-mastering-mutations-in-react-query) from
412-
the Community Resources.
411+
For more information about mutations, have a look at [TkDodo's article on Mastering Mutations in React Query](https://tkdodo.eu/blog/mastering-mutations-in-react-query).
413412

414413
[//]: # 'Materials'

docs/framework/react/guides/optimistic-updates.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,6 @@ However, if you have multiple places on the screen that would require to know ab
191191

192192
## Further reading
193193

194-
Have a look at the Community Resources for a guide on [Concurrent Optimistic Updates](../../community/tkdodos-blog.md#29-concurrent-optimistic-updates-in-react-query).
194+
Have a look at the guide by TkDodo on [Concurrent Optimistic Updates](https://tkdodo.eu/blog/concurrent-optimistic-updates-in-react-query).
195195

196196
[//]: # 'Materials'

docs/framework/react/guides/placeholder-query-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,6 @@ function Todo({ blogPostId }) {
9696

9797
## Further reading
9898

99-
For a comparison between `Placeholder Data` and `Initial Data`, have a look at the [Community Resources](../../community/tkdodos-blog.md#9-placeholder-and-initial-data-in-react-query).
99+
For a comparison between `Placeholder Data` and `Initial Data`, see the [article by TkDodo](https://tkdodo.eu/blog/placeholder-and-initial-data-in-react-query).
100100

101101
[//]: # 'Materials'

docs/framework/react/guides/prefetching.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ 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.md#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, see the [article Seeding the Query Cache by TkDodo](https://tkdodo.eu/blog/seeding-the-query-cache).
435435

436436
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.md).
437437

docs/framework/react/guides/queries.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,6 @@ So keep in mind that a query can be in `pending` state without actually fetching
140140

141141
## Further Reading
142142

143-
For an alternative way of performing status checks, have a look at the [Community Resources](../../community/tkdodos-blog.md#4-status-checks-in-react-query).
143+
For an alternative way of performing status checks, have a look at [this article by TkDodo](https://tkdodo.eu/blog/status-checks-in-react-query).
144144

145145
[//]: # 'Materials'

0 commit comments

Comments
 (0)