Commit ba36754c authored by Sean Arnold's avatar Sean Arnold

Fix indentation for graphql docs

parent 2321da5e
...@@ -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