diff options
| author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-10-13 21:09:27 +0000 |
|---|---|---|
| committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-10-13 21:09:27 +0000 |
| commit | 60ea1fab8ea970796c359dddb7d20fcead651c7d (patch) | |
| tree | f8f674ded2c858e2708633c4761ecbc78d234798 /doc/api/graphql/reference/gitlab_schema.graphql | |
| parent | b4b6bff01d33ddf1ebd78001f16027b3ccd6443e (diff) | |
| download | gitlab-ce-60ea1fab8ea970796c359dddb7d20fcead651c7d.tar.gz | |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/api/graphql/reference/gitlab_schema.graphql')
| -rw-r--r-- | doc/api/graphql/reference/gitlab_schema.graphql | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/api/graphql/reference/gitlab_schema.graphql b/doc/api/graphql/reference/gitlab_schema.graphql index 146f15cf3a7..bd231c76b14 100644 --- a/doc/api/graphql/reference/gitlab_schema.graphql +++ b/doc/api/graphql/reference/gitlab_schema.graphql @@ -6726,6 +6726,11 @@ type EpicIssue implements CurrentUserTodos & Noteable { severity: IssuableSeverity """ + Timestamp of when the issue SLA expires. Returns null if `incident_sla_dev` feature flag is disabled. + """ + slaDueAt: Time + + """ State of the issue """ state: IssueState! @@ -8881,6 +8886,11 @@ type Issue implements CurrentUserTodos & Noteable { severity: IssuableSeverity """ + Timestamp of when the issue SLA expires. Returns null if `incident_sla_dev` feature flag is disabled. + """ + slaDueAt: Time + + """ State of the issue """ state: IssueState! |
