Commit 6a5b63e4 authored by Jonathan Schafer's avatar Jonathan Schafer

Add descriptions for EpicStateEnum

Changelog: changed
EE: true
parent f7121c45
...@@ -13,7 +13,6 @@ ...@@ -13,7 +13,6 @@
# WIP See https://gitlab.com/gitlab-org/gitlab/-/issues/322903 # WIP See https://gitlab.com/gitlab-org/gitlab/-/issues/322903
Graphql/Descriptions: Graphql/Descriptions:
Exclude: Exclude:
- 'ee/app/graphql/types/epic_state_enum.rb'
- 'ee/app/graphql/types/health_status_enum.rb' - 'ee/app/graphql/types/health_status_enum.rb'
- 'ee/app/graphql/types/iteration_state_enum.rb' - 'ee/app/graphql/types/iteration_state_enum.rb'
- 'ee/app/graphql/types/requirements_management/requirement_state_enum.rb' - 'ee/app/graphql/types/requirements_management/requirement_state_enum.rb'
......
...@@ -14245,9 +14245,9 @@ State of an epic. ...@@ -14245,9 +14245,9 @@ State of an epic.
| Value | Description | | Value | Description |
| ----- | ----------- | | ----- | ----------- |
| <a id="epicstateall"></a>`all` | | | <a id="epicstateall"></a>`all` | All epics. |
| <a id="epicstateclosed"></a>`closed` | | | <a id="epicstateclosed"></a>`closed` | Closed epics. |
| <a id="epicstateopened"></a>`opened` | | | <a id="epicstateopened"></a>`opened` | Open epics. |
### `EpicStateEvent` ### `EpicStateEvent`
......
...@@ -5,8 +5,8 @@ module Types ...@@ -5,8 +5,8 @@ module Types
graphql_name 'EpicState' graphql_name 'EpicState'
description 'State of an epic' description 'State of an epic'
value 'all' value 'all', description: 'All epics.'
value 'opened' value 'opened', description: 'Open epics.'
value 'closed' value 'closed', description: 'Closed epics.'
end end
end end
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