Commit 1326e4fd authored by Evan Read's avatar Evan Read

Merge branch 'fix-grapql-doc-indentation' into 'master'

Fix indentation for graphql docs

See merge request gitlab-org/gitlab!21532
parents 741268b9 ba36754c
...@@ -289,16 +289,16 @@ Example: Issues can be sorted by creation date: ...@@ -289,16 +289,16 @@ Example: Issues can be sorted by creation date:
```graphql ```graphql
query { query {
project(fullPath: "gitlab-org/graphql-sandbox") { project(fullPath: "gitlab-org/graphql-sandbox") {
name name
issues(sort: created_asc) { issues(sort: created_asc) {
nodes { nodes {
title title
createdAt createdAt
}
} }
} }
} }
}
``` ```
## Pagination ## Pagination
...@@ -324,9 +324,9 @@ query { ...@@ -324,9 +324,9 @@ query {
title title
} }
} }
pageInfo { pageInfo {
endCursor endCursor
hasNextPage hasNextPage
} }
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment