From 4fe93274dec62ff7361a67be88e320131d66b788 Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Wed, 4 Mar 2020 00:07:52 +0000 Subject: Add latest changes from gitlab-org/gitlab@master --- doc/api/graphql/reference/gitlab_schema.graphql | 21 ++++++++++++++--- doc/api/graphql/reference/gitlab_schema.json | 30 +++++++++++++++++++++++++ doc/api/graphql/reference/index.md | 6 ++--- 3 files changed, 51 insertions(+), 6 deletions(-) (limited to 'doc/api/graphql') diff --git a/doc/api/graphql/reference/gitlab_schema.graphql b/doc/api/graphql/reference/gitlab_schema.graphql index d6a0cc97e25..eae3626515e 100644 --- a/doc/api/graphql/reference/gitlab_schema.graphql +++ b/doc/api/graphql/reference/gitlab_schema.graphql @@ -1890,6 +1890,11 @@ type Epic implements Noteable { """ iid: ID + """ + Filter epics by iid for autocomplete + """ + iidStartsWith: String + """ List of IIDs of epics, e.g., [1, 2] """ @@ -1944,7 +1949,7 @@ type Epic implements Noteable { """ Total weight of open and closed descendant epic's issues. Available only when - feature flag unfiltered_epic_aggregates is enabled. + feature flag `unfiltered_epic_aggregates` is enabled. """ descendantWeightSum: EpicDescendantWeights @@ -2409,7 +2414,7 @@ type EpicIssue implements Noteable { epicIssueId: ID! """ - Current health status. Available only when feature flag save_issuable_health_status is enabled. + Current health status. Available only when feature flag `save_issuable_health_status` is enabled. """ healthStatus: HealthStatus @@ -2941,6 +2946,11 @@ type Group { """ iid: ID + """ + Filter epics by iid for autocomplete + """ + iidStartsWith: String + """ List of IIDs of epics, e.g., [1, 2] """ @@ -3008,6 +3018,11 @@ type Group { """ iid: ID + """ + Filter epics by iid for autocomplete + """ + iidStartsWith: String + """ List of IIDs of epics, e.g., [1, 2] """ @@ -3390,7 +3405,7 @@ type Issue implements Noteable { epic: Epic """ - Current health status. Available only when feature flag save_issuable_health_status is enabled. + Current health status. Available only when feature flag `save_issuable_health_status` is enabled. """ healthStatus: HealthStatus diff --git a/doc/api/graphql/reference/gitlab_schema.json b/doc/api/graphql/reference/gitlab_schema.json index 4429bc6621d..bf59c94f6cc 100644 --- a/doc/api/graphql/reference/gitlab_schema.json +++ b/doc/api/graphql/reference/gitlab_schema.json @@ -3513,6 +3513,16 @@ } }, "defaultValue": null + }, + { + "name": "iidStartsWith", + "description": "Filter epics by iid for autocomplete", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null } ], "type": { @@ -3633,6 +3643,16 @@ }, "defaultValue": null }, + { + "name": "iidStartsWith", + "description": "Filter epics by iid for autocomplete", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, { "name": "after", "description": "Returns the elements in the list that come after the specified cursor.", @@ -4866,6 +4886,16 @@ }, "defaultValue": null }, + { + "name": "iidStartsWith", + "description": "Filter epics by iid for autocomplete", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, { "name": "after", "description": "Returns the elements in the list that come after the specified cursor.", diff --git a/doc/api/graphql/reference/index.md b/doc/api/graphql/reference/index.md index 54333464603..79be0c0d626 100644 --- a/doc/api/graphql/reference/index.md +++ b/doc/api/graphql/reference/index.md @@ -317,7 +317,7 @@ Represents an epic. | `closedAt` | Time | Timestamp of the epic's closure | | `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 descendant epic's issues. Available only when feature flag unfiltered_epic_aggregates is enabled. | +| `descendantWeightSum` | EpicDescendantWeights | Total weight of open and closed descendant epic's issues. Available only when feature flag `unfiltered_epic_aggregates` is enabled. | | `description` | String | Description of the epic | | `downvotes` | Int! | Number of downvotes the epic has received | | `dueDate` | Time | Due date of the epic | @@ -385,7 +385,7 @@ Relationship between an epic and an issue | `dueDate` | Time | Due date of the issue | | `epic` | Epic | Epic to which this issue belongs | | `epicIssueId` | ID! | ID of the epic-issue relation | -| `healthStatus` | HealthStatus | Current health status. Available only when feature flag save_issuable_health_status is enabled. | +| `healthStatus` | HealthStatus | Current health status. Available only when feature flag `save_issuable_health_status` is enabled. | | `id` | ID | Global ID of the epic-issue relation | | `iid` | ID! | Internal ID of the issue | | `milestone` | Milestone | Milestone of the issue | @@ -506,7 +506,7 @@ Autogenerated return type of EpicTreeReorder | `downvotes` | Int! | Number of downvotes the issue has received | | `dueDate` | Time | Due date of the issue | | `epic` | Epic | Epic to which this issue belongs | -| `healthStatus` | HealthStatus | Current health status. Available only when feature flag save_issuable_health_status is enabled. | +| `healthStatus` | HealthStatus | Current health status. Available only when feature flag `save_issuable_health_status` is enabled. | | `iid` | ID! | Internal ID of the issue | | `milestone` | Milestone | Milestone of the issue | | `reference` | String! | Internal reference of the issue. Returned in shortened format by default | -- cgit v1.2.1