Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2019-12-11 09:07:52 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2019-12-11 09:07:52 +0300
commit7b875aa3fd1645e2e881997256ba94c6cb73ab3d (patch)
tree59b1637c36624ee863e12f9e176425627ab3deb5 /doc/api/graphql/getting_started.md
parent9caed104bc903734d996161ba13a579f2be49d7c (diff)
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.md20
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
}
}
}