From 3670ddd229b178c0a2e09a1466ddfd7fd2f7855d Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Tue, 9 May 2023 15:17:20 +0000 Subject: Add latest changes from gitlab-org/gitlab@master --- doc/api/graphql/reference/index.md | 59 +++++++++++++++++++++++++++++++++++++- 1 file changed, 58 insertions(+), 1 deletion(-) (limited to 'doc/api') diff --git a/doc/api/graphql/reference/index.md b/doc/api/graphql/reference/index.md index d37ee757c6b..d6187ea13ea 100644 --- a/doc/api/graphql/reference/index.md +++ b/doc/api/graphql/reference/index.md @@ -13184,7 +13184,7 @@ A software dependency used by a project. | `id` | [`GlobalID!`](#globalid) | ID of the dependency. | | `location` | [`Location`](#location) | Information about where the dependency is located. | | `name` | [`String!`](#string) | Name of the dependency. | -| `packager` | [`String`](#string) | Description of the tool used to manage the dependency. | +| `packager` | [`PackageManager`](#packagemanager) | Description of the tool used to manage the dependency. | | `version` | [`String`](#string) | Version of the dependency. | ### `DependencyProxyBlob` @@ -15820,6 +15820,24 @@ Returns [`ValueStreamAnalyticsMetric`](#valuestreamanalyticsmetric). | `projectIds` | [`[ID!]`](#id) | Project IDs within the group hierarchy. | | `to` | [`Time!`](#time) | Before the date. | +##### `GroupValueStreamAnalyticsFlowMetrics.issuesCompletedCount` + +Number of open issues closed (completed) in the given period. Maximum value is 10,001. + +Returns [`ValueStreamAnalyticsMetric`](#valuestreamanalyticsmetric). + +###### Arguments + +| Name | Type | Description | +| ---- | ---- | ----------- | +| `assigneeUsernames` | [`[String!]`](#string) | Usernames of users assigned to the issue. | +| `authorUsername` | [`String`](#string) | Username of the author of the issue. | +| `from` | [`Time!`](#time) | After the date. | +| `labelNames` | [`[String!]`](#string) | Labels applied to the issue. | +| `milestoneTitle` | [`String`](#string) | Milestone applied to the issue. | +| `projectIds` | [`[ID!]`](#id) | Project IDs within the group hierarchy. | +| `to` | [`Time!`](#time) | Before the date. | + ##### `GroupValueStreamAnalyticsFlowMetrics.leadTime` Median time from when the issue was created to when it was closed. @@ -19229,6 +19247,7 @@ four standard [pagination arguments](#connection-pagination-arguments): | Name | Type | Description | | ---- | ---- | ----------- | +| `packageManagers` | [`[PackageManager!]`](#packagemanager) | Filter dependencies by package managers. | | `sort` | [`DependencySort`](#dependencysort) | Sort dependencies by given criteria. | ##### `Project.deployment` @@ -20460,6 +20479,23 @@ Returns [`ValueStreamAnalyticsMetric`](#valuestreamanalyticsmetric). | `milestoneTitle` | [`String`](#string) | Milestone applied to the issue. | | `to` | [`Time!`](#time) | Before the date. | +##### `ProjectValueStreamAnalyticsFlowMetrics.issuesCompletedCount` + +Number of open issues closed (completed) in the given period. Maximum value is 10,001. + +Returns [`ValueStreamAnalyticsMetric`](#valuestreamanalyticsmetric). + +###### Arguments + +| Name | Type | Description | +| ---- | ---- | ----------- | +| `assigneeUsernames` | [`[String!]`](#string) | Usernames of users assigned to the issue. | +| `authorUsername` | [`String`](#string) | Username of the author of the issue. | +| `from` | [`Time!`](#time) | After the date. | +| `labelNames` | [`[String!]`](#string) | Labels applied to the issue. | +| `milestoneTitle` | [`String`](#string) | Milestone applied to the issue. | +| `to` | [`Time!`](#time) | Before the date. | + ##### `ProjectValueStreamAnalyticsFlowMetrics.leadTime` Median time from when the issue was created to when it was closed. @@ -24747,6 +24783,27 @@ Values for sorting group packages. | `VERSION_ASC` | Ordered by version in ascending order. | | `VERSION_DESC` | Ordered by version in descending order. | +### `PackageManager` + +Values for package manager. + +| Value | Description | +| ----- | ----------- | +| `BUNDLER` | Package manager: bundler. | +| `COMPOSER` | Package manager: composer. | +| `CONAN` | Package manager: conan. | +| `GO` | Package manager: go. | +| `GRADLE` | Package manager: gradle. | +| `MAVEN` | Package manager: maven. | +| `NPM` | Package manager: npm. | +| `NUGET` | Package manager: nuget. | +| `PIP` | Package manager: pip. | +| `PIPENV` | Package manager: pipenv. | +| `PNPM` | Package manager: pnpm. | +| `SBT` | Package manager: sbt. | +| `SETUPTOOLS` | Package manager: setuptools. | +| `YARN` | Package manager: yarn. | + ### `PackageSort` Values for sorting package. -- cgit v1.2.3