Commit d702a55b authored by Marcin Sedlak-Jakubowski's avatar Marcin Sedlak-Jakubowski

Merge branch 'iteration-graphql-doc-update' into 'master'

GraphQL docs - lowercase iteration's `include_ancestors` description

See merge request gitlab-org/gitlab!36870
parents fb650c46 6fc74ecf
...@@ -5120,7 +5120,7 @@ type Group { ...@@ -5120,7 +5120,7 @@ type Group {
iid: ID iid: ID
""" """
Whether to include ancestor Iterations. Defaults to true Whether to include ancestor iterations. Defaults to true
""" """
includeAncestors: Boolean includeAncestors: Boolean
......
...@@ -14156,7 +14156,7 @@ ...@@ -14156,7 +14156,7 @@
}, },
{ {
"name": "includeAncestors", "name": "includeAncestors",
"description": "Whether to include ancestor Iterations. Defaults to true", "description": "Whether to include ancestor iterations. Defaults to true",
"type": { "type": {
"kind": "SCALAR", "kind": "SCALAR",
"name": "Boolean", "name": "Boolean",
...@@ -19,7 +19,7 @@ module Resolvers ...@@ -19,7 +19,7 @@ module Resolvers
description: 'The internal ID of the Iteration to look up' description: 'The internal ID of the Iteration to look up'
argument :include_ancestors, GraphQL::BOOLEAN_TYPE, argument :include_ancestors, GraphQL::BOOLEAN_TYPE,
required: false, required: false,
description: 'Whether to include ancestor Iterations. Defaults to true' description: 'Whether to include ancestor iterations. Defaults to true'
type Types::IterationType, null: true type Types::IterationType, null: true
......
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