Commit 26421380 authored by Vitali Tatarintev's avatar Vitali Tatarintev

Merge branch '299489-issueable_state_enum_descriptions' into 'master'

Add descriptions to IssuableStateEnum

See merge request gitlab-org/gitlab!53303
parents c0364439 fd764207
......@@ -5,9 +5,9 @@ module Types
graphql_name 'IssuableState'
description 'State of a GitLab issue or merge request'
value 'opened'
value 'closed'
value 'locked'
value 'all'
value 'opened', description: 'In open state'
value 'closed', description: 'In closed state'
value 'locked', description: 'Discussion has been locked'
value 'all', description: 'All available'
end
end
......@@ -5310,10 +5310,10 @@ State of a GitLab issue or merge request.
| Value | Description |
| ----- | ----------- |
| `all` | |
| `closed` | |
| `locked` | |
| `opened` | |
| `all` | All available |
| `closed` | In closed state |
| `locked` | Discussion has been locked |
| `opened` | In open state |
### IssueSort
......@@ -5353,10 +5353,10 @@ State of a GitLab issue.
| Value | Description |
| ----- | ----------- |
| `all` | |
| `closed` | |
| `locked` | |
| `opened` | |
| `all` | All available |
| `closed` | In closed state |
| `locked` | Discussion has been locked |
| `opened` | In open state |
### IssueStateEvent
......@@ -5496,11 +5496,11 @@ State of a GitLab merge request.
| Value | Description |
| ----- | ----------- |
| `all` | |
| `closed` | |
| `locked` | |
| `all` | All available |
| `closed` | In closed state |
| `locked` | Discussion has been locked |
| `merged` | Merge Request has been merged |
| `opened` | |
| `opened` | In open state |
### MilestoneStateEnum
......
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