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