diff --git a/website/docs/guided-tour/list-data/connections.md b/website/docs/guided-tour/list-data/connections.md index 486d3e3daabf1..834fe25fc609b 100644 --- a/website/docs/guided-tour/list-data/connections.md +++ b/website/docs/guided-tour/list-data/connections.md @@ -17,7 +17,7 @@ There are several scenarios in which we'll want to query a list of data from the Specifically in Relay, we do this via GraphQL fields known as [Connections](https://graphql.org/learn/pagination/#complete-connection-model). Connections are GraphQL fields that take a set of arguments to specify which "slice" of the list to query, and include in their response both the "slice" of the list that was requested, as well as information to indicate if there is more data available in the list and how to query it; this additional information can be used in order to perform pagination by querying for more "slices" or pages on the list. -More specifically, we perform *cursor-based pagination,* in which the input used to query for "slices" of the list is a `cursor` and a `count`. Cursors are essentially opaque tokens that serve as markers or pointers to a position in the list. If you're curious to learn more about the details of cursor-based pagination and connections, check out the spec. +More specifically, we perform *cursor-based pagination,* in which the input used to query for "slices" of the list is a `cursor` and a `count`. Cursors are essentially opaque tokens that serve as markers or pointers to a position in the list. If you're curious to learn more about the details of cursor-based pagination and connections, check out the spec. diff --git a/website/versioned_docs/version-v11.0.0/guided-tour/list-data/connections.md b/website/versioned_docs/version-v11.0.0/guided-tour/list-data/connections.md index d5d42f40172f5..5e4a97cbd78d5 100644 --- a/website/versioned_docs/version-v11.0.0/guided-tour/list-data/connections.md +++ b/website/versioned_docs/version-v11.0.0/guided-tour/list-data/connections.md @@ -13,7 +13,7 @@ There are several scenarios in which we'll want to query a list of data from the Specifically in Relay, we do this via GraphQL fields known as [Connections](https://graphql.org/learn/pagination/#complete-connection-model). Connections are GraphQL fields that take a set of arguments to specify which "slice" of the list to query, and include in their response both the "slice" of the list that was requested, as well as information to indicate if there is more data available in the list and how to query it; this additional information can be used in order to perform pagination by querying for more "slices" or pages on the list. -More specifically, we perform *cursor-based pagination,* in which the input used to query for "slices" of the list is a `cursor` and a `count`. Cursors are essentially opaque tokens that serve as markers or pointers to a position in the list. If you're curious to learn more about the details of cursor-based pagination and connections, check out the spec. +More specifically, we perform *cursor-based pagination,* in which the input used to query for "slices" of the list is a `cursor` and a `count`. Cursors are essentially opaque tokens that serve as markers or pointers to a position in the list. If you're curious to learn more about the details of cursor-based pagination and connections, check out the spec.