summaryrefslogtreecommitdiff
path: root/doc/api/graphql/reference/gitlab_schema.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'doc/api/graphql/reference/gitlab_schema.graphql')
-rw-r--r--doc/api/graphql/reference/gitlab_schema.graphql20
1 files changed, 20 insertions, 0 deletions
diff --git a/doc/api/graphql/reference/gitlab_schema.graphql b/doc/api/graphql/reference/gitlab_schema.graphql
index 76076a653a2..8b403cb3363 100644
--- a/doc/api/graphql/reference/gitlab_schema.graphql
+++ b/doc/api/graphql/reference/gitlab_schema.graphql
@@ -7842,6 +7842,21 @@ input UpdateIssueInput {
clientMutationId: String
"""
+ Indicates the issue is confidential
+ """
+ confidential: Boolean!
+
+ """
+ Description of the issue
+ """
+ description: String
+
+ """
+ Due date of the issue
+ """
+ dueDate: Time!
+
+ """
The desired health status
"""
healthStatus: HealthStatus
@@ -7855,6 +7870,11 @@ input UpdateIssueInput {
The project the issue to mutate is in
"""
projectPath: ID!
+
+ """
+ Title of the issue
+ """
+ title: String
}
"""