Skip to content

Commit 21b467f

Browse files
committed
title s/connections/pagination
1 parent 4997eff commit 21b467f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

site/learn/BestPractice-Authorization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Authorization
33
layout: ../_core/DocsLayout
44
category: Best Practices
55
permalink: /learn/authorization/
6-
next: /learn/connections/
6+
next: /learn/pagination/
77
---
88

99
> Delegate authorization logic to the business logic layer

site/learn/BestPractice-Introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Typically fields that could return long lists accept arguments "first" and "afte
6060

6161
Ultimately designing APIs with feature-rich pagination led to a best practice pattern called "Connections". Some client tools for GraphQL, such as [Relay](https://facebook.github.io/relay/), know about the Connections pattern and can automatically provide automatic support for client-side pagination when a GraphQL API employs this pattern.
6262

63-
Read more about this in [Connections](/learn/connections/).
63+
Read more about this in the article on [Pagination](/learn/pagination/).
6464

6565

6666
### Server-side Batching & Caching

site/learn/BestPractice-Connections.md renamed to site/learn/BestPractice-Pagination.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
2-
title: Connections
2+
title: Pagination
33
layout: ../_core/DocsLayout
44
category: Best Practices
5-
permalink: /learn/connections/
5+
permalink: /learn/pagination/
66
---
77

8-
> Different connection models enable different client capabilities
8+
> Different pagination models enable different client capabilities
99
1010
A common use case in GraphQL is traversing the relationship between sets of objects. There are a number of different ways that these relationships can be exposed in GraphQL, giving a varying set of capabilities to the client developer.
1111

0 commit comments

Comments
 (0)