Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-04-10 12:09:39 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-04-10 12:09:39 +0300
commitc52b81f45762cb7f05a950689dfc6d51b197ea73 (patch)
treec44830c2fc21d13b81814958c44b09fa8d11c805 /doc/api/graphql
parent187ee320b39af22929d74c5a2d9b0650bf50a09b (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/api/graphql')
-rw-r--r--doc/api/graphql/reference/gitlab_schema.graphql15
-rw-r--r--doc/api/graphql/reference/gitlab_schema.json34
-rw-r--r--doc/api/graphql/reference/index.md1
3 files changed, 50 insertions, 0 deletions
diff --git a/doc/api/graphql/reference/gitlab_schema.graphql b/doc/api/graphql/reference/gitlab_schema.graphql
index 583e27f3301..402415b985c 100644
--- a/doc/api/graphql/reference/gitlab_schema.graphql
+++ b/doc/api/graphql/reference/gitlab_schema.graphql
@@ -468,6 +468,11 @@ input CreateEpicInput {
clientMutationId: String
"""
+ Indicates if the epic is confidential. Will be ignored if `confidential_epics` feature flag is disabled
+ """
+ confidential: Boolean
+
+ """
The description of the epic
"""
description: String
@@ -2015,6 +2020,11 @@ type Epic implements Noteable {
closedAt: Time
"""
+ Indicates if the epic is confidential
+ """
+ confidential: Boolean
+
+ """
Timestamp of the epic's creation
"""
createdAt: Time
@@ -8904,6 +8914,11 @@ input UpdateEpicInput {
clientMutationId: String
"""
+ Indicates if the epic is confidential. Will be ignored if `confidential_epics` feature flag is disabled
+ """
+ confidential: Boolean
+
+ """
The description of the epic
"""
description: String
diff --git a/doc/api/graphql/reference/gitlab_schema.json b/doc/api/graphql/reference/gitlab_schema.json
index 79d4088e566..c214d7c3299 100644
--- a/doc/api/graphql/reference/gitlab_schema.json
+++ b/doc/api/graphql/reference/gitlab_schema.json
@@ -1404,6 +1404,16 @@
"defaultValue": null
},
{
+ "name": "confidential",
+ "description": "Indicates if the epic is confidential. Will be ignored if `confidential_epics` feature flag is disabled",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null
+ },
+ {
"name": "startDateFixed",
"description": "The start date of the epic",
"type": {
@@ -5933,6 +5943,20 @@
"deprecationReason": null
},
{
+ "name": "confidential",
+ "description": "Indicates if the epic is confidential",
+ "args": [
+
+ ],
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "isDeprecated": false,
+ "deprecationReason": null
+ },
+ {
"name": "createdAt",
"description": "Timestamp of the epic's creation",
"args": [
@@ -27003,6 +27027,16 @@
"defaultValue": null
},
{
+ "name": "confidential",
+ "description": "Indicates if the epic is confidential. Will be ignored if `confidential_epics` feature flag is disabled",
+ "type": {
+ "kind": "SCALAR",
+ "name": "Boolean",
+ "ofType": null
+ },
+ "defaultValue": null
+ },
+ {
"name": "startDateFixed",
"description": "The start date of the epic",
"type": {
diff --git a/doc/api/graphql/reference/index.md b/doc/api/graphql/reference/index.md
index 43e8677f384..fe5925b95d9 100644
--- a/doc/api/graphql/reference/index.md
+++ b/doc/api/graphql/reference/index.md
@@ -335,6 +335,7 @@ Represents an epic.
| --- | ---- | ---------- |
| `author` | User! | Author of the epic |
| `closedAt` | Time | Timestamp of the epic's closure |
+| `confidential` | Boolean | Indicates if the epic is confidential |
| `createdAt` | Time | Timestamp of the epic's creation |
| `descendantCounts` | EpicDescendantCount | Number of open and closed descendant epics and issues |
| `descendantWeightSum` | EpicDescendantWeights | Total weight of open and closed issues in the epic and its descendants |