Skip to content

Commit 73d99b9

Browse files
evanyeungfacebook-github-bot
authored andcommitted
Delete the Fetching Data "Introduction" from the Relay docs
Reviewed By: captbaritone Differential Revision: D79607493 fbshipit-source-id: 22ff6c0953810a65a7a701c06e7d210950f9659e
1 parent a8461f6 commit 73d99b9

File tree

5 files changed

+3
-21
lines changed

5 files changed

+3
-21
lines changed

website/docs/guided-tour/list-data/introduction.md

Lines changed: 0 additions & 17 deletions
This file was deleted.

website/docs/guided-tour/rendering/loading-states.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,6 @@ Fragments are also integrated with Suspense in order to support rendering of dat
240240
<FbSuspenseInRelayTransitions />
241241
</FbInternalOnly>
242242

243-
Additionally, our APIs for fetching ([Refreshing and Refetching](../list-data/introduction.md)) and for [rendering connections](../../list-data/connections/) are also integrated with Suspense; for these use cases, these APIs will also suspend.
243+
Additionally, our APIs for fetching, [refreshing](../refetching/refreshing-queries.md) and [refetching](../refetching/refetching-queries-with-different-data.md)) and for [rendering connections](../list-data/connections.md) are also integrated with Suspense; for these use cases, these APIs will also suspend.
244244

245245
<DocsRating />

website/docs/guided-tour/reusing-cached-data/fetch-policies.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Specifically, `fetchPolicy` can be any of the following options: **
5050
* "store-only": *will* *only* reuse locally cached data, and will *never* send a network request to fetch the query. In this case, the responsibility of fetching the query falls to the caller, but this policy could also be used to read and operate on data that is entirely [local](../../updating-data/local-data-updates/).
5151

5252

53-
Note that the `refetch` function discussed in the [Fetching and Rendering Different Data](../list-data/introduction.md) section also takes a `fetchPolicy`.
53+
Note that the `refetch` function discussed in the [Refetching Queries](../refetching/refetching-queries-with-different-data.md) section also takes a `fetchPolicy`.
5454

5555

5656
<DocsRating />

website/docs/guided-tour/updating-data/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ keywords:
1414
import DocsRating from '@site/src/core/DocsRating';
1515
import {OssOnly, FbInternalOnly} from 'docusaurus-plugin-internaldocs-fb/internal';
1616

17-
In the [fetching data](../list-data/introduction.md) section, we discuss how to fetch data using GraphQL queries. Though fetching data can have the *incidental* effect of modifying data in Relay's local store (if the fetched data has changed), we haven't discussed any ways to *intentionally* modify our locally stored data.
17+
In the Fetching Data section, we discuss how to fetch data using GraphQL queries. Though fetching data can have the *incidental* effect of modifying data in Relay's local store (if the fetched data has changed), we haven't discussed any ways to *intentionally* modify our locally stored data.
1818

1919
This section will do just that: it will discuss how to update our local data store, and data on the server.
2020

website/sidebars.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ const {fbContent} = require('docusaurus-plugin-internaldocs-fb/internal');
1919

2020
const Guides = {
2121
'Fetching Data': [
22-
'guided-tour/list-data/introduction',
2322
...fbContent({
2423
internal: [
2524
{

0 commit comments

Comments
 (0)