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:
Diffstat (limited to 'doc/api/graphql/reference/gitlab_schema.graphql')
-rw-r--r--doc/api/graphql/reference/gitlab_schema.graphql109
1 files changed, 108 insertions, 1 deletions
diff --git a/doc/api/graphql/reference/gitlab_schema.graphql b/doc/api/graphql/reference/gitlab_schema.graphql
index 91d6717de7e..9cdc83d584c 100644
--- a/doc/api/graphql/reference/gitlab_schema.graphql
+++ b/doc/api/graphql/reference/gitlab_schema.graphql
@@ -3009,6 +3009,11 @@ input EpicTreeNodeFieldsInputType {
id: ID!
"""
+ ID of the new parent epic
+ """
+ newParentId: ID
+
+ """
The type of the switch, after or before allowed
"""
relativePosition: MoveType!
@@ -5335,11 +5340,108 @@ type Metadata {
type MetricsDashboard {
"""
+ Annotations added to the dashboard. Will always return `null` if `metrics_dashboard_annotations` feature flag is disabled
+ """
+ annotations(
+ """
+ Returns the elements in the list that come after the specified cursor.
+ """
+ after: String
+
+ """
+ Returns the elements in the list that come before the specified cursor.
+ """
+ before: String
+
+ """
+ Returns the first _n_ elements from the list.
+ """
+ first: Int
+
+ """
+ Timestamp marking date and time from which annotations need to be fetched
+ """
+ from: Time!
+
+ """
+ Returns the last _n_ elements from the list.
+ """
+ last: Int
+
+ """
+ Timestamp marking date and time to which annotations need to be fetched
+ """
+ to: Time
+ ): MetricsDashboardAnnotationConnection
+
+ """
Path to a file with the dashboard definition
"""
path: String
}
+type MetricsDashboardAnnotation {
+ """
+ Description of the annotation
+ """
+ description: String
+
+ """
+ Timestamp marking end of annotated time span
+ """
+ endingAt: String
+
+ """
+ ID of the annotation
+ """
+ id: ID!
+
+ """
+ ID of a dashboard panel to which the annotation should be scoped
+ """
+ panelId: String
+
+ """
+ Timestamp marking start of annotated time span
+ """
+ startingAt: String
+}
+
+"""
+The connection type for MetricsDashboardAnnotation.
+"""
+type MetricsDashboardAnnotationConnection {
+ """
+ A list of edges.
+ """
+ edges: [MetricsDashboardAnnotationEdge]
+
+ """
+ A list of nodes.
+ """
+ nodes: [MetricsDashboardAnnotation]
+
+ """
+ Information to aid in pagination.
+ """
+ pageInfo: PageInfo!
+}
+
+"""
+An edge in a connection.
+"""
+type MetricsDashboardAnnotationEdge {
+ """
+ A cursor for use in pagination.
+ """
+ cursor: String!
+
+ """
+ The item at the end of the edge.
+ """
+ node: MetricsDashboardAnnotation
+}
+
"""
Represents a milestone.
"""
@@ -6740,7 +6842,7 @@ type Project {
suggestionCommitMessage: String
"""
- List of project tags
+ List of project topics (not Git tags)
"""
tagList: String
@@ -9561,6 +9663,11 @@ type Vulnerability {
location: JSON
"""
+ The project on which the vulnerability was found
+ """
+ project: Project
+
+ """
Type of the security report that found the vulnerability (SAST, DEPENDENCY_SCANNING, CONTAINER_SCANNING, DAST)
"""
reportType: VulnerabilityReportType