diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2022-05-21 00:08:00 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2022-05-21 00:08:00 +0000 |
commit | 0fd09fff507a22e2059bcfe11cfc4e657590c72c (patch) | |
tree | 2468ba28f97c59a9a4729bc7734cfdc5600f27b8 /doc/development/graphql_guide/pagination.md | |
parent | 22fe7d7df6b91040d6cecbfd78f24c563afed463 (diff) | |
download | gitlab-ce-0fd09fff507a22e2059bcfe11cfc4e657590c72c.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/development/graphql_guide/pagination.md')
-rw-r--r-- | doc/development/graphql_guide/pagination.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development/graphql_guide/pagination.md b/doc/development/graphql_guide/pagination.md index 1f40a605cfe..72f321a1fd2 100644 --- a/doc/development/graphql_guide/pagination.md +++ b/doc/development/graphql_guide/pagination.md @@ -23,7 +23,7 @@ and used across much of GitLab. You can recognize it by a list of page numbers near the bottom of a page, which, when clicked, take you to that page of results. -For example, when you click **Page 100**, we send `100` to the +For example, when you select **Page 100**, we send `100` to the backend. For example, if each page has say 20 items, the backend calculates `20 * 100 = 2000`, and it queries the database by offsetting (skipping) the first 2000 |