From a6c2be7cd20a9515b347e72d63c5b47bb9b79457 Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Fri, 21 Feb 2020 21:08:57 +0000 Subject: Add latest changes from gitlab-org/gitlab@master --- doc/api/graphql/reference/gitlab_schema.graphql | 20 +++++++++++ doc/api/graphql/reference/gitlab_schema.json | 48 +++++++++++++++++++++++++ 2 files changed, 68 insertions(+) (limited to 'doc/api') 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 @@ -7841,6 +7841,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 """ @@ -7855,6 +7870,11 @@ input UpdateIssueInput { The project the issue to mutate is in """ projectPath: ID! + + """ + Title of the issue + """ + title: String } """ diff --git a/doc/api/graphql/reference/gitlab_schema.json b/doc/api/graphql/reference/gitlab_schema.json index 1f8e965e225..73fe8cfa65d 100644 --- a/doc/api/graphql/reference/gitlab_schema.json +++ b/doc/api/graphql/reference/gitlab_schema.json @@ -20696,6 +20696,54 @@ }, "defaultValue": null }, + { + "name": "title", + "description": "Title of the issue", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": "Description of the issue", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "dueDate", + "description": "Due date of the issue", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "confidential", + "description": "Indicates the issue is confidential", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + }, { "name": "healthStatus", "description": "The desired health status", -- cgit v1.2.3