Skip to content
Snippets Groups Projects
Commit da4a3249 authored by Etienne Baqué's avatar Etienne Baqué
Browse files

Merge branch '299489-over-10-of-graphql-descriptions-are-missing-epic-state' into 'master'

Add descriptions for EpicStateEnum

See merge request gitlab-org/gitlab!63915
parents 967f3000 6a5b63e4
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -13,7 +13,6 @@
# WIP See https://gitlab.com/gitlab-org/gitlab/-/issues/322903
Graphql/Descriptions:
Exclude:
- 'ee/app/graphql/types/epic_state_enum.rb'
- 'ee/app/graphql/types/health_status_enum.rb'
- 'ee/app/graphql/types/iteration_state_enum.rb'
- 'ee/app/graphql/types/requirements_management/requirement_state_enum.rb'
Loading
Loading
Loading
Loading
@@ -14245,9 +14245,9 @@ State of an epic.
 
| Value | Description |
| ----- | ----------- |
| <a id="epicstateall"></a>`all` | |
| <a id="epicstateclosed"></a>`closed` | |
| <a id="epicstateopened"></a>`opened` | |
| <a id="epicstateall"></a>`all` | All epics. |
| <a id="epicstateclosed"></a>`closed` | Closed epics. |
| <a id="epicstateopened"></a>`opened` | Open epics. |
 
### `EpicStateEvent`
 
Loading
Loading
Loading
Loading
@@ -5,8 +5,8 @@ class EpicStateEnum < BaseEnum
graphql_name 'EpicState'
description 'State of an epic'
 
value 'all'
value 'opened'
value 'closed'
value 'all', description: 'All epics.'
value 'opened', description: 'Open epics.'
value 'closed', description: 'Closed epics.'
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment