From 55e0080f9d6b971145ee95c62dbb65feacaa93f8 Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Thu, 18 May 2023 06:08:32 +0000 Subject: Add latest changes from gitlab-org/gitlab@master --- doc/api/graphql/reference/index.md | 99 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 99 insertions(+) (limited to 'doc/api') diff --git a/doc/api/graphql/reference/index.md b/doc/api/graphql/reference/index.md index 3f37e892831..43fd2490b14 100644 --- a/doc/api/graphql/reference/index.md +++ b/doc/api/graphql/reference/index.md @@ -1348,6 +1348,31 @@ Input type: `BoardListUpdateLimitMetricsInput` | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | | `list` | [`BoardList`](#boardlist) | Updated list. | +### `Mutation.buildForecast` + +WARNING: +**Introduced** in 16.0. +This feature is an Experiment. It can be changed or removed at any time. + +Input type: `BuildForecastInput` + +#### Arguments + +| Name | Type | Description | +| ---- | ---- | ----------- | +| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | +| `contextId` | [`GlobalID!`](#globalid) | Global ID of the context for the forecast to pick an appropriate model. | +| `horizon` | [`Int!`](#int) | Number of data points to forecast. | +| `type` | [`String!`](#string) | Type of the forecast. | + +#### Fields + +| Name | Type | Description | +| ---- | ---- | ----------- | +| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | +| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | +| `forecast` | [`Forecast!`](#forecast) | Created forecast. | + ### `Mutation.bulkDestroyJobArtifacts` WARNING: @@ -3038,6 +3063,26 @@ Input type: `EnableDevopsAdoptionNamespaceInput` | `enabledNamespace` | [`DevopsAdoptionEnabledNamespace`](#devopsadoptionenablednamespace) | Enabled namespace after mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | +### `Mutation.environmentDelete` + +Delete an environment. + +Input type: `EnvironmentDeleteInput` + +#### Arguments + +| Name | Type | Description | +| ---- | ---- | ----------- | +| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | +| `id` | [`EnvironmentID!`](#environmentid) | Global ID of the environment to Delete. | + +#### Fields + +| Name | Type | Description | +| ---- | ---- | ----------- | +| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | +| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | + ### `Mutation.environmentStop` Stop an environment. @@ -8931,6 +8976,29 @@ The edge type for [`ExternalStatusCheck`](#externalstatuscheck). | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`ExternalStatusCheck`](#externalstatuscheck) | The item at the end of the edge. | +#### `ForecastDatapointConnection` + +The connection type for [`ForecastDatapoint`](#forecastdatapoint). + +##### Fields + +| Name | Type | Description | +| ---- | ---- | ----------- | +| `edges` | [`[ForecastDatapointEdge]`](#forecastdatapointedge) | A list of edges. | +| `nodes` | [`[ForecastDatapoint]`](#forecastdatapoint) | A list of nodes. | +| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | + +#### `ForecastDatapointEdge` + +The edge type for [`ForecastDatapoint`](#forecastdatapoint). + +##### Fields + +| Name | Type | Description | +| ---- | ---- | ----------- | +| `cursor` | [`String!`](#string) | A cursor for use in pagination. | +| `node` | [`ForecastDatapoint`](#forecastdatapoint) | The item at the end of the edge. | + #### `GroupConnection` The connection type for [`Group`](#group). @@ -14673,6 +14741,28 @@ Describes an external status check. | `path` | [`String!`](#string) | Path of the upload. | | `size` | [`Int!`](#int) | Size of the upload in bytes. | +### `Forecast` + +Information about specific forecast created. + +#### Fields + +| Name | Type | Description | +| ---- | ---- | ----------- | +| `status` | [`ForecastStatus!`](#forecaststatus) | Status of the forecast. | +| `values` | [`ForecastDatapointConnection`](#forecastdatapointconnection) | Actual forecast values. (see [Connections](#connections)) | + +### `ForecastDatapoint` + +Information about specific forecast datapoint. + +#### Fields + +| Name | Type | Description | +| ---- | ---- | ----------- | +| `datapoint` | [`String!`](#string) | Datapoint of the forecast. Usually a date. | +| `value` | [`Float`](#float) | Value of the given datapoint. | + ### `ForkDetails` Details of the fork project compared to its upstream project. @@ -24444,6 +24534,15 @@ Event action. | `REOPENED` | Reopened action. | | `UPDATED` | Updated action. | +### `ForecastStatus` + +List of statuses for forecasting model. + +| Value | Description | +| ----- | ----------- | +| `READY` | Forecast is ready. | +| `UNAVAILABLE` | Forecast is unavailable. | + ### `GeoRegistryAction` Action to trigger on one or more Geo registries. -- cgit v1.2.3