diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2019-12-11 06:07:52 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2019-12-11 06:07:52 +0000 |
commit | 7b875aa3fd1645e2e881997256ba94c6cb73ab3d (patch) | |
tree | 59b1637c36624ee863e12f9e176425627ab3deb5 /doc/api/graphql/getting_started.md | |
parent | 9caed104bc903734d996161ba13a579f2be49d7c (diff) | |
download | gitlab-ce-7b875aa3fd1645e2e881997256ba94c6cb73ab3d.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/api/graphql/getting_started.md')
-rw-r--r-- | doc/api/graphql/getting_started.md | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/api/graphql/getting_started.md b/doc/api/graphql/getting_started.md index 961d4da8c1e..57c0fcc659c 100644 --- a/doc/api/graphql/getting_started.md +++ b/doc/api/graphql/getting_started.md @@ -289,16 +289,16 @@ Example: Issues can be sorted by creation date: ```graphql query { - project(fullPath: "gitlab-org/graphql-sandbox") { - name - issues(sort: created_asc) { - nodes { - title - createdAt - } + project(fullPath: "gitlab-org/graphql-sandbox") { + name + issues(sort: created_asc) { + nodes { + title + createdAt } } } +} ``` ## Pagination @@ -324,9 +324,9 @@ query { title } } - pageInfo { - endCursor - hasNextPage + pageInfo { + endCursor + hasNextPage } } } |