--- stage: Manage group: Import and Integrate info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/product/ux/technical-writing/#assignments --- # GraphQL API Resources This documentation is self-generated based on GitLab current GraphQL schema. The API can be explored interactively using the [GraphiQL IDE](../index.md#graphiql). Each table below documents a GraphQL type. Types match loosely to models, but not all fields and methods on a model are available via GraphQL. WARNING: Fields that are deprecated are marked with **{warning-solid}**. Items (fields, enums, etc) that have been removed according to our [deprecation process](../index.md#deprecation-and-removal-process) can be found in [Removed Items](../removed_items.md). ## `Query` type The `Query` type contains the API's top-level entry points for all executable queries. ### `Query.boardList` Find an issue board list. Returns [`BoardList`](#boardlist). #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`ListID!`](#listid) | Global ID of the list. | | `issueFilters` | [`BoardIssueInput`](#boardissueinput) | Filters applied when getting issue metadata in the board list. | ### `Query.ciApplicationSettings` CI related settings that apply to the entire instance. Returns [`CiApplicationSettings`](#ciapplicationsettings). ### `Query.ciCatalogResources` CI Catalog resources visible to the current user. WARNING: **Introduced** in 15.11. This feature is an Experiment. It can be changed or removed at any time. Returns [`CiCatalogResourceConnection`](#cicatalogresourceconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `projectPath` | [`ID`](#id) | Project with the namespace catalog. | ### `Query.ciConfig` Linted and processed contents of a CI config. Should not be requested more than once per request. Returns [`CiConfig`](#ciconfig). #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `content` | [`String!`](#string) | Contents of `.gitlab-ci.yml`. | | `dryRun` | [`Boolean`](#boolean) | Run pipeline creation simulation, or only do static check. | | `projectPath` | [`ID!`](#id) | Project of the CI config. | | `sha` | [`String`](#string) | Sha for the pipeline. | ### `Query.ciMinutesUsage` CI/CD minutes usage data for a namespace. Returns [`CiMinutesNamespaceMonthlyUsageConnection`](#ciminutesnamespacemonthlyusageconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `date` | [`Date`](#date) | Date for which to retrieve the usage data, should be the first day of a month. | | `namespaceId` | [`NamespaceID`](#namespaceid) | Global ID of the Namespace for the monthly CI/CD minutes usage. | ### `Query.ciPipelineStage` Stage belonging to a CI pipeline. Returns [`CiStage`](#cistage). #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`CiStageID!`](#cistageid) | Global ID of the CI stage. | ### `Query.ciVariables` List of the instance's CI/CD variables. Returns [`CiInstanceVariableConnection`](#ciinstancevariableconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `sort` | [`CiVariableSort`](#civariablesort) | Sort order of results. | ### `Query.containerRepository` Find a container repository. Returns [`ContainerRepositoryDetails`](#containerrepositorydetails). #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`ContainerRepositoryID!`](#containerrepositoryid) | Global ID of the container repository. | ### `Query.currentLicense` Fields related to the current license. Returns [`CurrentLicense`](#currentlicense). ### `Query.currentUser` Get information about current user. Returns [`UserCore`](#usercore). ### `Query.designManagement` Fields related to design management. Returns [`DesignManagement!`](#designmanagement). ### `Query.devopsAdoptionEnabledNamespaces` Get configured DevOps adoption namespaces. **BETA** This endpoint is subject to change without notice. Returns [`DevopsAdoptionEnabledNamespaceConnection`](#devopsadoptionenablednamespaceconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `displayNamespaceId` | [`NamespaceID`](#namespaceid) | Filter by display namespace. | ### `Query.echo` Testing endpoint to validate the API with. Returns [`String!`](#string). #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `text` | [`String!`](#string) | Text to echo back. | ### `Query.epicBoardList` Returns [`EpicList`](#epiclist). #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `epicFilters` | [`EpicFilters`](#epicfilters) | Filters applied when getting epic metadata in the epic board list. | | `id` | [`BoardsEpicListID!`](#boardsepiclistid) | Global ID of the list. | ### `Query.geoNode` Find a Geo node. Returns [`GeoNode`](#geonode). #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `name` | [`String`](#string) | Name of the Geo node. Defaults to the current Geo node name. | ### `Query.gitpodEnabled` Whether Gitpod is enabled in application settings. Returns [`Boolean`](#boolean). ### `Query.group` Find a group. Returns [`Group`](#group). #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `fullPath` | [`ID!`](#id) | Full path of the project, group, or namespace. For example, `gitlab-org/gitlab-foss`. | ### `Query.groups` Find groups. Returns [`GroupConnection`](#groupconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `search` | [`String`](#string) | Search query for group name or group full path. | ### `Query.instanceExternalAuditEventDestinations` Instance level external audit event destinations. Returns [`InstanceExternalAuditEventDestinationConnection`](#instanceexternalauditeventdestinationconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ### `Query.instanceSecurityDashboard` Fields related to Instance Security Dashboard. Returns [`InstanceSecurityDashboard`](#instancesecuritydashboard). ### `Query.issue` Find an issue. Returns [`Issue`](#issue). #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`IssueID!`](#issueid) | Global ID of the issue. | ### `Query.issues` Find issues visible to the current user. At least one filter must be provided. WARNING: **Introduced** in 15.6. This feature is an Experiment. It can be changed or removed at any time. Returns [`IssueConnection`](#issueconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `assigneeId` | [`String`](#string) | ID of a user assigned to the issues. Wildcard values "NONE" and "ANY" are supported. | | `assigneeUsername` **{warning-solid}** | [`String`](#string) | **Deprecated** in 13.11. Use `assigneeUsernames`. | | `assigneeUsernames` | [`[String!]`](#string) | Usernames of users assigned to the issue. | | `authorUsername` | [`String`](#string) | Username of the author of the issue. | | `closedAfter` | [`Time`](#time) | Issues closed after this date. | | `closedBefore` | [`Time`](#time) | Issues closed before this date. | | `confidential` | [`Boolean`](#boolean) | Filter for confidential issues. If "false", excludes confidential issues. If "true", returns only confidential issues. | | `createdAfter` | [`Time`](#time) | Issues created after this date. | | `createdBefore` | [`Time`](#time) | Issues created before this date. | | `crmContactId` | [`String`](#string) | ID of a contact assigned to the issues. | | `crmOrganizationId` | [`String`](#string) | ID of an organization assigned to the issues. | | `epicId` | [`String`](#string) | ID of an epic associated with the issues, "none" and "any" values are supported. | | `healthStatusFilter` | [`HealthStatusFilter`](#healthstatusfilter) | Health status of the issue, "none" and "any" values are supported. | | `iid` | [`String`](#string) | IID of the issue. For example, "1". | | `iids` | [`[String!]`](#string) | List of IIDs of issues. For example, `["1", "2"]`. | | `in` | [`[IssuableSearchableField!]`](#issuablesearchablefield) | Specify the fields to perform the search in. Defaults to `[TITLE, DESCRIPTION]`. Requires the `search` argument.'. | | `includeArchived` | [`Boolean`](#boolean) | Whether to include issues from archived projects. Defaults to `false`. | | `includeSubepics` | [`Boolean`](#boolean) | Whether to include subepics when filtering issues by epicId. | | `iterationId` | [`[ID]`](#id) | List of iteration Global IDs applied to the issue. | | `iterationWildcardId` | [`IterationWildcardId`](#iterationwildcardid) | Filter by iteration ID wildcard. | | `labelName` | [`[String]`](#string) | Labels applied to this issue. | | `milestoneTitle` | [`[String]`](#string) | Milestone applied to this issue. | | `milestoneWildcardId` | [`MilestoneWildcardId`](#milestonewildcardid) | Filter issues by milestone ID wildcard. | | `myReactionEmoji` | [`String`](#string) | Filter by reaction emoji applied by the current user. Wildcard values "NONE" and "ANY" are supported. | | `not` | [`NegatedIssueFilterInput`](#negatedissuefilterinput) | Negated arguments. | | `or` | [`UnionedIssueFilterInput`](#unionedissuefilterinput) | List of arguments with inclusive OR. | | `search` | [`String`](#string) | Search query for title or description. | | `sort` | [`IssueSort`](#issuesort) | Sort issues by this criteria. | | `state` | [`IssuableState`](#issuablestate) | Current state of this issue. | | `types` | [`[IssueType!]`](#issuetype) | Filter issues by the given issue types. | | `updatedAfter` | [`Time`](#time) | Issues updated after this date. | | `updatedBefore` | [`Time`](#time) | Issues updated before this date. | | `weight` | [`String`](#string) | Weight applied to the issue, "none" and "any" values are supported. | ### `Query.iteration` Find an iteration. Returns [`Iteration`](#iteration). #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`IterationID!`](#iterationid) | Find an iteration by its ID. | ### `Query.jobs` All jobs on this GitLab instance. Returns [`CiJobConnection`](#cijobconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `statuses` | [`[CiJobStatus!]`](#cijobstatus) | Filter jobs by status. | ### `Query.licenseHistoryEntries` Fields related to entries in the license history. Returns [`LicenseHistoryEntryConnection`](#licensehistoryentryconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ### `Query.mergeRequest` Find a merge request. Returns [`MergeRequest`](#mergerequest). #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`MergeRequestID!`](#mergerequestid) | Global ID of the merge request. | ### `Query.metadata` Metadata about GitLab. Returns [`Metadata`](#metadata). ### `Query.milestone` Find a milestone. Returns [`Milestone`](#milestone). #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`MilestoneID!`](#milestoneid) | Find a milestone by its ID. | ### `Query.namespace` Find a namespace. Returns [`Namespace`](#namespace). #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `fullPath` | [`ID!`](#id) | Full path of the project, group, or namespace. For example, `gitlab-org/gitlab-foss`. | ### `Query.note` Find a note. WARNING: **Introduced** in 15.9. This feature is an Experiment. It can be changed or removed at any time. Returns [`Note`](#note). #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`NoteID!`](#noteid) | Global ID of the note. | ### `Query.package` Find a package. This field can only be resolved for one query in any single request. Returns `null` if a package has no `default` status. Returns [`PackageDetailsType`](#packagedetailstype). #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`PackagesPackageID!`](#packagespackageid) | Global ID of the package. | ### `Query.project` Find a project. Returns [`Project`](#project). #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `fullPath` | [`ID!`](#id) | Full path of the project, group, or namespace. For example, `gitlab-org/gitlab-foss`. | ### `Query.projects` Find projects visible to the current user. Returns [`ProjectConnection`](#projectconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ids` | [`[ID!]`](#id) | Filter projects by IDs. | | `membership` | [`Boolean`](#boolean) | Return only projects that the current user is a member of. | | `search` | [`String`](#string) | Search query, which can be for the project name, a path, or a description. | | `searchNamespaces` | [`Boolean`](#boolean) | Include namespace in project search. | | `sort` | [`String`](#string) | Sort order of results. Format: `_`, for example: `id_desc` or `name_asc`. | | `topics` | [`[String!]`](#string) | Filter projects by topics. | | `withIssuesEnabled` | [`Boolean`](#boolean) | Return only projects with issues enabled. | | `withMergeRequestsEnabled` | [`Boolean`](#boolean) | Return only projects with merge requests enabled. | ### `Query.queryComplexity` Information about the complexity of the GraphQL query. Returns [`QueryComplexity`](#querycomplexity). ### `Query.runner` Find a runner. Returns [`CiRunner`](#cirunner). #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`CiRunnerID!`](#cirunnerid) | Runner ID. | ### `Query.runnerPlatforms` Supported runner platforms. WARNING: **Deprecated** in 15.9. No longer used, use gitlab-runner documentation to learn about supported platforms. Returns [`RunnerPlatformConnection`](#runnerplatformconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ### `Query.runnerSetup` Runner setup instructions. WARNING: **Deprecated** in 15.9. No longer used, use gitlab-runner documentation to learn about runner registration commands. Returns [`RunnerSetup`](#runnersetup). #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `architecture` | [`String!`](#string) | Architecture to generate the instructions for. | | `groupId` **{warning-solid}** | [`GroupID`](#groupid) | **Deprecated** in 13.11. No longer used. | | `platform` | [`String!`](#string) | Platform to generate the instructions for. | | `projectId` **{warning-solid}** | [`ProjectID`](#projectid) | **Deprecated** in 13.11. No longer used. | ### `Query.runners` Find runners visible to the current user. Returns [`CiRunnerConnection`](#cirunnerconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `active` **{warning-solid}** | [`Boolean`](#boolean) | **Deprecated** in 14.8. This was renamed. Use: `paused`. | | `paused` | [`Boolean`](#boolean) | Filter runners by `paused` (true) or `active` (false) status. | | `search` | [`String`](#string) | Filter by full token or partial text in description field. | | `sort` | [`CiRunnerSort`](#cirunnersort) | Sort order of results. | | `status` | [`CiRunnerStatus`](#cirunnerstatus) | Filter runners by status. | | `tagList` | [`[String!]`](#string) | Filter by tags associated with the runner (comma-separated or array). | | `type` | [`CiRunnerType`](#cirunnertype) | Filter runners by type. | | `upgradeStatus` | [`CiRunnerUpgradeStatus`](#cirunnerupgradestatus) | Filter by upgrade status. | ### `Query.snippets` Find Snippets visible to the current user. Returns [`SnippetConnection`](#snippetconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `authorId` | [`UserID`](#userid) | ID of an author. | | `explore` | [`Boolean`](#boolean) | Explore personal snippets. | | `ids` | [`[SnippetID!]`](#snippetid) | Array of global snippet IDs. For example, `gid://gitlab/ProjectSnippet/1`. | | `projectId` | [`ProjectID`](#projectid) | ID of a project. | | `type` | [`TypeEnum`](#typeenum) | Type of snippet. | | `visibility` | [`VisibilityScopesEnum`](#visibilityscopesenum) | Visibility of the snippet. | ### `Query.subscriptionFutureEntries` Fields related to entries in future subscriptions. Returns [`SubscriptionFutureEntryConnection`](#subscriptionfutureentryconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ### `Query.syntheticNote` Find a synthetic note. WARNING: **Introduced** in 15.9. This feature is an Experiment. It can be changed or removed at any time. Returns [`Note`](#note). #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `noteableId` | [`NoteableID!`](#noteableid) | Global ID of the resource to search synthetic note on. | | `sha` | [`String!`](#string) | Global ID of the note. | ### `Query.timelogs` Find timelogs visible to the current user. Returns [`TimelogConnection`](#timelogconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `endDate` | [`Time`](#time) | List timelogs within a date range where the logged date is equal to or before endDate. | | `endTime` | [`Time`](#time) | List timelogs within a time range where the logged time is equal to or before endTime. | | `groupId` | [`GroupID`](#groupid) | List timelogs for a group. | | `projectId` | [`ProjectID`](#projectid) | List timelogs for a project. | | `sort` | [`TimelogSort`](#timelogsort) | List timelogs in a particular order. | | `startDate` | [`Time`](#time) | List timelogs within a date range where the logged date is equal to or after startDate. | | `startTime` | [`Time`](#time) | List timelogs within a time range where the logged time is equal to or after startTime. | | `username` | [`String`](#string) | List timelogs for a user. | ### `Query.todo` Retrieve a single to-do item. Returns [`Todo`](#todo). #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`TodoID!`](#todoid) | ID of the to-do item. | ### `Query.topics` Find project topics. Returns [`TopicConnection`](#topicconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `search` | [`String`](#string) | Search query for topic name. | ### `Query.usageTrendsMeasurements` Get statistics on the instance. Returns [`UsageTrendsMeasurementConnection`](#usagetrendsmeasurementconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `identifier` | [`MeasurementIdentifier!`](#measurementidentifier) | Type of measurement or statistics to retrieve. | | `recordedAfter` | [`Time`](#time) | Measurement recorded after this date. | | `recordedBefore` | [`Time`](#time) | Measurement recorded before this date. | ### `Query.user` Find a user. Returns [`UserCore`](#usercore). #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`UserID`](#userid) | ID of the User. | | `username` | [`String`](#string) | Username of the User. | ### `Query.users` Find users. Returns [`UserCoreConnection`](#usercoreconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `admins` | [`Boolean`](#boolean) | Return only admin users. | | `ids` | [`[ID!]`](#id) | List of user Global IDs. | | `search` | [`String`](#string) | Query to search users by name, username, or primary email. | | `sort` | [`Sort`](#sort) | Sort users by this criteria. | | `usernames` | [`[String!]`](#string) | List of usernames. | ### `Query.vulnerabilities` Vulnerabilities reported on projects on the current user's instance security dashboard. Returns [`VulnerabilityConnection`](#vulnerabilityconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clusterAgentId` | [`[ClustersAgentID!]`](#clustersagentid) | Filter vulnerabilities by `cluster_agent_id`. Vulnerabilities with a `reportType` of `cluster_image_scanning` are only included with this filter. | | `clusterId` | [`[ClustersClusterID!]`](#clustersclusterid) | Filter vulnerabilities by `cluster_id`. Vulnerabilities with a `reportType` of `cluster_image_scanning` are only included with this filter. | | `hasIssues` | [`Boolean`](#boolean) | Returns only the vulnerabilities which have linked issues. | | `hasResolution` | [`Boolean`](#boolean) | Returns only the vulnerabilities which have been resolved on default branch. | | `image` | [`[String!]`](#string) | Filter vulnerabilities by location image. When this filter is present, the response only matches entries for a `reportType` that includes `container_scanning`, `cluster_image_scanning`. | | `projectId` | [`[ID!]`](#id) | Filter vulnerabilities by project. | | `reportType` | [`[VulnerabilityReportType!]`](#vulnerabilityreporttype) | Filter vulnerabilities by report type. | | `scanner` | [`[String!]`](#string) | Filter vulnerabilities by VulnerabilityScanner.externalId. | | `scannerId` | [`[VulnerabilitiesScannerID!]`](#vulnerabilitiesscannerid) | Filter vulnerabilities by scanner ID. | | `severity` | [`[VulnerabilitySeverity!]`](#vulnerabilityseverity) | Filter vulnerabilities by severity. | | `sort` | [`VulnerabilitySort`](#vulnerabilitysort) | List vulnerabilities by sort order. | | `state` | [`[VulnerabilityState!]`](#vulnerabilitystate) | Filter vulnerabilities by state. | ### `Query.vulnerabilitiesCountByDay` The historical number of vulnerabilities per day for the projects on the current user's instance security dashboard. Returns [`VulnerabilitiesCountByDayConnection`](#vulnerabilitiescountbydayconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `endDate` | [`ISO8601Date!`](#iso8601date) | Last day for which to fetch vulnerability history. | | `startDate` | [`ISO8601Date!`](#iso8601date) | First day for which to fetch vulnerability history. | ### `Query.vulnerability` Find a vulnerability. Returns [`Vulnerability`](#vulnerability). #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`VulnerabilityID!`](#vulnerabilityid) | Global ID of the Vulnerability. | ### `Query.workItem` Find a work item. WARNING: **Introduced** in 15.1. This feature is an Experiment. It can be changed or removed at any time. Returns [`WorkItem`](#workitem). #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`WorkItemID!`](#workitemid) | Global ID of the work item. | ### `Query.workspace` Find a workspace. WARNING: **Introduced** in 16.0. This feature is an Experiment. It can be changed or removed at any time. Returns [`Workspace`](#workspace). #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`RemoteDevelopmentWorkspaceID!`](#remotedevelopmentworkspaceid) | Find a workspace by its ID. | ### `Query.workspaces` Find workspaces owned by the current user by their IDs. WARNING: **Introduced** in 16.0. This feature is an Experiment. It can be changed or removed at any time. Returns [`WorkspaceConnection`](#workspaceconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ids` | [`[RemoteDevelopmentWorkspaceID!]`](#remotedevelopmentworkspaceid) | Array of global workspace IDs. For example, `["gid://gitlab/RemoteDevelopment::Workspace/1"]`. | ## `Mutation` type The `Mutation` type contains all the mutations you can execute. All mutations receive their arguments in a single input object named `input`, and all mutations support at least a return field `errors` containing a list of error messages. All input objects may have a `clientMutationId: String` field, identifying the mutation. For example: ```graphql mutation($id: NoteableID!, $body: String!) { createNote(input: { noteableId: $id, body: $body }) { errors } } ``` ### `Mutation.achievementsAward` WARNING: **Introduced** in 15.10. This feature is an Experiment. It can be changed or removed at any time. Input type: `AchievementsAwardInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `achievementId` | [`AchievementsAchievementID!`](#achievementsachievementid) | Global ID of the achievement being awarded. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `userId` | [`UserID!`](#userid) | Global ID of the user being awarded the achievement. | #### 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. | | `userAchievement` | [`UserAchievement`](#userachievement) | Achievement award. | ### `Mutation.achievementsCreate` WARNING: **Introduced** in 15.8. This feature is an Experiment. It can be changed or removed at any time. Input type: `AchievementsCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `avatar` | [`Upload`](#upload) | Avatar for the achievement. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `description` | [`String`](#string) | Description of or notes for the achievement. | | `name` | [`String!`](#string) | Name for the achievement. | | `namespaceId` | [`NamespaceID!`](#namespaceid) | Namespace for the achievement. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `achievement` | [`Achievement`](#achievement) | Achievement created. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.achievementsDelete` WARNING: **Introduced** in 15.11. This feature is an Experiment. It can be changed or removed at any time. Input type: `AchievementsDeleteInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `achievementId` | [`AchievementsAchievementID!`](#achievementsachievementid) | Global ID of the achievement being deleted. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `achievement` | [`Achievement`](#achievement) | Achievement. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.achievementsRevoke` WARNING: **Introduced** in 15.10. This feature is an Experiment. It can be changed or removed at any time. Input type: `AchievementsRevokeInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `userAchievementId` | [`AchievementsUserAchievementID!`](#achievementsuserachievementid) | Global ID of the user achievement being revoked. | #### 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. | | `userAchievement` | [`UserAchievement`](#userachievement) | Achievement award. | ### `Mutation.achievementsUpdate` WARNING: **Introduced** in 15.11. This feature is an Experiment. It can be changed or removed at any time. Input type: `AchievementsUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `achievementId` | [`AchievementsAchievementID!`](#achievementsachievementid) | Global ID of the achievement being updated. | | `avatar` | [`Upload`](#upload) | Avatar for the achievement. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `description` | [`String`](#string) | Description of or notes for the achievement. | | `name` | [`String`](#string) | Name for the achievement. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `achievement` | [`Achievement`](#achievement) | Achievement. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.addProjectToSecurityDashboard` Input type: `AddProjectToSecurityDashboardInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`ProjectID!`](#projectid) | ID of the project to be added to Instance Security Dashboard. | #### 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. | | `project` | [`Project`](#project) | Project that was added to the Instance Security Dashboard. | ### `Mutation.adminSidekiqQueuesDeleteJobs` Input type: `AdminSidekiqQueuesDeleteJobsInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `artifactSize` | [`String`](#string) | Delete jobs matching artifact_size in the context metadata. | | `artifactUsedCdn` | [`String`](#string) | Delete jobs matching artifact_used_cdn in the context metadata. | | `artifactsDependenciesCount` | [`String`](#string) | Delete jobs matching artifacts_dependencies_count in the context metadata. | | `artifactsDependenciesSize` | [`String`](#string) | Delete jobs matching artifacts_dependencies_size in the context metadata. | | `callerId` | [`String`](#string) | Delete jobs matching caller_id in the context metadata. | | `clientId` | [`String`](#string) | Delete jobs matching client_id in the context metadata. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `featureCategory` | [`String`](#string) | Delete jobs matching feature_category in the context metadata. | | `jobId` | [`String`](#string) | Delete jobs matching job_id in the context metadata. | | `mergeActionStatus` | [`String`](#string) | Delete jobs matching merge_action_status in the context metadata. | | `pipelineId` | [`String`](#string) | Delete jobs matching pipeline_id in the context metadata. | | `project` | [`String`](#string) | Delete jobs matching project in the context metadata. | | `queueName` | [`String!`](#string) | Name of the queue to delete jobs from. | | `relatedClass` | [`String`](#string) | Delete jobs matching related_class in the context metadata. | | `remoteIp` | [`String`](#string) | Delete jobs matching remote_ip in the context metadata. | | `rootCallerId` | [`String`](#string) | Delete jobs matching root_caller_id in the context metadata. | | `rootNamespace` | [`String`](#string) | Delete jobs matching root_namespace in the context metadata. | | `subscriptionPlan` | [`String`](#string) | Delete jobs matching subscription_plan in the context metadata. | | `user` | [`String`](#string) | Delete jobs matching user in the context metadata. | | `userId` | [`String`](#string) | Delete jobs matching user_id in the context metadata. | | `workerClass` | [`String`](#string) | Delete jobs with the given worker class. | #### 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. | | `result` | [`DeleteJobsResponse`](#deletejobsresponse) | Information about the status of the deletion request. | ### `Mutation.aiAction` WARNING: **Introduced** in 15.11. This feature is an Experiment. It can be changed or removed at any time. Input type: `AiActionInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `explainCode` | [`AiExplainCodeInput`](#aiexplaincodeinput) | Input for explain_code AI action. | | `explainVulnerability` | [`AiExplainVulnerabilityInput`](#aiexplainvulnerabilityinput) | Input for explain_vulnerability AI action. | | `generateDescription` | [`AiGenerateDescriptionInput`](#aigeneratedescriptioninput) | Input for generate_description AI action. | | `generateTestFile` | [`GenerateTestFileInput`](#generatetestfileinput) | Input for generate_test_file AI action. | | `markupFormat` | [`MarkupFormat`](#markupformat) | Indicates the response format. | | `summarizeComments` | [`AiSummarizeCommentsInput`](#aisummarizecommentsinput) | Input for summarize_comments AI action. | | `tanukiBot` | [`AiTanukiBotInput`](#aitanukibotinput) | Input for tanuki_bot AI action. | #### 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. | | `requestId` | [`String`](#string) | ID of the request. | ### `Mutation.alertSetAssignees` Input type: `AlertSetAssigneesInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `assigneeUsernames` | [`[String!]!`](#string) | Usernames to assign to the alert. Replaces existing assignees by default. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `iid` | [`String!`](#string) | IID of the alert to mutate. | | `operationMode` | [`MutationOperationMode`](#mutationoperationmode) | Operation to perform. Defaults to REPLACE. | | `projectPath` | [`ID!`](#id) | Project the alert to mutate is in. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `alert` | [`AlertManagementAlert`](#alertmanagementalert) | Alert after mutation. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | | `issue` | [`Issue`](#issue) | Issue created after mutation. | | `todo` | [`Todo`](#todo) | To-do item after mutation. | ### `Mutation.alertTodoCreate` Input type: `AlertTodoCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `iid` | [`String!`](#string) | IID of the alert to mutate. | | `projectPath` | [`ID!`](#id) | Project the alert to mutate is in. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `alert` | [`AlertManagementAlert`](#alertmanagementalert) | Alert after mutation. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | | `issue` | [`Issue`](#issue) | Issue created after mutation. | | `todo` | [`Todo`](#todo) | To-do item after mutation. | ### `Mutation.approveDeployment` Input type: `ApproveDeploymentInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `comment` | [`String`](#string) | Comment to go with the approval. | | `id` | [`DeploymentID!`](#deploymentid) | ID of the deployment. | | `representedAs` | [`String`](#string) | Name of the User/Group/Role to use for the approval, when the user belongs to multiple approval rules. | | `status` | [`DeploymentsApprovalStatus!`](#deploymentsapprovalstatus) | Status of the approval (either `APPROVED` or `REJECTED`). | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `deploymentApproval` | [`DeploymentApproval!`](#deploymentapproval) | DeploymentApproval after mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.artifactDestroy` Input type: `ArtifactDestroyInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`CiJobArtifactID!`](#cijobartifactid) | ID of the artifact to delete. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `artifact` | [`CiJobArtifact`](#cijobartifact) | Deleted artifact. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.auditEventsStreamingDestinationEventsAdd` Input type: `AuditEventsStreamingDestinationEventsAddInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `destinationId` | [`AuditEventsExternalAuditEventDestinationID!`](#auditeventsexternalauditeventdestinationid) | Destination id. | | `eventTypeFilters` | [`[String!]!`](#string) | List of event type filters to add for streaming. | #### 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. | | `eventTypeFilters` | [`[String!]`](#string) | Event type filters present. | ### `Mutation.auditEventsStreamingDestinationEventsRemove` Input type: `AuditEventsStreamingDestinationEventsRemoveInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `destinationId` | [`AuditEventsExternalAuditEventDestinationID!`](#auditeventsexternalauditeventdestinationid) | Destination URL. | | `eventTypeFilters` | [`[String!]!`](#string) | List of event type filters to remove from streaming. | #### 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.auditEventsStreamingHeadersCreate` Input type: `AuditEventsStreamingHeadersCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `destinationId` | [`AuditEventsExternalAuditEventDestinationID!`](#auditeventsexternalauditeventdestinationid) | Destination to associate header with. | | `key` | [`String!`](#string) | Header key. | | `value` | [`String!`](#string) | Header value. | #### 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. | | `header` | [`AuditEventStreamingHeader`](#auditeventstreamingheader) | Created header. | ### `Mutation.auditEventsStreamingHeadersDestroy` Input type: `AuditEventsStreamingHeadersDestroyInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `headerId` | [`AuditEventsStreamingHeaderID!`](#auditeventsstreamingheaderid) | Header 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.auditEventsStreamingHeadersUpdate` Input type: `AuditEventsStreamingHeadersUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `headerId` | [`AuditEventsStreamingHeaderID!`](#auditeventsstreamingheaderid) | Header to update. | | `key` | [`String!`](#string) | Header key. | | `value` | [`String!`](#string) | Header value. | #### 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. | | `header` | [`AuditEventStreamingHeader`](#auditeventstreamingheader) | Updates header. | ### `Mutation.awardEmojiAdd` Input type: `AwardEmojiAddInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `awardableId` | [`AwardableID!`](#awardableid) | Global ID of the awardable resource. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `name` | [`String!`](#string) | Emoji name. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `awardEmoji` | [`AwardEmoji`](#awardemoji) | Award emoji after mutation. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.awardEmojiRemove` Input type: `AwardEmojiRemoveInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `awardableId` | [`AwardableID!`](#awardableid) | Global ID of the awardable resource. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `name` | [`String!`](#string) | Emoji name. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `awardEmoji` | [`AwardEmoji`](#awardemoji) | Award emoji after mutation. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.awardEmojiToggle` Input type: `AwardEmojiToggleInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `awardableId` | [`AwardableID!`](#awardableid) | Global ID of the awardable resource. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `name` | [`String!`](#string) | Emoji name. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `awardEmoji` | [`AwardEmoji`](#awardemoji) | Award emoji after mutation. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | | `toggledOn` | [`Boolean!`](#boolean) | Indicates the status of the emoji. True if the toggle awarded the emoji, and false if the toggle removed the emoji. | ### `Mutation.boardEpicCreate` Input type: `BoardEpicCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `boardId` | [`BoardsEpicBoardID!`](#boardsepicboardid) | Global ID of the board that the epic is in. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `groupPath` | [`ID!`](#id) | Group the epic to create is in. | | `listId` | [`BoardsEpicListID!`](#boardsepiclistid) | Global ID of the epic board list in which epic will be created. | | `title` | [`String!`](#string) | Title of the epic. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `epic` | [`Epic`](#epic) | Epic after creation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.boardListCreate` Input type: `BoardListCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `assigneeId` | [`UserID`](#userid) | Global ID of an existing user. | | `backlog` | [`Boolean`](#boolean) | Create the backlog list. | | `boardId` | [`BoardID!`](#boardid) | Global ID of the issue board to mutate. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `iterationId` | [`IterationID`](#iterationid) | Global ID of an existing iteration. | | `labelId` | [`LabelID`](#labelid) | Global ID of an existing label. | | `milestoneId` | [`MilestoneID`](#milestoneid) | Global ID of an existing milestone. | #### 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. | | `list` | [`BoardList`](#boardlist) | Issue list in the issue board. | ### `Mutation.boardListUpdateLimitMetrics` Input type: `BoardListUpdateLimitMetricsInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `limitMetric` | [`ListLimitMetric`](#listlimitmetric) | New limit metric type for the list. | | `listId` | [`ListID!`](#listid) | Global ID of the list. | | `maxIssueCount` | [`Int`](#int) | New maximum issue count limit. | | `maxIssueWeight` | [`Int`](#int) | New maximum issue weight limit. | #### 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. | | `list` | [`BoardList`](#boardlist) | Updated list. | ### `Mutation.bulkDestroyJobArtifacts` WARNING: **Introduced** in 15.10. This feature is an Experiment. It can be changed or removed at any time. Input type: `BulkDestroyJobArtifactsInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `ids` | [`[CiJobArtifactID!]!`](#cijobartifactid) | Global IDs of the job artifacts to destroy. | | `projectId` | [`ProjectID!`](#projectid) | Global Project ID of the job artifacts to destroy. Incompatible with projectPath. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `destroyedCount` | [`Int`](#int) | Number of job artifacts deleted. | | `destroyedIds` | [`[CiJobArtifactID!]`](#cijobartifactid) | IDs of job artifacts that were deleted. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.bulkEnableDevopsAdoptionNamespaces` **BETA** This endpoint is subject to change without notice. Input type: `BulkEnableDevopsAdoptionNamespacesInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `displayNamespaceId` | [`NamespaceID`](#namespaceid) | Display namespace ID. | | `namespaceIds` | [`[NamespaceID!]!`](#namespaceid) | List of Namespace IDs. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `enabledNamespaces` | [`[DevopsAdoptionEnabledNamespace!]`](#devopsadoptionenablednamespace) | Enabled namespaces after mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.bulkRunnerDelete` WARNING: **Introduced** in 15.3. This feature is an Experiment. It can be changed or removed at any time. Input type: `BulkRunnerDeleteInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `ids` | [`[CiRunnerID!]`](#cirunnerid) | IDs of the runners to delete. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `deletedCount` | [`Int`](#int) | Number of records effectively deleted. Only present if operation was performed synchronously. | | `deletedIds` | [`[CiRunnerID!]`](#cirunnerid) | IDs of records effectively deleted. Only present if operation was performed synchronously. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.catalogResourcesCreate` WARNING: **Introduced** in 15.11. This feature is an Experiment. It can be changed or removed at any time. Input type: `CatalogResourcesCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `projectPath` | [`ID!`](#id) | Project to convert to a catalog resource. | #### 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.ciAiGenerateConfig` WARNING: **Introduced** in 16.0. This feature is an Experiment. It can be changed or removed at any time. Input type: `CiAiGenerateConfigInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `projectPath` | [`ID!`](#id) | Project path for the project related to the open config editor. | | `userContent` | [`String!`](#string) | Content of the user message to be sent to the language model. | #### 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. | | `userMessage` | [`AiMessageType`](#aimessagetype) | User chat message. | ### `Mutation.ciCdSettingsUpdate` WARNING: **Deprecated** in 15.0. This was renamed. Use: `ProjectCiCdSettingsUpdate`. Input type: `CiCdSettingsUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `fullPath` | [`ID!`](#id) | Full Path of the project the settings belong to. | | `inboundJobTokenScopeEnabled` | [`Boolean`](#boolean) | Indicates CI/CD job tokens generated in other projects have restricted access to this project. | | `jobTokenScopeEnabled` **{warning-solid}** | [`Boolean`](#boolean) | **Deprecated:** Outbound job token scope is being removed. This field can now only be set to false. Deprecated in 16.0. | | `keepLatestArtifact` | [`Boolean`](#boolean) | Indicates if the latest artifact should be kept for the project. | | `mergePipelinesEnabled` | [`Boolean`](#boolean) | Indicates if merge pipelines are enabled for the project. | | `mergeTrainsEnabled` | [`Boolean`](#boolean) | Indicates if merge trains are enabled for the project. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `ciCdSettings` | [`ProjectCiCdSetting!`](#projectcicdsetting) | CI/CD settings after mutation. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.ciJobTokenScopeAddProject` Input type: `CiJobTokenScopeAddProjectInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `direction` **{warning-solid}** | [`CiJobTokenScopeDirection`](#cijobtokenscopedirection) | **Deprecated:** Outbound job token scope is being removed. This field can now only be set to INBOUND. Deprecated in 16.0. | | `projectPath` | [`ID!`](#id) | Project that the CI job token scope belongs to. | | `targetProjectPath` | [`ID!`](#id) | Project to be added to the CI job token scope. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `ciJobTokenScope` | [`CiJobTokenScopeType`](#cijobtokenscopetype) | CI job token's access scope. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.ciJobTokenScopeRemoveProject` Input type: `CiJobTokenScopeRemoveProjectInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `direction` | [`CiJobTokenScopeDirection`](#cijobtokenscopedirection) | Direction of access, which defaults to outbound. | | `projectPath` | [`ID!`](#id) | Project that the CI job token scope belongs to. | | `targetProjectPath` | [`ID!`](#id) | Project to be removed from the CI job token scope. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `ciJobTokenScope` | [`CiJobTokenScopeType`](#cijobtokenscopetype) | CI job token's scope of access. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.clusterAgentDelete` Input type: `ClusterAgentDeleteInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`ClustersAgentID!`](#clustersagentid) | Global ID of the cluster agent that will be deleted. | #### 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.clusterAgentTokenCreate` Input type: `ClusterAgentTokenCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `clusterAgentId` | [`ClustersAgentID!`](#clustersagentid) | Global ID of the cluster agent that will be associated with the new token. | | `description` | [`String`](#string) | Description of the token. | | `name` | [`String!`](#string) | Name of the token. | #### 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. | | `secret` | [`String`](#string) | Token secret value. Make sure you save it - you won't be able to access it again. | | `token` | [`ClusterAgentToken`](#clusteragenttoken) | Token created after mutation. | ### `Mutation.clusterAgentTokenRevoke` Input type: `ClusterAgentTokenRevokeInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`ClustersAgentTokenID!`](#clustersagenttokenid) | Global ID of the agent token that will be revoked. | #### 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.commitCreate` Input type: `CommitCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `actions` | [`[CommitAction!]!`](#commitaction) | Array of action hashes to commit as a batch. | | `branch` | [`String!`](#string) | Name of the branch to commit into, it can be a new branch. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `message` | [`String!`](#string) | Raw commit message. | | `projectPath` | [`ID!`](#id) | Project full path the branch is associated with. | | `startBranch` | [`String`](#string) | If on a new branch, name of the original branch. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `commit` | [`Commit`](#commit) | Commit after mutation. | | `commitPipelinePath` | [`String`](#string) | ETag path for the commit's pipeline. | | `content` | [`[String!]`](#string) | Contents of the commit. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.configureContainerScanning` Configure Container Scanning for a project by enabling Container Scanning in a new or modified `.gitlab-ci.yml` file in a new branch. The new branch and a URL to create a merge request are part of the response. Input type: `ConfigureContainerScanningInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `projectPath` | [`ID!`](#id) | Full path of the project. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `branch` | [`String`](#string) | Branch that has the new/modified `.gitlab-ci.yml` file. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | | `successPath` | [`String`](#string) | Redirect path to use when the response is successful. | ### `Mutation.configureDependencyScanning` Configure Dependency Scanning for a project by enabling Dependency Scanning in a new or modified `.gitlab-ci.yml` file in a new branch. The new branch and a URL to create a Merge Request are a part of the response. Input type: `ConfigureDependencyScanningInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `projectPath` | [`ID!`](#id) | Full path of the project. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `branch` | [`String`](#string) | Branch that has the new/modified `.gitlab-ci.yml` file. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | | `successPath` | [`String`](#string) | Redirect path to use when the response is successful. | ### `Mutation.configureSast` Configure SAST for a project by enabling SAST in a new or modified `.gitlab-ci.yml` file in a new branch. The new branch and a URL to create a Merge Request are a part of the response. Input type: `ConfigureSastInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `configuration` | [`SastCiConfigurationInput!`](#sastciconfigurationinput) | SAST CI configuration for the project. | | `projectPath` | [`ID!`](#id) | Full path of the project. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `branch` | [`String`](#string) | Branch that has the new/modified `.gitlab-ci.yml` file. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | | `successPath` | [`String`](#string) | Redirect path to use when the response is successful. | ### `Mutation.configureSastIac` Enable SAST IaC for a project in a new or modified `.gitlab-ci.yml` file in a new branch. The new branch and a URL to create a merge request are a part of the response. Input type: `ConfigureSastIacInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `projectPath` | [`ID!`](#id) | Full path of the project. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `branch` | [`String`](#string) | Branch that has the new/modified `.gitlab-ci.yml` file. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | | `successPath` | [`String`](#string) | Redirect path to use when the response is successful. | ### `Mutation.configureSecretDetection` Configure Secret Detection for a project by enabling Secret Detection in a new or modified `.gitlab-ci.yml` file in a new branch. The new branch and a URL to create a Merge Request are a part of the response. Input type: `ConfigureSecretDetectionInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `projectPath` | [`ID!`](#id) | Full path of the project. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `branch` | [`String`](#string) | Branch that has the new/modified `.gitlab-ci.yml` file. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | | `successPath` | [`String`](#string) | Redirect path to use when the response is successful. | ### `Mutation.corpusCreate` Input type: `CorpusCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `fullPath` | [`ID!`](#id) | Project the corpus belongs to. | | `packageId` | [`PackagesPackageID!`](#packagespackageid) | ID of the corpus package. | #### 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.createAlertIssue` Input type: `CreateAlertIssueInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `iid` | [`String!`](#string) | IID of the alert to mutate. | | `projectPath` | [`ID!`](#id) | Project the alert to mutate is in. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `alert` | [`AlertManagementAlert`](#alertmanagementalert) | Alert after mutation. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | | `issue` | [`Issue`](#issue) | Issue created after mutation. | | `todo` | [`Todo`](#todo) | To-do item after mutation. | ### `Mutation.createAnnotation` WARNING: **Deprecated** in 16.0. Underlying feature was removed in 16.0. Input type: `CreateAnnotationInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `clusterId` | [`ClustersClusterID`](#clustersclusterid) | Global ID of the cluster to add an annotation to. | | `dashboardPath` | [`String!`](#string) | Path to a file defining the dashboard on which the annotation should be added. | | `description` | [`String!`](#string) | Description of the annotation. | | `endingAt` | [`Time`](#time) | Timestamp indicating ending moment to which the annotation relates. | | `environmentId` | [`EnvironmentID`](#environmentid) | Global ID of the environment to add an annotation to. | | `startingAt` | [`Time!`](#time) | Timestamp indicating starting moment to which the annotation relates. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `annotation` | [`MetricsDashboardAnnotation`](#metricsdashboardannotation) | Created annotation. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.createBoard` Input type: `CreateBoardInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `assigneeId` | [`UserID`](#userid) | ID of user to be assigned to the board. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `groupPath` | [`ID`](#id) | Full path of the group with which the resource is associated. | | `hideBacklogList` | [`Boolean`](#boolean) | Whether or not backlog list is hidden. | | `hideClosedList` | [`Boolean`](#boolean) | Whether or not closed list is hidden. | | `iterationCadenceId` | [`IterationsCadenceID`](#iterationscadenceid) | ID of iteration cadence to be assigned to the board. | | `iterationId` | [`IterationID`](#iterationid) | ID of iteration to be assigned to the board. | | `labelIds` | [`[LabelID!]`](#labelid) | IDs of labels to be added to the board. | | `labels` | [`[String!]`](#string) | Labels of the issue. | | `milestoneId` | [`MilestoneID`](#milestoneid) | ID of milestone to be assigned to the board. | | `name` | [`String`](#string) | Board name. | | `projectPath` | [`ID`](#id) | Full path of the project with which the resource is associated. | | `weight` | [`Int`](#int) | Weight value to be assigned to the board. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `board` | [`Board`](#board) | Board after mutation. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.createBranch` Input type: `CreateBranchInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `name` | [`String!`](#string) | Name of the branch. | | `projectPath` | [`ID!`](#id) | Project full path the branch is associated with. | | `ref` | [`String!`](#string) | Branch name or commit SHA to create branch from. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `branch` | [`Branch`](#branch) | Branch after mutation. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.createClusterAgent` Input type: `CreateClusterAgentInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `name` | [`String!`](#string) | Name of the cluster agent. | | `projectPath` | [`ID!`](#id) | Full path of the associated project for the cluster agent. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `clusterAgent` | [`ClusterAgent`](#clusteragent) | Cluster agent created after mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.createComplianceFramework` Input type: `CreateComplianceFrameworkInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `namespacePath` | [`ID!`](#id) | Full path of the namespace to add the compliance framework to. | | `params` | [`ComplianceFrameworkInput!`](#complianceframeworkinput) | Parameters to update the compliance framework with. | #### 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. | | `framework` | [`ComplianceFramework`](#complianceframework) | Created compliance framework. | ### `Mutation.createCustomEmoji` WARNING: **Introduced** in 13.6. This feature is an Experiment. It can be changed or removed at any time. Input type: `CreateCustomEmojiInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `groupPath` | [`ID!`](#id) | Namespace full path the emoji is associated with. | | `name` | [`String!`](#string) | Name of the emoji. | | `url` | [`String!`](#string) | Location of the emoji file. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `customEmoji` | [`CustomEmoji`](#customemoji) | New custom emoji. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.createDiffNote` Input type: `CreateDiffNoteInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `body` | [`String!`](#string) | Content of the note. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `confidential` **{warning-solid}** | [`Boolean`](#boolean) | **Deprecated:** This was renamed. Please use `internal`. Deprecated in 15.3. | | `internal` | [`Boolean`](#boolean) | Internal flag for a note. Default is false. | | `noteableId` | [`NoteableID!`](#noteableid) | Global ID of the resource to add a note to. | | `position` | [`DiffPositionInput!`](#diffpositioninput) | Position of this note on a diff. | #### 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. | | `note` | [`Note`](#note) | Note after mutation. | ### `Mutation.createEpic` Input type: `CreateEpicInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `addLabelIds` | [`[ID!]`](#id) | IDs of labels to be added to the epic. | | `addLabels` | [`[String!]`](#string) | Array of labels to be added to the epic. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `color` | [`Color`](#color) | Color of the epic. Available only when feature flag `epic_color_highlight` is enabled. This flag is disabled by default, because the feature is experimental and is subject to change without notice. | | `confidential` | [`Boolean`](#boolean) | Indicates if the epic is confidential. | | `description` | [`String`](#string) | Description of the epic. | | `dueDateFixed` | [`String`](#string) | End date of the epic. | | `dueDateIsFixed` | [`Boolean`](#boolean) | Indicates end date should be sourced from due_date_fixed field not the issue milestones. | | `groupPath` | [`ID!`](#id) | Group the epic to mutate is in. | | `removeLabelIds` | [`[ID!]`](#id) | IDs of labels to be removed from the epic. | | `startDateFixed` | [`String`](#string) | Start date of the epic. | | `startDateIsFixed` | [`Boolean`](#boolean) | Indicates start date should be sourced from start_date_fixed field not the issue milestones. | | `title` | [`String`](#string) | Title of the epic. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `epic` | [`Epic`](#epic) | Created epic. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.createImageDiffNote` Input type: `CreateImageDiffNoteInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `body` | [`String!`](#string) | Content of the note. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `confidential` **{warning-solid}** | [`Boolean`](#boolean) | **Deprecated:** This was renamed. Please use `internal`. Deprecated in 15.3. | | `internal` | [`Boolean`](#boolean) | Internal flag for a note. Default is false. | | `noteableId` | [`NoteableID!`](#noteableid) | Global ID of the resource to add a note to. | | `position` | [`DiffImagePositionInput!`](#diffimagepositioninput) | Position of this note on a diff. | #### 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. | | `note` | [`Note`](#note) | Note after mutation. | ### `Mutation.createIssue` Input type: `CreateIssueInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `assigneeIds` | [`[UserID!]`](#userid) | Array of user IDs to assign to the issue. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `confidential` | [`Boolean`](#boolean) | Indicates the issue is confidential. | | `createdAt` | [`Time`](#time) | Timestamp when the issue was created. Available only for admins and project owners. | | `description` | [`String`](#string) | Description of the issue. | | `discussionToResolve` | [`String`](#string) | ID of a discussion to resolve. Also pass `merge_request_to_resolve_discussions_of`. | | `dueDate` | [`ISO8601Date`](#iso8601date) | Due date of the issue. | | `epicId` | [`EpicID`](#epicid) | ID of an epic to associate the issue with. | | `healthStatus` | [`HealthStatus`](#healthstatus) | Desired health status. | | `iid` | [`Int`](#int) | IID (internal ID) of a project issue. Only admins and project owners can modify. | | `iterationCadenceId` | [`IterationsCadenceID`](#iterationscadenceid) | Global iteration cadence ID. Required when `iterationWildcardId` is provided. | | `iterationId` | [`IterationID`](#iterationid) | Global iteration ID. Mutually exlusive argument with `iterationWildcardId`. | | `iterationWildcardId` | [`IssueCreationIterationWildcardId`](#issuecreationiterationwildcardid) | Iteration wildcard ID. Supported values are: `CURRENT`. Mutually exclusive argument with `iterationId`. iterationCadenceId also required when this argument is provided. | | `labelIds` | [`[LabelID!]`](#labelid) | IDs of labels to be added to the issue. | | `labels` | [`[String!]`](#string) | Labels of the issue. | | `locked` | [`Boolean`](#boolean) | Indicates discussion is locked on the issue. | | `mergeRequestToResolveDiscussionsOf` | [`MergeRequestID`](#mergerequestid) | IID of a merge request for which to resolve discussions. | | `milestoneId` | [`MilestoneID`](#milestoneid) | ID of the milestone to assign to the issue. On update milestone will be removed if set to null. | | `moveAfterId` | [`IssueID`](#issueid) | Global ID of issue that should be placed after the current issue. | | `moveBeforeId` | [`IssueID`](#issueid) | Global ID of issue that should be placed before the current issue. | | `projectPath` | [`ID!`](#id) | Project full path the issue is associated with. | | `title` | [`String!`](#string) | Title of the issue. | | `type` | [`IssueType`](#issuetype) | Type of the issue. | | `weight` | [`Int`](#int) | Weight of the issue. | #### 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. | | `issue` | [`Issue`](#issue) | Issue after mutation. | ### `Mutation.createIteration` WARNING: **Deprecated** in 14.0. Use iterationCreate. Input type: `CreateIterationInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `description` | [`String`](#string) | Description of the iteration. | | `dueDate` | [`String`](#string) | End date of the iteration. | | `groupPath` | [`ID`](#id) | Full path of the group with which the resource is associated. | | `iterationsCadenceId` | [`IterationsCadenceID`](#iterationscadenceid) | Global ID of the iteration cadence to be assigned to the new iteration. | | `projectPath` | [`ID`](#id) | Full path of the project with which the resource is associated. | | `startDate` | [`String`](#string) | Start date of the iteration. | | `title` | [`String`](#string) | Title of the iteration. | #### 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. | | `iteration` | [`Iteration`](#iteration) | Created iteration. | ### `Mutation.createNote` Creates a Note. If the body of the Note contains only quick actions, the Note will be destroyed during an update, and no Note will be returned. Input type: `CreateNoteInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `body` | [`String!`](#string) | Content of the note. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `confidential` **{warning-solid}** | [`Boolean`](#boolean) | **Deprecated:** This was renamed. Please use `internal`. Deprecated in 15.3. | | `discussionId` | [`DiscussionID`](#discussionid) | Global ID of the discussion the note is in reply to. | | `internal` | [`Boolean`](#boolean) | Internal flag for a note. Default is false. | | `mergeRequestDiffHeadSha` | [`String`](#string) | SHA of the head commit which is used to ensure that the merge request has not been updated since the request was sent. | | `noteableId` | [`NoteableID!`](#noteableid) | Global ID of the resource to add a note to. | #### 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. | | `note` | [`Note`](#note) | Note after mutation. | ### `Mutation.createRequirement` Input type: `CreateRequirementInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `description` | [`String`](#string) | Description of the requirement. | | `projectPath` | [`ID!`](#id) | Full project path the requirement is associated with. | | `title` | [`String`](#string) | Title of the requirement. | #### 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. | | `requirement` | [`Requirement`](#requirement) | Requirement after mutation. | ### `Mutation.createSnippet` Input type: `CreateSnippetInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `blobActions` | [`[SnippetBlobActionInputType!]`](#snippetblobactioninputtype) | Actions to perform over the snippet repository and blobs. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `description` | [`String`](#string) | Description of the snippet. | | `projectPath` | [`ID`](#id) | Full path of the project the snippet is associated with. | | `title` | [`String!`](#string) | Title of the snippet. | | `uploadedFiles` | [`[String!]`](#string) | Paths to files uploaded in the snippet description. | | `visibilityLevel` | [`VisibilityLevelsEnum!`](#visibilitylevelsenum) | Visibility level of the snippet. | #### 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. | | `snippet` | [`Snippet`](#snippet) | Snippet after mutation. | ### `Mutation.createTestCase` Input type: `CreateTestCaseInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `description` | [`String`](#string) | Test case description. | | `labelIds` | [`[ID!]`](#id) | IDs of labels to be added to the test case. | | `projectPath` | [`ID!`](#id) | Project full path to create the test case in. | | `title` | [`String!`](#string) | Test case title. | #### 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. | | `testCase` | [`Issue`](#issue) | Test case created. | ### `Mutation.customerRelationsContactCreate` Input type: `CustomerRelationsContactCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `description` | [`String`](#string) | Description of or notes for the contact. | | `email` | [`String`](#string) | Email address of the contact. | | `firstName` | [`String!`](#string) | First name of the contact. | | `groupId` | [`GroupID!`](#groupid) | Group for the contact. | | `lastName` | [`String!`](#string) | Last name of the contact. | | `organizationId` | [`CustomerRelationsOrganizationID`](#customerrelationsorganizationid) | Organization for the contact. | | `phone` | [`String`](#string) | Phone number of the contact. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `contact` | [`CustomerRelationsContact`](#customerrelationscontact) | Contact after the mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.customerRelationsContactUpdate` Input type: `CustomerRelationsContactUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `active` | [`Boolean`](#boolean) | State of the contact. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `description` | [`String`](#string) | Description of or notes for the contact. | | `email` | [`String`](#string) | Email address of the contact. | | `firstName` | [`String`](#string) | First name of the contact. | | `id` | [`CustomerRelationsContactID!`](#customerrelationscontactid) | Global ID of the contact. | | `lastName` | [`String`](#string) | Last name of the contact. | | `organizationId` | [`CustomerRelationsOrganizationID`](#customerrelationsorganizationid) | Organization of the contact. | | `phone` | [`String`](#string) | Phone number of the contact. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `contact` | [`CustomerRelationsContact`](#customerrelationscontact) | Contact after the mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.customerRelationsOrganizationCreate` Input type: `CustomerRelationsOrganizationCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `defaultRate` | [`Float`](#float) | Standard billing rate for the organization. | | `description` | [`String`](#string) | Description of or notes for the organization. | | `groupId` | [`GroupID!`](#groupid) | Group for the organization. | | `name` | [`String!`](#string) | Name of the organization. | #### 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. | | `organization` | [`CustomerRelationsOrganization`](#customerrelationsorganization) | Organization after the mutation. | ### `Mutation.customerRelationsOrganizationUpdate` Input type: `CustomerRelationsOrganizationUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `active` | [`Boolean`](#boolean) | State of the organization. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `defaultRate` | [`Float`](#float) | Standard billing rate for the organization. | | `description` | [`String`](#string) | Description of or notes for the organization. | | `id` | [`CustomerRelationsOrganizationID!`](#customerrelationsorganizationid) | Global ID of the organization. | | `name` | [`String`](#string) | Name of the organization. | #### 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. | | `organization` | [`CustomerRelationsOrganization!`](#customerrelationsorganization) | Organization after the mutation. | ### `Mutation.dastOnDemandScanCreate` Input type: `DastOnDemandScanCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `dastScannerProfileId` | [`DastScannerProfileID`](#dastscannerprofileid) | ID of the scanner profile to be used for the scan. | | `dastSiteProfileId` | [`DastSiteProfileID!`](#dastsiteprofileid) | ID of the site profile to be used for the scan. | | `fullPath` | [`ID!`](#id) | Project the site profile belongs to. | #### 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. | | `pipelineUrl` | [`String`](#string) | URL of the pipeline that was created. | ### `Mutation.dastProfileCreate` Input type: `DastProfileCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `branchName` | [`String`](#string) | Associated branch. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `dastProfileSchedule` | [`DastProfileScheduleInput`](#dastprofilescheduleinput) | Represents a DAST Profile Schedule. | | `dastScannerProfileId` | [`DastScannerProfileID!`](#dastscannerprofileid) | ID of the scanner profile to be associated. | | `dastSiteProfileId` | [`DastSiteProfileID!`](#dastsiteprofileid) | ID of the site profile to be associated. | | `description` | [`String`](#string) | Description of the profile. Defaults to an empty string. | | `fullPath` | [`ID!`](#id) | Project the profile belongs to. | | `name` | [`String!`](#string) | Name of the profile. | | `runAfterCreate` | [`Boolean`](#boolean) | Run scan using profile after creation. Defaults to false. | | `tagList` | [`[String!]`](#string) | Indicates the runner tags associated with the profile. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `dastProfile` | [`DastProfile`](#dastprofile) | Created profile. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | | `pipelineUrl` | [`String`](#string) | URL of the pipeline that was created. Requires `runAfterCreate` to be set to `true`. | ### `Mutation.dastProfileDelete` Input type: `DastProfileDeleteInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`DastProfileID!`](#dastprofileid) | ID of the profile to be deleted. | #### 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.dastProfileRun` Input type: `DastProfileRunInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `fullPath` **{warning-solid}** | [`ID`](#id) | **Deprecated:** Full path not required to qualify Global ID. Deprecated in 14.5. | | `id` | [`DastProfileID!`](#dastprofileid) | ID of the profile to be used for the scan. | #### 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. | | `pipelineUrl` | [`String`](#string) | URL of the pipeline that was created. | ### `Mutation.dastProfileUpdate` Input type: `DastProfileUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `branchName` | [`String`](#string) | Associated branch. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `dastProfileSchedule` | [`DastProfileScheduleInput`](#dastprofilescheduleinput) | Represents a DAST profile schedule. | | `dastScannerProfileId` | [`DastScannerProfileID`](#dastscannerprofileid) | ID of the scanner profile to be associated. | | `dastSiteProfileId` | [`DastSiteProfileID`](#dastsiteprofileid) | ID of the site profile to be associated. | | `description` | [`String`](#string) | Description of the profile. Defaults to an empty string. | | `fullPath` **{warning-solid}** | [`ID`](#id) | **Deprecated:** Full path not required to qualify Global ID. Deprecated in 14.5. | | `id` | [`DastProfileID!`](#dastprofileid) | ID of the profile to be deleted. | | `name` | [`String`](#string) | Name of the profile. | | `runAfterUpdate` | [`Boolean`](#boolean) | Run scan using profile after update. Defaults to false. | | `tagList` | [`[String!]`](#string) | Indicates the runner tags associated with the profile. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `dastProfile` | [`DastProfile`](#dastprofile) | Updated profile. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | | `pipelineUrl` | [`String`](#string) | The URL of the pipeline that was created. Requires the input argument `runAfterUpdate` to be set to `true` when calling the mutation, otherwise no pipeline will be created. | ### `Mutation.dastScannerProfileCreate` Input type: `DastScannerProfileCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `fullPath` | [`ID!`](#id) | Project the scanner profile belongs to. | | `profileName` | [`String!`](#string) | Name of the scanner profile. | | `scanType` | [`DastScanTypeEnum`](#dastscantypeenum) | Indicates the type of DAST scan that will run. Either a Passive Scan or an Active Scan. | | `showDebugMessages` | [`Boolean`](#boolean) | Indicates if debug messages should be included in DAST console output. True to include the debug messages. | | `spiderTimeout` | [`Int`](#int) | Maximum number of minutes allowed for the spider to traverse the site. | | `tagList` **{warning-solid}** | [`[String!]`](#string) | **Deprecated:** Moved to DastProfile. Deprecated in 15.8. | | `targetTimeout` | [`Int`](#int) | Maximum number of seconds allowed for the site under test to respond to a request. | | `useAjaxSpider` | [`Boolean`](#boolean) | Indicates if the AJAX spider should be used to crawl the target site. True to run the AJAX spider in addition to the traditional spider, and false to run only the traditional spider. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `dastScannerProfile` | [`DastScannerProfile`](#dastscannerprofile) | Created scanner profile. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | | `id` **{warning-solid}** | [`DastScannerProfileID`](#dastscannerprofileid) | **Deprecated:** use `dastScannerProfile` field. Deprecated in 14.10. | ### `Mutation.dastScannerProfileDelete` Input type: `DastScannerProfileDeleteInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `fullPath` **{warning-solid}** | [`ID`](#id) | **Deprecated:** Full path not required to qualify Global ID. Deprecated in 14.5. | | `id` | [`DastScannerProfileID!`](#dastscannerprofileid) | ID of the scanner profile to be deleted. | #### 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.dastScannerProfileUpdate` Input type: `DastScannerProfileUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `fullPath` **{warning-solid}** | [`ID`](#id) | **Deprecated:** Full path not required to qualify Global ID. Deprecated in 14.5. | | `id` | [`DastScannerProfileID!`](#dastscannerprofileid) | ID of the scanner profile to be updated. | | `profileName` | [`String!`](#string) | Name of the scanner profile. | | `scanType` | [`DastScanTypeEnum`](#dastscantypeenum) | Indicates the type of DAST scan that will run. Either a Passive Scan or an Active Scan. | | `showDebugMessages` | [`Boolean`](#boolean) | Indicates if debug messages should be included in DAST console output. True to include the debug messages. | | `spiderTimeout` | [`Int!`](#int) | Maximum number of minutes allowed for the spider to traverse the site. | | `tagList` **{warning-solid}** | [`[String!]`](#string) | **Deprecated:** Moved to DastProfile. Deprecated in 15.8. | | `targetTimeout` | [`Int!`](#int) | Maximum number of seconds allowed for the site under test to respond to a request. | | `useAjaxSpider` | [`Boolean`](#boolean) | Indicates if the AJAX spider should be used to crawl the target site. True to run the AJAX spider in addition to the traditional spider, and false to run only the traditional spider. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `dastScannerProfile` | [`DastScannerProfile`](#dastscannerprofile) | Updated scanner profile. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | | `id` **{warning-solid}** | [`DastScannerProfileID`](#dastscannerprofileid) | **Deprecated:** use `dastScannerProfile` field. Deprecated in 14.10. | ### `Mutation.dastSiteProfileCreate` Input type: `DastSiteProfileCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `auth` | [`DastSiteProfileAuthInput`](#dastsiteprofileauthinput) | Parameters for authentication. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `excludedUrls` | [`[String!]`](#string) | URLs to skip during an authenticated scan. Defaults to `[]`. | | `fullPath` | [`ID!`](#id) | Project the site profile belongs to. | | `profileName` | [`String!`](#string) | Name of the site profile. | | `requestHeaders` | [`String`](#string) | Comma-separated list of request header names and values to be added to every request made by DAST. | | `scanFilePath` | [`String`](#string) | File Path or URL used as input for the scan method. | | `scanMethod` | [`DastScanMethodType`](#dastscanmethodtype) | Scan method by the scanner. | | `targetType` | [`DastTargetTypeEnum`](#dasttargettypeenum) | Type of target to be scanned. | | `targetUrl` | [`String`](#string) | URL of the target to be scanned. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `dastSiteProfile` | [`DastSiteProfile`](#dastsiteprofile) | Site Profile object. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | | `id` **{warning-solid}** | [`DastSiteProfileID`](#dastsiteprofileid) | **Deprecated:** use `dastSiteProfile.id` field. Deprecated in 14.10. | ### `Mutation.dastSiteProfileDelete` Input type: `DastSiteProfileDeleteInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `fullPath` **{warning-solid}** | [`ID`](#id) | **Deprecated:** Full path not required to qualify Global ID. Deprecated in 14.5. | | `id` | [`DastSiteProfileID!`](#dastsiteprofileid) | ID of the site profile to be deleted. | #### 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.dastSiteProfileUpdate` Input type: `DastSiteProfileUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `auth` | [`DastSiteProfileAuthInput`](#dastsiteprofileauthinput) | Parameters for authentication. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `excludedUrls` | [`[String!]`](#string) | URLs to skip during an authenticated scan. | | `fullPath` **{warning-solid}** | [`ID`](#id) | **Deprecated:** Full path not required to qualify Global ID. Deprecated in 14.5. | | `id` | [`DastSiteProfileID!`](#dastsiteprofileid) | ID of the site profile to be updated. | | `profileName` | [`String!`](#string) | Name of the site profile. | | `requestHeaders` | [`String`](#string) | Comma-separated list of request header names and values to be added to every request made by DAST. | | `scanFilePath` | [`String`](#string) | File Path or URL used as input for the scan method. | | `scanMethod` | [`DastScanMethodType`](#dastscanmethodtype) | Scan method by the scanner. | | `targetType` | [`DastTargetTypeEnum`](#dasttargettypeenum) | Type of target to be scanned. | | `targetUrl` | [`String`](#string) | URL of the target to be scanned. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `dastSiteProfile` | [`DastSiteProfile`](#dastsiteprofile) | Site profile object. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | | `id` **{warning-solid}** | [`DastSiteProfileID`](#dastsiteprofileid) | **Deprecated:** use `dastSiteProfile.id` field. Deprecated in 14.10. | ### `Mutation.dastSiteTokenCreate` Input type: `DastSiteTokenCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `fullPath` | [`ID!`](#id) | Project the site token belongs to. | | `targetUrl` | [`String`](#string) | URL of the target to be validated. | #### 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. | | `id` | [`DastSiteTokenID`](#dastsitetokenid) | ID of the site token. | | `status` | [`DastSiteProfileValidationStatusEnum`](#dastsiteprofilevalidationstatusenum) | Current validation status of the target. | | `token` | [`String`](#string) | Token string. | ### `Mutation.dastSiteValidationCreate` Input type: `DastSiteValidationCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `dastSiteTokenId` | [`DastSiteTokenID!`](#dastsitetokenid) | ID of the site token. | | `fullPath` | [`ID!`](#id) | Project the site profile belongs to. | | `strategy` | [`DastSiteValidationStrategyEnum`](#dastsitevalidationstrategyenum) | Validation strategy to be used. | | `validationPath` | [`String!`](#string) | Path to be requested during validation. | #### 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. | | `id` | [`DastSiteValidationID`](#dastsitevalidationid) | ID of the site validation. | | `status` | [`DastSiteProfileValidationStatusEnum`](#dastsiteprofilevalidationstatusenum) | Current validation status. | ### `Mutation.dastSiteValidationRevoke` Input type: `DastSiteValidationRevokeInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `fullPath` | [`ID!`](#id) | Project the site validation belongs to. | | `normalizedTargetUrl` | [`String!`](#string) | Normalized URL of the target to be revoked. | #### 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.deleteAnnotation` WARNING: **Deprecated** in 16.0. Underlying feature was removed in 16.0. Input type: `DeleteAnnotationInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`MetricsDashboardAnnotationID!`](#metricsdashboardannotationid) | Global ID of the annotation 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.designManagementDelete` Input type: `DesignManagementDeleteInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `filenames` | [`[String!]!`](#string) | Filenames of the designs to delete. | | `iid` | [`ID!`](#id) | IID of the issue to modify designs for. | | `projectPath` | [`ID!`](#id) | Project where the issue is to upload designs for. | #### 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. | | `version` | [`DesignVersion`](#designversion) | New version in which the designs are deleted. | ### `Mutation.designManagementMove` Input type: `DesignManagementMoveInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`DesignManagementDesignID!`](#designmanagementdesignid) | ID of the design to move. | | `next` | [`DesignManagementDesignID`](#designmanagementdesignid) | ID of the immediately following design. | | `previous` | [`DesignManagementDesignID`](#designmanagementdesignid) | ID of the immediately preceding design. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `designCollection` | [`DesignCollection`](#designcollection) | Current state of the collection. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.designManagementUpdate` Input type: `DesignManagementUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `description` | [`String`](#string) | Description of the design. | | `id` | [`DesignManagementDesignID!`](#designmanagementdesignid) | ID of the design to update. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `design` | [`Design!`](#design) | Updated design. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.designManagementUpload` Input type: `DesignManagementUploadInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `files` | [`[Upload!]!`](#upload) | Files to upload. | | `iid` | [`ID!`](#id) | IID of the issue to modify designs for. | | `projectPath` | [`ID!`](#id) | Project where the issue is to upload designs for. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `designs` | [`[Design!]!`](#design) | Designs that were uploaded by the mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | | `skippedDesigns` | [`[Design!]!`](#design) | Any designs that were skipped from the upload due to there being no change to their content since their last version. | ### `Mutation.destroyBoard` Input type: `DestroyBoardInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`BoardID!`](#boardid) | Global ID of the board to destroy. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `board` | [`Board`](#board) | Board after mutation. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.destroyBoardList` Input type: `DestroyBoardListInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `listId` | [`ListID!`](#listid) | Global ID of the list to destroy. Only label lists are accepted. | #### 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. | | `list` | [`BoardList`](#boardlist) | List after mutation. | ### `Mutation.destroyComplianceFramework` Input type: `DestroyComplianceFrameworkInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`ComplianceManagementFrameworkID!`](#compliancemanagementframeworkid) | Global ID of the compliance framework to destroy. | #### 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.destroyContainerRepository` Input type: `DestroyContainerRepositoryInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`ContainerRepositoryID!`](#containerrepositoryid) | ID of the container repository. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `containerRepository` | [`ContainerRepository!`](#containerrepository) | Container repository policy after scheduling the deletion. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.destroyContainerRepositoryTags` Input type: `DestroyContainerRepositoryTagsInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`ContainerRepositoryID!`](#containerrepositoryid) | ID of the container repository. | | `tagNames` | [`[String!]!`](#string) | Container repository tag(s) to delete. Total number can't be greater than 20. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `deletedTagNames` | [`[String!]!`](#string) | Deleted container repository tags. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.destroyCustomEmoji` WARNING: **Introduced** in 13.6. This feature is an Experiment. It can be changed or removed at any time. Input type: `DestroyCustomEmojiInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`CustomEmojiID!`](#customemojiid) | Global ID of the custom emoji to destroy. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `customEmoji` | [`CustomEmoji`](#customemoji) | Deleted custom emoji. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.destroyEpicBoard` Input type: `DestroyEpicBoardInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`BoardsEpicBoardID!`](#boardsepicboardid) | Global ID of the board to destroy. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `epicBoard` | [`EpicBoard`](#epicboard) | Epic board after mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.destroyNote` Input type: `DestroyNoteInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`NoteID!`](#noteid) | Global ID of the note to destroy. | #### 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. | | `note` | [`Note`](#note) | Note after mutation. | ### `Mutation.destroyPackage` Input type: `DestroyPackageInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`PackagesPackageID!`](#packagespackageid) | ID of the Package. | #### 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.destroyPackageFile` Input type: `DestroyPackageFileInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`PackagesPackageFileID!`](#packagespackagefileid) | ID of the Package file. | #### 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.destroyPackageFiles` Input type: `DestroyPackageFilesInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `ids` | [`[PackagesPackageFileID!]!`](#packagespackagefileid) | IDs of the Package file. | | `projectPath` | [`ID!`](#id) | Project path where the packages cleanup policy is located. | #### 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.destroyPackages` Input type: `DestroyPackagesInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `ids` | [`[PackagesPackageID!]!`](#packagespackageid) | Global IDs of the Packages. Max 20. | #### 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.destroySnippet` Input type: `DestroySnippetInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`SnippetID!`](#snippetid) | Global ID of the snippet to destroy. | #### 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. | | `snippet` | [`Snippet`](#snippet) | Snippet after mutation. | ### `Mutation.disableDevopsAdoptionNamespace` **BETA** This endpoint is subject to change without notice. Input type: `DisableDevopsAdoptionNamespaceInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`[AnalyticsDevopsAdoptionEnabledNamespaceID!]!`](#analyticsdevopsadoptionenablednamespaceid) | One or many IDs of the enabled namespaces to disable. | #### 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.discussionToggleResolve` Toggles the resolved state of a discussion. Input type: `DiscussionToggleResolveInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`DiscussionID!`](#discussionid) | Global ID of the discussion. | | `resolve` | [`Boolean!`](#boolean) | Will resolve the discussion when true, and unresolve the discussion when false. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `discussion` | [`Discussion`](#discussion) | Discussion after mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.echoCreate` A mutation that does not perform any changes. This is expected to be used for testing of endpoints, to verify that a user has mutation access. Input type: `EchoCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `errors` | [`[String!]`](#string) | Errors to return to the user. | | `messages` | [`[String!]`](#string) | Messages to return to the user. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `echoes` | [`[String!]`](#string) | Messages returned to the user. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.enableDevopsAdoptionNamespace` **BETA** This endpoint is subject to change without notice. Input type: `EnableDevopsAdoptionNamespaceInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `displayNamespaceId` | [`NamespaceID`](#namespaceid) | Display namespace ID. | | `namespaceId` | [`NamespaceID!`](#namespaceid) | Namespace ID. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `enabledNamespace` | [`DevopsAdoptionEnabledNamespace`](#devopsadoptionenablednamespace) | Enabled namespace after mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.environmentStop` Stop an environment. Input type: `EnvironmentStopInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `force` | [`Boolean`](#boolean) | Force environment to stop without executing on_stop actions. | | `id` | [`EnvironmentID!`](#environmentid) | Global ID of the environment to stop. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `environment` | [`Environment`](#environment) | Environment after attempt to stop. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.environmentsCanaryIngressUpdate` **Deprecated** This endpoint is planned to be removed along with certificate-based clusters. [See this epic](https://gitlab.com/groups/gitlab-org/configure/-/epics/8) for more information. Input type: `EnvironmentsCanaryIngressUpdateInput` #### 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 update. | | `weight` | [`Int!`](#int) | Weight of the Canary Ingress. | #### 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.epicAddIssue` Input type: `EpicAddIssueInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `groupPath` | [`ID!`](#id) | Group the epic to mutate belongs to. | | `iid` | [`ID!`](#id) | IID of the epic to mutate. | | `issueIid` | [`String!`](#string) | IID of the issue to be added. | | `projectPath` | [`ID!`](#id) | Full path of the project the issue belongs to. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `epic` | [`Epic`](#epic) | Epic after mutation. | | `epicIssue` | [`EpicIssue`](#epicissue) | Epic-issue relationship. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.epicBoardCreate` Input type: `EpicBoardCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `displayColors` | [`Boolean`](#boolean) | Whether or not display epic colors. Ignored unless `epic_color_highlight` flag is enabled. | | `groupPath` | [`ID`](#id) | Full path of the group with which the resource is associated. | | `hideBacklogList` | [`Boolean`](#boolean) | Whether or not backlog list is hidden. | | `hideClosedList` | [`Boolean`](#boolean) | Whether or not closed list is hidden. | | `labelIds` | [`[LabelID!]`](#labelid) | IDs of labels to be added to the board. | | `labels` | [`[String!]`](#string) | Labels of the issue. | | `name` | [`String`](#string) | Board name. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `epicBoard` | [`EpicBoard`](#epicboard) | Created epic board. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.epicBoardListCreate` Input type: `EpicBoardListCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `backlog` | [`Boolean`](#boolean) | Create the backlog list. | | `boardId` | [`BoardsEpicBoardID!`](#boardsepicboardid) | Global ID of the issue board to mutate. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `labelId` | [`LabelID`](#labelid) | Global ID of an existing label. | #### 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. | | `list` | [`EpicList`](#epiclist) | Epic list in the epic board. | ### `Mutation.epicBoardListDestroy` Destroys an epic board list. Input type: `EpicBoardListDestroyInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `listId` | [`BoardsEpicListID!`](#boardsepiclistid) | Global ID of the epic board list to destroy. | #### 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. | | `list` | [`EpicList`](#epiclist) | Epic board list. `null` if the board was destroyed successfully. | ### `Mutation.epicBoardUpdate` Input type: `EpicBoardUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `displayColors` | [`Boolean`](#boolean) | Whether or not display epic colors. Ignored unless `epic_color_highlight` flag is enabled. | | `hideBacklogList` | [`Boolean`](#boolean) | Whether or not backlog list is hidden. | | `hideClosedList` | [`Boolean`](#boolean) | Whether or not closed list is hidden. | | `id` | [`BoardsEpicBoardID!`](#boardsepicboardid) | Epic board global ID. | | `labelIds` | [`[LabelID!]`](#labelid) | IDs of labels to be added to the board. | | `labels` | [`[String!]`](#string) | Labels of the issue. | | `name` | [`String`](#string) | Board name. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `epicBoard` | [`EpicBoard`](#epicboard) | Updated epic board. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.epicMoveList` Input type: `EpicMoveListInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `boardId` | [`BoardsEpicBoardID!`](#boardsepicboardid) | Global ID of the board that the epic is in. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `epicId` | [`EpicID!`](#epicid) | ID of the epic to mutate. | | `fromListId` | [`BoardsEpicListID`](#boardsepiclistid) | ID of the board list that the epic will be moved from. Required if moving between lists. | | `moveAfterId` | [`EpicID`](#epicid) | ID of epic that should be placed after the current epic. | | `moveBeforeId` | [`EpicID`](#epicid) | ID of epic that should be placed before the current epic. | | `positionInList` | [`Int`](#int) | Position of epics within the board list. Positions start at 0. Use -1 to move to the end of the list. | | `toListId` | [`BoardsEpicListID!`](#boardsepiclistid) | ID of the list the epic will be in after mutation. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `epic` | [`Epic`](#epic) | Epic after mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.epicSetSubscription` Input type: `EpicSetSubscriptionInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `groupPath` | [`ID!`](#id) | Group the epic to mutate belongs to. | | `iid` | [`ID!`](#id) | IID of the epic to mutate. | | `subscribedState` | [`Boolean!`](#boolean) | Desired state of the subscription. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `epic` | [`Epic`](#epic) | Epic after mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.epicTreeReorder` Input type: `EpicTreeReorderInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `baseEpicId` | [`EpicID!`](#epicid) | ID of the base epic of the tree. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `moved` | [`EpicTreeNodeFieldsInputType!`](#epictreenodefieldsinputtype) | Parameters for updating the tree positions. | #### 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.escalationPolicyCreate` Input type: `EscalationPolicyCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `description` | [`String`](#string) | Description of the escalation policy. | | `name` | [`String!`](#string) | Name of the escalation policy. | | `projectPath` | [`ID!`](#id) | Project to create the escalation policy for. | | `rules` | [`[EscalationRuleInput!]!`](#escalationruleinput) | Steps of the escalation policy. | #### 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. | | `escalationPolicy` | [`EscalationPolicyType`](#escalationpolicytype) | Escalation policy. | ### `Mutation.escalationPolicyDestroy` Input type: `EscalationPolicyDestroyInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`IncidentManagementEscalationPolicyID!`](#incidentmanagementescalationpolicyid) | Escalation policy internal ID to remove. | #### 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. | | `escalationPolicy` | [`EscalationPolicyType`](#escalationpolicytype) | Escalation policy. | ### `Mutation.escalationPolicyUpdate` Input type: `EscalationPolicyUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `description` | [`String`](#string) | Description of the escalation policy. | | `id` | [`IncidentManagementEscalationPolicyID!`](#incidentmanagementescalationpolicyid) | ID of the on-call schedule to create the on-call rotation in. | | `name` | [`String`](#string) | Name of the escalation policy. | | `rules` | [`[EscalationRuleInput!]`](#escalationruleinput) | Steps of the escalation policy. | #### 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. | | `escalationPolicy` | [`EscalationPolicyType`](#escalationpolicytype) | Escalation policy. | ### `Mutation.exportRequirements` Input type: `ExportRequirementsInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `authorUsername` | [`[String!]`](#string) | Filter requirements by author username. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `projectPath` | [`ID!`](#id) | Full project path the requirements are associated with. | | `search` | [`String`](#string) | Search query for requirement title. | | `selectedFields` | [`[String!]`](#string) | List of selected requirements fields to be exported. | | `sort` | [`Sort`](#sort) | List requirements by sort order. | | `state` | [`RequirementState`](#requirementstate) | Filter requirements by state. | #### 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.externalAuditEventDestinationCreate` Input type: `ExternalAuditEventDestinationCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `destinationUrl` | [`String!`](#string) | Destination URL. | | `groupPath` | [`ID!`](#id) | Group path. | | `verificationToken` | [`String`](#string) | Verification token. | #### 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. | | `externalAuditEventDestination` | [`ExternalAuditEventDestination`](#externalauditeventdestination) | Destination created. | ### `Mutation.externalAuditEventDestinationDestroy` Input type: `ExternalAuditEventDestinationDestroyInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`AuditEventsExternalAuditEventDestinationID!`](#auditeventsexternalauditeventdestinationid) | ID of external audit event destination to destroy. | #### 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.externalAuditEventDestinationUpdate` Input type: `ExternalAuditEventDestinationUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `destinationUrl` | [`String`](#string) | Destination URL to change. | | `id` | [`AuditEventsExternalAuditEventDestinationID!`](#auditeventsexternalauditeventdestinationid) | ID of external audit event destination to update. | #### 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. | | `externalAuditEventDestination` | [`ExternalAuditEventDestination`](#externalauditeventdestination) | Updated destination. | ### `Mutation.geoRegistriesUpdate` Mutates a Geo registry. Does not mutate the registry entry if `geo_registries_update_mutation` feature flag is disabled. WARNING: **Introduced** in 16.1. This feature is an Experiment. It can be changed or removed at any time. Input type: `GeoRegistriesUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `action` | [`GeoRegistryAction!`](#georegistryaction) | Action to be executed on a Geo registry. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `registryClass` | [`GeoRegistryClass!`](#georegistryclass) | Class of the Geo registry to be updated. | | `registryId` | [`GeoBaseRegistryID!`](#geobaseregistryid) | ID of the Geo registry entry to be updated. | #### 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. | | `registry` | [`Registrable`](#registrable) | Updated Geo registry entry. | ### `Mutation.gitlabSubscriptionActivate` Input type: `GitlabSubscriptionActivateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `activationCode` | [`String!`](#string) | Activation code received after purchasing a GitLab subscription. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | #### 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. | | `futureSubscriptions` | [`[SubscriptionFutureEntry!]`](#subscriptionfutureentry) | Array of future subscriptions. | | `license` | [`CurrentLicense`](#currentlicense) | Current license. | ### `Mutation.groupMemberBulkUpdate` Input type: `GroupMemberBulkUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `accessLevel` | [`MemberAccessLevel!`](#memberaccesslevel) | Access level to update the members to. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `expiresAt` | [`Time`](#time) | Date and time the membership expires. | | `groupId` | [`GroupID!`](#groupid) | Global ID of the group. | | `userIds` | [`[UserID!]!`](#userid) | Global IDs of the members. | #### 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. | | `groupMembers` | [`[GroupMember!]`](#groupmember) | Group members after mutation. | ### `Mutation.groupUpdate` Input type: `GroupUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `fullPath` | [`ID!`](#id) | Full path of the group that will be updated. | | `sharedRunnersSetting` | [`SharedRunnersSetting!`](#sharedrunnerssetting) | Shared runners availability for the namespace and its descendants. | #### 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. | | `group` | [`Group`](#group) | Group after update. | ### `Mutation.httpIntegrationCreate` Input type: `HttpIntegrationCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `active` | [`Boolean!`](#boolean) | Whether the integration is receiving alerts. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `name` | [`String!`](#string) | Name of the integration. | | `payloadAttributeMappings` | [`[AlertManagementPayloadAlertFieldInput!]`](#alertmanagementpayloadalertfieldinput) | Custom mapping of GitLab alert attributes to fields from the payload example. | | `payloadExample` | [`JsonString`](#jsonstring) | Example of an alert payload. | | `projectPath` | [`ID!`](#id) | Project to create the integration in. | #### 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. | | `integration` | [`AlertManagementHttpIntegration`](#alertmanagementhttpintegration) | HTTP integration. | ### `Mutation.httpIntegrationDestroy` Input type: `HttpIntegrationDestroyInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`AlertManagementHttpIntegrationID!`](#alertmanagementhttpintegrationid) | ID of the integration to remove. | #### 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. | | `integration` | [`AlertManagementHttpIntegration`](#alertmanagementhttpintegration) | HTTP integration. | ### `Mutation.httpIntegrationResetToken` Input type: `HttpIntegrationResetTokenInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`AlertManagementHttpIntegrationID!`](#alertmanagementhttpintegrationid) | ID of the integration to mutate. | #### 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. | | `integration` | [`AlertManagementHttpIntegration`](#alertmanagementhttpintegration) | HTTP integration. | ### `Mutation.httpIntegrationUpdate` Input type: `HttpIntegrationUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `active` | [`Boolean`](#boolean) | Whether the integration is receiving alerts. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`AlertManagementHttpIntegrationID!`](#alertmanagementhttpintegrationid) | ID of the integration to mutate. | | `name` | [`String`](#string) | Name of the integration. | | `payloadAttributeMappings` | [`[AlertManagementPayloadAlertFieldInput!]`](#alertmanagementpayloadalertfieldinput) | Custom mapping of GitLab alert attributes to fields from the payload example. | | `payloadExample` | [`JsonString`](#jsonstring) | Example of an alert payload. | #### 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. | | `integration` | [`AlertManagementHttpIntegration`](#alertmanagementhttpintegration) | HTTP integration. | ### `Mutation.instanceExternalAuditEventDestinationCreate` Input type: `InstanceExternalAuditEventDestinationCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `destinationUrl` | [`String!`](#string) | Destination URL. | #### 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. | | `instanceExternalAuditEventDestination` | [`InstanceExternalAuditEventDestination`](#instanceexternalauditeventdestination) | Destination created. | ### `Mutation.instanceExternalAuditEventDestinationDestroy` Input type: `InstanceExternalAuditEventDestinationDestroyInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`AuditEventsInstanceExternalAuditEventDestinationID!`](#auditeventsinstanceexternalauditeventdestinationid) | ID of the external instance audit event destination to destroy. | #### 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.instanceExternalAuditEventDestinationUpdate` Input type: `InstanceExternalAuditEventDestinationUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `destinationUrl` | [`String`](#string) | Destination URL to change. | | `id` | [`AuditEventsInstanceExternalAuditEventDestinationID!`](#auditeventsinstanceexternalauditeventdestinationid) | ID of the external instance audit event destination to update. | #### 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. | | `instanceExternalAuditEventDestination` | [`InstanceExternalAuditEventDestination`](#instanceexternalauditeventdestination) | Updated destination. | ### `Mutation.issuableResourceLinkCreate` Input type: `IssuableResourceLinkCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`IssueID!`](#issueid) | Incident id to associate the resource link with. | | `link` | [`String!`](#string) | Link of the resource. | | `linkText` | [`String`](#string) | Link text of the resource. | | `linkType` | [`IssuableResourceLinkType`](#issuableresourcelinktype) | Link type of the resource. | #### 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. | | `issuableResourceLink` | [`IssuableResourceLink`](#issuableresourcelink) | Issuable resource link. | ### `Mutation.issuableResourceLinkDestroy` Input type: `IssuableResourceLinkDestroyInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`IncidentManagementIssuableResourceLinkID!`](#incidentmanagementissuableresourcelinkid) | Issuable resource link ID to remove. | #### 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. | | `issuableResourceLink` | [`IssuableResourceLink`](#issuableresourcelink) | Issuable resource link. | ### `Mutation.issueLinkAlerts` Input type: `IssueLinkAlertsInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `alertReferences` | [`[String!]!`](#string) | Alerts references to be linked to the incident. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `iid` | [`String!`](#string) | IID of the issue to mutate. | | `projectPath` | [`ID!`](#id) | Project the issue to mutate is in. | #### 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. | | `issue` | [`Issue`](#issue) | Issue after mutation. | ### `Mutation.issueMove` Input type: `IssueMoveInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `iid` | [`String!`](#string) | IID of the issue to mutate. | | `projectPath` | [`ID!`](#id) | Project the issue to mutate is in. | | `targetProjectPath` | [`ID!`](#id) | Project to move the issue to. | #### 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. | | `issue` | [`Issue`](#issue) | Issue after mutation. | ### `Mutation.issueMoveList` Input type: `IssueMoveListInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `boardId` | [`BoardID!`](#boardid) | Global ID of the board that the issue is in. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `epicId` | [`EpicID`](#epicid) | ID of the parent epic. NULL when removing the association. | | `fromListId` | [`ID`](#id) | ID of the board list that the issue will be moved from. | | `iid` | [`String!`](#string) | IID of the issue to mutate. | | `moveAfterId` | [`ID`](#id) | ID of issue that should be placed after the current issue. | | `moveBeforeId` | [`ID`](#id) | ID of issue that should be placed before the current issue. | | `positionInList` | [`Int`](#int) | Position of issue within the board list. Positions start at 0. Use -1 to move to the end of the list. | | `projectPath` | [`ID!`](#id) | Project the issue to mutate is in. | | `toListId` | [`ID`](#id) | ID of the board list that the issue will be moved to. | #### 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. | | `issue` | [`Issue`](#issue) | Issue after mutation. | ### `Mutation.issueSetAssignees` Input type: `IssueSetAssigneesInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `assigneeUsernames` | [`[String!]!`](#string) | Usernames to assign to the resource. Replaces existing assignees by default. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `iid` | [`String!`](#string) | IID of the issue to mutate. | | `operationMode` | [`MutationOperationMode`](#mutationoperationmode) | Operation to perform. Defaults to REPLACE. | | `projectPath` | [`ID!`](#id) | Project the issue to mutate is in. | #### 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. | | `issue` | [`Issue`](#issue) | Issue after mutation. | ### `Mutation.issueSetConfidential` Input type: `IssueSetConfidentialInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `confidential` | [`Boolean!`](#boolean) | Whether or not to set the issue as a confidential. | | `iid` | [`String!`](#string) | IID of the issue to mutate. | | `projectPath` | [`ID!`](#id) | Project the issue to mutate is in. | #### 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. | | `issue` | [`Issue`](#issue) | Issue after mutation. | ### `Mutation.issueSetCrmContacts` Input type: `IssueSetCrmContactsInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `contactIds` | [`[CustomerRelationsContactID!]!`](#customerrelationscontactid) | Customer relations contact IDs to set. Replaces existing contacts by default. | | `iid` | [`String!`](#string) | IID of the issue to mutate. | | `operationMode` | [`MutationOperationMode`](#mutationoperationmode) | Changes the operation mode. Defaults to REPLACE. | | `projectPath` | [`ID!`](#id) | Project the issue to mutate is in. | #### 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. | | `issue` | [`Issue`](#issue) | Issue after mutation. | ### `Mutation.issueSetDueDate` Input type: `IssueSetDueDateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `dueDate` | [`Time`](#time) | Desired due date for the issue. Due date is removed if null. | | `iid` | [`String!`](#string) | IID of the issue to mutate. | | `projectPath` | [`ID!`](#id) | Project the issue to mutate is in. | #### 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. | | `issue` | [`Issue`](#issue) | Issue after mutation. | ### `Mutation.issueSetEpic` Input type: `IssueSetEpicInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `epicId` | [`EpicID`](#epicid) | Global ID of the epic to be assigned to the issue, epic will be removed if absent or set to null. | | `iid` | [`String!`](#string) | IID of the issue to mutate. | | `projectPath` | [`ID!`](#id) | Project the issue to mutate is in. | #### 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. | | `issue` | [`Issue`](#issue) | Issue after mutation. | ### `Mutation.issueSetEscalationPolicy` Input type: `IssueSetEscalationPolicyInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `escalationPolicyId` | [`IncidentManagementEscalationPolicyID`](#incidentmanagementescalationpolicyid) | Global ID of the escalation policy to assign to the issue. Policy will be removed if absent or set to null. | | `iid` | [`String!`](#string) | IID of the issue to mutate. | | `projectPath` | [`ID!`](#id) | Project the issue to mutate is in. | #### 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. | | `issue` | [`Issue`](#issue) | Issue after mutation. | ### `Mutation.issueSetEscalationStatus` Input type: `IssueSetEscalationStatusInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `iid` | [`String!`](#string) | IID of the issue to mutate. | | `projectPath` | [`ID!`](#id) | Project the issue to mutate is in. | | `status` | [`IssueEscalationStatus!`](#issueescalationstatus) | Set the escalation status. | #### 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. | | `issue` | [`Issue`](#issue) | Issue after mutation. | ### `Mutation.issueSetIteration` Input type: `IssueSetIterationInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `iid` | [`String!`](#string) | IID of the issue to mutate. | | `iterationId` | [`IterationID`](#iterationid) | Iteration to assign to the issue. | | `projectPath` | [`ID!`](#id) | Project the issue to mutate is in. | #### 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. | | `issue` | [`Issue`](#issue) | Issue after mutation. | ### `Mutation.issueSetLocked` Input type: `IssueSetLockedInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `iid` | [`String!`](#string) | IID of the issue to mutate. | | `locked` | [`Boolean!`](#boolean) | Whether or not to lock discussion on the issue. | | `projectPath` | [`ID!`](#id) | Project the issue to mutate is in. | #### 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. | | `issue` | [`Issue`](#issue) | Issue after mutation. | ### `Mutation.issueSetSeverity` Input type: `IssueSetSeverityInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `iid` | [`String!`](#string) | IID of the issue to mutate. | | `projectPath` | [`ID!`](#id) | Project the issue to mutate is in. | | `severity` | [`IssuableSeverity!`](#issuableseverity) | Set the incident severity level. | #### 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. | | `issue` | [`Issue`](#issue) | Issue after mutation. | ### `Mutation.issueSetSubscription` Input type: `IssueSetSubscriptionInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `iid` | [`String!`](#string) | IID of the issue to mutate. | | `projectPath` | [`ID!`](#id) | Project the issue to mutate is in. | | `subscribedState` | [`Boolean!`](#boolean) | Desired state of the subscription. | #### 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. | | `issue` | [`Issue`](#issue) | Issue after mutation. | ### `Mutation.issueSetWeight` Input type: `IssueSetWeightInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `iid` | [`String!`](#string) | IID of the issue to mutate. | | `projectPath` | [`ID!`](#id) | Project the issue to mutate is in. | | `weight` | [`Int`](#int) | The desired weight for the issue. If set to null, weight is removed. | #### 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. | | `issue` | [`Issue`](#issue) | Issue after mutation. | ### `Mutation.issueUnlinkAlert` Input type: `IssueUnlinkAlertInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `alertId` | [`AlertManagementAlertID!`](#alertmanagementalertid) | Global ID of the alert to unlink from the incident. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `iid` | [`String!`](#string) | IID of the issue to mutate. | | `projectPath` | [`ID!`](#id) | Project the issue to mutate is in. | #### 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. | | `issue` | [`Issue`](#issue) | Issue after mutation. | ### `Mutation.issuesBulkUpdate` Allows updating several properties for a set of issues. Does nothing if the `bulk_update_issues_mutation` feature flag is disabled. WARNING: **Introduced** in 15.9. This feature is an Experiment. It can be changed or removed at any time. Input type: `IssuesBulkUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `addLabelIds` | [`[LabelID!]`](#labelid) | Global ID array of the labels that will be added to the issues. | | `assigneeIds` | [`[UserID!]`](#userid) | Global ID array of the users that will be assigned to the given issues. Existing assignees will be replaced with the ones on this list. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `epicId` | [`EpicID`](#epicid) | Global ID of the epic that will be assigned to the issues. | | `healthStatus` | [`HealthStatus`](#healthstatus) | Health status that will be assigned to the issues. | | `ids` | [`[IssueID!]!`](#issueid) | Global ID array of the issues that will be updated. IDs that the user can't update will be ignored. A max of 100 can be provided. | | `iterationId` | [`IterationID`](#iterationid) | Global ID of the iteration that will be assigned to the issues. | | `milestoneId` | [`MilestoneID`](#milestoneid) | Global ID of the milestone that will be assigned to the issues. | | `parentId` | [`IssueParentID!`](#issueparentid) | Global ID of the parent to which the bulk update will be scoped. The parent can be a project **(FREE)** or a group **(PREMIUM)**. Example `IssueParentID` are `"gid://gitlab/Project/1"` and `"gid://gitlab/Group/1"`. | | `removeLabelIds` | [`[LabelID!]`](#labelid) | Global ID array of the labels that will be removed from the issues. | | `stateEvent` | [`IssueStateEvent`](#issuestateevent) | Close or reopen an issue. | | `subscriptionEvent` | [`IssuableSubscriptionEvent`](#issuablesubscriptionevent) | Subscribe to or unsubscribe from issue notifications. | #### 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. | | `updatedIssueCount` | [`Int`](#int) | Number of issues that were successfully updated. | ### `Mutation.iterationCadenceCreate` Input type: `IterationCadenceCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `active` | [`Boolean!`](#boolean) | Whether the iteration cadence is active. | | `automatic` | [`Boolean!`](#boolean) | Whether the iteration cadence should automatically generate upcoming iterations. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `description` | [`String`](#string) | Description of the iteration cadence. Maximum length is 5000 characters. | | `durationInWeeks` | [`Int`](#int) | Duration in weeks of the iterations within this cadence. | | `groupPath` | [`ID!`](#id) | Group where the iteration cadence is created. | | `iterationsInAdvance` | [`Int`](#int) | Upcoming iterations to be created when iteration cadence is set to automatic. | | `rollOver` | [`Boolean`](#boolean) | Whether the iteration cadence should roll over issues to the next iteration or not. | | `startDate` | [`Time`](#time) | Timestamp of the automation start date. | | `title` | [`String`](#string) | Title of the iteration cadence. | #### 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. | | `iterationCadence` | [`IterationCadence`](#iterationcadence) | Created iteration cadence. | ### `Mutation.iterationCadenceDestroy` Input type: `IterationCadenceDestroyInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`IterationsCadenceID!`](#iterationscadenceid) | Global ID of the iteration cadence. | #### 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. | | `group` | [`Group!`](#group) | Group the iteration cadence belongs to. | ### `Mutation.iterationCadenceUpdate` Input type: `IterationCadenceUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `active` | [`Boolean`](#boolean) | Whether the iteration cadence is active. | | `automatic` | [`Boolean`](#boolean) | Whether the iteration cadence should automatically generate upcoming iterations. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `description` | [`String`](#string) | Description of the iteration cadence. Maximum length is 5000 characters. | | `durationInWeeks` | [`Int`](#int) | Duration in weeks of the iterations within this cadence. | | `id` | [`IterationsCadenceID!`](#iterationscadenceid) | Global ID of the iteration cadence. | | `iterationsInAdvance` | [`Int`](#int) | Upcoming iterations to be created when iteration cadence is set to automatic. | | `rollOver` | [`Boolean`](#boolean) | Whether the iteration cadence should roll over issues to the next iteration or not. | | `startDate` | [`Time`](#time) | Timestamp of the automation start date. | | `title` | [`String`](#string) | Title of the iteration cadence. | #### 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. | | `iterationCadence` | [`IterationCadence`](#iterationcadence) | Updated iteration cadence. | ### `Mutation.iterationCreate` Input type: `iterationCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `description` | [`String`](#string) | Description of the iteration. | | `dueDate` | [`String`](#string) | End date of the iteration. | | `groupPath` | [`ID`](#id) | Full path of the group with which the resource is associated. | | `iterationsCadenceId` | [`IterationsCadenceID`](#iterationscadenceid) | Global ID of the iteration cadence to be assigned to the new iteration. | | `projectPath` | [`ID`](#id) | Full path of the project with which the resource is associated. | | `startDate` | [`String`](#string) | Start date of the iteration. | | `title` | [`String`](#string) | Title of the iteration. | #### 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. | | `iteration` | [`Iteration`](#iteration) | Created iteration. | ### `Mutation.iterationDelete` Input type: `IterationDeleteInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`IterationID!`](#iterationid) | ID of the iteration. | #### 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. | | `group` | [`Group!`](#group) | Group the iteration belongs to. | ### `Mutation.jiraImportStart` Input type: `JiraImportStartInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `jiraProjectKey` | [`String!`](#string) | Project key of the importer Jira project. | | `jiraProjectName` | [`String`](#string) | Project name of the importer Jira project. | | `projectPath` | [`ID!`](#id) | Project to import the Jira project into. | | `usersMapping` | [`[JiraUsersMappingInputType!]`](#jirausersmappinginputtype) | Mapping of Jira to GitLab users. | #### 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. | | `jiraImport` | [`JiraImport`](#jiraimport) | Jira import data after mutation. | ### `Mutation.jiraImportUsers` Input type: `JiraImportUsersInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `projectPath` | [`ID!`](#id) | Project to import the Jira users into. | | `startAt` | [`Int`](#int) | Index of the record the import should started at, default 0 (50 records returned). | #### 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. | | `jiraUsers` | [`[JiraUser!]`](#jirauser) | Users returned from Jira, matched by email and name if possible. | ### `Mutation.jobArtifactsDestroy` Input type: `JobArtifactsDestroyInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`CiBuildID!`](#cibuildid) | ID of the job to mutate. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `destroyedArtifactsCount` | [`Int!`](#int) | Number of artifacts deleted. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | | `job` | [`CiJob`](#cijob) | Job with artifacts to be deleted. | ### `Mutation.jobCancel` Input type: `JobCancelInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`CiBuildID!`](#cibuildid) | ID of the job to mutate. | #### 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. | | `job` | [`CiJob`](#cijob) | Job after the mutation. | ### `Mutation.jobPlay` Input type: `JobPlayInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`CiBuildID!`](#cibuildid) | ID of the job to mutate. | | `variables` | [`[CiVariableInput!]`](#civariableinput) | Variables to use when playing a manual job. | #### 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. | | `job` | [`CiJob`](#cijob) | Job after the mutation. | ### `Mutation.jobRetry` Input type: `JobRetryInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`CiBuildID!`](#cibuildid) | ID of the job to mutate. | | `variables` | [`[CiVariableInput!]`](#civariableinput) | Variables to use when retrying a manual job. | #### 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. | | `job` | [`CiJob`](#cijob) | Job after the mutation. | ### `Mutation.jobUnschedule` Input type: `JobUnscheduleInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`CiBuildID!`](#cibuildid) | ID of the job to mutate. | #### 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. | | `job` | [`CiJob`](#cijob) | Job after the mutation. | ### `Mutation.labelCreate` Input type: `LabelCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `color` | [`String`](#string) | The color of the label given in 6-digit hex notation with leading '#' sign (for example, `#FFAABB`) or one of the CSS color names. | | `description` | [`String`](#string) | Description of the label. | | `groupPath` | [`ID`](#id) | Full path of the group with which the resource is associated. | | `projectPath` | [`ID`](#id) | Full path of the project with which the resource is associated. | | `title` | [`String!`](#string) | Title of the label. | #### 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. | | `label` | [`Label`](#label) | Label after mutation. | ### `Mutation.markAsSpamSnippet` Input type: `MarkAsSpamSnippetInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`SnippetID!`](#snippetid) | Global ID of the snippet to update. | #### 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. | | `snippet` | [`Snippet`](#snippet) | Snippet after mutation. | ### `Mutation.mergeRequestAccept` Accepts a merge request. When accepted, the source branch will be merged into the target branch, either immediately if possible, or using one of the automatic merge strategies. Input type: `MergeRequestAcceptInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `commitMessage` | [`String`](#string) | Custom merge commit message. | | `iid` | [`String!`](#string) | IID of the merge request to mutate. | | `projectPath` | [`ID!`](#id) | Project the merge request to mutate is in. | | `sha` | [`String!`](#string) | HEAD SHA at the time when the merge was requested. | | `shouldRemoveSourceBranch` | [`Boolean`](#boolean) | Should the source branch be removed. | | `squash` | [`Boolean`](#boolean) | Squash commits on the source branch before merge. | | `squashCommitMessage` | [`String`](#string) | Custom squash commit message (if squash is true). | | `strategy` | [`MergeStrategyEnum`](#mergestrategyenum) | How to merge the merge request. | #### 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. | | `mergeRequest` | [`MergeRequest`](#mergerequest) | Merge request after mutation. | ### `Mutation.mergeRequestCreate` Input type: `MergeRequestCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `description` | [`String`](#string) | Description of the merge request (Markdown rendered as HTML for caching). | | `labels` | [`[String!]`](#string) | Labels of the merge request. | | `projectPath` | [`ID!`](#id) | Project full path the merge request is associated with. | | `sourceBranch` | [`String!`](#string) | Source branch of the merge request. | | `targetBranch` | [`String!`](#string) | Target branch of the merge request. | | `title` | [`String!`](#string) | Title of the merge request. | #### 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. | | `mergeRequest` | [`MergeRequest`](#mergerequest) | Merge request after mutation. | ### `Mutation.mergeRequestReviewerRereview` Input type: `MergeRequestReviewerRereviewInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `iid` | [`String!`](#string) | IID of the merge request to mutate. | | `projectPath` | [`ID!`](#id) | Project the merge request to mutate is in. | | `userId` | [`UserID!`](#userid) | User ID for the user that has been requested for a new review. | #### 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. | | `mergeRequest` | [`MergeRequest`](#mergerequest) | Merge request after mutation. | ### `Mutation.mergeRequestSetAssignees` Input type: `MergeRequestSetAssigneesInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `assigneeUsernames` | [`[String!]!`](#string) | Usernames to assign to the resource. Replaces existing assignees by default. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `iid` | [`String!`](#string) | IID of the merge request to mutate. | | `operationMode` | [`MutationOperationMode`](#mutationoperationmode) | Operation to perform. Defaults to REPLACE. | | `projectPath` | [`ID!`](#id) | Project the merge request to mutate is in. | #### 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. | | `mergeRequest` | [`MergeRequest`](#mergerequest) | Merge request after mutation. | ### `Mutation.mergeRequestSetDraft` Input type: `MergeRequestSetDraftInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `draft` | [`Boolean!`](#boolean) | Whether or not to set the merge request as a draft. | | `iid` | [`String!`](#string) | IID of the merge request to mutate. | | `projectPath` | [`ID!`](#id) | Project the merge request to mutate is in. | #### 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. | | `mergeRequest` | [`MergeRequest`](#mergerequest) | Merge request after mutation. | ### `Mutation.mergeRequestSetLabels` Input type: `MergeRequestSetLabelsInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `iid` | [`String!`](#string) | IID of the merge request to mutate. | | `labelIds` | [`[LabelID!]!`](#labelid) | Label IDs to set. Replaces existing labels by default. | | `operationMode` | [`MutationOperationMode`](#mutationoperationmode) | Changes the operation mode. Defaults to REPLACE. | | `projectPath` | [`ID!`](#id) | Project the merge request to mutate is in. | #### 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. | | `mergeRequest` | [`MergeRequest`](#mergerequest) | Merge request after mutation. | ### `Mutation.mergeRequestSetLocked` Input type: `MergeRequestSetLockedInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `iid` | [`String!`](#string) | IID of the merge request to mutate. | | `locked` | [`Boolean!`](#boolean) | Whether or not to lock the merge request. | | `projectPath` | [`ID!`](#id) | Project the merge request to mutate is in. | #### 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. | | `mergeRequest` | [`MergeRequest`](#mergerequest) | Merge request after mutation. | ### `Mutation.mergeRequestSetMilestone` Input type: `MergeRequestSetMilestoneInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `iid` | [`String!`](#string) | IID of the merge request to mutate. | | `milestoneId` | [`MilestoneID`](#milestoneid) | Milestone to assign to the merge request. | | `projectPath` | [`ID!`](#id) | Project the merge request to mutate is in. | #### 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. | | `mergeRequest` | [`MergeRequest`](#mergerequest) | Merge request after mutation. | ### `Mutation.mergeRequestSetReviewers` Input type: `MergeRequestSetReviewersInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `iid` | [`String!`](#string) | IID of the merge request to mutate. | | `operationMode` | [`MutationOperationMode`](#mutationoperationmode) | Operation to perform. Defaults to REPLACE. | | `projectPath` | [`ID!`](#id) | Project the merge request to mutate is in. | | `reviewerUsernames` | [`[String!]!`](#string) | Usernames of reviewers to assign. Replaces existing reviewers by default. | #### 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. | | `mergeRequest` | [`MergeRequest`](#mergerequest) | Merge request after mutation. | ### `Mutation.mergeRequestSetSubscription` Input type: `MergeRequestSetSubscriptionInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `iid` | [`String!`](#string) | IID of the merge request to mutate. | | `projectPath` | [`ID!`](#id) | Project the merge request to mutate is in. | | `subscribedState` | [`Boolean!`](#boolean) | Desired state of the subscription. | #### 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. | | `mergeRequest` | [`MergeRequest`](#mergerequest) | Merge request after mutation. | ### `Mutation.mergeRequestUpdate` Update attributes of a merge request. Input type: `MergeRequestUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `description` | [`String`](#string) | Description of the merge request (Markdown rendered as HTML for caching). | | `iid` | [`String!`](#string) | IID of the merge request to mutate. | | `projectPath` | [`ID!`](#id) | Project the merge request to mutate is in. | | `state` | [`MergeRequestNewState`](#mergerequestnewstate) | Action to perform to change the state. | | `targetBranch` | [`String`](#string) | Target branch of the merge request. | | `timeEstimate` | [`String`](#string) | Estimated time to complete the merge request, or `0` to remove the current estimate. | | `title` | [`String`](#string) | Title of the merge request. | #### 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. | | `mergeRequest` | [`MergeRequest`](#mergerequest) | Merge request after mutation. | ### `Mutation.mergeRequestUpdateApprovalRule` Input type: `MergeRequestUpdateApprovalRuleInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `approvalRuleId` | [`Int!`](#int) | ID of an approval rule. | | `approvalsRequired` | [`Int!`](#int) | Number of required approvals for a given rule. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `groupIds` | [`[String!]`](#string) | IDs of groups as approvers. | | `iid` | [`String!`](#string) | IID of the merge request to mutate. | | `name` | [`String!`](#string) | Name of the approval rule. | | `projectPath` | [`ID!`](#id) | Project the merge request to mutate is in. | | `removeHiddenGroups` | [`[Boolean!]`](#boolean) | Whether hidden groups should be removed. | | `userIds` | [`[String!]`](#string) | IDs of users as approvers. | #### 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. | | `mergeRequest` | [`MergeRequest`](#mergerequest) | Merge request after mutation. | ### `Mutation.namespaceBanDestroy` Input type: `NamespaceBanDestroyInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`NamespacesNamespaceBanID!`](#namespacesnamespacebanid) | Global ID of the namespace ban to remove. | #### 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. | | `namespaceBan` | [`NamespaceBan`](#namespaceban) | Namespace Ban. | ### `Mutation.namespaceCiCdSettingsUpdate` Input type: `NamespaceCiCdSettingsUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `allowStaleRunnerPruning` | [`Boolean`](#boolean) | Indicates if stale runners directly belonging to this namespace should be periodically pruned. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `fullPath` | [`ID!`](#id) | Full path of the namespace the settings belong to. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `ciCdSettings` | [`NamespaceCiCdSetting!`](#namespacecicdsetting) | CI/CD settings after mutation. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.namespaceIncreaseStorageTemporarily` Input type: `NamespaceIncreaseStorageTemporarilyInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`NamespaceID!`](#namespaceid) | Global ID of the namespace to mutate. | #### 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. | | `namespace` | [`Namespace`](#namespace) | Namespace after mutation. | ### `Mutation.oncallRotationCreate` Input type: `OncallRotationCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `activePeriod` | [`OncallRotationActivePeriodInputType`](#oncallrotationactiveperiodinputtype) | Active period of time that the on-call rotation should take place. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `endsAt` | [`OncallRotationDateInputType`](#oncallrotationdateinputtype) | End date and time of the on-call rotation, in the timezone of the on-call schedule. | | `name` | [`String!`](#string) | Name of the on-call rotation. | | `participants` | [`[OncallUserInputType!]!`](#oncalluserinputtype) | Usernames of users participating in the on-call rotation. A maximum limit of 100 participants applies. | | `projectPath` | [`ID!`](#id) | Project to create the on-call schedule in. | | `rotationLength` | [`OncallRotationLengthInputType!`](#oncallrotationlengthinputtype) | Rotation length of the on-call rotation. | | `scheduleIid` | [`String!`](#string) | IID of the on-call schedule to create the on-call rotation in. | | `startsAt` | [`OncallRotationDateInputType!`](#oncallrotationdateinputtype) | Start date and time of the on-call rotation, in the timezone of the on-call schedule. | #### 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. | | `oncallRotation` | [`IncidentManagementOncallRotation`](#incidentmanagementoncallrotation) | On-call rotation. | ### `Mutation.oncallRotationDestroy` Input type: `OncallRotationDestroyInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`IncidentManagementOncallRotationID!`](#incidentmanagementoncallrotationid) | ID of the on-call rotation to remove. | | `projectPath` | [`ID!`](#id) | Project to remove the on-call schedule from. | | `scheduleIid` | [`String!`](#string) | IID of the on-call schedule to the on-call rotation belongs to. | #### 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. | | `oncallRotation` | [`IncidentManagementOncallRotation`](#incidentmanagementoncallrotation) | On-call rotation. | ### `Mutation.oncallRotationUpdate` Input type: `OncallRotationUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `activePeriod` | [`OncallRotationActivePeriodInputType`](#oncallrotationactiveperiodinputtype) | Active period of time that the on-call rotation should take place. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `endsAt` | [`OncallRotationDateInputType`](#oncallrotationdateinputtype) | End date and time of the on-call rotation, in the timezone of the on-call schedule. | | `id` | [`IncidentManagementOncallRotationID!`](#incidentmanagementoncallrotationid) | ID of the on-call schedule to create the on-call rotation in. | | `name` | [`String`](#string) | Name of the on-call rotation. | | `participants` | [`[OncallUserInputType!]`](#oncalluserinputtype) | Usernames of users participating in the on-call rotation. A maximum limit of 100 participants applies. | | `rotationLength` | [`OncallRotationLengthInputType`](#oncallrotationlengthinputtype) | Rotation length of the on-call rotation. | | `startsAt` | [`OncallRotationDateInputType`](#oncallrotationdateinputtype) | Start date and time of the on-call rotation, in the timezone of the on-call schedule. | #### 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. | | `oncallRotation` | [`IncidentManagementOncallRotation`](#incidentmanagementoncallrotation) | On-call rotation. | ### `Mutation.oncallScheduleCreate` Input type: `OncallScheduleCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `description` | [`String`](#string) | Description of the on-call schedule. | | `name` | [`String!`](#string) | Name of the on-call schedule. | | `projectPath` | [`ID!`](#id) | Project to create the on-call schedule in. | | `timezone` | [`String!`](#string) | Timezone of the on-call schedule. | #### 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. | | `oncallSchedule` | [`IncidentManagementOncallSchedule`](#incidentmanagementoncallschedule) | On-call schedule. | ### `Mutation.oncallScheduleDestroy` Input type: `OncallScheduleDestroyInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `iid` | [`String!`](#string) | On-call schedule internal ID to remove. | | `projectPath` | [`ID!`](#id) | Project to remove the on-call schedule from. | #### 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. | | `oncallSchedule` | [`IncidentManagementOncallSchedule`](#incidentmanagementoncallschedule) | On-call schedule. | ### `Mutation.oncallScheduleUpdate` Input type: `OncallScheduleUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `description` | [`String`](#string) | Description of the on-call schedule. | | `iid` | [`String!`](#string) | On-call schedule internal ID to update. | | `name` | [`String`](#string) | Name of the on-call schedule. | | `projectPath` | [`ID!`](#id) | Project to update the on-call schedule in. | | `timezone` | [`String`](#string) | Timezone of the on-call schedule. | #### 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. | | `oncallSchedule` | [`IncidentManagementOncallSchedule`](#incidentmanagementoncallschedule) | On-call schedule. | ### `Mutation.pagesMarkOnboardingComplete` Input type: `PagesMarkOnboardingCompleteInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `projectPath` | [`ID!`](#id) | Full path of the project. | #### 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. | | `onboardingComplete` | [`Boolean!`](#boolean) | Indicates the new onboarding_complete state of the project's Pages metadata. | ### `Mutation.pipelineCancel` Input type: `PipelineCancelInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`CiPipelineID!`](#cipipelineid) | ID of the pipeline to mutate. | #### 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.pipelineDestroy` Input type: `PipelineDestroyInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`CiPipelineID!`](#cipipelineid) | ID of the pipeline to mutate. | #### 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.pipelineRetry` Input type: `PipelineRetryInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`CiPipelineID!`](#cipipelineid) | ID of the pipeline to mutate. | #### 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. | | `pipeline` | [`Pipeline`](#pipeline) | Pipeline after mutation. | ### `Mutation.pipelineScheduleCreate` Input type: `PipelineScheduleCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `active` | [`Boolean`](#boolean) | Indicates if the pipeline schedule should be active or not. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `cron` | [`String!`](#string) | Cron expression of the pipeline schedule. | | `cronTimezone` | [`String`](#string) | Cron time zone supported by ActiveSupport::TimeZone. For example: "Pacific Time (US & Canada)" (default: "UTC"). | | `description` | [`String!`](#string) | Description of the pipeline schedule. | | `projectPath` | [`ID!`](#id) | Full path of the project the pipeline schedule is associated with. | | `ref` | [`String!`](#string) | Ref of the pipeline schedule. | | `variables` | [`[PipelineScheduleVariableInput!]`](#pipelineschedulevariableinput) | Variables for the pipeline schedule. | #### 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. | | `pipelineSchedule` | [`PipelineSchedule`](#pipelineschedule) | Created pipeline schedule. | ### `Mutation.pipelineScheduleDelete` Input type: `PipelineScheduleDeleteInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`CiPipelineScheduleID!`](#cipipelinescheduleid) | ID of the pipeline schedule to mutate. | #### 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.pipelineSchedulePlay` Input type: `PipelineSchedulePlayInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`CiPipelineScheduleID!`](#cipipelinescheduleid) | ID of the pipeline schedule to mutate. | #### 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. | | `pipelineSchedule` | [`PipelineSchedule`](#pipelineschedule) | Pipeline schedule after mutation. | ### `Mutation.pipelineScheduleTakeOwnership` Input type: `PipelineScheduleTakeOwnershipInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`CiPipelineScheduleID!`](#cipipelinescheduleid) | ID of the pipeline schedule to mutate. | #### 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. | | `pipelineSchedule` | [`PipelineSchedule`](#pipelineschedule) | Updated pipeline schedule ownership. | ### `Mutation.pipelineScheduleUpdate` Input type: `PipelineScheduleUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `active` | [`Boolean`](#boolean) | Indicates if the pipeline schedule should be active or not. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `cron` | [`String`](#string) | Cron expression of the pipeline schedule. | | `cronTimezone` | [`String`](#string) | Cron time zone supported by ActiveSupport::TimeZone. For example: "Pacific Time (US & Canada)" (default: "UTC"). | | `description` | [`String`](#string) | Description of the pipeline schedule. | | `id` | [`CiPipelineScheduleID!`](#cipipelinescheduleid) | ID of the pipeline schedule to mutate. | | `ref` | [`String`](#string) | Ref of the pipeline schedule. | | `variables` | [`[PipelineScheduleVariableInput!]`](#pipelineschedulevariableinput) | Variables for the pipeline schedule. | #### 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. | | `pipelineSchedule` | [`PipelineSchedule`](#pipelineschedule) | Updated pipeline schedule. | ### `Mutation.projectCiCdSettingsUpdate` Input type: `ProjectCiCdSettingsUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `fullPath` | [`ID!`](#id) | Full Path of the project the settings belong to. | | `inboundJobTokenScopeEnabled` | [`Boolean`](#boolean) | Indicates CI/CD job tokens generated in other projects have restricted access to this project. | | `jobTokenScopeEnabled` **{warning-solid}** | [`Boolean`](#boolean) | **Deprecated:** Outbound job token scope is being removed. This field can now only be set to false. Deprecated in 16.0. | | `keepLatestArtifact` | [`Boolean`](#boolean) | Indicates if the latest artifact should be kept for the project. | | `mergePipelinesEnabled` | [`Boolean`](#boolean) | Indicates if merge pipelines are enabled for the project. | | `mergeTrainsEnabled` | [`Boolean`](#boolean) | Indicates if merge trains are enabled for the project. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `ciCdSettings` | [`ProjectCiCdSetting!`](#projectcicdsetting) | CI/CD settings after mutation. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.projectInitializeProductAnalytics` Input type: `ProjectInitializeProductAnalyticsInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `projectPath` | [`ID!`](#id) | Full path of the project to initialize. | #### 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. | | `project` | [`Project`](#project) | Project on which the initialization took place. | ### `Mutation.projectMemberBulkUpdate` Updates multiple members of a project. To use this mutation, you must have at least the Maintainer role. Input type: `ProjectMemberBulkUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `accessLevel` | [`MemberAccessLevel!`](#memberaccesslevel) | Access level to update the members to. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `expiresAt` | [`Time`](#time) | Date and time the membership expires. | | `projectId` | [`ProjectID!`](#projectid) | Global ID of the project. | | `userIds` | [`[UserID!]!`](#userid) | Global IDs of the members. | #### 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. | | `projectMembers` | [`[ProjectMember!]`](#projectmember) | Project members after mutation. | ### `Mutation.projectSetComplianceFramework` Assign (or unset) a compliance framework to a project. Input type: `ProjectSetComplianceFrameworkInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `complianceFrameworkId` | [`ComplianceManagementFrameworkID`](#compliancemanagementframeworkid) | ID of the compliance framework to assign to the project. Set to `null` to unset. | | `projectId` | [`ProjectID!`](#projectid) | ID of the project to change the compliance framework of. | #### 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. | | `project` | [`Project`](#project) | Project after mutation. | ### `Mutation.projectSetLocked` Input type: `ProjectSetLockedInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `filePath` | [`String!`](#string) | Full path to the file. | | `lock` | [`Boolean!`](#boolean) | Whether or not to lock the file path. | | `projectPath` | [`ID!`](#id) | Full path of the project to mutate. | #### 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. | | `project` | [`Project`](#project) | Project after mutation. | ### `Mutation.projectSyncFork` WARNING: **Introduced** in 15.9. This feature is an Experiment. It can be changed or removed at any time. Input type: `ProjectSyncForkInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `projectPath` | [`ID!`](#id) | Full path of the project to initialize. | | `targetBranch` | [`String!`](#string) | Ref of the fork to fetch into. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `details` | [`ForkDetails`](#forkdetails) | Updated fork details. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.prometheusIntegrationCreate` Input type: `PrometheusIntegrationCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `active` | [`Boolean!`](#boolean) | Whether the integration is receiving alerts. | | `apiUrl` | [`String!`](#string) | Endpoint at which Prometheus can be queried. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `projectPath` | [`ID!`](#id) | Project to create the integration in. | #### 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. | | `integration` | [`AlertManagementPrometheusIntegration`](#alertmanagementprometheusintegration) | Newly created integration. | ### `Mutation.prometheusIntegrationResetToken` Input type: `PrometheusIntegrationResetTokenInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`IntegrationsPrometheusID!`](#integrationsprometheusid) | ID of the integration to mutate. | #### 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. | | `integration` | [`AlertManagementPrometheusIntegration`](#alertmanagementprometheusintegration) | Newly created integration. | ### `Mutation.prometheusIntegrationUpdate` Input type: `PrometheusIntegrationUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `active` | [`Boolean`](#boolean) | Whether the integration is receiving alerts. | | `apiUrl` | [`String`](#string) | Endpoint at which Prometheus can be queried. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`IntegrationsPrometheusID!`](#integrationsprometheusid) | ID of the integration to mutate. | #### 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. | | `integration` | [`AlertManagementPrometheusIntegration`](#alertmanagementprometheusintegration) | Newly created integration. | ### `Mutation.promoteToEpic` Input type: `PromoteToEpicInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `groupPath` | [`ID`](#id) | Group the promoted epic will belong to. | | `iid` | [`String!`](#string) | IID of the issue to mutate. | | `projectPath` | [`ID!`](#id) | Project the issue to mutate is in. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `epic` | [`Epic`](#epic) | Epic after issue promotion. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | | `issue` | [`Issue`](#issue) | Issue after mutation. | ### `Mutation.releaseAssetLinkCreate` Input type: `ReleaseAssetLinkCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `directAssetPath` | [`String`](#string) | Relative path for a direct asset link. | | `linkType` | [`ReleaseAssetLinkType`](#releaseassetlinktype) | Type of the asset link. | | `name` | [`String!`](#string) | Name of the asset link. | | `projectPath` | [`ID!`](#id) | Full path of the project the asset link is associated with. | | `tagName` | [`String!`](#string) | Name of the associated release's tag. | | `url` | [`String!`](#string) | URL of the asset link. | #### 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. | | `link` | [`ReleaseAssetLink`](#releaseassetlink) | Asset link after mutation. | ### `Mutation.releaseAssetLinkDelete` Input type: `ReleaseAssetLinkDeleteInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`ReleasesLinkID!`](#releaseslinkid) | ID of the release asset link 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. | | `link` | [`ReleaseAssetLink`](#releaseassetlink) | Deleted release asset link. | ### `Mutation.releaseAssetLinkUpdate` Input type: `ReleaseAssetLinkUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `directAssetPath` | [`String`](#string) | Relative path for a direct asset link. | | `id` | [`ReleasesLinkID!`](#releaseslinkid) | ID of the release asset link to update. | | `linkType` | [`ReleaseAssetLinkType`](#releaseassetlinktype) | Type of the asset link. | | `name` | [`String`](#string) | Name of the asset link. | | `url` | [`String`](#string) | URL of the asset link. | #### 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. | | `link` | [`ReleaseAssetLink`](#releaseassetlink) | Asset link after mutation. | ### `Mutation.releaseCreate` Input type: `ReleaseCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `assets` | [`ReleaseAssetsInput`](#releaseassetsinput) | Assets associated to the release. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `description` | [`String`](#string) | Description (also known as "release notes") of the release. | | `milestones` | [`[String!]`](#string) | Title of each milestone the release is associated with. GitLab Premium customers can specify group milestones. | | `name` | [`String`](#string) | Name of the release. | | `projectPath` | [`ID!`](#id) | Full path of the project the release is associated with. | | `ref` | [`String`](#string) | Commit SHA or branch name to use if creating a new tag. | | `releasedAt` | [`Time`](#time) | Date and time for the release. Defaults to the current time. Expected in ISO 8601 format (`2019-03-15T08:00:00Z`). Only provide this field if creating an upcoming or historical release. | | `tagMessage` | [`String`](#string) | Message to use if creating a new annotated tag. | | `tagName` | [`String!`](#string) | Name of the tag to associate with the release. | #### 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. | | `release` | [`Release`](#release) | Release after mutation. | ### `Mutation.releaseDelete` Input type: `ReleaseDeleteInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `projectPath` | [`ID!`](#id) | Full path of the project the release is associated with. | | `tagName` | [`String!`](#string) | Name of the tag associated with the release 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. | | `release` | [`Release`](#release) | Deleted release. | ### `Mutation.releaseUpdate` Input type: `ReleaseUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `description` | [`String`](#string) | Description (release notes) of the release. | | `milestones` | [`[String!]`](#string) | Title of each milestone the release is associated with. GitLab Premium customers can specify group milestones. | | `name` | [`String`](#string) | Name of the release. | | `projectPath` | [`ID!`](#id) | Full path of the project the release is associated with. | | `releasedAt` | [`Time`](#time) | Release date. | | `tagName` | [`String!`](#string) | Name of the tag associated with the release. | #### 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. | | `release` | [`Release`](#release) | Release after mutation. | ### `Mutation.removeProjectFromSecurityDashboard` Input type: `RemoveProjectFromSecurityDashboardInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`ProjectID!`](#projectid) | ID of the project to remove from the Instance Security Dashboard. | #### 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.repositionImageDiffNote` Repositions a DiffNote on an image (a `Note` where the `position.positionType` is `"image"`). Input type: `RepositionImageDiffNoteInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`DiffNoteID!`](#diffnoteid) | Global ID of the DiffNote to update. | | `position` | [`UpdateDiffImagePositionInput!`](#updatediffimagepositioninput) | Position of this note on a diff. | #### 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. | | `note` | [`Note`](#note) | Note after mutation. | ### `Mutation.runnerCreate` WARNING: **Introduced** in 15.10. This feature is an Experiment. It can be changed or removed at any time. Input type: `RunnerCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `accessLevel` | [`CiRunnerAccessLevel`](#cirunneraccesslevel) | Access level of the runner. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `description` | [`String`](#string) | Description of the runner. | | `groupId` | [`GroupID`](#groupid) | Global ID of the group that the runner is created in (valid only for group runner). | | `locked` | [`Boolean`](#boolean) | Indicates the runner is locked. | | `maintenanceNote` | [`String`](#string) | Runner's maintenance notes. | | `maximumTimeout` | [`Int`](#int) | Maximum timeout (in seconds) for jobs processed by the runner. | | `paused` | [`Boolean`](#boolean) | Indicates the runner is not allowed to receive jobs. | | `projectId` | [`ProjectID`](#projectid) | Global ID of the project that the runner is created in (valid only for project runner). | | `runUntagged` | [`Boolean`](#boolean) | Indicates the runner is able to run untagged jobs. | | `runnerType` | [`CiRunnerType!`](#cirunnertype) | Type of the runner to create. | | `tagList` | [`[String!]`](#string) | Tags associated with the runner. | #### 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. | | `runner` | [`CiRunner`](#cirunner) | Runner after mutation. | ### `Mutation.runnerDelete` Input type: `RunnerDeleteInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`CiRunnerID!`](#cirunnerid) | ID of the runner 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.runnerUpdate` Input type: `RunnerUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `accessLevel` | [`CiRunnerAccessLevel`](#cirunneraccesslevel) | Access level of the runner. | | `active` **{warning-solid}** | [`Boolean`](#boolean) | **Deprecated:** This was renamed. Please use `paused`. Deprecated in 14.8. | | `associatedProjects` | [`[ProjectID!]`](#projectid) | Projects associated with the runner. Available only for project runners. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `description` | [`String`](#string) | Description of the runner. | | `id` | [`CiRunnerID!`](#cirunnerid) | ID of the runner to update. | | `locked` | [`Boolean`](#boolean) | Indicates the runner is locked. | | `maintenanceNote` | [`String`](#string) | Runner's maintenance notes. | | `maximumTimeout` | [`Int`](#int) | Maximum timeout (in seconds) for jobs processed by the runner. | | `paused` | [`Boolean`](#boolean) | Indicates the runner is not allowed to receive jobs. | | `privateProjectsMinutesCostFactor` | [`Float`](#float) | Private projects' "minutes cost factor" associated with the runner (GitLab.com only). | | `publicProjectsMinutesCostFactor` | [`Float`](#float) | Public projects' "minutes cost factor" associated with the runner (GitLab.com only). | | `runUntagged` | [`Boolean`](#boolean) | Indicates the runner is able to run untagged jobs. | | `tagList` | [`[String!]`](#string) | Tags associated with the runner. | #### 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. | | `runner` | [`CiRunner`](#cirunner) | Runner after mutation. | ### `Mutation.runnersRegistrationTokenReset` Input type: `RunnersRegistrationTokenResetInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`ID`](#id) | ID of the project or group to reset the token for. Omit if resetting instance runner token. | | `type` | [`CiRunnerType!`](#cirunnertype) | Scope of the object to reset the token for. | #### 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. | | `token` | [`String`](#string) | Runner token after mutation. | ### `Mutation.savedReplyCreate` Input type: `SavedReplyCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `content` | [`String!`](#string) | Content of the saved reply. | | `name` | [`String!`](#string) | Name of the saved reply. | #### 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. | | `savedReply` | [`SavedReply`](#savedreply) | Saved reply after mutation. | ### `Mutation.savedReplyDestroy` Input type: `SavedReplyDestroyInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`UsersSavedReplyID!`](#userssavedreplyid) | Global ID of the saved reply. | #### 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. | | `savedReply` | [`SavedReply`](#savedreply) | Saved reply after mutation. | ### `Mutation.savedReplyUpdate` Input type: `SavedReplyUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `content` | [`String!`](#string) | Content of the saved reply. | | `id` | [`UsersSavedReplyID!`](#userssavedreplyid) | Global ID of the saved reply. | | `name` | [`String!`](#string) | Name of the saved reply. | #### 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. | | `savedReply` | [`SavedReply`](#savedreply) | Saved reply after mutation. | ### `Mutation.scanExecutionPolicyCommit` Commits the `policy_yaml` content to the assigned security policy project for the given project (`full_path`). Input type: `ScanExecutionPolicyCommitInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `fullPath` | [`String`](#string) | Full path of the project. | | `name` | [`String!`](#string) | Name of the policy. If the name is null, the `name` field from `policy_yaml` is used. | | `operationMode` | [`MutationOperationMode!`](#mutationoperationmode) | Changes the operation mode. | | `policyYaml` | [`String!`](#string) | YAML snippet of the policy. | | `projectPath` **{warning-solid}** | [`ID`](#id) | **Deprecated:** Use `fullPath`. Deprecated in 14.10. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `branch` | [`String`](#string) | Name of the branch to which the policy changes are committed. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.securityFindingCreateIssue` Input type: `SecurityFindingCreateIssueInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `project` | [`ProjectID!`](#projectid) | ID of the project to attach the issue to. | | `uuid` | [`String!`](#string) | UUID of the security finding to be used to create an issue. | #### 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. | | `issue` | [`Issue`](#issue) | Issue created after mutation. | ### `Mutation.securityFindingCreateMergeRequest` Input type: `SecurityFindingCreateMergeRequestInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `uuid` | [`String!`](#string) | UUID of the security finding to be used to create a merge request. | #### 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. | | `mergeRequest` | [`MergeRequest`](#mergerequest) | Merge Request created after mutation. | ### `Mutation.securityFindingDismiss` Input type: `SecurityFindingDismissInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `comment` | [`String`](#string) | Comment why finding should be dismissed. | | `dismissalReason` | [`VulnerabilityDismissalReason`](#vulnerabilitydismissalreason) | Reason why finding should be dismissed. | | `uuid` | [`String!`](#string) | UUID of the finding to be dismissed. | #### 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. | | `securityFinding` | [`PipelineSecurityReportFinding`](#pipelinesecurityreportfinding) | Dismissed finding. | | `uuid` | [`String`](#string) | UUID of dismissed finding. | ### `Mutation.securityFindingRevertToDetected` Input type: `SecurityFindingRevertToDetectedInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `uuid` | [`String!`](#string) | UUID of the finding to be dismissed. | #### 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. | | `securityFinding` | [`PipelineSecurityReportFinding`](#pipelinesecurityreportfinding) | Finding reverted to detected. | ### `Mutation.securityPolicyProjectAssign` Assigns the specified project(`security_policy_project_id`) as security policy project for the given project(`full_path`). If the project already has a security policy project, this reassigns the project's security policy project with the given `security_policy_project_id`. Input type: `SecurityPolicyProjectAssignInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `fullPath` | [`String`](#string) | Full path of the project or group. | | `projectPath` **{warning-solid}** | [`ID`](#id) | **Deprecated:** Use `fullPath`. Deprecated in 14.10. | | `securityPolicyProjectId` | [`ProjectID!`](#projectid) | ID of the security policy project. | #### 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.securityPolicyProjectCreate` Creates and assigns a security policy project for the given project (`full_path`). Input type: `SecurityPolicyProjectCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `fullPath` | [`String`](#string) | Full path of the project or group. | | `projectPath` **{warning-solid}** | [`ID`](#id) | **Deprecated:** Use `fullPath`. Deprecated in 14.10. | #### 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. | | `project` | [`Project`](#project) | Security Policy Project that was created. | ### `Mutation.securityPolicyProjectUnassign` Unassigns the security policy project for the given project (`full_path`). Input type: `SecurityPolicyProjectUnassignInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `fullPath` | [`String`](#string) | Full path of the project or group. | | `projectPath` **{warning-solid}** | [`ID`](#id) | **Deprecated:** Use `fullPath`. Deprecated in 14.10. | #### 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.securityTrainingUpdate` Input type: `SecurityTrainingUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `isEnabled` | [`Boolean!`](#boolean) | Sets the training provider as enabled for the project. | | `isPrimary` | [`Boolean`](#boolean) | Sets the training provider as primary for the project. | | `projectPath` | [`ID!`](#id) | Full path of the project. | | `providerId` | [`SecurityTrainingProviderID!`](#securitytrainingproviderid) | ID of the provider. | #### 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. | | `training` | [`ProjectSecurityTraining`](#projectsecuritytraining) | Represents the training entity subject to mutation. | ### `Mutation.terraformStateDelete` Input type: `TerraformStateDeleteInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`TerraformStateID!`](#terraformstateid) | Global ID of the Terraform state. | #### 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.terraformStateLock` Input type: `TerraformStateLockInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`TerraformStateID!`](#terraformstateid) | Global ID of the Terraform state. | #### 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.terraformStateUnlock` Input type: `TerraformStateUnlockInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`TerraformStateID!`](#terraformstateid) | Global ID of the Terraform state. | #### 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.timelineEventCreate` WARNING: **Introduced** in 15.6. This feature is an Experiment. It can be changed or removed at any time. Input type: `TimelineEventCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `incidentId` | [`IssueID!`](#issueid) | Incident ID of the timeline event. | | `note` | [`String!`](#string) | Text note of the timeline event. | | `occurredAt` | [`Time!`](#time) | Timestamp of when the event occurred. | | `timelineEventTagNames` | [`[String!]`](#string) | Tags for the incident timeline event. | #### 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. | | `timelineEvent` | [`TimelineEventType`](#timelineeventtype) | Timeline event. | ### `Mutation.timelineEventDestroy` Input type: `TimelineEventDestroyInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`IncidentManagementTimelineEventID!`](#incidentmanagementtimelineeventid) | Timeline event ID to remove. | #### 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. | | `timelineEvent` | [`TimelineEventType`](#timelineeventtype) | Timeline event. | ### `Mutation.timelineEventPromoteFromNote` Input type: `TimelineEventPromoteFromNoteInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `noteId` | [`NoteID!`](#noteid) | Note ID from which the timeline event promoted. | #### 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. | | `timelineEvent` | [`TimelineEventType`](#timelineeventtype) | Timeline event. | ### `Mutation.timelineEventTagCreate` Input type: `TimelineEventTagCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `name` | [`String!`](#string) | Name of the tag. | | `projectPath` | [`ID!`](#id) | Project to create the timeline event tag in. | #### 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. | | `timelineEventTag` | [`TimelineEventTagType`](#timelineeventtagtype) | Timeline event tag. | ### `Mutation.timelineEventUpdate` Input type: `TimelineEventUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`IncidentManagementTimelineEventID!`](#incidentmanagementtimelineeventid) | ID of the timeline event to update. | | `note` | [`String`](#string) | Text note of the timeline event. | | `occurredAt` | [`Time`](#time) | Timestamp when the event occurred. | | `timelineEventTagNames` | [`[String!]`](#string) | Tags for the incident timeline event. | #### 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. | | `timelineEvent` | [`TimelineEventType`](#timelineeventtype) | Timeline event. | ### `Mutation.timelogCreate` Input type: `TimelogCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `issuableId` | [`IssuableID!`](#issuableid) | Global ID of the issuable (Issue, WorkItem or MergeRequest). | | `spentAt` | [`Time!`](#time) | When the time was spent. | | `summary` | [`String!`](#string) | Summary of time spent. | | `timeSpent` | [`String!`](#string) | Amount of time spent. | #### 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. | | `timelog` | [`Timelog`](#timelog) | Timelog. | ### `Mutation.timelogDelete` Input type: `TimelogDeleteInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`TimelogID!`](#timelogid) | Global ID of the timelog. | #### 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. | | `timelog` | [`Timelog`](#timelog) | Timelog. | ### `Mutation.todoCreate` Input type: `TodoCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `targetId` | [`TodoableID!`](#todoableid) | Global ID of the to-do item's parent. Issues, merge requests, designs, and epics are supported. | #### 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. | | `todo` | [`Todo`](#todo) | To-do item created. | ### `Mutation.todoMarkDone` Input type: `TodoMarkDoneInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`TodoID!`](#todoid) | Global ID of the to-do item to mark as done. | #### 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. | | `todo` | [`Todo!`](#todo) | Requested to-do item. | ### `Mutation.todoRestore` Input type: `TodoRestoreInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`TodoID!`](#todoid) | Global ID of the to-do item to restore. | #### 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. | | `todo` | [`Todo!`](#todo) | Requested to-do item. | ### `Mutation.todoRestoreMany` Input type: `TodoRestoreManyInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `ids` | [`[TodoID!]!`](#todoid) | Global IDs of the to-do items to restore (a maximum of 50 is supported at once). | #### 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. | | `todos` | [`[Todo!]!`](#todo) | Updated to-do items. | ### `Mutation.todosMarkAllDone` Input type: `TodosMarkAllDoneInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `targetId` | [`TodoableID`](#todoableid) | Global ID of the to-do item's parent. Issues, merge requests, designs, and epics are supported. If argument is omitted, all pending to-do items of the current user are marked as done. | #### 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. | | `todos` | [`[Todo!]!`](#todo) | Updated to-do items. | ### `Mutation.updateAlertStatus` Input type: `UpdateAlertStatusInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `iid` | [`String!`](#string) | IID of the alert to mutate. | | `projectPath` | [`ID!`](#id) | Project the alert to mutate is in. | | `status` | [`AlertManagementStatus!`](#alertmanagementstatus) | Status to set the alert. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `alert` | [`AlertManagementAlert`](#alertmanagementalert) | Alert after mutation. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | | `issue` | [`Issue`](#issue) | Issue created after mutation. | | `todo` | [`Todo`](#todo) | To-do item after mutation. | ### `Mutation.updateBoard` Input type: `UpdateBoardInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `assigneeId` | [`UserID`](#userid) | ID of user to be assigned to the board. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `hideBacklogList` | [`Boolean`](#boolean) | Whether or not backlog list is hidden. | | `hideClosedList` | [`Boolean`](#boolean) | Whether or not closed list is hidden. | | `id` | [`BoardID!`](#boardid) | Board global ID. | | `iterationCadenceId` | [`IterationsCadenceID`](#iterationscadenceid) | ID of iteration cadence to be assigned to the board. | | `iterationId` | [`IterationID`](#iterationid) | ID of iteration to be assigned to the board. | | `labelIds` | [`[LabelID!]`](#labelid) | IDs of labels to be added to the board. | | `labels` | [`[String!]`](#string) | Labels of the issue. | | `milestoneId` | [`MilestoneID`](#milestoneid) | ID of milestone to be assigned to the board. | | `name` | [`String`](#string) | Board name. | | `weight` | [`Int`](#int) | Weight value to be assigned to the board. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `board` | [`Board`](#board) | Board after mutation. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.updateBoardEpicUserPreferences` Input type: `UpdateBoardEpicUserPreferencesInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `boardId` | [`BoardID!`](#boardid) | Board global ID. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `collapsed` | [`Boolean!`](#boolean) | Whether the epic should be collapsed in the board. | | `epicId` | [`EpicID!`](#epicid) | ID of an epic to set preferences for. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `epicUserPreferences` | [`BoardEpicUserPreferences`](#boardepicuserpreferences) | User preferences for the epic in the board after mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.updateBoardList` Input type: `UpdateBoardListInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `collapsed` | [`Boolean`](#boolean) | Indicates if the list is collapsed for the user. | | `listId` | [`ListID!`](#listid) | Global ID of the list. | | `position` | [`Int`](#int) | Position of list within the board. | #### 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. | | `list` | [`BoardList`](#boardlist) | Mutated list. | ### `Mutation.updateComplianceFramework` Input type: `UpdateComplianceFrameworkInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`ComplianceManagementFrameworkID!`](#compliancemanagementframeworkid) | Global ID of the compliance framework to update. | | `params` | [`ComplianceFrameworkInput!`](#complianceframeworkinput) | Parameters to update the compliance framework with. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `complianceFramework` | [`ComplianceFramework`](#complianceframework) | Compliance framework after mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.updateContainerExpirationPolicy` Input type: `UpdateContainerExpirationPolicyInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `cadence` | [`ContainerExpirationPolicyCadenceEnum`](#containerexpirationpolicycadenceenum) | This container expiration policy schedule. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `enabled` | [`Boolean`](#boolean) | Indicates whether this container expiration policy is enabled. | | `keepN` | [`ContainerExpirationPolicyKeepEnum`](#containerexpirationpolicykeepenum) | Number of tags to retain. | | `nameRegex` | [`UntrustedRegexp`](#untrustedregexp) | Tags with names matching this regex pattern will expire. | | `nameRegexKeep` | [`UntrustedRegexp`](#untrustedregexp) | Tags with names matching this regex pattern will be preserved. | | `olderThan` | [`ContainerExpirationPolicyOlderThanEnum`](#containerexpirationpolicyolderthanenum) | Tags older that this will expire. | | `projectPath` | [`ID!`](#id) | Project path where the container expiration policy is located. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `containerExpirationPolicy` | [`ContainerExpirationPolicy`](#containerexpirationpolicy) | Container expiration policy after mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.updateDependencyProxyImageTtlGroupPolicy` Input type: `UpdateDependencyProxyImageTtlGroupPolicyInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `enabled` | [`Boolean`](#boolean) | Indicates whether the policy is enabled or disabled. | | `groupPath` | [`ID!`](#id) | Group path for the group dependency proxy image TTL policy. | | `ttl` | [`Int`](#int) | Number of days to retain a cached image file. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `dependencyProxyImageTtlPolicy` | [`DependencyProxyImageTtlGroupPolicy`](#dependencyproxyimagettlgrouppolicy) | Group image TTL policy after mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.updateDependencyProxySettings` These settings can be adjusted by the group Owner or Maintainer. However, in GitLab 16.0, we will be limiting this to the Owner role. [GitLab-#364441](https://gitlab.com/gitlab-org/gitlab/-/issues/364441) proposes making this change to match the permissions level in the user interface. Input type: `UpdateDependencyProxySettingsInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `enabled` | [`Boolean`](#boolean) | Indicates whether the policy is enabled or disabled. | | `groupPath` | [`ID!`](#id) | Group path for the group dependency proxy. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `dependencyProxySetting` | [`DependencyProxySetting`](#dependencyproxysetting) | Group dependency proxy settings after mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.updateEpic` Input type: `UpdateEpicInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `addLabelIds` | [`[ID!]`](#id) | IDs of labels to be added to the epic. | | `addLabels` | [`[String!]`](#string) | Array of labels to be added to the epic. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `color` | [`Color`](#color) | Color of the epic. Available only when feature flag `epic_color_highlight` is enabled. This flag is disabled by default, because the feature is experimental and is subject to change without notice. | | `confidential` | [`Boolean`](#boolean) | Indicates if the epic is confidential. | | `description` | [`String`](#string) | Description of the epic. | | `dueDateFixed` | [`String`](#string) | End date of the epic. | | `dueDateIsFixed` | [`Boolean`](#boolean) | Indicates end date should be sourced from due_date_fixed field not the issue milestones. | | `groupPath` | [`ID!`](#id) | Group the epic to mutate is in. | | `iid` | [`ID!`](#id) | IID of the epic to mutate. | | `removeLabelIds` | [`[ID!]`](#id) | IDs of labels to be removed from the epic. | | `removeLabels` | [`[String!]`](#string) | Array of labels to be removed from the epic. | | `startDateFixed` | [`String`](#string) | Start date of the epic. | | `startDateIsFixed` | [`Boolean`](#boolean) | Indicates start date should be sourced from start_date_fixed field not the issue milestones. | | `stateEvent` | [`EpicStateEvent`](#epicstateevent) | State event for the epic. | | `title` | [`String`](#string) | Title of the epic. | #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `epic` | [`Epic`](#epic) | Epic after mutation. | | `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. | ### `Mutation.updateEpicBoardList` Input type: `UpdateEpicBoardListInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `collapsed` | [`Boolean`](#boolean) | Indicates if the list is collapsed for the user. | | `listId` | [`BoardsEpicListID!`](#boardsepiclistid) | Global ID of the epic list. | | `position` | [`Int`](#int) | Position of list within the board. | #### 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. | | `list` | [`EpicList`](#epiclist) | Mutated epic list. | ### `Mutation.updateImageDiffNote` Updates a DiffNote on an image (a `Note` where the `position.positionType` is `"image"`). If the body of the Note contains only quick actions, the Note will be destroyed during an update, and no Note will be returned. Input type: `UpdateImageDiffNoteInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `body` | [`String`](#string) | Content of the note. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`NoteID!`](#noteid) | Global ID of the note to update. | | `position` | [`UpdateDiffImagePositionInput`](#updatediffimagepositioninput) | Position of this note on a diff. | #### 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. | | `note` | [`Note`](#note) | Note after mutation. | ### `Mutation.updateIssue` Input type: `UpdateIssueInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `addLabelIds` | [`[ID!]`](#id) | IDs of labels to be added to the issue. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `confidential` | [`Boolean`](#boolean) | Indicates the issue is confidential. | | `description` | [`String`](#string) | Description of the issue. | | `dueDate` | [`ISO8601Date`](#iso8601date) | Due date of the issue. | | `epicId` | [`EpicID`](#epicid) | ID of the parent epic. NULL when removing the association. | | `healthStatus` | [`HealthStatus`](#healthstatus) | Desired health status. | | `iid` | [`String!`](#string) | IID of the issue to mutate. | | `labelIds` | [`[ID!]`](#id) | IDs of labels to be set. Replaces existing issue labels. | | `locked` | [`Boolean`](#boolean) | Indicates discussion is locked on the issue. | | `milestoneId` | [`ID`](#id) | ID of the milestone to assign to the issue. On update milestone will be removed if set to null. | | `projectPath` | [`ID!`](#id) | Project the issue to mutate is in. | | `removeLabelIds` | [`[ID!]`](#id) | IDs of labels to be removed from the issue. | | `stateEvent` | [`IssueStateEvent`](#issuestateevent) | Close or reopen an issue. | | `timeEstimate` | [`String`](#string) | Estimated time to complete the issue, or `0` to remove the current estimate. | | `title` | [`String`](#string) | Title of the issue. | | `type` | [`IssueType`](#issuetype) | Type of the issue. | | `weight` | [`Int`](#int) | Weight of the issue. | #### 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. | | `issue` | [`Issue`](#issue) | Issue after mutation. | ### `Mutation.updateIteration` Input type: `UpdateIterationInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `description` | [`String`](#string) | Description of the iteration. | | `dueDate` | [`String`](#string) | End date of the iteration. | | `groupPath` | [`ID!`](#id) | Group of the iteration. | | `id` | [`ID!`](#id) | Global ID of the iteration. | | `startDate` | [`String`](#string) | Start date of the iteration. | | `title` | [`String`](#string) | Title of the iteration. | #### 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. | | `iteration` | [`Iteration`](#iteration) | Updated iteration. | ### `Mutation.updateNamespacePackageSettings` Input type: `UpdateNamespacePackageSettingsInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `genericDuplicateExceptionRegex` | [`UntrustedRegexp`](#untrustedregexp) | When generic_duplicates_allowed is false, you can publish duplicate packages with names that match this regex. Otherwise, this setting has no effect. | | `genericDuplicatesAllowed` | [`Boolean`](#boolean) | Indicates whether duplicate generic packages are allowed for this namespace. | | `lockMavenPackageRequestsForwarding` | [`Boolean`](#boolean) | Indicates whether Maven package forwarding is locked for all descendent namespaces. | | `lockNpmPackageRequestsForwarding` | [`Boolean`](#boolean) | Indicates whether npm package forwarding is locked for all descendent namespaces. | | `lockPypiPackageRequestsForwarding` | [`Boolean`](#boolean) | Indicates whether PyPI package forwarding is locked for all descendent namespaces. | | `mavenDuplicateExceptionRegex` | [`UntrustedRegexp`](#untrustedregexp) | When maven_duplicates_allowed is false, you can publish duplicate packages with names that match this regex. Otherwise, this setting has no effect. | | `mavenDuplicatesAllowed` | [`Boolean`](#boolean) | Indicates whether duplicate Maven packages are allowed for this namespace. | | `mavenPackageRequestsForwarding` | [`Boolean`](#boolean) | Indicates whether Maven package forwarding is allowed for this namespace. | | `namespacePath` | [`ID!`](#id) | Namespace path where the namespace package setting is located. | | `npmPackageRequestsForwarding` | [`Boolean`](#boolean) | Indicates whether npm package forwarding is allowed for this namespace. | | `pypiPackageRequestsForwarding` | [`Boolean`](#boolean) | Indicates whether PyPI package forwarding is allowed for this namespace. | #### 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. | | `packageSettings` | [`PackageSettings`](#packagesettings) | Namespace package setting after mutation. | ### `Mutation.updateNote` Updates a Note. If the body of the Note contains only quick actions, the Note will be destroyed during an update, and no Note will be returned. Input type: `UpdateNoteInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `body` | [`String`](#string) | Content of the note. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `confidential` **{warning-solid}** | [`Boolean`](#boolean) | **Deprecated:** No longer allowed to update confidentiality of notes. Deprecated in 14.10. | | `id` | [`NoteID!`](#noteid) | Global ID of the note to update. | #### 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. | | `note` | [`Note`](#note) | Note after mutation. | ### `Mutation.updatePackagesCleanupPolicy` Input type: `UpdatePackagesCleanupPolicyInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `keepNDuplicatedPackageFiles` | [`PackagesCleanupKeepDuplicatedPackageFilesEnum`](#packagescleanupkeepduplicatedpackagefilesenum) | Number of duplicated package files to retain. | | `projectPath` | [`ID!`](#id) | Project path where the packages cleanup policy is located. | #### 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. | | `packagesCleanupPolicy` | [`PackagesCleanupPolicy`](#packagescleanuppolicy) | Packages cleanup policy after mutation. | ### `Mutation.updateRequirement` Input type: `UpdateRequirementInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `description` | [`String`](#string) | Description of the requirement. | | `iid` **{warning-solid}** | [`String`](#string) | **Deprecated:** Use work_item_iid instead. Deprecated in 15.8. | | `lastTestReportState` | [`TestReportState`](#testreportstate) | Creates a test report for the requirement with the given state. | | `projectPath` | [`ID!`](#id) | Full project path the requirement is associated with. | | `state` | [`RequirementState`](#requirementstate) | State of the requirement. | | `title` | [`String`](#string) | Title of the requirement. | | `workItemIid` | [`String`](#string) | IID of the requirement work item to update. | #### 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. | | `requirement` | [`Requirement`](#requirement) | Requirement after mutation. | ### `Mutation.updateSnippet` Input type: `UpdateSnippetInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `blobActions` | [`[SnippetBlobActionInputType!]`](#snippetblobactioninputtype) | Actions to perform over the snippet repository and blobs. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `description` | [`String`](#string) | Description of the snippet. | | `id` | [`SnippetID!`](#snippetid) | Global ID of the snippet to update. | | `title` | [`String`](#string) | Title of the snippet. | | `visibilityLevel` | [`VisibilityLevelsEnum`](#visibilitylevelsenum) | Visibility level of the snippet. | #### 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. | | `snippet` | [`Snippet`](#snippet) | Snippet after mutation. | ### `Mutation.uploadDelete` Deletes an upload. Input type: `UploadDeleteInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `filename` | [`String!`](#string) | Upload filename. | | `groupPath` | [`ID`](#id) | Full path of the group with which the resource is associated. | | `projectPath` | [`ID`](#id) | Full path of the project with which the resource is associated. | | `secret` | [`String!`](#string) | Secret part of upload path. | #### 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. | | `upload` | [`FileUpload`](#fileupload) | Deleted upload. | ### `Mutation.userCalloutCreate` Input type: `UserCalloutCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `featureName` | [`String!`](#string) | Feature name you want to dismiss the callout for. | #### 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. | | `userCallout` | [`UserCallout!`](#usercallout) | User callout dismissed. | ### `Mutation.userPreferencesUpdate` Input type: `UserPreferencesUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `issuesSort` | [`IssueSort`](#issuesort) | Sort order for issue lists. | | `visibilityPipelineIdType` | [`VisibilityPipelineIdType`](#visibilitypipelineidtype) | Determines whether the pipeline list shows ID or IID. | #### 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. | | `userPreferences` | [`UserPreferences`](#userpreferences) | User preferences after mutation. | ### `Mutation.vulnerabilityConfirm` Input type: `VulnerabilityConfirmInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `comment` | [`String`](#string) | Comment why vulnerability was confirmed (maximum 50,000 characters). | | `id` | [`VulnerabilityID!`](#vulnerabilityid) | ID of the vulnerability to be confirmed. | #### 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. | | `vulnerability` | [`Vulnerability`](#vulnerability) | Vulnerability after state change. | ### `Mutation.vulnerabilityCreate` Input type: `VulnerabilityCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `confidence` **{warning-solid}** | [`VulnerabilityConfidence`](#vulnerabilityconfidence) | **Deprecated:** This field will be removed from the Vulnerability domain model. Deprecated in 15.4. | | `confirmedAt` | [`Time`](#time) | Timestamp of when the vulnerability state changed to confirmed (defaults to creation time if status is `confirmed`). | | `description` | [`String!`](#string) | Long text section that describes the vulnerability in more detail. | | `detectedAt` | [`Time`](#time) | Timestamp of when the vulnerability was first detected (defaults to creation time). | | `dismissedAt` | [`Time`](#time) | Timestamp of when the vulnerability state changed to dismissed (defaults to creation time if status is `dismissed`). | | `identifiers` | [`[VulnerabilityIdentifierInput!]!`](#vulnerabilityidentifierinput) | Array of CVE or CWE identifiers for the vulnerability. | | `message` | [`String`](#string) | Short text section that describes the vulnerability. This may include the finding's specific information. | | `name` | [`String!`](#string) | Name of the vulnerability. | | `project` | [`ProjectID!`](#projectid) | ID of the project to attach the vulnerability to. | | `resolvedAt` | [`Time`](#time) | Timestamp of when the vulnerability state changed to resolved (defaults to creation time if status is `resolved`). | | `scanner` | [`VulnerabilityScannerInput!`](#vulnerabilityscannerinput) | Information about the scanner used to discover the vulnerability. | | `severity` | [`VulnerabilitySeverity`](#vulnerabilityseverity) | Severity of the vulnerability (defaults to `unknown`). | | `solution` | [`String`](#string) | Instructions for how to fix the vulnerability. | | `state` | [`VulnerabilityState`](#vulnerabilitystate) | State of the vulnerability (defaults to `detected`). | #### 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. | | `vulnerability` | [`Vulnerability`](#vulnerability) | Vulnerability created. | ### `Mutation.vulnerabilityDismiss` Input type: `VulnerabilityDismissInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `comment` | [`String`](#string) | Comment why vulnerability was dismissed (maximum 50,000 characters). | | `dismissalReason` | [`VulnerabilityDismissalReason`](#vulnerabilitydismissalreason) | Reason why vulnerability should be dismissed. | | `id` | [`VulnerabilityID!`](#vulnerabilityid) | ID of the vulnerability to be dismissed. | #### 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. | | `vulnerability` | [`Vulnerability`](#vulnerability) | Vulnerability after state change. | ### `Mutation.vulnerabilityExternalIssueLinkCreate` Input type: `VulnerabilityExternalIssueLinkCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `externalTracker` | [`VulnerabilityExternalIssueLinkExternalTracker!`](#vulnerabilityexternalissuelinkexternaltracker) | External tracker type of the external issue link. | | `id` | [`VulnerabilityID!`](#vulnerabilityid) | ID of the vulnerability. | | `linkType` | [`VulnerabilityExternalIssueLinkType!`](#vulnerabilityexternalissuelinktype) | Type of the external issue link. | #### 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. | | `externalIssueLink` | [`VulnerabilityExternalIssueLink`](#vulnerabilityexternalissuelink) | Created external issue link. | ### `Mutation.vulnerabilityExternalIssueLinkDestroy` Input type: `VulnerabilityExternalIssueLinkDestroyInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`VulnerabilitiesExternalIssueLinkID!`](#vulnerabilitiesexternalissuelinkid) | Global ID of the vulnerability external issue link. | #### 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.vulnerabilityIssueLinkCreate` Input type: `VulnerabilityIssueLinkCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `issueId` | [`IssueID!`](#issueid) | ID of the issue to link to. | | `vulnerabilityIds` | [`[VulnerabilityID!]!`](#vulnerabilityid) | IDs of vulnerabilities to link to the given issue. Up to 100 can be provided. | #### 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. | | `issueLinks` | [`[VulnerabilityIssueLink!]`](#vulnerabilityissuelink) | Created issue links. | ### `Mutation.vulnerabilityResolve` Input type: `VulnerabilityResolveInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `comment` | [`String`](#string) | Comment why vulnerability was resolved (maximum 50,000 characters). | | `id` | [`VulnerabilityID!`](#vulnerabilityid) | ID of the vulnerability to be resolved. | #### 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. | | `vulnerability` | [`Vulnerability`](#vulnerability) | Vulnerability after state change. | ### `Mutation.vulnerabilityRevertToDetected` Input type: `VulnerabilityRevertToDetectedInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `comment` | [`String`](#string) | Comment why vulnerability was reverted to detected (maximum 50,000 characters). | | `id` | [`VulnerabilityID!`](#vulnerabilityid) | ID of the vulnerability to be reverted to detected. | #### 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. | | `vulnerability` | [`Vulnerability`](#vulnerability) | Vulnerability after state change. | ### `Mutation.workItemConvert` Converts the work item to a new type. WARNING: **Introduced** in 15.11. This feature is an Experiment. It can be changed or removed at any time. Input type: `WorkItemConvertInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`WorkItemID!`](#workitemid) | Global ID of the work item. | | `workItemTypeId` | [`WorkItemsTypeID!`](#workitemstypeid) | Global ID of the new work item type. | #### 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. | | `workItem` | [`WorkItem`](#workitem) | Updated work item. | ### `Mutation.workItemCreate` Creates a work item. WARNING: **Introduced** in 15.1. This feature is an Experiment. It can be changed or removed at any time. Input type: `WorkItemCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `confidential` | [`Boolean`](#boolean) | Sets the work item confidentiality. | | `description` | [`String`](#string) | Description of the work item. | | `hierarchyWidget` | [`WorkItemWidgetHierarchyCreateInput`](#workitemwidgethierarchycreateinput) | Input for hierarchy widget. | | `iterationWidget` | [`WorkItemWidgetIterationInput`](#workitemwidgetiterationinput) | Iteration widget of the work item. | | `milestoneWidget` | [`WorkItemWidgetMilestoneInput`](#workitemwidgetmilestoneinput) | Input for milestone widget. | | `namespacePath` | [`ID`](#id) | Full path of the namespace(project or group) the work item is created in. | | `projectPath` **{warning-solid}** | [`ID`](#id) | **Deprecated:** Please use namespace_path instead. That will cover for both projects and groups. Deprecated in 15.10. | | `title` | [`String!`](#string) | Title of the work item. | | `workItemTypeId` | [`WorkItemsTypeID!`](#workitemstypeid) | Global ID of a work item type. | #### 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. | | `workItem` | [`WorkItem`](#workitem) | Created work item. | ### `Mutation.workItemCreateFromTask` Creates a work item from a task in another work item's description. WARNING: **Introduced** in 15.1. This feature is an Experiment. It can be changed or removed at any time. Input type: `WorkItemCreateFromTaskInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`WorkItemID!`](#workitemid) | Global ID of the work item. | | `workItemData` | [`WorkItemConvertTaskInput!`](#workitemconverttaskinput) | Arguments necessary to convert a task into a work item. | #### 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. | | `newWorkItem` | [`WorkItem`](#workitem) | New work item created from task. | | `workItem` | [`WorkItem`](#workitem) | Updated work item. | ### `Mutation.workItemDelete` Deletes a work item. WARNING: **Introduced** in 15.1. This feature is an Experiment. It can be changed or removed at any time. Input type: `WorkItemDeleteInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`WorkItemID!`](#workitemid) | Global ID of the work item. | #### 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. | | `project` | [`Project`](#project) | Project the deleted work item belonged to. | ### `Mutation.workItemDeleteTask` Deletes a task in a work item's description. WARNING: **Introduced** in 15.1. This feature is an Experiment. It can be changed or removed at any time. Input type: `WorkItemDeleteTaskInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`WorkItemID!`](#workitemid) | Global ID of the work item. | | `lockVersion` | [`Int!`](#int) | Current lock version of the work item containing the task in the description. | | `taskData` | [`WorkItemDeletedTaskInput!`](#workitemdeletedtaskinput) | Arguments necessary to delete a task from a work item's description. | #### 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. | | `workItem` | [`WorkItem`](#workitem) | Updated work item. | ### `Mutation.workItemExport` WARNING: **Introduced** in 15.10. This feature is an Experiment. It can be changed or removed at any time. Input type: `WorkItemExportInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `authorUsername` **{warning-solid}** | [`String`](#string) | **Deprecated:** This feature is an Experiment. It can be changed or removed at any time. Introduced in 15.9. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `iids` | [`[String!]`](#string) | List of IIDs of work items. For example, `["1", "2"]`. | | `in` | [`[IssuableSearchableField!]`](#issuablesearchablefield) | Specify the fields to perform the search in. Defaults to `[TITLE, DESCRIPTION]`. Requires the `search` argument.'. | | `projectPath` | [`ID!`](#id) | Full project path. | | `search` | [`String`](#string) | Search query for title or description. | | `selectedFields` | [`[AvailableExportFields!]`](#availableexportfields) | List of selected fields to be exported. Omit to export all available fields. | | `state` | [`IssuableState`](#issuablestate) | Current state of the work item. | | `types` | [`[IssueType!]`](#issuetype) | Filter work items by the given work item types. | #### 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. | | `message` | [`String`](#string) | Export request result message. | ### `Mutation.workItemUpdate` Updates a work item by Global ID. WARNING: **Introduced** in 15.1. This feature is an Experiment. It can be changed or removed at any time. Input type: `WorkItemUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `assigneesWidget` | [`WorkItemWidgetAssigneesInput`](#workitemwidgetassigneesinput) | Input for assignees widget. | | `awardEmojiWidget` | [`WorkItemWidgetAwardEmojiUpdateInput`](#workitemwidgetawardemojiupdateinput) | Input for award emoji widget. | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `confidential` | [`Boolean`](#boolean) | Sets the work item confidentiality. | | `currentUserTodosWidget` | [`WorkItemWidgetCurrentUserTodosInput`](#workitemwidgetcurrentusertodosinput) | Input for to-dos widget. | | `descriptionWidget` | [`WorkItemWidgetDescriptionInput`](#workitemwidgetdescriptioninput) | Input for description widget. | | `healthStatusWidget` | [`WorkItemWidgetHealthStatusInput`](#workitemwidgethealthstatusinput) | Input for health status widget. | | `hierarchyWidget` | [`WorkItemWidgetHierarchyUpdateInput`](#workitemwidgethierarchyupdateinput) | Input for hierarchy widget. | | `id` | [`WorkItemID!`](#workitemid) | Global ID of the work item. | | `iterationWidget` | [`WorkItemWidgetIterationInput`](#workitemwidgetiterationinput) | Input for iteration widget. | | `labelsWidget` | [`WorkItemWidgetLabelsUpdateInput`](#workitemwidgetlabelsupdateinput) | Input for labels widget. | | `milestoneWidget` | [`WorkItemWidgetMilestoneInput`](#workitemwidgetmilestoneinput) | Input for milestone widget. | | `notificationsWidget` | [`WorkItemWidgetNotificationsUpdateInput`](#workitemwidgetnotificationsupdateinput) | Input for notifications widget. | | `progressWidget` | [`WorkItemWidgetProgressInput`](#workitemwidgetprogressinput) | Input for progress widget. | | `startAndDueDateWidget` | [`WorkItemWidgetStartAndDueDateUpdateInput`](#workitemwidgetstartandduedateupdateinput) | Input for start and due date widget. | | `stateEvent` | [`WorkItemStateEvent`](#workitemstateevent) | Close or reopen a work item. | | `statusWidget` | [`StatusInput`](#statusinput) | Input for status widget. | | `title` | [`String`](#string) | Title of the work item. | | `weightWidget` | [`WorkItemWidgetWeightInput`](#workitemwidgetweightinput) | Input for weight widget. | #### 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. | | `workItem` | [`WorkItem`](#workitem) | Updated work item. | ### `Mutation.workItemUpdateTask` Updates a work item's task by Global ID. WARNING: **Introduced** in 15.1. This feature is an Experiment. It can be changed or removed at any time. Input type: `WorkItemUpdateTaskInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `id` | [`WorkItemID!`](#workitemid) | Global ID of the work item. | | `taskData` | [`WorkItemUpdatedTaskInput!`](#workitemupdatedtaskinput) | Arguments necessary to update a task. | #### 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. | | `task` | [`WorkItem`](#workitem) | Updated task. | | `workItem` | [`WorkItem`](#workitem) | Updated work item. | ### `Mutation.workspaceCreate` WARNING: **Introduced** in 16.0. This feature is an Experiment. It can be changed or removed at any time. Input type: `WorkspaceCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `clusterAgentId` | [`ClustersAgentID!`](#clustersagentid) | ID of the cluster agent the created workspace will be associated with. | | `desiredState` | [`String!`](#string) | Desired state of the created workspace. | | `devfilePath` | [`String!`](#string) | Project repo git path containing the devfile used to configure the workspace. | | `devfileRef` | [`String!`](#string) | Project repo git ref containing the devfile used to configure the workspace. | | `editor` | [`String!`](#string) | Editor to inject into the created workspace. Must match a configured template. | | `maxHoursBeforeTermination` | [`Int!`](#int) | Maximum hours the workspace can exist before it is automatically terminated. | | `projectId` | [`ProjectID!`](#projectid) | ID of the project that will provide the Devfile for the created workspace. | #### 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. | | `workspace` | [`Workspace`](#workspace) | Created workspace. | ### `Mutation.workspaceUpdate` WARNING: **Introduced** in 16.0. This feature is an Experiment. It can be changed or removed at any time. Input type: `WorkspaceUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. | | `desiredState` | [`String!`](#string) | Desired state of the created workspace. | | `id` | [`RemoteDevelopmentWorkspaceID!`](#remotedevelopmentworkspaceid) | Global ID of the workspace. | #### 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. | | `workspace` | [`Workspace`](#workspace) | Created workspace. | ## Connections Some types in our schema are `Connection` types - they represent a paginated collection of edges between two nodes in the graph. These follow the [Relay cursor connections specification](https://relay.dev/graphql/connections.htm). ### Pagination arguments {#connection-pagination-arguments} All connection fields support the following pagination arguments: | Name | Type | Description | |------|------|-------------| | `after` | [`String`](#string) | Returns the elements in the list that come after the specified cursor. | | `before` | [`String`](#string) | Returns the elements in the list that come before the specified cursor. | | `first` | [`Int`](#int) | Returns the first _n_ elements from the list. | | `last` | [`Int`](#int) | Returns the last _n_ elements from the list. | Since these arguments are common to all connection fields, they are not repeated for each connection. ### Connection fields All connections have at least the following fields: | Name | Type | Description | |------|------|-------------| | `pageInfo` | [`PageInfo!`](#pageinfo) | Pagination information. | | `edges` | `[edge!]` | The edges. | | `nodes` | `[item!]` | The items in the current page. | The precise type of `Edge` and `Item` depends on the kind of connection. A [`ProjectConnection`](#projectconnection) will have nodes that have the type [`[Project!]`](#project), and edges that have the type [`ProjectEdge`](#projectedge). ### Connection types Some of the types in the schema exist solely to model connections. Each connection has a distinct, named type, with a distinct named edge type. These are listed separately below. #### `AchievementConnection` The connection type for [`Achievement`](#achievement). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[AchievementEdge]`](#achievementedge) | A list of edges. | | `nodes` | [`[Achievement]`](#achievement) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `AchievementEdge` The edge type for [`Achievement`](#achievement). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`Achievement`](#achievement) | The item at the end of the edge. | #### `AgentConfigurationConnection` The connection type for [`AgentConfiguration`](#agentconfiguration). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[AgentConfigurationEdge]`](#agentconfigurationedge) | A list of edges. | | `nodes` | [`[AgentConfiguration]`](#agentconfiguration) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `AgentConfigurationEdge` The edge type for [`AgentConfiguration`](#agentconfiguration). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`AgentConfiguration`](#agentconfiguration) | The item at the end of the edge. | #### `AiMessageTypeConnection` The connection type for [`AiMessageType`](#aimessagetype). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[AiMessageTypeEdge]`](#aimessagetypeedge) | A list of edges. | | `nodes` | [`[AiMessageType]`](#aimessagetype) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `AiMessageTypeEdge` The edge type for [`AiMessageType`](#aimessagetype). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`AiMessageType`](#aimessagetype) | The item at the end of the edge. | #### `AlertManagementAlertConnection` The connection type for [`AlertManagementAlert`](#alertmanagementalert). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[AlertManagementAlertEdge]`](#alertmanagementalertedge) | A list of edges. | | `nodes` | [`[AlertManagementAlert]`](#alertmanagementalert) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `AlertManagementAlertEdge` The edge type for [`AlertManagementAlert`](#alertmanagementalert). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`AlertManagementAlert`](#alertmanagementalert) | The item at the end of the edge. | #### `AlertManagementHttpIntegrationConnection` The connection type for [`AlertManagementHttpIntegration`](#alertmanagementhttpintegration). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[AlertManagementHttpIntegrationEdge]`](#alertmanagementhttpintegrationedge) | A list of edges. | | `nodes` | [`[AlertManagementHttpIntegration]`](#alertmanagementhttpintegration) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `AlertManagementHttpIntegrationEdge` The edge type for [`AlertManagementHttpIntegration`](#alertmanagementhttpintegration). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`AlertManagementHttpIntegration`](#alertmanagementhttpintegration) | The item at the end of the edge. | #### `AlertManagementIntegrationConnection` The connection type for [`AlertManagementIntegration`](#alertmanagementintegration). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[AlertManagementIntegrationEdge]`](#alertmanagementintegrationedge) | A list of edges. | | `nodes` | [`[AlertManagementIntegration]`](#alertmanagementintegration) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `AlertManagementIntegrationEdge` The edge type for [`AlertManagementIntegration`](#alertmanagementintegration). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`AlertManagementIntegration`](#alertmanagementintegration) | The item at the end of the edge. | #### `ApprovalProjectRuleConnection` The connection type for [`ApprovalProjectRule`](#approvalprojectrule). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[ApprovalProjectRuleEdge]`](#approvalprojectruleedge) | A list of edges. | | `nodes` | [`[ApprovalProjectRule]`](#approvalprojectrule) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `ApprovalProjectRuleEdge` The edge type for [`ApprovalProjectRule`](#approvalprojectrule). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`ApprovalProjectRule`](#approvalprojectrule) | The item at the end of the edge. | #### `AuditEventStreamingHeaderConnection` The connection type for [`AuditEventStreamingHeader`](#auditeventstreamingheader). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[AuditEventStreamingHeaderEdge]`](#auditeventstreamingheaderedge) | A list of edges. | | `nodes` | [`[AuditEventStreamingHeader]`](#auditeventstreamingheader) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `AuditEventStreamingHeaderEdge` The edge type for [`AuditEventStreamingHeader`](#auditeventstreamingheader). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`AuditEventStreamingHeader`](#auditeventstreamingheader) | The item at the end of the edge. | #### `AwardEmojiConnection` The connection type for [`AwardEmoji`](#awardemoji). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[AwardEmojiEdge]`](#awardemojiedge) | A list of edges. | | `nodes` | [`[AwardEmoji]`](#awardemoji) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `AwardEmojiEdge` The edge type for [`AwardEmoji`](#awardemoji). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`AwardEmoji`](#awardemoji) | The item at the end of the edge. | #### `BlobConnection` The connection type for [`Blob`](#blob). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[BlobEdge]`](#blobedge) | A list of edges. | | `nodes` | [`[Blob]`](#blob) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `BlobEdge` The edge type for [`Blob`](#blob). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`Blob`](#blob) | The item at the end of the edge. | #### `BoardConnection` The connection type for [`Board`](#board). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[BoardEdge]`](#boardedge) | A list of edges. | | `nodes` | [`[Board]`](#board) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `BoardEdge` The edge type for [`Board`](#board). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`Board`](#board) | The item at the end of the edge. | #### `BoardEpicConnection` The connection type for [`BoardEpic`](#boardepic). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `count` | [`Int!`](#int) | Total count of collection. | | `edges` | [`[BoardEpicEdge]`](#boardepicedge) | A list of edges. | | `nodes` | [`[BoardEpic]`](#boardepic) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `BoardEpicEdge` The edge type for [`BoardEpic`](#boardepic). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`BoardEpic`](#boardepic) | The item at the end of the edge. | #### `BoardListConnection` The connection type for [`BoardList`](#boardlist). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[BoardListEdge]`](#boardlistedge) | A list of edges. | | `nodes` | [`[BoardList]`](#boardlist) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `BoardListEdge` The edge type for [`BoardList`](#boardlist). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`BoardList`](#boardlist) | The item at the end of the edge. | #### `BranchRuleConnection` The connection type for [`BranchRule`](#branchrule). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[BranchRuleEdge]`](#branchruleedge) | A list of edges. | | `nodes` | [`[BranchRule]`](#branchrule) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `BranchRuleEdge` The edge type for [`BranchRule`](#branchrule). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`BranchRule`](#branchrule) | The item at the end of the edge. | #### `CiBuildNeedConnection` The connection type for [`CiBuildNeed`](#cibuildneed). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[CiBuildNeedEdge]`](#cibuildneededge) | A list of edges. | | `nodes` | [`[CiBuildNeed]`](#cibuildneed) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `CiBuildNeedEdge` The edge type for [`CiBuildNeed`](#cibuildneed). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`CiBuildNeed`](#cibuildneed) | The item at the end of the edge. | #### `CiCatalogResourceConnection` The connection type for [`CiCatalogResource`](#cicatalogresource). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `count` | [`Int!`](#int) | Total count of collection. | | `edges` | [`[CiCatalogResourceEdge]`](#cicatalogresourceedge) | A list of edges. | | `nodes` | [`[CiCatalogResource]`](#cicatalogresource) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `CiCatalogResourceEdge` The edge type for [`CiCatalogResource`](#cicatalogresource). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`CiCatalogResource`](#cicatalogresource) | The item at the end of the edge. | #### `CiConfigGroupConnection` The connection type for [`CiConfigGroup`](#ciconfiggroup). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[CiConfigGroupEdge]`](#ciconfiggroupedge) | A list of edges. | | `nodes` | [`[CiConfigGroup]`](#ciconfiggroup) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `CiConfigGroupEdge` The edge type for [`CiConfigGroup`](#ciconfiggroup). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`CiConfigGroup`](#ciconfiggroup) | The item at the end of the edge. | #### `CiConfigJobConnection` The connection type for [`CiConfigJob`](#ciconfigjob). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[CiConfigJobEdge]`](#ciconfigjobedge) | A list of edges. | | `nodes` | [`[CiConfigJob]`](#ciconfigjob) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `CiConfigJobEdge` The edge type for [`CiConfigJob`](#ciconfigjob). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`CiConfigJob`](#ciconfigjob) | The item at the end of the edge. | #### `CiConfigNeedConnection` The connection type for [`CiConfigNeed`](#ciconfigneed). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[CiConfigNeedEdge]`](#ciconfigneededge) | A list of edges. | | `nodes` | [`[CiConfigNeed]`](#ciconfigneed) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `CiConfigNeedEdge` The edge type for [`CiConfigNeed`](#ciconfigneed). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`CiConfigNeed`](#ciconfigneed) | The item at the end of the edge. | #### `CiConfigStageConnection` The connection type for [`CiConfigStage`](#ciconfigstage). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[CiConfigStageEdge]`](#ciconfigstageedge) | A list of edges. | | `nodes` | [`[CiConfigStage]`](#ciconfigstage) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `CiConfigStageEdge` The edge type for [`CiConfigStage`](#ciconfigstage). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`CiConfigStage`](#ciconfigstage) | The item at the end of the edge. | #### `CiGroupConnection` The connection type for [`CiGroup`](#cigroup). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[CiGroupEdge]`](#cigroupedge) | A list of edges. | | `nodes` | [`[CiGroup]`](#cigroup) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `CiGroupEdge` The edge type for [`CiGroup`](#cigroup). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`CiGroup`](#cigroup) | The item at the end of the edge. | #### `CiGroupVariableConnection` The connection type for [`CiGroupVariable`](#cigroupvariable). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[CiGroupVariableEdge]`](#cigroupvariableedge) | A list of edges. | | `limit` | [`Int!`](#int) | Maximum amount of group CI/CD variables. | | `nodes` | [`[CiGroupVariable]`](#cigroupvariable) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `CiGroupVariableEdge` The edge type for [`CiGroupVariable`](#cigroupvariable). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`CiGroupVariable`](#cigroupvariable) | The item at the end of the edge. | #### `CiInstanceVariableConnection` The connection type for [`CiInstanceVariable`](#ciinstancevariable). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[CiInstanceVariableEdge]`](#ciinstancevariableedge) | A list of edges. | | `nodes` | [`[CiInstanceVariable]`](#ciinstancevariable) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `CiInstanceVariableEdge` The edge type for [`CiInstanceVariable`](#ciinstancevariable). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`CiInstanceVariable`](#ciinstancevariable) | The item at the end of the edge. | #### `CiJobArtifactConnection` The connection type for [`CiJobArtifact`](#cijobartifact). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[CiJobArtifactEdge]`](#cijobartifactedge) | A list of edges. | | `nodes` | [`[CiJobArtifact]`](#cijobartifact) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `CiJobArtifactEdge` The edge type for [`CiJobArtifact`](#cijobartifact). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`CiJobArtifact`](#cijobartifact) | The item at the end of the edge. | #### `CiJobConnection` The connection type for [`CiJob`](#cijob). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[CiJobEdge]`](#cijobedge) | A list of edges. | | `nodes` | [`[CiJob]`](#cijob) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | ##### Fields with arguments ###### `CiJobConnection.count` Limited count of collection. Returns limit + 1 for counts greater than the limit. Returns [`Int!`](#int). ####### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `limit` | [`Int`](#int) | Limit value to be applied to the count query. Default is 1000. | #### `CiJobEdge` The edge type for [`CiJob`](#cijob). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`CiJob`](#cijob) | The item at the end of the edge. | #### `CiManualVariableConnection` The connection type for [`CiManualVariable`](#cimanualvariable). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[CiManualVariableEdge]`](#cimanualvariableedge) | A list of edges. | | `nodes` | [`[CiManualVariable]`](#cimanualvariable) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `CiManualVariableEdge` The edge type for [`CiManualVariable`](#cimanualvariable). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`CiManualVariable`](#cimanualvariable) | The item at the end of the edge. | #### `CiMinutesNamespaceMonthlyUsageConnection` The connection type for [`CiMinutesNamespaceMonthlyUsage`](#ciminutesnamespacemonthlyusage). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[CiMinutesNamespaceMonthlyUsageEdge]`](#ciminutesnamespacemonthlyusageedge) | A list of edges. | | `nodes` | [`[CiMinutesNamespaceMonthlyUsage]`](#ciminutesnamespacemonthlyusage) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `CiMinutesNamespaceMonthlyUsageEdge` The edge type for [`CiMinutesNamespaceMonthlyUsage`](#ciminutesnamespacemonthlyusage). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`CiMinutesNamespaceMonthlyUsage`](#ciminutesnamespacemonthlyusage) | The item at the end of the edge. | #### `CiMinutesProjectMonthlyUsageConnection` The connection type for [`CiMinutesProjectMonthlyUsage`](#ciminutesprojectmonthlyusage). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[CiMinutesProjectMonthlyUsageEdge]`](#ciminutesprojectmonthlyusageedge) | A list of edges. | | `nodes` | [`[CiMinutesProjectMonthlyUsage]`](#ciminutesprojectmonthlyusage) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `CiMinutesProjectMonthlyUsageEdge` The edge type for [`CiMinutesProjectMonthlyUsage`](#ciminutesprojectmonthlyusage). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`CiMinutesProjectMonthlyUsage`](#ciminutesprojectmonthlyusage) | The item at the end of the edge. | #### `CiProjectVariableConnection` The connection type for [`CiProjectVariable`](#ciprojectvariable). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[CiProjectVariableEdge]`](#ciprojectvariableedge) | A list of edges. | | `limit` | [`Int!`](#int) | Maximum amount of project CI/CD variables. | | `nodes` | [`[CiProjectVariable]`](#ciprojectvariable) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `CiProjectVariableEdge` The edge type for [`CiProjectVariable`](#ciprojectvariable). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`CiProjectVariable`](#ciprojectvariable) | The item at the end of the edge. | #### `CiRunnerConnection` The connection type for [`CiRunner`](#cirunner). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `count` | [`Int!`](#int) | Total count of collection. | | `edges` | [`[CiRunnerEdge]`](#cirunneredge) | A list of edges. | | `jobsStatistics` | [`CiJobsStatistics`](#cijobsstatistics) | Jobs statistics for jobs executed by a collection of runners. Available only to admins. | | `nodes` | [`[CiRunner]`](#cirunner) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `CiRunnerEdge` The edge type for [`CiRunner`](#cirunner). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `editUrl` | [`String`](#string) | Web URL of the runner edit page. The value depends on where you put this field in the query. You can use it for projects or groups. | | `node` | [`CiRunner`](#cirunner) | The item at the end of the edge. | | `webUrl` | [`String`](#string) | Web URL of the runner. The value depends on where you put this field in the query. You can use it for projects or groups. | #### `CiRunnerManagerConnection` The connection type for [`CiRunnerManager`](#cirunnermanager). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `count` | [`Int!`](#int) | Total count of collection. | | `edges` | [`[CiRunnerManagerEdge]`](#cirunnermanageredge) | A list of edges. | | `nodes` | [`[CiRunnerManager]`](#cirunnermanager) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `CiRunnerManagerEdge` The edge type for [`CiRunnerManager`](#cirunnermanager). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`CiRunnerManager`](#cirunnermanager) | The item at the end of the edge. | #### `CiSecureFileRegistryConnection` The connection type for [`CiSecureFileRegistry`](#cisecurefileregistry). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[CiSecureFileRegistryEdge]`](#cisecurefileregistryedge) | A list of edges. | | `nodes` | [`[CiSecureFileRegistry]`](#cisecurefileregistry) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `CiSecureFileRegistryEdge` The edge type for [`CiSecureFileRegistry`](#cisecurefileregistry). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`CiSecureFileRegistry`](#cisecurefileregistry) | The item at the end of the edge. | #### `CiStageConnection` The connection type for [`CiStage`](#cistage). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[CiStageEdge]`](#cistageedge) | A list of edges. | | `nodes` | [`[CiStage]`](#cistage) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `CiStageEdge` The edge type for [`CiStage`](#cistage). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`CiStage`](#cistage) | The item at the end of the edge. | #### `ClusterAgentActivityEventConnection` The connection type for [`ClusterAgentActivityEvent`](#clusteragentactivityevent). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `count` | [`Int!`](#int) | Total count of collection. | | `edges` | [`[ClusterAgentActivityEventEdge]`](#clusteragentactivityeventedge) | A list of edges. | | `nodes` | [`[ClusterAgentActivityEvent]`](#clusteragentactivityevent) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `ClusterAgentActivityEventEdge` The edge type for [`ClusterAgentActivityEvent`](#clusteragentactivityevent). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`ClusterAgentActivityEvent`](#clusteragentactivityevent) | The item at the end of the edge. | #### `ClusterAgentAuthorizationCiAccessConnection` The connection type for [`ClusterAgentAuthorizationCiAccess`](#clusteragentauthorizationciaccess). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[ClusterAgentAuthorizationCiAccessEdge]`](#clusteragentauthorizationciaccessedge) | A list of edges. | | `nodes` | [`[ClusterAgentAuthorizationCiAccess]`](#clusteragentauthorizationciaccess) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `ClusterAgentAuthorizationCiAccessEdge` The edge type for [`ClusterAgentAuthorizationCiAccess`](#clusteragentauthorizationciaccess). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`ClusterAgentAuthorizationCiAccess`](#clusteragentauthorizationciaccess) | The item at the end of the edge. | #### `ClusterAgentAuthorizationUserAccessConnection` The connection type for [`ClusterAgentAuthorizationUserAccess`](#clusteragentauthorizationuseraccess). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[ClusterAgentAuthorizationUserAccessEdge]`](#clusteragentauthorizationuseraccessedge) | A list of edges. | | `nodes` | [`[ClusterAgentAuthorizationUserAccess]`](#clusteragentauthorizationuseraccess) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `ClusterAgentAuthorizationUserAccessEdge` The edge type for [`ClusterAgentAuthorizationUserAccess`](#clusteragentauthorizationuseraccess). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`ClusterAgentAuthorizationUserAccess`](#clusteragentauthorizationuseraccess) | The item at the end of the edge. | #### `ClusterAgentConnection` The connection type for [`ClusterAgent`](#clusteragent). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `count` | [`Int!`](#int) | Total count of collection. | | `edges` | [`[ClusterAgentEdge]`](#clusteragentedge) | A list of edges. | | `nodes` | [`[ClusterAgent]`](#clusteragent) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `ClusterAgentEdge` The edge type for [`ClusterAgent`](#clusteragent). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`ClusterAgent`](#clusteragent) | The item at the end of the edge. | #### `ClusterAgentTokenConnection` The connection type for [`ClusterAgentToken`](#clusteragenttoken). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `count` | [`Int!`](#int) | Total count of collection. | | `edges` | [`[ClusterAgentTokenEdge]`](#clusteragenttokenedge) | A list of edges. | | `nodes` | [`[ClusterAgentToken]`](#clusteragenttoken) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `ClusterAgentTokenEdge` The edge type for [`ClusterAgentToken`](#clusteragenttoken). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`ClusterAgentToken`](#clusteragenttoken) | The item at the end of the edge. | #### `CodeCoverageActivityConnection` The connection type for [`CodeCoverageActivity`](#codecoverageactivity). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[CodeCoverageActivityEdge]`](#codecoverageactivityedge) | A list of edges. | | `nodes` | [`[CodeCoverageActivity]`](#codecoverageactivity) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `CodeCoverageActivityEdge` The edge type for [`CodeCoverageActivity`](#codecoverageactivity). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`CodeCoverageActivity`](#codecoverageactivity) | The item at the end of the edge. | #### `CodeQualityDegradationConnection` The connection type for [`CodeQualityDegradation`](#codequalitydegradation). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `count` | [`Int!`](#int) | Total count of collection. | | `edges` | [`[CodeQualityDegradationEdge]`](#codequalitydegradationedge) | A list of edges. | | `nodes` | [`[CodeQualityDegradation]`](#codequalitydegradation) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `CodeQualityDegradationEdge` The edge type for [`CodeQualityDegradation`](#codequalitydegradation). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`CodeQualityDegradation`](#codequalitydegradation) | The item at the end of the edge. | #### `CommitConnection` The connection type for [`Commit`](#commit). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[CommitEdge]`](#commitedge) | A list of edges. | | `nodes` | [`[Commit]`](#commit) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `CommitEdge` The edge type for [`Commit`](#commit). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`Commit`](#commit) | The item at the end of the edge. | #### `ComplianceFrameworkConnection` The connection type for [`ComplianceFramework`](#complianceframework). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[ComplianceFrameworkEdge]`](#complianceframeworkedge) | A list of edges. | | `nodes` | [`[ComplianceFramework]`](#complianceframework) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `ComplianceFrameworkEdge` The edge type for [`ComplianceFramework`](#complianceframework). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`ComplianceFramework`](#complianceframework) | The item at the end of the edge. | #### `ComplianceViolationConnection` The connection type for [`ComplianceViolation`](#complianceviolation). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[ComplianceViolationEdge]`](#complianceviolationedge) | A list of edges. | | `nodes` | [`[ComplianceViolation]`](#complianceviolation) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `ComplianceViolationEdge` The edge type for [`ComplianceViolation`](#complianceviolation). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`ComplianceViolation`](#complianceviolation) | The item at the end of the edge. | #### `ConnectedAgentConnection` The connection type for [`ConnectedAgent`](#connectedagent). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[ConnectedAgentEdge]`](#connectedagentedge) | A list of edges. | | `nodes` | [`[ConnectedAgent]`](#connectedagent) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `ConnectedAgentEdge` The edge type for [`ConnectedAgent`](#connectedagent). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`ConnectedAgent`](#connectedagent) | The item at the end of the edge. | #### `ContainerRepositoryConnection` The connection type for [`ContainerRepository`](#containerrepository). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[ContainerRepositoryEdge]`](#containerrepositoryedge) | A list of edges. | | `nodes` | [`[ContainerRepository]`](#containerrepository) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `ContainerRepositoryEdge` The edge type for [`ContainerRepository`](#containerrepository). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`ContainerRepository`](#containerrepository) | The item at the end of the edge. | #### `ContainerRepositoryRegistryConnection` The connection type for [`ContainerRepositoryRegistry`](#containerrepositoryregistry). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[ContainerRepositoryRegistryEdge]`](#containerrepositoryregistryedge) | A list of edges. | | `nodes` | [`[ContainerRepositoryRegistry]`](#containerrepositoryregistry) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `ContainerRepositoryRegistryEdge` The edge type for [`ContainerRepositoryRegistry`](#containerrepositoryregistry). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`ContainerRepositoryRegistry`](#containerrepositoryregistry) | The item at the end of the edge. | #### `ContainerRepositoryTagConnection` The connection type for [`ContainerRepositoryTag`](#containerrepositorytag). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[ContainerRepositoryTagEdge]`](#containerrepositorytagedge) | A list of edges. | | `nodes` | [`[ContainerRepositoryTag]`](#containerrepositorytag) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `ContainerRepositoryTagEdge` The edge type for [`ContainerRepositoryTag`](#containerrepositorytag). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`ContainerRepositoryTag`](#containerrepositorytag) | The item at the end of the edge. | #### `ContributionAnalyticsContributionConnection` The connection type for [`ContributionAnalyticsContribution`](#contributionanalyticscontribution). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[ContributionAnalyticsContributionEdge]`](#contributionanalyticscontributionedge) | A list of edges. | | `nodes` | [`[ContributionAnalyticsContribution]`](#contributionanalyticscontribution) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `ContributionAnalyticsContributionEdge` The edge type for [`ContributionAnalyticsContribution`](#contributionanalyticscontribution). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`ContributionAnalyticsContribution`](#contributionanalyticscontribution) | The item at the end of the edge. | #### `CoverageFuzzingCorpusConnection` The connection type for [`CoverageFuzzingCorpus`](#coveragefuzzingcorpus). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[CoverageFuzzingCorpusEdge]`](#coveragefuzzingcorpusedge) | A list of edges. | | `nodes` | [`[CoverageFuzzingCorpus]`](#coveragefuzzingcorpus) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `CoverageFuzzingCorpusEdge` The edge type for [`CoverageFuzzingCorpus`](#coveragefuzzingcorpus). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`CoverageFuzzingCorpus`](#coveragefuzzingcorpus) | The item at the end of the edge. | #### `CustomEmojiConnection` The connection type for [`CustomEmoji`](#customemoji). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[CustomEmojiEdge]`](#customemojiedge) | A list of edges. | | `nodes` | [`[CustomEmoji]`](#customemoji) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `CustomEmojiEdge` The edge type for [`CustomEmoji`](#customemoji). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`CustomEmoji`](#customemoji) | The item at the end of the edge. | #### `CustomerRelationsContactConnection` The connection type for [`CustomerRelationsContact`](#customerrelationscontact). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[CustomerRelationsContactEdge]`](#customerrelationscontactedge) | A list of edges. | | `nodes` | [`[CustomerRelationsContact]`](#customerrelationscontact) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `CustomerRelationsContactEdge` The edge type for [`CustomerRelationsContact`](#customerrelationscontact). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`CustomerRelationsContact`](#customerrelationscontact) | The item at the end of the edge. | #### `CustomerRelationsOrganizationConnection` The connection type for [`CustomerRelationsOrganization`](#customerrelationsorganization). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[CustomerRelationsOrganizationEdge]`](#customerrelationsorganizationedge) | A list of edges. | | `nodes` | [`[CustomerRelationsOrganization]`](#customerrelationsorganization) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `CustomerRelationsOrganizationEdge` The edge type for [`CustomerRelationsOrganization`](#customerrelationsorganization). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`CustomerRelationsOrganization`](#customerrelationsorganization) | The item at the end of the edge. | #### `DastProfileConnection` The connection type for [`DastProfile`](#dastprofile). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `count` | [`Int!`](#int) | Total count of collection. | | `edges` | [`[DastProfileEdge]`](#dastprofileedge) | A list of edges. | | `nodes` | [`[DastProfile]`](#dastprofile) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `DastProfileEdge` The edge type for [`DastProfile`](#dastprofile). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`DastProfile`](#dastprofile) | The item at the end of the edge. | #### `DastScannerProfileConnection` The connection type for [`DastScannerProfile`](#dastscannerprofile). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[DastScannerProfileEdge]`](#dastscannerprofileedge) | A list of edges. | | `nodes` | [`[DastScannerProfile]`](#dastscannerprofile) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `DastScannerProfileEdge` The edge type for [`DastScannerProfile`](#dastscannerprofile). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`DastScannerProfile`](#dastscannerprofile) | The item at the end of the edge. | #### `DastSiteProfileConnection` The connection type for [`DastSiteProfile`](#dastsiteprofile). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[DastSiteProfileEdge]`](#dastsiteprofileedge) | A list of edges. | | `nodes` | [`[DastSiteProfile]`](#dastsiteprofile) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `DastSiteProfileEdge` The edge type for [`DastSiteProfile`](#dastsiteprofile). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`DastSiteProfile`](#dastsiteprofile) | The item at the end of the edge. | #### `DastSiteValidationConnection` The connection type for [`DastSiteValidation`](#dastsitevalidation). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[DastSiteValidationEdge]`](#dastsitevalidationedge) | A list of edges. | | `nodes` | [`[DastSiteValidation]`](#dastsitevalidation) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `DastSiteValidationEdge` The edge type for [`DastSiteValidation`](#dastsitevalidation). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`DastSiteValidation`](#dastsitevalidation) | The item at the end of the edge. | #### `DependencyConnection` The connection type for [`Dependency`](#dependency). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[DependencyEdge]`](#dependencyedge) | A list of edges. | | `nodes` | [`[Dependency]`](#dependency) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `DependencyEdge` The edge type for [`Dependency`](#dependency). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`Dependency`](#dependency) | The item at the end of the edge. | #### `DependencyProxyBlobConnection` The connection type for [`DependencyProxyBlob`](#dependencyproxyblob). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[DependencyProxyBlobEdge]`](#dependencyproxyblobedge) | A list of edges. | | `nodes` | [`[DependencyProxyBlob]`](#dependencyproxyblob) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `DependencyProxyBlobEdge` The edge type for [`DependencyProxyBlob`](#dependencyproxyblob). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`DependencyProxyBlob`](#dependencyproxyblob) | The item at the end of the edge. | #### `DependencyProxyBlobRegistryConnection` The connection type for [`DependencyProxyBlobRegistry`](#dependencyproxyblobregistry). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[DependencyProxyBlobRegistryEdge]`](#dependencyproxyblobregistryedge) | A list of edges. | | `nodes` | [`[DependencyProxyBlobRegistry]`](#dependencyproxyblobregistry) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `DependencyProxyBlobRegistryEdge` The edge type for [`DependencyProxyBlobRegistry`](#dependencyproxyblobregistry). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`DependencyProxyBlobRegistry`](#dependencyproxyblobregistry) | The item at the end of the edge. | #### `DependencyProxyManifestConnection` The connection type for [`DependencyProxyManifest`](#dependencyproxymanifest). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[DependencyProxyManifestEdge]`](#dependencyproxymanifestedge) | A list of edges. | | `nodes` | [`[DependencyProxyManifest]`](#dependencyproxymanifest) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `DependencyProxyManifestEdge` The edge type for [`DependencyProxyManifest`](#dependencyproxymanifest). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`DependencyProxyManifest`](#dependencyproxymanifest) | The item at the end of the edge. | #### `DependencyProxyManifestRegistryConnection` The connection type for [`DependencyProxyManifestRegistry`](#dependencyproxymanifestregistry). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[DependencyProxyManifestRegistryEdge]`](#dependencyproxymanifestregistryedge) | A list of edges. | | `nodes` | [`[DependencyProxyManifestRegistry]`](#dependencyproxymanifestregistry) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `DependencyProxyManifestRegistryEdge` The edge type for [`DependencyProxyManifestRegistry`](#dependencyproxymanifestregistry). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`DependencyProxyManifestRegistry`](#dependencyproxymanifestregistry) | The item at the end of the edge. | #### `DeploymentConnection` The connection type for [`Deployment`](#deployment). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[DeploymentEdge]`](#deploymentedge) | A list of edges. | | `nodes` | [`[Deployment]`](#deployment) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `DeploymentEdge` The edge type for [`Deployment`](#deployment). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`Deployment`](#deployment) | The item at the end of the edge. | #### `DesignAtVersionConnection` The connection type for [`DesignAtVersion`](#designatversion). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[DesignAtVersionEdge]`](#designatversionedge) | A list of edges. | | `nodes` | [`[DesignAtVersion]`](#designatversion) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `DesignAtVersionEdge` The edge type for [`DesignAtVersion`](#designatversion). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`DesignAtVersion`](#designatversion) | The item at the end of the edge. | #### `DesignConnection` The connection type for [`Design`](#design). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[DesignEdge]`](#designedge) | A list of edges. | | `nodes` | [`[Design]`](#design) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `DesignEdge` The edge type for [`Design`](#design). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`Design`](#design) | The item at the end of the edge. | #### `DesignVersionConnection` The connection type for [`DesignVersion`](#designversion). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[DesignVersionEdge]`](#designversionedge) | A list of edges. | | `nodes` | [`[DesignVersion]`](#designversion) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `DesignVersionEdge` The edge type for [`DesignVersion`](#designversion). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`DesignVersion`](#designversion) | The item at the end of the edge. | #### `DevopsAdoptionEnabledNamespaceConnection` The connection type for [`DevopsAdoptionEnabledNamespace`](#devopsadoptionenablednamespace). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[DevopsAdoptionEnabledNamespaceEdge]`](#devopsadoptionenablednamespaceedge) | A list of edges. | | `nodes` | [`[DevopsAdoptionEnabledNamespace]`](#devopsadoptionenablednamespace) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `DevopsAdoptionEnabledNamespaceEdge` The edge type for [`DevopsAdoptionEnabledNamespace`](#devopsadoptionenablednamespace). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`DevopsAdoptionEnabledNamespace`](#devopsadoptionenablednamespace) | The item at the end of the edge. | #### `DevopsAdoptionSnapshotConnection` The connection type for [`DevopsAdoptionSnapshot`](#devopsadoptionsnapshot). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[DevopsAdoptionSnapshotEdge]`](#devopsadoptionsnapshotedge) | A list of edges. | | `nodes` | [`[DevopsAdoptionSnapshot]`](#devopsadoptionsnapshot) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `DevopsAdoptionSnapshotEdge` The edge type for [`DevopsAdoptionSnapshot`](#devopsadoptionsnapshot). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`DevopsAdoptionSnapshot`](#devopsadoptionsnapshot) | The item at the end of the edge. | #### `DiscussionConnection` The connection type for [`Discussion`](#discussion). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[DiscussionEdge]`](#discussionedge) | A list of edges. | | `nodes` | [`[Discussion]`](#discussion) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `DiscussionEdge` The edge type for [`Discussion`](#discussion). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`Discussion`](#discussion) | The item at the end of the edge. | #### `EgressNodeConnection` The connection type for [`EgressNode`](#egressnode). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[EgressNodeEdge]`](#egressnodeedge) | A list of edges. | | `nodes` | [`[EgressNode]`](#egressnode) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `EgressNodeEdge` The edge type for [`EgressNode`](#egressnode). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`EgressNode`](#egressnode) | The item at the end of the edge. | #### `EmailConnection` The connection type for [`Email`](#email). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[EmailEdge]`](#emailedge) | A list of edges. | | `nodes` | [`[Email]`](#email) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `EmailEdge` The edge type for [`Email`](#email). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`Email`](#email) | The item at the end of the edge. | #### `EnvironmentConnection` The connection type for [`Environment`](#environment). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[EnvironmentEdge]`](#environmentedge) | A list of edges. | | `nodes` | [`[Environment]`](#environment) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `EnvironmentEdge` The edge type for [`Environment`](#environment). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`Environment`](#environment) | The item at the end of the edge. | #### `EpicBoardConnection` The connection type for [`EpicBoard`](#epicboard). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[EpicBoardEdge]`](#epicboardedge) | A list of edges. | | `nodes` | [`[EpicBoard]`](#epicboard) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `EpicBoardEdge` The edge type for [`EpicBoard`](#epicboard). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`EpicBoard`](#epicboard) | The item at the end of the edge. | #### `EpicConnection` The connection type for [`Epic`](#epic). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `count` | [`Int!`](#int) | Total count of collection. | | `edges` | [`[EpicEdge]`](#epicedge) | A list of edges. | | `nodes` | [`[Epic]`](#epic) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `EpicEdge` The edge type for [`Epic`](#epic). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`Epic`](#epic) | The item at the end of the edge. | #### `EpicIssueConnection` The connection type for [`EpicIssue`](#epicissue). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `count` | [`Int!`](#int) | Total count of collection. | | `edges` | [`[EpicIssueEdge]`](#epicissueedge) | A list of edges. | | `nodes` | [`[EpicIssue]`](#epicissue) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | | `weight` | [`Int!`](#int) | Total weight of issues collection. | #### `EpicIssueEdge` The edge type for [`EpicIssue`](#epicissue). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`EpicIssue`](#epicissue) | The item at the end of the edge. | #### `EpicListConnection` The connection type for [`EpicList`](#epiclist). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[EpicListEdge]`](#epiclistedge) | A list of edges. | | `nodes` | [`[EpicList]`](#epiclist) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `EpicListEdge` The edge type for [`EpicList`](#epiclist). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`EpicList`](#epiclist) | The item at the end of the edge. | #### `EscalationPolicyTypeConnection` The connection type for [`EscalationPolicyType`](#escalationpolicytype). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[EscalationPolicyTypeEdge]`](#escalationpolicytypeedge) | A list of edges. | | `nodes` | [`[EscalationPolicyType]`](#escalationpolicytype) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `EscalationPolicyTypeEdge` The edge type for [`EscalationPolicyType`](#escalationpolicytype). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`EscalationPolicyType`](#escalationpolicytype) | The item at the end of the edge. | #### `EventConnection` The connection type for [`Event`](#event). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[EventEdge]`](#eventedge) | A list of edges. | | `nodes` | [`[Event]`](#event) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `EventEdge` The edge type for [`Event`](#event). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`Event`](#event) | The item at the end of the edge. | #### `ExternalAuditEventDestinationConnection` The connection type for [`ExternalAuditEventDestination`](#externalauditeventdestination). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[ExternalAuditEventDestinationEdge]`](#externalauditeventdestinationedge) | A list of edges. | | `nodes` | [`[ExternalAuditEventDestination]`](#externalauditeventdestination) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `ExternalAuditEventDestinationEdge` The edge type for [`ExternalAuditEventDestination`](#externalauditeventdestination). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`ExternalAuditEventDestination`](#externalauditeventdestination) | The item at the end of the edge. | #### `ExternalStatusCheckConnection` The connection type for [`ExternalStatusCheck`](#externalstatuscheck). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[ExternalStatusCheckEdge]`](#externalstatuscheckedge) | A list of edges. | | `nodes` | [`[ExternalStatusCheck]`](#externalstatuscheck) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `ExternalStatusCheckEdge` The edge type for [`ExternalStatusCheck`](#externalstatuscheck). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`ExternalStatusCheck`](#externalstatuscheck) | The item at the end of the edge. | #### `GroupConnection` The connection type for [`Group`](#group). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[GroupEdge]`](#groupedge) | A list of edges. | | `nodes` | [`[Group]`](#group) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `GroupEdge` The edge type for [`Group`](#group). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`Group`](#group) | The item at the end of the edge. | #### `GroupMemberConnection` The connection type for [`GroupMember`](#groupmember). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[GroupMemberEdge]`](#groupmemberedge) | A list of edges. | | `nodes` | [`[GroupMember]`](#groupmember) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `GroupMemberEdge` The edge type for [`GroupMember`](#groupmember). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`GroupMember`](#groupmember) | The item at the end of the edge. | #### `GroupWikiRepositoryRegistryConnection` The connection type for [`GroupWikiRepositoryRegistry`](#groupwikirepositoryregistry). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[GroupWikiRepositoryRegistryEdge]`](#groupwikirepositoryregistryedge) | A list of edges. | | `nodes` | [`[GroupWikiRepositoryRegistry]`](#groupwikirepositoryregistry) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `GroupWikiRepositoryRegistryEdge` The edge type for [`GroupWikiRepositoryRegistry`](#groupwikirepositoryregistry). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`GroupWikiRepositoryRegistry`](#groupwikirepositoryregistry) | The item at the end of the edge. | #### `IncidentManagementOncallRotationConnection` The connection type for [`IncidentManagementOncallRotation`](#incidentmanagementoncallrotation). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[IncidentManagementOncallRotationEdge]`](#incidentmanagementoncallrotationedge) | A list of edges. | | `nodes` | [`[IncidentManagementOncallRotation]`](#incidentmanagementoncallrotation) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `IncidentManagementOncallRotationEdge` The edge type for [`IncidentManagementOncallRotation`](#incidentmanagementoncallrotation). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`IncidentManagementOncallRotation`](#incidentmanagementoncallrotation) | The item at the end of the edge. | #### `IncidentManagementOncallScheduleConnection` The connection type for [`IncidentManagementOncallSchedule`](#incidentmanagementoncallschedule). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[IncidentManagementOncallScheduleEdge]`](#incidentmanagementoncallscheduleedge) | A list of edges. | | `nodes` | [`[IncidentManagementOncallSchedule]`](#incidentmanagementoncallschedule) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `IncidentManagementOncallScheduleEdge` The edge type for [`IncidentManagementOncallSchedule`](#incidentmanagementoncallschedule). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`IncidentManagementOncallSchedule`](#incidentmanagementoncallschedule) | The item at the end of the edge. | #### `IncidentManagementOncallShiftConnection` The connection type for [`IncidentManagementOncallShift`](#incidentmanagementoncallshift). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[IncidentManagementOncallShiftEdge]`](#incidentmanagementoncallshiftedge) | A list of edges. | | `nodes` | [`[IncidentManagementOncallShift]`](#incidentmanagementoncallshift) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `IncidentManagementOncallShiftEdge` The edge type for [`IncidentManagementOncallShift`](#incidentmanagementoncallshift). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`IncidentManagementOncallShift`](#incidentmanagementoncallshift) | The item at the end of the edge. | #### `InheritedCiVariableConnection` The connection type for [`InheritedCiVariable`](#inheritedcivariable). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[InheritedCiVariableEdge]`](#inheritedcivariableedge) | A list of edges. | | `nodes` | [`[InheritedCiVariable]`](#inheritedcivariable) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `InheritedCiVariableEdge` The edge type for [`InheritedCiVariable`](#inheritedcivariable). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`InheritedCiVariable`](#inheritedcivariable) | The item at the end of the edge. | #### `InstanceExternalAuditEventDestinationConnection` The connection type for [`InstanceExternalAuditEventDestination`](#instanceexternalauditeventdestination). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[InstanceExternalAuditEventDestinationEdge]`](#instanceexternalauditeventdestinationedge) | A list of edges. | | `nodes` | [`[InstanceExternalAuditEventDestination]`](#instanceexternalauditeventdestination) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `InstanceExternalAuditEventDestinationEdge` The edge type for [`InstanceExternalAuditEventDestination`](#instanceexternalauditeventdestination). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`InstanceExternalAuditEventDestination`](#instanceexternalauditeventdestination) | The item at the end of the edge. | #### `IssuableResourceLinkConnection` The connection type for [`IssuableResourceLink`](#issuableresourcelink). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[IssuableResourceLinkEdge]`](#issuableresourcelinkedge) | A list of edges. | | `nodes` | [`[IssuableResourceLink]`](#issuableresourcelink) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `IssuableResourceLinkEdge` The edge type for [`IssuableResourceLink`](#issuableresourcelink). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`IssuableResourceLink`](#issuableresourcelink) | The item at the end of the edge. | #### `IssueConnection` The connection type for [`Issue`](#issue). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `count` | [`Int!`](#int) | Total count of collection. | | `edges` | [`[IssueEdge]`](#issueedge) | A list of edges. | | `nodes` | [`[Issue]`](#issue) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | | `weight` | [`Int!`](#int) | Total weight of issues collection. | #### `IssueEdge` The edge type for [`Issue`](#issue). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`Issue`](#issue) | The item at the end of the edge. | #### `IterationCadenceConnection` The connection type for [`IterationCadence`](#iterationcadence). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[IterationCadenceEdge]`](#iterationcadenceedge) | A list of edges. | | `nodes` | [`[IterationCadence]`](#iterationcadence) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `IterationCadenceEdge` The edge type for [`IterationCadence`](#iterationcadence). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`IterationCadence`](#iterationcadence) | The item at the end of the edge. | #### `IterationConnection` The connection type for [`Iteration`](#iteration). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[IterationEdge]`](#iterationedge) | A list of edges. | | `nodes` | [`[Iteration]`](#iteration) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `IterationEdge` The edge type for [`Iteration`](#iteration). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`Iteration`](#iteration) | The item at the end of the edge. | #### `JiraImportConnection` The connection type for [`JiraImport`](#jiraimport). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[JiraImportEdge]`](#jiraimportedge) | A list of edges. | | `nodes` | [`[JiraImport]`](#jiraimport) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `JiraImportEdge` The edge type for [`JiraImport`](#jiraimport). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`JiraImport`](#jiraimport) | The item at the end of the edge. | #### `JiraProjectConnection` The connection type for [`JiraProject`](#jiraproject). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[JiraProjectEdge]`](#jiraprojectedge) | A list of edges. | | `nodes` | [`[JiraProject]`](#jiraproject) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `JiraProjectEdge` The edge type for [`JiraProject`](#jiraproject). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`JiraProject`](#jiraproject) | The item at the end of the edge. | #### `JobArtifactRegistryConnection` The connection type for [`JobArtifactRegistry`](#jobartifactregistry). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[JobArtifactRegistryEdge]`](#jobartifactregistryedge) | A list of edges. | | `nodes` | [`[JobArtifactRegistry]`](#jobartifactregistry) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `JobArtifactRegistryEdge` The edge type for [`JobArtifactRegistry`](#jobartifactregistry). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`JobArtifactRegistry`](#jobartifactregistry) | The item at the end of the edge. | #### `JobNeedUnionConnection` The connection type for [`JobNeedUnion`](#jobneedunion). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[JobNeedUnionEdge]`](#jobneedunionedge) | A list of edges. | | `nodes` | [`[JobNeedUnion]`](#jobneedunion) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `JobNeedUnionEdge` The edge type for [`JobNeedUnion`](#jobneedunion). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`JobNeedUnion`](#jobneedunion) | The item at the end of the edge. | #### `LabelConnection` The connection type for [`Label`](#label). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `count` | [`Int!`](#int) | Total count of collection. | | `edges` | [`[LabelEdge]`](#labeledge) | A list of edges. | | `nodes` | [`[Label]`](#label) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `LabelEdge` The edge type for [`Label`](#label). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`Label`](#label) | The item at the end of the edge. | #### `LfsObjectRegistryConnection` The connection type for [`LfsObjectRegistry`](#lfsobjectregistry). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[LfsObjectRegistryEdge]`](#lfsobjectregistryedge) | A list of edges. | | `nodes` | [`[LfsObjectRegistry]`](#lfsobjectregistry) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `LfsObjectRegistryEdge` The edge type for [`LfsObjectRegistry`](#lfsobjectregistry). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`LfsObjectRegistry`](#lfsobjectregistry) | The item at the end of the edge. | #### `LicenseHistoryEntryConnection` The connection type for [`LicenseHistoryEntry`](#licensehistoryentry). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[LicenseHistoryEntryEdge]`](#licensehistoryentryedge) | A list of edges. | | `nodes` | [`[LicenseHistoryEntry]`](#licensehistoryentry) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `LicenseHistoryEntryEdge` The edge type for [`LicenseHistoryEntry`](#licensehistoryentry). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`LicenseHistoryEntry`](#licensehistoryentry) | The item at the end of the edge. | #### `MemberInterfaceConnection` The connection type for [`MemberInterface`](#memberinterface). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[MemberInterfaceEdge]`](#memberinterfaceedge) | A list of edges. | | `nodes` | [`[MemberInterface]`](#memberinterface) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `MemberInterfaceEdge` The edge type for [`MemberInterface`](#memberinterface). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`MemberInterface`](#memberinterface) | The item at the end of the edge. | #### `MergeAccessLevelConnection` The connection type for [`MergeAccessLevel`](#mergeaccesslevel). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[MergeAccessLevelEdge]`](#mergeaccessleveledge) | A list of edges. | | `nodes` | [`[MergeAccessLevel]`](#mergeaccesslevel) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `MergeAccessLevelEdge` The edge type for [`MergeAccessLevel`](#mergeaccesslevel). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`MergeAccessLevel`](#mergeaccesslevel) | The item at the end of the edge. | #### `MergeRequestAssigneeConnection` The connection type for [`MergeRequestAssignee`](#mergerequestassignee). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[MergeRequestAssigneeEdge]`](#mergerequestassigneeedge) | A list of edges. | | `nodes` | [`[MergeRequestAssignee]`](#mergerequestassignee) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `MergeRequestAssigneeEdge` The edge type for [`MergeRequestAssignee`](#mergerequestassignee). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`MergeRequestAssignee`](#mergerequestassignee) | The item at the end of the edge. | #### `MergeRequestConnection` The connection type for [`MergeRequest`](#mergerequest). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `count` | [`Int!`](#int) | Total count of collection. | | `edges` | [`[MergeRequestEdge]`](#mergerequestedge) | A list of edges. | | `nodes` | [`[MergeRequest]`](#mergerequest) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | | `totalTimeToMerge` | [`Float`](#float) | Total sum of time to merge, in seconds, for the collection of merge requests. | #### `MergeRequestDiffRegistryConnection` The connection type for [`MergeRequestDiffRegistry`](#mergerequestdiffregistry). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[MergeRequestDiffRegistryEdge]`](#mergerequestdiffregistryedge) | A list of edges. | | `nodes` | [`[MergeRequestDiffRegistry]`](#mergerequestdiffregistry) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `MergeRequestDiffRegistryEdge` The edge type for [`MergeRequestDiffRegistry`](#mergerequestdiffregistry). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`MergeRequestDiffRegistry`](#mergerequestdiffregistry) | The item at the end of the edge. | #### `MergeRequestEdge` The edge type for [`MergeRequest`](#mergerequest). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`MergeRequest`](#mergerequest) | The item at the end of the edge. | #### `MergeRequestParticipantConnection` The connection type for [`MergeRequestParticipant`](#mergerequestparticipant). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[MergeRequestParticipantEdge]`](#mergerequestparticipantedge) | A list of edges. | | `nodes` | [`[MergeRequestParticipant]`](#mergerequestparticipant) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `MergeRequestParticipantEdge` The edge type for [`MergeRequestParticipant`](#mergerequestparticipant). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`MergeRequestParticipant`](#mergerequestparticipant) | The item at the end of the edge. | #### `MergeRequestReviewerConnection` The connection type for [`MergeRequestReviewer`](#mergerequestreviewer). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[MergeRequestReviewerEdge]`](#mergerequestrevieweredge) | A list of edges. | | `nodes` | [`[MergeRequestReviewer]`](#mergerequestreviewer) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `MergeRequestReviewerEdge` The edge type for [`MergeRequestReviewer`](#mergerequestreviewer). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`MergeRequestReviewer`](#mergerequestreviewer) | The item at the end of the edge. | #### `MetricsDashboardAnnotationConnection` The connection type for [`MetricsDashboardAnnotation`](#metricsdashboardannotation). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[MetricsDashboardAnnotationEdge]`](#metricsdashboardannotationedge) | A list of edges. | | `nodes` | [`[MetricsDashboardAnnotation]`](#metricsdashboardannotation) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `MetricsDashboardAnnotationEdge` The edge type for [`MetricsDashboardAnnotation`](#metricsdashboardannotation). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`MetricsDashboardAnnotation`](#metricsdashboardannotation) | The item at the end of the edge. | #### `MilestoneConnection` The connection type for [`Milestone`](#milestone). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[MilestoneEdge]`](#milestoneedge) | A list of edges. | | `nodes` | [`[Milestone]`](#milestone) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `MilestoneEdge` The edge type for [`Milestone`](#milestone). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`Milestone`](#milestone) | The item at the end of the edge. | #### `NamespaceCommitEmailConnection` The connection type for [`NamespaceCommitEmail`](#namespacecommitemail). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[NamespaceCommitEmailEdge]`](#namespacecommitemailedge) | A list of edges. | | `nodes` | [`[NamespaceCommitEmail]`](#namespacecommitemail) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `NamespaceCommitEmailEdge` The edge type for [`NamespaceCommitEmail`](#namespacecommitemail). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`NamespaceCommitEmail`](#namespacecommitemail) | The item at the end of the edge. | #### `NamespaceConnection` The connection type for [`Namespace`](#namespace). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[NamespaceEdge]`](#namespaceedge) | A list of edges. | | `nodes` | [`[Namespace]`](#namespace) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `NamespaceEdge` The edge type for [`Namespace`](#namespace). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`Namespace`](#namespace) | The item at the end of the edge. | #### `NestedEnvironmentConnection` The connection type for [`NestedEnvironment`](#nestedenvironment). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[NestedEnvironmentEdge]`](#nestedenvironmentedge) | A list of edges. | | `nodes` | [`[NestedEnvironment]`](#nestedenvironment) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `NestedEnvironmentEdge` The edge type for [`NestedEnvironment`](#nestedenvironment). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`NestedEnvironment`](#nestedenvironment) | The item at the end of the edge. | #### `NetworkPolicyConnection` The connection type for [`NetworkPolicy`](#networkpolicy). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[NetworkPolicyEdge]`](#networkpolicyedge) | A list of edges. | | `nodes` | [`[NetworkPolicy]`](#networkpolicy) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `NetworkPolicyEdge` The edge type for [`NetworkPolicy`](#networkpolicy). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`NetworkPolicy`](#networkpolicy) | The item at the end of the edge. | #### `NoteConnection` The connection type for [`Note`](#note). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[NoteEdge]`](#noteedge) | A list of edges. | | `nodes` | [`[Note]`](#note) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `NoteEdge` The edge type for [`Note`](#note). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`Note`](#note) | The item at the end of the edge. | #### `OncallParticipantTypeConnection` The connection type for [`OncallParticipantType`](#oncallparticipanttype). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[OncallParticipantTypeEdge]`](#oncallparticipanttypeedge) | A list of edges. | | `nodes` | [`[OncallParticipantType]`](#oncallparticipanttype) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `OncallParticipantTypeEdge` The edge type for [`OncallParticipantType`](#oncallparticipanttype). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`OncallParticipantType`](#oncallparticipanttype) | The item at the end of the edge. | #### `PackageBaseConnection` The connection type for [`PackageBase`](#packagebase). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `count` | [`Int!`](#int) | Total count of collection. | | `edges` | [`[PackageBaseEdge]`](#packagebaseedge) | A list of edges. | | `nodes` | [`[PackageBase]`](#packagebase) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `PackageBaseEdge` The edge type for [`PackageBase`](#packagebase). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`PackageBase`](#packagebase) | The item at the end of the edge. | #### `PackageConnection` The connection type for [`Package`](#package). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `count` | [`Int!`](#int) | Total count of collection. | | `edges` | [`[PackageEdge]`](#packageedge) | A list of edges. | | `nodes` | [`[Package]`](#package) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `PackageDependencyLinkConnection` The connection type for [`PackageDependencyLink`](#packagedependencylink). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[PackageDependencyLinkEdge]`](#packagedependencylinkedge) | A list of edges. | | `nodes` | [`[PackageDependencyLink]`](#packagedependencylink) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `PackageDependencyLinkEdge` The edge type for [`PackageDependencyLink`](#packagedependencylink). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`PackageDependencyLink`](#packagedependencylink) | The item at the end of the edge. | #### `PackageEdge` The edge type for [`Package`](#package). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`Package`](#package) | The item at the end of the edge. | #### `PackageFileConnection` The connection type for [`PackageFile`](#packagefile). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[PackageFileEdge]`](#packagefileedge) | A list of edges. | | `nodes` | [`[PackageFile]`](#packagefile) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `PackageFileEdge` The edge type for [`PackageFile`](#packagefile). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`PackageFile`](#packagefile) | The item at the end of the edge. | #### `PackageFileRegistryConnection` The connection type for [`PackageFileRegistry`](#packagefileregistry). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[PackageFileRegistryEdge]`](#packagefileregistryedge) | A list of edges. | | `nodes` | [`[PackageFileRegistry]`](#packagefileregistry) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `PackageFileRegistryEdge` The edge type for [`PackageFileRegistry`](#packagefileregistry). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`PackageFileRegistry`](#packagefileregistry) | The item at the end of the edge. | #### `PackageTagConnection` The connection type for [`PackageTag`](#packagetag). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[PackageTagEdge]`](#packagetagedge) | A list of edges. | | `nodes` | [`[PackageTag]`](#packagetag) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `PackageTagEdge` The edge type for [`PackageTag`](#packagetag). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`PackageTag`](#packagetag) | The item at the end of the edge. | #### `PagesDeploymentRegistryConnection` The connection type for [`PagesDeploymentRegistry`](#pagesdeploymentregistry). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[PagesDeploymentRegistryEdge]`](#pagesdeploymentregistryedge) | A list of edges. | | `nodes` | [`[PagesDeploymentRegistry]`](#pagesdeploymentregistry) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `PagesDeploymentRegistryEdge` The edge type for [`PagesDeploymentRegistry`](#pagesdeploymentregistry). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`PagesDeploymentRegistry`](#pagesdeploymentregistry) | The item at the end of the edge. | #### `PathLockConnection` The connection type for [`PathLock`](#pathlock). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[PathLockEdge]`](#pathlockedge) | A list of edges. | | `nodes` | [`[PathLock]`](#pathlock) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `PathLockEdge` The edge type for [`PathLock`](#pathlock). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`PathLock`](#pathlock) | The item at the end of the edge. | #### `PipelineArtifactRegistryConnection` The connection type for [`PipelineArtifactRegistry`](#pipelineartifactregistry). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[PipelineArtifactRegistryEdge]`](#pipelineartifactregistryedge) | A list of edges. | | `nodes` | [`[PipelineArtifactRegistry]`](#pipelineartifactregistry) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `PipelineArtifactRegistryEdge` The edge type for [`PipelineArtifactRegistry`](#pipelineartifactregistry). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`PipelineArtifactRegistry`](#pipelineartifactregistry) | The item at the end of the edge. | #### `PipelineConnection` The connection type for [`Pipeline`](#pipeline). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `count` | [`Int!`](#int) | Total count of collection. | | `edges` | [`[PipelineEdge]`](#pipelineedge) | A list of edges. | | `nodes` | [`[Pipeline]`](#pipeline) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `PipelineEdge` The edge type for [`Pipeline`](#pipeline). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`Pipeline`](#pipeline) | The item at the end of the edge. | #### `PipelineScheduleConnection` The connection type for [`PipelineSchedule`](#pipelineschedule). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `count` | [`Int!`](#int) | Total count of collection. | | `edges` | [`[PipelineScheduleEdge]`](#pipelinescheduleedge) | A list of edges. | | `nodes` | [`[PipelineSchedule]`](#pipelineschedule) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `PipelineScheduleEdge` The edge type for [`PipelineSchedule`](#pipelineschedule). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`PipelineSchedule`](#pipelineschedule) | The item at the end of the edge. | #### `PipelineScheduleVariableConnection` The connection type for [`PipelineScheduleVariable`](#pipelineschedulevariable). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[PipelineScheduleVariableEdge]`](#pipelineschedulevariableedge) | A list of edges. | | `nodes` | [`[PipelineScheduleVariable]`](#pipelineschedulevariable) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `PipelineScheduleVariableEdge` The edge type for [`PipelineScheduleVariable`](#pipelineschedulevariable). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`PipelineScheduleVariable`](#pipelineschedulevariable) | The item at the end of the edge. | #### `PipelineSecurityReportFindingConnection` The connection type for [`PipelineSecurityReportFinding`](#pipelinesecurityreportfinding). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[PipelineSecurityReportFindingEdge]`](#pipelinesecurityreportfindingedge) | A list of edges. | | `nodes` | [`[PipelineSecurityReportFinding]`](#pipelinesecurityreportfinding) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `PipelineSecurityReportFindingEdge` The edge type for [`PipelineSecurityReportFinding`](#pipelinesecurityreportfinding). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`PipelineSecurityReportFinding`](#pipelinesecurityreportfinding) | The item at the end of the edge. | #### `ProductAnalyticsDashboardConnection` The connection type for [`ProductAnalyticsDashboard`](#productanalyticsdashboard). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[ProductAnalyticsDashboardEdge]`](#productanalyticsdashboardedge) | A list of edges. | | `nodes` | [`[ProductAnalyticsDashboard]`](#productanalyticsdashboard) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `ProductAnalyticsDashboardEdge` The edge type for [`ProductAnalyticsDashboard`](#productanalyticsdashboard). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`ProductAnalyticsDashboard`](#productanalyticsdashboard) | The item at the end of the edge. | #### `ProductAnalyticsDashboardPanelConnection` The connection type for [`ProductAnalyticsDashboardPanel`](#productanalyticsdashboardpanel). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[ProductAnalyticsDashboardPanelEdge]`](#productanalyticsdashboardpaneledge) | A list of edges. | | `nodes` | [`[ProductAnalyticsDashboardPanel]`](#productanalyticsdashboardpanel) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `ProductAnalyticsDashboardPanelEdge` The edge type for [`ProductAnalyticsDashboardPanel`](#productanalyticsdashboardpanel). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`ProductAnalyticsDashboardPanel`](#productanalyticsdashboardpanel) | The item at the end of the edge. | #### `ProjectConnection` The connection type for [`Project`](#project). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `count` | [`Int!`](#int) | Total count of collection. | | `edges` | [`[ProjectEdge]`](#projectedge) | A list of edges. | | `nodes` | [`[Project]`](#project) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `ProjectEdge` The edge type for [`Project`](#project). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`Project`](#project) | The item at the end of the edge. | #### `ProjectMemberConnection` The connection type for [`ProjectMember`](#projectmember). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[ProjectMemberEdge]`](#projectmemberedge) | A list of edges. | | `nodes` | [`[ProjectMember]`](#projectmember) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `ProjectMemberEdge` The edge type for [`ProjectMember`](#projectmember). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`ProjectMember`](#projectmember) | The item at the end of the edge. | #### `ProjectWikiRepositoryRegistryConnection` The connection type for [`ProjectWikiRepositoryRegistry`](#projectwikirepositoryregistry). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[ProjectWikiRepositoryRegistryEdge]`](#projectwikirepositoryregistryedge) | A list of edges. | | `nodes` | [`[ProjectWikiRepositoryRegistry]`](#projectwikirepositoryregistry) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `ProjectWikiRepositoryRegistryEdge` The edge type for [`ProjectWikiRepositoryRegistry`](#projectwikirepositoryregistry). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`ProjectWikiRepositoryRegistry`](#projectwikirepositoryregistry) | The item at the end of the edge. | #### `ProtectedEnvironmentApprovalRuleConnection` The connection type for [`ProtectedEnvironmentApprovalRule`](#protectedenvironmentapprovalrule). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[ProtectedEnvironmentApprovalRuleEdge]`](#protectedenvironmentapprovalruleedge) | A list of edges. | | `nodes` | [`[ProtectedEnvironmentApprovalRule]`](#protectedenvironmentapprovalrule) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `ProtectedEnvironmentApprovalRuleEdge` The edge type for [`ProtectedEnvironmentApprovalRule`](#protectedenvironmentapprovalrule). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`ProtectedEnvironmentApprovalRule`](#protectedenvironmentapprovalrule) | The item at the end of the edge. | #### `ProtectedEnvironmentConnection` The connection type for [`ProtectedEnvironment`](#protectedenvironment). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[ProtectedEnvironmentEdge]`](#protectedenvironmentedge) | A list of edges. | | `nodes` | [`[ProtectedEnvironment]`](#protectedenvironment) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `ProtectedEnvironmentDeployAccessLevelConnection` The connection type for [`ProtectedEnvironmentDeployAccessLevel`](#protectedenvironmentdeployaccesslevel). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[ProtectedEnvironmentDeployAccessLevelEdge]`](#protectedenvironmentdeployaccessleveledge) | A list of edges. | | `nodes` | [`[ProtectedEnvironmentDeployAccessLevel]`](#protectedenvironmentdeployaccesslevel) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `ProtectedEnvironmentDeployAccessLevelEdge` The edge type for [`ProtectedEnvironmentDeployAccessLevel`](#protectedenvironmentdeployaccesslevel). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`ProtectedEnvironmentDeployAccessLevel`](#protectedenvironmentdeployaccesslevel) | The item at the end of the edge. | #### `ProtectedEnvironmentEdge` The edge type for [`ProtectedEnvironment`](#protectedenvironment). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`ProtectedEnvironment`](#protectedenvironment) | The item at the end of the edge. | #### `PushAccessLevelConnection` The connection type for [`PushAccessLevel`](#pushaccesslevel). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[PushAccessLevelEdge]`](#pushaccessleveledge) | A list of edges. | | `nodes` | [`[PushAccessLevel]`](#pushaccesslevel) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `PushAccessLevelEdge` The edge type for [`PushAccessLevel`](#pushaccesslevel). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`PushAccessLevel`](#pushaccesslevel) | The item at the end of the edge. | #### `ReleaseAssetLinkConnection` The connection type for [`ReleaseAssetLink`](#releaseassetlink). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[ReleaseAssetLinkEdge]`](#releaseassetlinkedge) | A list of edges. | | `nodes` | [`[ReleaseAssetLink]`](#releaseassetlink) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `ReleaseAssetLinkEdge` The edge type for [`ReleaseAssetLink`](#releaseassetlink). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`ReleaseAssetLink`](#releaseassetlink) | The item at the end of the edge. | #### `ReleaseConnection` The connection type for [`Release`](#release). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `count` | [`Int!`](#int) | Total count of collection. | | `edges` | [`[ReleaseEdge]`](#releaseedge) | A list of edges. | | `nodes` | [`[Release]`](#release) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `ReleaseEdge` The edge type for [`Release`](#release). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`Release`](#release) | The item at the end of the edge. | #### `ReleaseEvidenceConnection` The connection type for [`ReleaseEvidence`](#releaseevidence). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[ReleaseEvidenceEdge]`](#releaseevidenceedge) | A list of edges. | | `nodes` | [`[ReleaseEvidence]`](#releaseevidence) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `ReleaseEvidenceEdge` The edge type for [`ReleaseEvidence`](#releaseevidence). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`ReleaseEvidence`](#releaseevidence) | The item at the end of the edge. | #### `ReleaseSourceConnection` The connection type for [`ReleaseSource`](#releasesource). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[ReleaseSourceEdge]`](#releasesourceedge) | A list of edges. | | `nodes` | [`[ReleaseSource]`](#releasesource) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `ReleaseSourceEdge` The edge type for [`ReleaseSource`](#releasesource). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`ReleaseSource`](#releasesource) | The item at the end of the edge. | #### `RepositoryBlobConnection` The connection type for [`RepositoryBlob`](#repositoryblob). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[RepositoryBlobEdge]`](#repositoryblobedge) | A list of edges. | | `nodes` | [`[RepositoryBlob]`](#repositoryblob) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `RepositoryBlobEdge` The edge type for [`RepositoryBlob`](#repositoryblob). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`RepositoryBlob`](#repositoryblob) | The item at the end of the edge. | #### `RequirementConnection` The connection type for [`Requirement`](#requirement). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[RequirementEdge]`](#requirementedge) | A list of edges. | | `nodes` | [`[Requirement]`](#requirement) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `RequirementEdge` The edge type for [`Requirement`](#requirement). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`Requirement`](#requirement) | The item at the end of the edge. | #### `RunnerArchitectureConnection` The connection type for [`RunnerArchitecture`](#runnerarchitecture). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[RunnerArchitectureEdge]`](#runnerarchitectureedge) | A list of edges. | | `nodes` | [`[RunnerArchitecture]`](#runnerarchitecture) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `RunnerArchitectureEdge` The edge type for [`RunnerArchitecture`](#runnerarchitecture). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`RunnerArchitecture`](#runnerarchitecture) | The item at the end of the edge. | #### `RunnerPlatformConnection` The connection type for [`RunnerPlatform`](#runnerplatform). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[RunnerPlatformEdge]`](#runnerplatformedge) | A list of edges. | | `nodes` | [`[RunnerPlatform]`](#runnerplatform) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `RunnerPlatformEdge` The edge type for [`RunnerPlatform`](#runnerplatform). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`RunnerPlatform`](#runnerplatform) | The item at the end of the edge. | #### `SastCiConfigurationAnalyzersEntityConnection` The connection type for [`SastCiConfigurationAnalyzersEntity`](#sastciconfigurationanalyzersentity). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[SastCiConfigurationAnalyzersEntityEdge]`](#sastciconfigurationanalyzersentityedge) | A list of edges. | | `nodes` | [`[SastCiConfigurationAnalyzersEntity]`](#sastciconfigurationanalyzersentity) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `SastCiConfigurationAnalyzersEntityEdge` The edge type for [`SastCiConfigurationAnalyzersEntity`](#sastciconfigurationanalyzersentity). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`SastCiConfigurationAnalyzersEntity`](#sastciconfigurationanalyzersentity) | The item at the end of the edge. | #### `SastCiConfigurationEntityConnection` The connection type for [`SastCiConfigurationEntity`](#sastciconfigurationentity). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[SastCiConfigurationEntityEdge]`](#sastciconfigurationentityedge) | A list of edges. | | `nodes` | [`[SastCiConfigurationEntity]`](#sastciconfigurationentity) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `SastCiConfigurationEntityEdge` The edge type for [`SastCiConfigurationEntity`](#sastciconfigurationentity). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`SastCiConfigurationEntity`](#sastciconfigurationentity) | The item at the end of the edge. | #### `SastCiConfigurationOptionsEntityConnection` The connection type for [`SastCiConfigurationOptionsEntity`](#sastciconfigurationoptionsentity). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[SastCiConfigurationOptionsEntityEdge]`](#sastciconfigurationoptionsentityedge) | A list of edges. | | `nodes` | [`[SastCiConfigurationOptionsEntity]`](#sastciconfigurationoptionsentity) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `SastCiConfigurationOptionsEntityEdge` The edge type for [`SastCiConfigurationOptionsEntity`](#sastciconfigurationoptionsentity). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`SastCiConfigurationOptionsEntity`](#sastciconfigurationoptionsentity) | The item at the end of the edge. | #### `SavedReplyConnection` The connection type for [`SavedReply`](#savedreply). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `count` | [`Int!`](#int) | Total count of collection. | | `edges` | [`[SavedReplyEdge]`](#savedreplyedge) | A list of edges. | | `nodes` | [`[SavedReply]`](#savedreply) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `SavedReplyEdge` The edge type for [`SavedReply`](#savedreply). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`SavedReply`](#savedreply) | The item at the end of the edge. | #### `ScanConnection` The connection type for [`Scan`](#scan). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[ScanEdge]`](#scanedge) | A list of edges. | | `nodes` | [`[Scan]`](#scan) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `ScanEdge` The edge type for [`Scan`](#scan). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`Scan`](#scan) | The item at the end of the edge. | #### `ScanExecutionPolicyConnection` The connection type for [`ScanExecutionPolicy`](#scanexecutionpolicy). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[ScanExecutionPolicyEdge]`](#scanexecutionpolicyedge) | A list of edges. | | `nodes` | [`[ScanExecutionPolicy]`](#scanexecutionpolicy) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `ScanExecutionPolicyEdge` The edge type for [`ScanExecutionPolicy`](#scanexecutionpolicy). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`ScanExecutionPolicy`](#scanexecutionpolicy) | The item at the end of the edge. | #### `ScanResultPolicyConnection` The connection type for [`ScanResultPolicy`](#scanresultpolicy). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[ScanResultPolicyEdge]`](#scanresultpolicyedge) | A list of edges. | | `nodes` | [`[ScanResultPolicy]`](#scanresultpolicy) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `ScanResultPolicyEdge` The edge type for [`ScanResultPolicy`](#scanresultpolicy). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`ScanResultPolicy`](#scanresultpolicy) | The item at the end of the edge. | #### `ScannedResourceConnection` The connection type for [`ScannedResource`](#scannedresource). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[ScannedResourceEdge]`](#scannedresourceedge) | A list of edges. | | `nodes` | [`[ScannedResource]`](#scannedresource) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `ScannedResourceEdge` The edge type for [`ScannedResource`](#scannedresource). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`ScannedResource`](#scannedresource) | The item at the end of the edge. | #### `SentryErrorConnection` The connection type for [`SentryError`](#sentryerror). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[SentryErrorEdge]`](#sentryerroredge) | A list of edges. | | `nodes` | [`[SentryError]`](#sentryerror) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `SentryErrorEdge` The edge type for [`SentryError`](#sentryerror). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`SentryError`](#sentryerror) | The item at the end of the edge. | #### `ServiceConnection` The connection type for [`Service`](#service). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[ServiceEdge]`](#serviceedge) | A list of edges. | | `nodes` | [`[Service]`](#service) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `ServiceEdge` The edge type for [`Service`](#service). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`Service`](#service) | The item at the end of the edge. | #### `SnippetBlobConnection` The connection type for [`SnippetBlob`](#snippetblob). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[SnippetBlobEdge]`](#snippetblobedge) | A list of edges. | | `hasUnretrievableBlobs` | [`Boolean!`](#boolean) | Indicates if the snippet has unretrievable blobs. | | `nodes` | [`[SnippetBlob]`](#snippetblob) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `SnippetBlobEdge` The edge type for [`SnippetBlob`](#snippetblob). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`SnippetBlob`](#snippetblob) | The item at the end of the edge. | #### `SnippetConnection` The connection type for [`Snippet`](#snippet). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[SnippetEdge]`](#snippetedge) | A list of edges. | | `nodes` | [`[Snippet]`](#snippet) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `SnippetEdge` The edge type for [`Snippet`](#snippet). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`Snippet`](#snippet) | The item at the end of the edge. | #### `SnippetRepositoryRegistryConnection` The connection type for [`SnippetRepositoryRegistry`](#snippetrepositoryregistry). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[SnippetRepositoryRegistryEdge]`](#snippetrepositoryregistryedge) | A list of edges. | | `nodes` | [`[SnippetRepositoryRegistry]`](#snippetrepositoryregistry) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `SnippetRepositoryRegistryEdge` The edge type for [`SnippetRepositoryRegistry`](#snippetrepositoryregistry). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`SnippetRepositoryRegistry`](#snippetrepositoryregistry) | The item at the end of the edge. | #### `SubmoduleConnection` The connection type for [`Submodule`](#submodule). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[SubmoduleEdge]`](#submoduleedge) | A list of edges. | | `nodes` | [`[Submodule]`](#submodule) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `SubmoduleEdge` The edge type for [`Submodule`](#submodule). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`Submodule`](#submodule) | The item at the end of the edge. | #### `SubscriptionFutureEntryConnection` The connection type for [`SubscriptionFutureEntry`](#subscriptionfutureentry). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[SubscriptionFutureEntryEdge]`](#subscriptionfutureentryedge) | A list of edges. | | `nodes` | [`[SubscriptionFutureEntry]`](#subscriptionfutureentry) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `SubscriptionFutureEntryEdge` The edge type for [`SubscriptionFutureEntry`](#subscriptionfutureentry). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`SubscriptionFutureEntry`](#subscriptionfutureentry) | The item at the end of the edge. | #### `TerraformStateConnection` The connection type for [`TerraformState`](#terraformstate). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `count` | [`Int!`](#int) | Total count of collection. | | `edges` | [`[TerraformStateEdge]`](#terraformstateedge) | A list of edges. | | `nodes` | [`[TerraformState]`](#terraformstate) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `TerraformStateEdge` The edge type for [`TerraformState`](#terraformstate). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`TerraformState`](#terraformstate) | The item at the end of the edge. | #### `TerraformStateVersionRegistryConnection` The connection type for [`TerraformStateVersionRegistry`](#terraformstateversionregistry). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[TerraformStateVersionRegistryEdge]`](#terraformstateversionregistryedge) | A list of edges. | | `nodes` | [`[TerraformStateVersionRegistry]`](#terraformstateversionregistry) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `TerraformStateVersionRegistryEdge` The edge type for [`TerraformStateVersionRegistry`](#terraformstateversionregistry). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`TerraformStateVersionRegistry`](#terraformstateversionregistry) | The item at the end of the edge. | #### `TestCaseConnection` The connection type for [`TestCase`](#testcase). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `count` | [`Int!`](#int) | Total count of collection. | | `edges` | [`[TestCaseEdge]`](#testcaseedge) | A list of edges. | | `nodes` | [`[TestCase]`](#testcase) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `TestCaseEdge` The edge type for [`TestCase`](#testcase). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`TestCase`](#testcase) | The item at the end of the edge. | #### `TestReportConnection` The connection type for [`TestReport`](#testreport). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[TestReportEdge]`](#testreportedge) | A list of edges. | | `nodes` | [`[TestReport]`](#testreport) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `TestReportEdge` The edge type for [`TestReport`](#testreport). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`TestReport`](#testreport) | The item at the end of the edge. | #### `TestSuiteSummaryConnection` The connection type for [`TestSuiteSummary`](#testsuitesummary). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `count` | [`Int!`](#int) | Total count of collection. | | `edges` | [`[TestSuiteSummaryEdge]`](#testsuitesummaryedge) | A list of edges. | | `nodes` | [`[TestSuiteSummary]`](#testsuitesummary) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `TestSuiteSummaryEdge` The edge type for [`TestSuiteSummary`](#testsuitesummary). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`TestSuiteSummary`](#testsuitesummary) | The item at the end of the edge. | #### `TimeTrackingTimelogCategoryConnection` The connection type for [`TimeTrackingTimelogCategory`](#timetrackingtimelogcategory). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[TimeTrackingTimelogCategoryEdge]`](#timetrackingtimelogcategoryedge) | A list of edges. | | `nodes` | [`[TimeTrackingTimelogCategory]`](#timetrackingtimelogcategory) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `TimeTrackingTimelogCategoryEdge` The edge type for [`TimeTrackingTimelogCategory`](#timetrackingtimelogcategory). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`TimeTrackingTimelogCategory`](#timetrackingtimelogcategory) | The item at the end of the edge. | #### `TimelineEventTagTypeConnection` The connection type for [`TimelineEventTagType`](#timelineeventtagtype). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[TimelineEventTagTypeEdge]`](#timelineeventtagtypeedge) | A list of edges. | | `nodes` | [`[TimelineEventTagType]`](#timelineeventtagtype) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `TimelineEventTagTypeEdge` The edge type for [`TimelineEventTagType`](#timelineeventtagtype). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`TimelineEventTagType`](#timelineeventtagtype) | The item at the end of the edge. | #### `TimelineEventTypeConnection` The connection type for [`TimelineEventType`](#timelineeventtype). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[TimelineEventTypeEdge]`](#timelineeventtypeedge) | A list of edges. | | `nodes` | [`[TimelineEventType]`](#timelineeventtype) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `TimelineEventTypeEdge` The edge type for [`TimelineEventType`](#timelineeventtype). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`TimelineEventType`](#timelineeventtype) | The item at the end of the edge. | #### `TimelogConnection` The connection type for [`Timelog`](#timelog). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `count` | [`Int!`](#int) | Total count of collection. | | `edges` | [`[TimelogEdge]`](#timelogedge) | A list of edges. | | `nodes` | [`[Timelog]`](#timelog) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | | `totalSpentTime` | [`BigInt!`](#bigint) | Total time spent in seconds. | #### `TimelogEdge` The edge type for [`Timelog`](#timelog). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`Timelog`](#timelog) | The item at the end of the edge. | #### `TodoConnection` The connection type for [`Todo`](#todo). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[TodoEdge]`](#todoedge) | A list of edges. | | `nodes` | [`[Todo]`](#todo) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `TodoEdge` The edge type for [`Todo`](#todo). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`Todo`](#todo) | The item at the end of the edge. | #### `TopicConnection` The connection type for [`Topic`](#topic). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[TopicEdge]`](#topicedge) | A list of edges. | | `nodes` | [`[Topic]`](#topic) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `TopicEdge` The edge type for [`Topic`](#topic). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`Topic`](#topic) | The item at the end of the edge. | #### `TreeConnection` The connection type for [`Tree`](#tree). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[TreeEdge]`](#treeedge) | A list of edges. | | `nodes` | [`[Tree]`](#tree) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `TreeEdge` The edge type for [`Tree`](#tree). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`Tree`](#tree) | The item at the end of the edge. | #### `TreeEntryConnection` The connection type for [`TreeEntry`](#treeentry). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[TreeEntryEdge]`](#treeentryedge) | A list of edges. | | `nodes` | [`[TreeEntry]`](#treeentry) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `TreeEntryEdge` The edge type for [`TreeEntry`](#treeentry). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`TreeEntry`](#treeentry) | The item at the end of the edge. | #### `UnprotectAccessLevelConnection` The connection type for [`UnprotectAccessLevel`](#unprotectaccesslevel). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[UnprotectAccessLevelEdge]`](#unprotectaccessleveledge) | A list of edges. | | `nodes` | [`[UnprotectAccessLevel]`](#unprotectaccesslevel) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `UnprotectAccessLevelEdge` The edge type for [`UnprotectAccessLevel`](#unprotectaccesslevel). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`UnprotectAccessLevel`](#unprotectaccesslevel) | The item at the end of the edge. | #### `UploadRegistryConnection` The connection type for [`UploadRegistry`](#uploadregistry). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[UploadRegistryEdge]`](#uploadregistryedge) | A list of edges. | | `nodes` | [`[UploadRegistry]`](#uploadregistry) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `UploadRegistryEdge` The edge type for [`UploadRegistry`](#uploadregistry). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`UploadRegistry`](#uploadregistry) | The item at the end of the edge. | #### `UsageTrendsMeasurementConnection` The connection type for [`UsageTrendsMeasurement`](#usagetrendsmeasurement). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[UsageTrendsMeasurementEdge]`](#usagetrendsmeasurementedge) | A list of edges. | | `nodes` | [`[UsageTrendsMeasurement]`](#usagetrendsmeasurement) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `UsageTrendsMeasurementEdge` The edge type for [`UsageTrendsMeasurement`](#usagetrendsmeasurement). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`UsageTrendsMeasurement`](#usagetrendsmeasurement) | The item at the end of the edge. | #### `UserAchievementConnection` The connection type for [`UserAchievement`](#userachievement). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[UserAchievementEdge]`](#userachievementedge) | A list of edges. | | `nodes` | [`[UserAchievement]`](#userachievement) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `UserAchievementEdge` The edge type for [`UserAchievement`](#userachievement). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`UserAchievement`](#userachievement) | The item at the end of the edge. | #### `UserCalloutConnection` The connection type for [`UserCallout`](#usercallout). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[UserCalloutEdge]`](#usercalloutedge) | A list of edges. | | `nodes` | [`[UserCallout]`](#usercallout) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `UserCalloutEdge` The edge type for [`UserCallout`](#usercallout). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`UserCallout`](#usercallout) | The item at the end of the edge. | #### `UserCoreConnection` The connection type for [`UserCore`](#usercore). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[UserCoreEdge]`](#usercoreedge) | A list of edges. | | `nodes` | [`[UserCore]`](#usercore) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `UserCoreEdge` The edge type for [`UserCore`](#usercore). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`UserCore`](#usercore) | The item at the end of the edge. | #### `VulnerabilitiesCountByDayConnection` The connection type for [`VulnerabilitiesCountByDay`](#vulnerabilitiescountbyday). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[VulnerabilitiesCountByDayEdge]`](#vulnerabilitiescountbydayedge) | A list of edges. | | `nodes` | [`[VulnerabilitiesCountByDay]`](#vulnerabilitiescountbyday) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `VulnerabilitiesCountByDayEdge` The edge type for [`VulnerabilitiesCountByDay`](#vulnerabilitiescountbyday). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`VulnerabilitiesCountByDay`](#vulnerabilitiescountbyday) | The item at the end of the edge. | #### `VulnerabilityConnection` The connection type for [`Vulnerability`](#vulnerability). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[VulnerabilityEdge]`](#vulnerabilityedge) | A list of edges. | | `nodes` | [`[Vulnerability]`](#vulnerability) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `VulnerabilityContainerImageConnection` The connection type for [`VulnerabilityContainerImage`](#vulnerabilitycontainerimage). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[VulnerabilityContainerImageEdge]`](#vulnerabilitycontainerimageedge) | A list of edges. | | `nodes` | [`[VulnerabilityContainerImage]`](#vulnerabilitycontainerimage) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `VulnerabilityContainerImageEdge` The edge type for [`VulnerabilityContainerImage`](#vulnerabilitycontainerimage). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`VulnerabilityContainerImage`](#vulnerabilitycontainerimage) | The item at the end of the edge. | #### `VulnerabilityEdge` The edge type for [`Vulnerability`](#vulnerability). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`Vulnerability`](#vulnerability) | The item at the end of the edge. | #### `VulnerabilityExternalIssueLinkConnection` The connection type for [`VulnerabilityExternalIssueLink`](#vulnerabilityexternalissuelink). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[VulnerabilityExternalIssueLinkEdge]`](#vulnerabilityexternalissuelinkedge) | A list of edges. | | `nodes` | [`[VulnerabilityExternalIssueLink]`](#vulnerabilityexternalissuelink) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `VulnerabilityExternalIssueLinkEdge` The edge type for [`VulnerabilityExternalIssueLink`](#vulnerabilityexternalissuelink). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`VulnerabilityExternalIssueLink`](#vulnerabilityexternalissuelink) | The item at the end of the edge. | #### `VulnerabilityIssueLinkConnection` The connection type for [`VulnerabilityIssueLink`](#vulnerabilityissuelink). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[VulnerabilityIssueLinkEdge]`](#vulnerabilityissuelinkedge) | A list of edges. | | `nodes` | [`[VulnerabilityIssueLink]`](#vulnerabilityissuelink) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `VulnerabilityIssueLinkEdge` The edge type for [`VulnerabilityIssueLink`](#vulnerabilityissuelink). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`VulnerabilityIssueLink`](#vulnerabilityissuelink) | The item at the end of the edge. | #### `VulnerabilityScannerConnection` The connection type for [`VulnerabilityScanner`](#vulnerabilityscanner). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[VulnerabilityScannerEdge]`](#vulnerabilityscanneredge) | A list of edges. | | `nodes` | [`[VulnerabilityScanner]`](#vulnerabilityscanner) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `VulnerabilityScannerEdge` The edge type for [`VulnerabilityScanner`](#vulnerabilityscanner). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`VulnerabilityScanner`](#vulnerabilityscanner) | The item at the end of the edge. | #### `VulnerabilityStateTransitionTypeConnection` The connection type for [`VulnerabilityStateTransitionType`](#vulnerabilitystatetransitiontype). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[VulnerabilityStateTransitionTypeEdge]`](#vulnerabilitystatetransitiontypeedge) | A list of edges. | | `nodes` | [`[VulnerabilityStateTransitionType]`](#vulnerabilitystatetransitiontype) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `VulnerabilityStateTransitionTypeEdge` The edge type for [`VulnerabilityStateTransitionType`](#vulnerabilitystatetransitiontype). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`VulnerabilityStateTransitionType`](#vulnerabilitystatetransitiontype) | The item at the end of the edge. | #### `WorkItemConnection` The connection type for [`WorkItem`](#workitem). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[WorkItemEdge]`](#workitemedge) | A list of edges. | | `nodes` | [`[WorkItem]`](#workitem) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `WorkItemEdge` The edge type for [`WorkItem`](#workitem). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`WorkItem`](#workitem) | The item at the end of the edge. | #### `WorkItemTypeConnection` The connection type for [`WorkItemType`](#workitemtype). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[WorkItemTypeEdge]`](#workitemtypeedge) | A list of edges. | | `nodes` | [`[WorkItemType]`](#workitemtype) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `WorkItemTypeEdge` The edge type for [`WorkItemType`](#workitemtype). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`WorkItemType`](#workitemtype) | The item at the end of the edge. | #### `WorkspaceConnection` The connection type for [`Workspace`](#workspace). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `edges` | [`[WorkspaceEdge]`](#workspaceedge) | A list of edges. | | `nodes` | [`[Workspace]`](#workspace) | A list of nodes. | | `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. | #### `WorkspaceEdge` The edge type for [`Workspace`](#workspace). ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cursor` | [`String!`](#string) | A cursor for use in pagination. | | `node` | [`Workspace`](#workspace) | The item at the end of the edge. | ## Object types Object types represent the resources that the GitLab GraphQL API can return. They contain _fields_. Each field has its own type, which will either be one of the basic GraphQL [scalar types](https://graphql.org/learn/schema/#scalar-types) (e.g.: `String` or `Boolean`) or other object types. Fields may have arguments. Fields with arguments are exactly like top-level queries, and are listed beneath the table of fields for each object type. For more information, see [Object Types and Fields](https://graphql.org/learn/schema/#object-types-and-fields) on `graphql.org`. ### `AccessLevel` Represents the access level of a relationship between a User and object that it is related to. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `integerValue` | [`Int`](#int) | Integer representation of access level. | | `stringValue` | [`AccessLevelEnum`](#accesslevelenum) | String representation of access level. | ### `AccessLevelGroup` Representation of a GitLab group. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `avatarUrl` | [`String`](#string) | Avatar URL of the group. | | `id` | [`ID!`](#id) | ID of the group. | | `name` | [`String!`](#string) | Name of the group. | | `parent` | [`AccessLevelGroup`](#accesslevelgroup) | Parent group. | | `webUrl` | [`String!`](#string) | Web URL of the group. | ### `AccessLevelUser` Representation of a GitLab user. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `avatarUrl` | [`String`](#string) | URL of the user's avatar. | | `id` | [`ID!`](#id) | ID of the user. | | `name` | [`String!`](#string) | Human-readable name of the user. Returns `****` if the user is a project bot and the requester does not have permission to view the project. | | `publicEmail` | [`String`](#string) | User's public email. | | `username` | [`String!`](#string) | Username of the user. Unique within this instance of GitLab. | | `webPath` | [`String!`](#string) | Web path of the user. | | `webUrl` | [`String!`](#string) | Web URL of the user. | ### `Achievement` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `avatarUrl` | [`String`](#string) | URL to avatar of the achievement. | | `createdAt` | [`Time!`](#time) | Timestamp the achievement was created. | | `description` | [`String`](#string) | Description or notes for the achievement. | | `id` | [`AchievementsAchievementID!`](#achievementsachievementid) | ID of the achievement. | | `name` | [`String!`](#string) | Name of the achievement. | | `namespace` | [`Namespace`](#namespace) | Namespace of the achievement. | | `updatedAt` | [`Time!`](#time) | Timestamp the achievement was last updated. | | `userAchievements` **{warning-solid}** | [`UserAchievementConnection`](#userachievementconnection) | **Introduced** in 15.10. This feature is an Experiment. It can be changed or removed at any time. Recipients for the achievement. | ### `AgentConfiguration` Configuration details for an Agent. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `agentName` | [`String`](#string) | Name of the agent. | ### `AgentMetadata` Information about a connected Agent. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `commit` | [`String`](#string) | Agent version commit. | | `podName` | [`String`](#string) | Name of the pod running the Agent. | | `podNamespace` | [`String`](#string) | Namespace of the pod running the Agent. | | `version` | [`String`](#string) | Agent version tag. | ### `AiMessageType` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `content` | [`String`](#string) | Content of the message or null if loading. | | `errors` | [`[String!]!`](#string) | Errors that occurred while asynchronously fetching an AI(assistant) response. | | `id` | [`ID`](#id) | Global ID of the message. | | `isFetching` | [`Boolean`](#boolean) | Whether the content is still being fetched, for a message with the assistant role. | | `role` | [`String!`](#string) | Role of the message (system, user, assistant). | ### `AiResponse` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `errors` | [`[String!]`](#string) | Errors return by AI API as response. | | `requestId` | [`String`](#string) | ID of the original request. | | `responseBody` | [`String`](#string) | Response body from AI API. | ### `AlertManagementAlert` Describes an alert from the project's Alert Management. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `assignees` | [`UserCoreConnection`](#usercoreconnection) | Assignees of the alert. (see [Connections](#connections)) | | `commenters` | [`UserCoreConnection!`](#usercoreconnection) | All commenters on this noteable. (see [Connections](#connections)) | | `createdAt` | [`Time`](#time) | Timestamp the alert was created. | | `description` | [`String`](#string) | Description of the alert. | | `details` | [`JSON`](#json) | Alert details. | | `detailsUrl` | [`String!`](#string) | URL of the alert detail page. | | `discussions` | [`DiscussionConnection!`](#discussionconnection) | All discussions on this noteable. (see [Connections](#connections)) | | `endedAt` | [`Time`](#time) | Timestamp the alert ended. | | `environment` | [`Environment`](#environment) | Environment for the alert. | | `eventCount` | [`Int`](#int) | Number of events of this alert. | | `hosts` | [`[String!]`](#string) | List of hosts the alert came from. | | `id` | [`ID!`](#id) | ID of the alert. | | `iid` | [`ID!`](#id) | Internal ID of the alert. | | `issue` | [`Issue`](#issue) | Issue attached to the alert. | | `issueIid` **{warning-solid}** | [`ID`](#id) | **Deprecated** in 13.10. Use issue field. | | `metricsDashboardUrl` **{warning-solid}** | [`String`](#string) | **Deprecated** in 16.0. Returns no data. Underlying feature was removed in 16.0. | | `monitoringTool` | [`String`](#string) | Monitoring tool the alert came from. | | `notes` | [`NoteConnection!`](#noteconnection) | All notes on this noteable. (see [Connections](#connections)) | | `prometheusAlert` | [`PrometheusAlert`](#prometheusalert) | Alert condition for Prometheus. | | `runbook` | [`String`](#string) | Runbook for the alert as defined in alert details. | | `service` | [`String`](#string) | Service the alert came from. | | `severity` | [`AlertManagementSeverity`](#alertmanagementseverity) | Severity of the alert. | | `startedAt` | [`Time`](#time) | Timestamp the alert was raised. | | `status` | [`AlertManagementStatus`](#alertmanagementstatus) | Status of the alert. | | `title` | [`String`](#string) | Title of the alert. | | `updatedAt` | [`Time`](#time) | Timestamp the alert was last updated. | | `webUrl` | [`String!`](#string) | URL of the alert. | #### Fields with arguments ##### `AlertManagementAlert.todos` To-do items of the current user for the alert. Returns [`TodoConnection`](#todoconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `action` | [`[TodoActionEnum!]`](#todoactionenum) | Action to be filtered. | | `authorId` | [`[ID!]`](#id) | ID of an author. | | `groupId` | [`[ID!]`](#id) | ID of a group. | | `projectId` | [`[ID!]`](#id) | ID of a project. | | `state` | [`[TodoStateEnum!]`](#todostateenum) | State of the todo. | | `type` | [`[TodoTargetEnum!]`](#todotargetenum) | Type of the todo. | ### `AlertManagementAlertStatusCountsType` Represents total number of alerts for the represented categories. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `acknowledged` | [`Int`](#int) | Number of alerts with status ACKNOWLEDGED for the project. | | `all` | [`Int`](#int) | Total number of alerts for the project. | | `ignored` | [`Int`](#int) | Number of alerts with status IGNORED for the project. | | `open` | [`Int`](#int) | Number of alerts with status TRIGGERED or ACKNOWLEDGED for the project. | | `resolved` | [`Int`](#int) | Number of alerts with status RESOLVED for the project. | | `triggered` | [`Int`](#int) | Number of alerts with status TRIGGERED for the project. | ### `AlertManagementHttpIntegration` An endpoint and credentials used to accept alerts for a project. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `active` | [`Boolean`](#boolean) | Whether the endpoint is currently accepting alerts. | | `apiUrl` | [`String`](#string) | URL at which Prometheus metrics can be queried to populate the metrics dashboard. | | `id` | [`ID!`](#id) | ID of the integration. | | `name` | [`String`](#string) | Name of the integration. | | `payloadAlertFields` | [`[AlertManagementPayloadAlertField!]`](#alertmanagementpayloadalertfield) | Extract alert fields from payload example for custom mapping. | | `payloadAttributeMappings` | [`[AlertManagementPayloadAlertMappingField!]`](#alertmanagementpayloadalertmappingfield) | The custom mapping of GitLab alert attributes to fields from the payload_example. | | `payloadExample` | [`JsonString`](#jsonstring) | Example of an alert payload. | | `token` | [`String`](#string) | Token used to authenticate alert notification requests. | | `type` | [`AlertManagementIntegrationType!`](#alertmanagementintegrationtype) | Type of integration. | | `url` | [`String`](#string) | Endpoint which accepts alert notifications. | ### `AlertManagementPayloadAlertField` Parsed field from an alert used for custom mappings. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `label` | [`String`](#string) | Human-readable label of the payload path. | | `path` | [`[PayloadAlertFieldPathSegment!]`](#payloadalertfieldpathsegment) | Path to value inside payload JSON. | | `type` | [`AlertManagementPayloadAlertFieldType`](#alertmanagementpayloadalertfieldtype) | Type of the parsed value. | ### `AlertManagementPayloadAlertMappingField` Parsed field (with its name) from an alert used for custom mappings. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `fieldName` | [`AlertManagementPayloadAlertFieldName`](#alertmanagementpayloadalertfieldname) | GitLab alert field name. | | `label` | [`String`](#string) | Human-readable label of the payload path. | | `path` | [`[PayloadAlertFieldPathSegment!]`](#payloadalertfieldpathsegment) | Path to value inside payload JSON. | | `type` | [`AlertManagementPayloadAlertFieldType`](#alertmanagementpayloadalertfieldtype) | Type of the parsed value. | ### `AlertManagementPrometheusIntegration` An endpoint and credentials used to accept Prometheus alerts for a project. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `active` | [`Boolean`](#boolean) | Whether the endpoint is currently accepting alerts. | | `apiUrl` | [`String`](#string) | URL at which Prometheus metrics can be queried to populate the metrics dashboard. | | `id` | [`ID!`](#id) | ID of the integration. | | `name` | [`String`](#string) | Name of the integration. | | `token` | [`String`](#string) | Token used to authenticate alert notification requests. | | `type` | [`AlertManagementIntegrationType!`](#alertmanagementintegrationtype) | Type of integration. | | `url` | [`String`](#string) | Endpoint which accepts alert notifications. | ### `ApiFuzzingCiConfiguration` Data associated with configuring API fuzzing scans in GitLab CI. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `scanModes` | [`[ApiFuzzingScanMode!]`](#apifuzzingscanmode) | All available scan modes. | | `scanProfiles` | [`[ApiFuzzingScanProfile!]`](#apifuzzingscanprofile) | All default scan profiles. | ### `ApiFuzzingScanProfile` An API Fuzzing scan profile. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `description` | [`String`](#string) | Short description of the profile. | | `name` | [`String`](#string) | Unique name of the profile. | | `yaml` | [`String`](#string) | Syntax highlighted HTML representation of the YAML. | ### `ApprovalProjectRule` Describes a project approval rule regarding who can approve merge requests. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `approvalsRequired` | [`Int`](#int) | Number of required approvals. | | `eligibleApprovers` | [`UserCoreConnection`](#usercoreconnection) | List of users eligible to approve merge requests for this approval rule. (see [Connections](#connections)) | | `id` | [`GlobalID!`](#globalid) | ID of the rule. | | `name` | [`String`](#string) | Name of the rule. | | `type` | [`ApprovalRuleType`](#approvalruletype) | Type of the rule. | ### `ApprovalRule` Describes a rule for who can approve merge requests. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `allowMergeWhenInvalid` | [`Boolean`](#boolean) | Indicates if the rule can be ignored if it is invalid. | | `approvalsRequired` | [`Int`](#int) | Number of required approvals. | | `approved` | [`Boolean`](#boolean) | Indicates if the rule is satisfied. | | `approvedBy` | [`UserCoreConnection`](#usercoreconnection) | List of users defined in the rule that approved the merge request. (see [Connections](#connections)) | | `commentedBy` | [`UserCoreConnection`](#usercoreconnection) | List of users, defined in the rule, who commented on the merge request. (see [Connections](#connections)) | | `containsHiddenGroups` | [`Boolean`](#boolean) | Indicates if the rule contains approvers from a hidden group. | | `eligibleApprovers` | [`[UserCore!]`](#usercore) | List of all users eligible to approve the merge request (defined explicitly and from associated groups). | | `groups` | [`GroupConnection`](#groupconnection) | List of groups added as approvers for the rule. (see [Connections](#connections)) | | `id` | [`GlobalID!`](#globalid) | ID of the rule. | | `invalid` | [`Boolean`](#boolean) | Indicates if the rule is invalid and cannot be approved. | | `name` | [`String`](#string) | Name of the rule. | | `overridden` | [`Boolean`](#boolean) | Indicates if the rule was overridden for the merge request. | | `section` | [`String`](#string) | Named section of the Code Owners file that the rule applies to. | | `sourceRule` | [`ApprovalRule`](#approvalrule) | Source rule used to create the rule. | | `type` | [`ApprovalRuleType`](#approvalruletype) | Type of the rule. | | `users` | [`UserCoreConnection`](#usercoreconnection) | List of users added as approvers for the rule. (see [Connections](#connections)) | ### `AssetType` Represents a vulnerability asset type. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `name` | [`String!`](#string) | Name of the asset. | | `type` | [`String!`](#string) | Type of the asset. | | `url` | [`String!`](#string) | URL of the asset. | ### `AuditEventStreamingHeader` Represents a HTTP header key/value that belongs to an audit streaming destination. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`ID!`](#id) | ID of the header. | | `key` | [`String!`](#string) | Key of the header. | | `value` | [`String!`](#string) | Value of the header. | ### `AwardEmoji` An emoji awarded by a user. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `description` | [`String!`](#string) | Emoji description. | | `emoji` | [`String!`](#string) | Emoji as an icon. | | `name` | [`String!`](#string) | Emoji name. | | `unicode` | [`String!`](#string) | Emoji in Unicode. | | `unicodeVersion` | [`String!`](#string) | Unicode version for this emoji. | | `user` | [`UserCore!`](#usercore) | User who awarded the emoji. | ### `BaseService` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `active` | [`Boolean`](#boolean) | Indicates if the service is active. | | `serviceType` | [`ServiceType`](#servicetype) | Type of the service. | | `type` | [`String`](#string) | Class name of the service. | ### `Blob` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `flatPath` | [`String!`](#string) | Flat path of the entry. | | `id` | [`ID!`](#id) | ID of the entry. | | `lfsOid` | [`String`](#string) | LFS ID of the blob. | | `mode` | [`String`](#string) | Blob mode in numeric format. | | `name` | [`String!`](#string) | Name of the entry. | | `path` | [`String!`](#string) | Path of the entry. | | `sha` | [`String!`](#string) | Last commit SHA for the entry. | | `type` | [`EntryType!`](#entrytype) | Type of tree entry. | | `webPath` | [`String`](#string) | Web path of the blob. | | `webUrl` | [`String`](#string) | Web URL of the blob. | ### `BlobViewer` Represents how the blob content should be displayed. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `collapsed` | [`Boolean!`](#boolean) | Shows whether the blob should be displayed collapsed. | | `fileType` | [`String!`](#string) | Content file type. | | `loadAsync` | [`Boolean!`](#boolean) | Shows whether the blob content is loaded asynchronously. | | `loadingPartialName` | [`String!`](#string) | Loading partial name. | | `renderError` | [`String`](#string) | Error rendering the blob content. | | `tooLarge` | [`Boolean!`](#boolean) | Shows whether the blob is too large to be displayed. | | `type` | [`BlobViewersType!`](#blobviewerstype) | Type of blob viewer. | ### `Board` Represents a project or group issue board. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `assignee` | [`UserCore`](#usercore) | Board assignee. | | `createdAt` | [`Time!`](#time) | Timestamp of when the board was created. | | `hideBacklogList` | [`Boolean`](#boolean) | Whether or not backlog list is hidden. | | `hideClosedList` | [`Boolean`](#boolean) | Whether or not closed list is hidden. | | `id` | [`ID!`](#id) | ID (global ID) of the board. | | `iteration` | [`Iteration`](#iteration) | Board iteration. | | `iterationCadence` | [`IterationCadence`](#iterationcadence) | Board iteration cadence. | | `labels` | [`LabelConnection`](#labelconnection) | Labels of the board. (see [Connections](#connections)) | | `milestone` | [`Milestone`](#milestone) | Board milestone. | | `name` | [`String`](#string) | Name of the board. | | `updatedAt` | [`Time!`](#time) | Timestamp of when the board was last updated. | | `webPath` | [`String!`](#string) | Web path of the board. | | `webUrl` | [`String!`](#string) | Web URL of the board. | | `weight` | [`Int`](#int) | Weight of the board. | #### Fields with arguments ##### `Board.epics` Epics associated with board issues. Returns [`BoardEpicConnection`](#boardepicconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `issueFilters` | [`BoardIssueInput`](#boardissueinput) | Filters applied when selecting issues on the board. | ##### `Board.lists` Lists of the board. Returns [`BoardListConnection`](#boardlistconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`ListID`](#listid) | Find a list by its global ID. | | `issueFilters` | [`BoardIssueInput`](#boardissueinput) | Filters applied when getting issue metadata in the board list. | ### `BoardEpic` Represents an epic on an issue board. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `author` | [`UserCore!`](#usercore) | Author of the epic. | | `awardEmoji` | [`AwardEmojiConnection`](#awardemojiconnection) | List of award emojis associated with the epic. (see [Connections](#connections)) | | `blocked` | [`Boolean`](#boolean) | Indicates the epic is blocked. | | `blockedByCount` | [`Int`](#int) | Count of epics blocking this epic. | | `blockedByEpics` | [`EpicConnection`](#epicconnection) | Epics blocking this epic. (see [Connections](#connections)) | | `blockingCount` | [`Int`](#int) | Count of epics that this epic is blocking. | | `closedAt` | [`Time`](#time) | Timestamp of when the epic was closed. | | `color` | [`String`](#string) | Color of the epic. Returns `null` if `epic_color_highlight` feature flag is disabled. | | `commenters` | [`UserCoreConnection!`](#usercoreconnection) | All commenters on this noteable. (see [Connections](#connections)) | | `confidential` | [`Boolean`](#boolean) | Indicates if the epic is confidential. | | `createdAt` | [`Time`](#time) | Timestamp of when the epic was created. | | `defaultProjectForIssueCreation` | [`Project`](#project) | Default Project for issue creation. Based on the project the user created the last issue in. | | `descendantCounts` | [`EpicDescendantCount`](#epicdescendantcount) | Number of open and closed descendant epics and issues. | | `descendantWeightSum` | [`EpicDescendantWeights`](#epicdescendantweights) | Total weight of open and closed issues in the epic and its descendants. | | `description` | [`String`](#string) | Description of the epic. | | `descriptionHtml` | [`String`](#string) | GitLab Flavored Markdown rendering of `description`. | | `discussions` | [`DiscussionConnection!`](#discussionconnection) | All discussions on this noteable. (see [Connections](#connections)) | | `downvotes` | [`Int!`](#int) | Number of downvotes the epic has received. | | `dueDate` | [`Time`](#time) | Due date of the epic. | | `dueDateFixed` | [`Time`](#time) | Fixed due date of the epic. | | `dueDateFromInheritedSource` | [`Time`](#time) | Inherited due date of the epic from child epics or milestones. | | `dueDateFromMilestones` | [`Time`](#time) | Inherited due date of the epic from milestones. | | `dueDateIsFixed` | [`Boolean`](#boolean) | Indicates if the due date has been manually set. | | `events` | [`EventConnection`](#eventconnection) | List of events associated with the object. (see [Connections](#connections)) | | `group` | [`Group!`](#group) | Group to which the epic belongs. | | `hasChildren` | [`Boolean!`](#boolean) | Indicates if the epic has children. | | `hasIssues` | [`Boolean!`](#boolean) | Indicates if the epic has direct issues. | | `hasParent` | [`Boolean!`](#boolean) | Indicates if the epic has a parent epic. | | `healthStatus` | [`EpicHealthStatus`](#epichealthstatus) | Current health status of the epic. | | `id` | [`ID!`](#id) | ID of the epic. | | `iid` | [`ID!`](#id) | Internal ID of the epic. | | `issues` | [`EpicIssueConnection`](#epicissueconnection) | A list of issues associated with the epic. (see [Connections](#connections)) | | `labels` | [`LabelConnection`](#labelconnection) | Labels assigned to the epic. (see [Connections](#connections)) | | `notes` | [`NoteConnection!`](#noteconnection) | All notes on this noteable. (see [Connections](#connections)) | | `parent` | [`Epic`](#epic) | Parent epic of the epic. | | `participants` | [`UserCoreConnection`](#usercoreconnection) | List of participants for the epic. (see [Connections](#connections)) | | `relationPath` | [`String`](#string) | URI path of the epic-issue relationship. | | `relativePosition` | [`Int`](#int) | Relative position of the epic in the epic tree. | | `startDate` | [`Time`](#time) | Start date of the epic. | | `startDateFixed` | [`Time`](#time) | Fixed start date of the epic. | | `startDateFromInheritedSource` | [`Time`](#time) | Inherited start date of the epic from child epics or milestones. | | `startDateFromMilestones` | [`Time`](#time) | Inherited start date of the epic from milestones. | | `startDateIsFixed` | [`Boolean`](#boolean) | Indicates if the start date has been manually set. | | `state` | [`EpicState!`](#epicstate) | State of the epic. | | `subscribed` | [`Boolean!`](#boolean) | Indicates the currently logged in user is subscribed to the epic. | | `textColor` | [`String`](#string) | Text color generated for the epic. Returns `null` if `epic_color_highlight` feature flag is disabled. | | `title` | [`String`](#string) | Title of the epic. | | `titleHtml` | [`String`](#string) | GitLab Flavored Markdown rendering of `title`. | | `updatedAt` | [`Time`](#time) | Timestamp of when the epic was updated. | | `upvotes` | [`Int!`](#int) | Number of upvotes the epic has received. | | `userDiscussionsCount` | [`Int!`](#int) | Number of user discussions in the epic. | | `userNotesCount` | [`Int!`](#int) | Number of user notes of the epic. | | `userPermissions` | [`EpicPermissions!`](#epicpermissions) | Permissions for the current user on the resource. | | `userPreferences` | [`BoardEpicUserPreferences`](#boardepicuserpreferences) | User preferences for the epic on the issue board. | | `webPath` | [`String!`](#string) | Web path of the epic. | | `webUrl` | [`String!`](#string) | Web URL of the epic. | #### Fields with arguments ##### `BoardEpic.ancestors` Ancestors (parents) of the epic. Returns [`EpicConnection`](#epicconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `authorUsername` | [`String`](#string) | Filter epics by author. | | `confidential` | [`Boolean`](#boolean) | Filter epics by given confidentiality. | | `createdAfter` | [`Time`](#time) | Epics created after this date. | | `createdBefore` | [`Time`](#time) | Epics created before this date. | | `iid` | [`ID`](#id) | IID of the epic, e.g., "1". | | `iidStartsWith` | [`String`](#string) | Filter epics by IID for autocomplete. | | `iids` | [`[ID!]`](#id) | List of IIDs of epics, e.g., `[1, 2]`. | | `in` | [`[IssuableSearchableField!]`](#issuablesearchablefield) | Specify the fields to perform the search in. Defaults to `[TITLE, DESCRIPTION]`. Requires the `search` argument.'. | | `includeAncestorGroups` | [`Boolean`](#boolean) | Include epics from ancestor groups. | | `includeDescendantGroups` | [`Boolean`](#boolean) | Include epics from descendant groups. | | `labelName` | [`[String!]`](#string) | Filter epics by labels. | | `milestoneTitle` | [`String`](#string) | Filter epics by milestone title, computed from epic's issues. | | `myReactionEmoji` | [`String`](#string) | Filter by reaction emoji applied by the current user. | | `not` | [`NegatedEpicFilterInput`](#negatedepicfilterinput) | Negated epic arguments. | | `or` **{warning-solid}** | [`UnionedEpicFilterInput`](#unionedepicfilterinput) | **Introduced** in 15.9. This feature is an Experiment. It can be changed or removed at any time. List of arguments with inclusive OR. Ignored unless `or_issuable_queries` flag is enabled. | | `search` | [`String`](#string) | Search query for title or description. | | `sort` | [`EpicSort`](#epicsort) | List epics by sort order. | | `state` | [`EpicState`](#epicstate) | Filter epics by state. | | `timeframe` | [`Timeframe`](#timeframe) | List items overlapping the given timeframe. | | `topLevelHierarchyOnly` | [`Boolean`](#boolean) | Filter epics with a top-level hierarchy. | | `updatedAfter` | [`Time`](#time) | Epics updated after this date. | | `updatedBefore` | [`Time`](#time) | Epics updated before this date. | ##### `BoardEpic.children` Children (sub-epics) of the epic. Returns [`EpicConnection`](#epicconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `authorUsername` | [`String`](#string) | Filter epics by author. | | `confidential` | [`Boolean`](#boolean) | Filter epics by given confidentiality. | | `createdAfter` | [`Time`](#time) | Epics created after this date. | | `createdBefore` | [`Time`](#time) | Epics created before this date. | | `iid` | [`ID`](#id) | IID of the epic, e.g., "1". | | `iidStartsWith` | [`String`](#string) | Filter epics by IID for autocomplete. | | `iids` | [`[ID!]`](#id) | List of IIDs of epics, e.g., `[1, 2]`. | | `in` | [`[IssuableSearchableField!]`](#issuablesearchablefield) | Specify the fields to perform the search in. Defaults to `[TITLE, DESCRIPTION]`. Requires the `search` argument.'. | | `includeAncestorGroups` | [`Boolean`](#boolean) | Include child epics from ancestor groups. | | `includeDescendantGroups` | [`Boolean`](#boolean) | Include epics from descendant groups. | | `labelName` | [`[String!]`](#string) | Filter epics by labels. | | `milestoneTitle` | [`String`](#string) | Filter epics by milestone title, computed from epic's issues. | | `myReactionEmoji` | [`String`](#string) | Filter by reaction emoji applied by the current user. | | `not` | [`NegatedEpicFilterInput`](#negatedepicfilterinput) | Negated epic arguments. | | `or` **{warning-solid}** | [`UnionedEpicFilterInput`](#unionedepicfilterinput) | **Introduced** in 15.9. This feature is an Experiment. It can be changed or removed at any time. List of arguments with inclusive OR. Ignored unless `or_issuable_queries` flag is enabled. | | `search` | [`String`](#string) | Search query for title or description. | | `sort` | [`EpicSort`](#epicsort) | List epics by sort order. | | `state` | [`EpicState`](#epicstate) | Filter epics by state. | | `timeframe` | [`Timeframe`](#timeframe) | List items overlapping the given timeframe. | | `topLevelHierarchyOnly` | [`Boolean`](#boolean) | Filter epics with a top-level hierarchy. | | `updatedAfter` | [`Time`](#time) | Epics updated after this date. | | `updatedBefore` | [`Time`](#time) | Epics updated before this date. | ##### `BoardEpic.currentUserTodos` To-do items for the current user. Returns [`TodoConnection!`](#todoconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `state` | [`TodoStateEnum`](#todostateenum) | State of the to-do items. | ##### `BoardEpic.reference` Internal reference of the epic. Returned in shortened format by default. Returns [`String!`](#string). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `full` | [`Boolean`](#boolean) | Indicates if the reference should be returned in full. | ### `BoardEpicUserPreferences` Represents user preferences for a board epic. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `collapsed` | [`Boolean!`](#boolean) | Indicates epic should be displayed as collapsed. | ### `BoardList` Represents a list for an issue board. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `assignee` | [`UserCore`](#usercore) | Assignee in the list. | | `collapsed` | [`Boolean`](#boolean) | Indicates if the list is collapsed for this user. | | `id` | [`ID!`](#id) | ID (global ID) of the list. | | `issuesCount` | [`Int`](#int) | Count of issues in the list. | | `iteration` | [`Iteration`](#iteration) | Iteration of the list. | | `label` | [`Label`](#label) | Label of the list. | | `limitMetric` | [`ListLimitMetric`](#listlimitmetric) | Current limit metric for the list. | | `listType` | [`String!`](#string) | Type of the list. | | `maxIssueCount` | [`Int`](#int) | Maximum number of issues in the list. | | `maxIssueWeight` | [`Int`](#int) | Maximum weight of issues in the list. | | `milestone` | [`Milestone`](#milestone) | Milestone of the list. | | `position` | [`Int`](#int) | Position of list within the board. | | `title` | [`String!`](#string) | Title of the list. | | `totalWeight` | [`Int`](#int) | Total weight of all issues in the list. | #### Fields with arguments ##### `BoardList.issues` Board issues. Returns [`IssueConnection`](#issueconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `filters` | [`BoardIssueInput`](#boardissueinput) | Filters applied when selecting issues in the board list. | ### `Branch` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `commit` | [`Commit`](#commit) | Commit for the branch. | | `name` | [`String!`](#string) | Name of the branch. | ### `BranchProtection` Branch protection details for a branch rule. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `allowForcePush` | [`Boolean!`](#boolean) | Toggle force push to the branch for users with write access. | | `codeOwnerApprovalRequired` | [`Boolean!`](#boolean) | Enforce code owner approvals before allowing a merge. | | `mergeAccessLevels` | [`MergeAccessLevelConnection`](#mergeaccesslevelconnection) | Details about who can merge when this branch is the source branch. (see [Connections](#connections)) | | `pushAccessLevels` | [`PushAccessLevelConnection`](#pushaccesslevelconnection) | Details about who can push when this branch is the source branch. (see [Connections](#connections)) | | `unprotectAccessLevels` | [`UnprotectAccessLevelConnection`](#unprotectaccesslevelconnection) | Details about who can unprotect this branch. (see [Connections](#connections)) | ### `BranchRule` List of branch rules for a project, grouped by branch name. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `approvalRules` | [`ApprovalProjectRuleConnection`](#approvalprojectruleconnection) | Merge request approval rules configured for this branch rule. (see [Connections](#connections)) | | `branchProtection` | [`BranchProtection`](#branchprotection) | Branch protections configured for this branch rule. | | `createdAt` | [`Time!`](#time) | Timestamp of when the branch rule was created. | | `externalStatusChecks` | [`ExternalStatusCheckConnection`](#externalstatuscheckconnection) | External status checks configured for this branch rule. (see [Connections](#connections)) | | `isDefault` | [`Boolean!`](#boolean) | Check if this branch rule protects the project's default branch. | | `isProtected` | [`Boolean!`](#boolean) | Check if this branch rule protects access for the branch. | | `matchingBranchesCount` | [`Int!`](#int) | Number of existing branches that match this branch rule. | | `name` | [`String!`](#string) | Branch name, with wildcards, for the branch rules. | | `updatedAt` | [`Time!`](#time) | Timestamp of when the branch rule was last updated. | ### `BurnupChartDailyTotals` Represents the total number of issues and their weights for a particular day. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `completedCount` | [`Int!`](#int) | Number of closed issues as of this day. | | `completedWeight` | [`Int!`](#int) | Total weight of closed issues as of this day. | | `date` | [`ISO8601Date!`](#iso8601date) | Date for burnup totals. | | `scopeCount` | [`Int!`](#int) | Number of issues as of this day. | | `scopeWeight` | [`Int!`](#int) | Total weight of issues as of this day. | ### `CiApplicationSettings` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `keepLatestArtifact` | [`Boolean`](#boolean) | Whether to keep the latest jobs artifacts. | ### `CiBuildNeed` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`ID!`](#id) | ID of the BuildNeed. | | `name` | [`String`](#string) | Name of the job we need to complete. | ### `CiCatalogResource` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `description` **{warning-solid}** | [`String`](#string) | **Introduced** in 15.11. This feature is an Experiment. It can be changed or removed at any time. Description of the catalog resource. | | `icon` **{warning-solid}** | [`String`](#string) | **Introduced** in 15.11. This feature is an Experiment. It can be changed or removed at any time. Icon for the catalog resource. | | `id` **{warning-solid}** | [`ID!`](#id) | **Introduced** in 15.11. This feature is an Experiment. It can be changed or removed at any time. ID of the catalog resource. | | `name` **{warning-solid}** | [`String`](#string) | **Introduced** in 15.11. This feature is an Experiment. It can be changed or removed at any time. Name of the catalog resource. | ### `CiConfig` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `errors` | [`[String!]`](#string) | Linting errors. | | `includes` | [`[CiConfigInclude!]`](#ciconfiginclude) | List of included files. | | `mergedYaml` | [`String`](#string) | Merged CI configuration YAML. | | `stages` | [`CiConfigStageConnection`](#ciconfigstageconnection) | Stages of the pipeline. (see [Connections](#connections)) | | `status` | [`CiConfigStatus`](#ciconfigstatus) | Status of linting, can be either valid or invalid. | | `warnings` | [`[String!]`](#string) | Linting warnings. | ### `CiConfigGroup` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `jobs` | [`CiConfigJobConnection`](#ciconfigjobconnection) | Jobs in group. (see [Connections](#connections)) | | `name` | [`String`](#string) | Name of the job group. | | `size` | [`Int`](#int) | Size of the job group. | ### `CiConfigInclude` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `blob` | [`String`](#string) | File blob location. It can be masked if it contains masked variables, e.g., "https://gitlab.com/gitlab-org/gitlab/-/blob/e52d6d0246d7375291850e61f0abc101fbda9dc2/.gitlab/ci/build-images.gitlab-ci.yml". | | `contextProject` | [`String`](#string) | Current project scope, e.g., "gitlab-org/gitlab". | | `contextSha` | [`String`](#string) | Current sha scope. | | `extra` | [`JSON`](#json) | Extra information for the `include`, which can contain `job_name`, `project`, and `ref`. Values can be masked if they contain masked variables. | | `location` | [`String`](#string) | File location. It can be masked if it contains masked variables, e.g., ".gitlab/ci/build-images.gitlab-ci.yml". | | `raw` | [`String`](#string) | File raw location. It can be masked if it contains masked variables, e.g., "https://gitlab.com/gitlab-org/gitlab/-/raw/e52d6d0246d7375291850e61f0abc101fbda9dc2/.gitlab/ci/build-images.gitlab-ci.yml". | | `type` | [`CiConfigIncludeType`](#ciconfigincludetype) | Include type. | ### `CiConfigJob` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `afterScript` | [`[String!]`](#string) | Override a set of commands that are executed after the job. | | `allowFailure` | [`Boolean`](#boolean) | Allow job to fail. | | `beforeScript` | [`[String!]`](#string) | Override a set of commands that are executed before the job. | | `environment` | [`String`](#string) | Name of an environment to which the job deploys. | | `except` | [`CiConfigJobRestriction`](#ciconfigjobrestriction) | Limit when jobs are not created. | | `groupName` | [`String`](#string) | Name of the job group. | | `name` | [`String`](#string) | Name of the job. | | `needs` | [`CiConfigNeedConnection`](#ciconfigneedconnection) | Builds that must complete before the jobs run. (see [Connections](#connections)) | | `only` | [`CiConfigJobRestriction`](#ciconfigjobrestriction) | Jobs are created when these conditions do not apply. | | `script` | [`[String!]`](#string) | Shell script that is executed by a runner. | | `stage` | [`String`](#string) | Name of the job stage. | | `tags` | [`[String!]`](#string) | List of tags that are used to select a runner. | | `when` | [`String`](#string) | When to run the job. | ### `CiConfigJobRestriction` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `refs` | [`[String!]`](#string) | Git refs the job restriction applies to. | ### `CiConfigNeed` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `name` | [`String`](#string) | Name of the need. | ### `CiConfigStage` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `groups` | [`CiConfigGroupConnection`](#ciconfiggroupconnection) | Groups of jobs for the stage. (see [Connections](#connections)) | | `name` | [`String`](#string) | Name of the stage. | ### `CiConfigVariable` CI/CD config variables. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `description` | [`String`](#string) | Description for the CI/CD config variable. | | `key` | [`String`](#string) | Name of the variable. | | `value` | [`String`](#string) | Value of the variable. | | `valueOptions` | [`[String!]`](#string) | Value options for the variable. | ### `CiFreezePeriod` Represents a deployment freeze window of a project. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cronTimezone` | [`String`](#string) | Time zone for the cron fields, defaults to UTC if not provided. | | `endCron` | [`String!`](#string) | End of the freeze period in cron format. | | `endTime` | [`Time`](#time) | Timestamp (UTC) of when the current/next active period ends. | | `startCron` | [`String!`](#string) | Start of the freeze period in cron format. | | `startTime` | [`Time`](#time) | Timestamp (UTC) of when the current/next active period starts. | | `status` | [`CiFreezePeriodStatus!`](#cifreezeperiodstatus) | Freeze period status. | ### `CiGroup` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `detailedStatus` | [`DetailedStatus`](#detailedstatus) | Detailed status of the group. | | `id` | [`String!`](#string) | ID for a group. | | `jobs` | [`CiJobConnection`](#cijobconnection) | Jobs in group. (see [Connections](#connections)) | | `name` | [`String`](#string) | Name of the job group. | | `size` | [`Int`](#int) | Size of the group. | ### `CiGroupVariable` CI/CD variables for a group. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `environmentScope` | [`String`](#string) | Scope defining the environments that can use the variable. | | `id` | [`ID!`](#id) | ID of the variable. | | `key` | [`String`](#string) | Name of the variable. | | `masked` | [`Boolean`](#boolean) | Indicates whether the variable is masked. | | `protected` | [`Boolean`](#boolean) | Indicates whether the variable is protected. | | `raw` | [`Boolean`](#boolean) | Indicates whether the variable is raw. | | `value` | [`String`](#string) | Value of the variable. | | `variableType` | [`CiVariableType`](#civariabletype) | Type of the variable. | ### `CiInstanceVariable` CI/CD variables for a GitLab instance. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `environmentScope` **{warning-solid}** | [`String`](#string) | **Deprecated** in 15.3. No longer used, only available for GroupVariableType and ProjectVariableType. | | `id` | [`ID!`](#id) | ID of the variable. | | `key` | [`String`](#string) | Name of the variable. | | `masked` | [`Boolean`](#boolean) | Indicates whether the variable is masked. | | `protected` | [`Boolean`](#boolean) | Indicates whether the variable is protected. | | `raw` | [`Boolean`](#boolean) | Indicates whether the variable is raw. | | `value` | [`String`](#string) | Value of the variable. | | `variableType` | [`CiVariableType`](#civariabletype) | Type of the variable. | ### `CiJob` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `active` | [`Boolean!`](#boolean) | Indicates the job is active. | | `allowFailure` | [`Boolean!`](#boolean) | Whether the job is allowed to fail. | | `artifacts` | [`CiJobArtifactConnection`](#cijobartifactconnection) | Artifacts generated by the job. (see [Connections](#connections)) | | `browseArtifactsPath` | [`String`](#string) | URL for browsing the artifact's archive. | | `canPlayJob` | [`Boolean!`](#boolean) | Indicates whether the current user can play the job. | | `cancelable` | [`Boolean!`](#boolean) | Indicates the job can be canceled. | | `commitPath` | [`String`](#string) | Path to the commit that triggered the job. | | `coverage` | [`Float`](#float) | Coverage level of the job. | | `createdAt` | [`Time!`](#time) | When the job was created. | | `createdByTag` | [`Boolean!`](#boolean) | Whether the job was created by a tag. | | `detailedStatus` | [`DetailedStatus`](#detailedstatus) | Detailed status of the job. | | `downstreamPipeline` | [`Pipeline`](#pipeline) | Downstream pipeline for a bridge. | | `duration` | [`Int`](#int) | Duration of the job in seconds. | | `erasedAt` | [`Time`](#time) | When the job was erased. | | `failureMessage` | [`String`](#string) | Message on why the job failed. | | `finishedAt` | [`Time`](#time) | When a job has finished running. | | `id` | [`JobID`](#jobid) | ID of the job. | | `kind` | [`CiJobKind!`](#cijobkind) | Indicates the type of job. | | `manualJob` | [`Boolean`](#boolean) | Whether the job has a manual action. | | `manualVariables` | [`CiManualVariableConnection`](#cimanualvariableconnection) | Variables added to a manual job when the job is triggered. (see [Connections](#connections)) | | `name` | [`String`](#string) | Name of the job. | | `needs` | [`CiBuildNeedConnection`](#cibuildneedconnection) | References to builds that must complete before the jobs run. (see [Connections](#connections)) | | `pipeline` | [`Pipeline`](#pipeline) | Pipeline the job belongs to. | | `playPath` | [`String`](#string) | Play path of the job. | | `playable` | [`Boolean!`](#boolean) | Indicates the job can be played. | | `previousStageJobsOrNeeds` | [`JobNeedUnionConnection`](#jobneedunionconnection) | Jobs that must complete before the job runs. Returns `BuildNeed`, which is the needed jobs if the job uses the `needs` keyword, or the previous stage jobs otherwise. (see [Connections](#connections)) | | `project` | [`Project`](#project) | Project that the job belongs to. | | `queuedAt` | [`Time`](#time) | When the job was enqueued and marked as pending. | | `queuedDuration` | [`Duration`](#duration) | How long the job was enqueued before starting. | | `refName` | [`String`](#string) | Ref name of the job. | | `refPath` | [`String`](#string) | Path to the ref. | | `retried` | [`Boolean`](#boolean) | Indicates that the job has been retried. | | `retryable` | [`Boolean!`](#boolean) | Indicates the job can be retried. | | `runner` | [`CiRunner`](#cirunner) | Runner assigned to execute the job. | | `runnerManager` **{warning-solid}** | [`CiRunnerManager`](#cirunnermanager) | **Introduced** in 15.11. This feature is an Experiment. It can be changed or removed at any time. Runner manager assigned to the job. | | `scheduled` | [`Boolean!`](#boolean) | Indicates the job is scheduled. | | `scheduledAt` | [`Time`](#time) | Schedule for the build. | | `schedulingType` | [`String`](#string) | Type of job scheduling. Value is `dag` if the job uses the `needs` keyword, and `stage` otherwise. | | `shortSha` | [`String!`](#string) | Short SHA1 ID of the commit. | | `stage` | [`CiStage`](#cistage) | Stage of the job. | | `startedAt` | [`Time`](#time) | When the job was started. | | `status` | [`CiJobStatus`](#cijobstatus) | Status of the job. | | `stuck` | [`Boolean!`](#boolean) | Indicates the job is stuck. | | `tags` | [`[String!]`](#string) | Tags for the current job. | | `trace` | [`CiJobTrace`](#cijobtrace) | Trace generated by the job. | | `triggered` | [`Boolean`](#boolean) | Whether the job was triggered. | | `userPermissions` | [`JobPermissions!`](#jobpermissions) | Permissions for the current user on the resource. | | `webPath` | [`String`](#string) | Web path of the job. | ### `CiJobArtifact` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `downloadPath` | [`String`](#string) | URL for downloading the artifact's file. | | `expireAt` | [`Time`](#time) | Expiry date of the artifact. | | `fileType` | [`JobArtifactFileType`](#jobartifactfiletype) | File type of the artifact. | | `id` | [`CiJobArtifactID!`](#cijobartifactid) | ID of the artifact. | | `name` | [`String`](#string) | File name of the artifact. | | `size` | [`Int!`](#int) | Size of the artifact in bytes. | ### `CiJobTokenScopeType` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `inboundAllowlist` | [`ProjectConnection!`](#projectconnection) | Allow list of projects that can access the current project through its CI Job tokens. (see [Connections](#connections)) | | `outboundAllowlist` | [`ProjectConnection!`](#projectconnection) | Allow list of projects that are accessible using the current project's CI Job tokens. (see [Connections](#connections)) | | `projects` **{warning-solid}** | [`ProjectConnection!`](#projectconnection) | **Deprecated** in 15.9. The `projects` attribute is being deprecated. Use `outbound_allowlist`. | ### `CiJobTrace` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `htmlSummary` **{warning-solid}** | [`String!`](#string) | **Introduced** in 15.11. This feature is an Experiment. It can be changed or removed at any time. HTML summary containing the last 10 lines of the trace. | ### `CiJobsDurationStatistics` Representation of duration statistics for a group of CI jobs. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `p50` **{warning-solid}** | [`Duration`](#duration) | **Introduced** in 15.8. This feature is an Experiment. It can be changed or removed at any time. 50th percentile. 50% of the durations are lower than this value. | | `p75` **{warning-solid}** | [`Duration`](#duration) | **Introduced** in 15.8. This feature is an Experiment. It can be changed or removed at any time. 75th percentile. 75% of the durations are lower than this value. | | `p90` **{warning-solid}** | [`Duration`](#duration) | **Introduced** in 15.8. This feature is an Experiment. It can be changed or removed at any time. 90th percentile. 90% of the durations are lower than this value. | | `p95` **{warning-solid}** | [`Duration`](#duration) | **Introduced** in 15.8. This feature is an Experiment. It can be changed or removed at any time. 95th percentile. 95% of the durations are lower than this value. | | `p99` **{warning-solid}** | [`Duration`](#duration) | **Introduced** in 15.8. This feature is an Experiment. It can be changed or removed at any time. 99th percentile. 99% of the durations are lower than this value. | ### `CiJobsStatistics` Statistics for a group of CI jobs. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `queuedDuration` **{warning-solid}** | [`CiJobsDurationStatistics`](#cijobsdurationstatistics) | **Introduced** in 15.8. This feature is an Experiment. It can be changed or removed at any time. Statistics for amount of time that jobs were waiting to be picked up. The calculation is performed based on the most recent 100 jobs executed by the 5000 most recently created runners in context. If no filter is applied to runners, the calculation is performed based on the most recent 100 jobs globally. | ### `CiManualVariable` CI/CD variables given to a manual job. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `environmentScope` **{warning-solid}** | [`String`](#string) | **Deprecated** in 15.3. No longer used, only available for GroupVariableType and ProjectVariableType. | | `id` | [`ID!`](#id) | ID of the variable. | | `key` | [`String`](#string) | Name of the variable. | | `raw` | [`Boolean`](#boolean) | Indicates whether the variable is raw. | | `value` | [`String`](#string) | Value of the variable. | | `variableType` | [`CiVariableType`](#civariabletype) | Type of the variable. | ### `CiMinutesNamespaceMonthlyUsage` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `minutes` | [`Int`](#int) | Total number of minutes used by all projects in the namespace. | | `month` | [`String`](#string) | Month related to the usage data. | | `monthIso8601` | [`ISO8601Date`](#iso8601date) | Month related to the usage data in ISO 8601 date format. | | `projects` | [`CiMinutesProjectMonthlyUsageConnection`](#ciminutesprojectmonthlyusageconnection) | CI/CD minutes usage data for projects in the namespace. (see [Connections](#connections)) | | `sharedRunnersDuration` | [`Int`](#int) | Total duration (in seconds) of shared runners use by the namespace for the month. | ### `CiMinutesProjectMonthlyUsage` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `minutes` | [`Int`](#int) | Number of CI/CD minutes used by the project in the month. | | `name` **{warning-solid}** | [`String`](#string) | **Deprecated** in 15.6. Use `project.name`. | | `project` | [`Project`](#project) | Project having the recorded usage. | | `sharedRunnersDuration` | [`Int`](#int) | Total duration (in seconds) of shared runners use by the project for the month. | ### `CiProjectVariable` CI/CD variables for a project. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `environmentScope` | [`String`](#string) | Scope defining the environments that can use the variable. | | `id` | [`ID!`](#id) | ID of the variable. | | `key` | [`String`](#string) | Name of the variable. | | `masked` | [`Boolean`](#boolean) | Indicates whether the variable is masked. | | `protected` | [`Boolean`](#boolean) | Indicates whether the variable is protected. | | `raw` | [`Boolean`](#boolean) | Indicates whether the variable is raw. | | `value` | [`String`](#string) | Value of the variable. | | `variableType` | [`CiVariableType`](#civariabletype) | Type of the variable. | ### `CiRunner` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `accessLevel` | [`CiRunnerAccessLevel!`](#cirunneraccesslevel) | Access level of the runner. | | `active` **{warning-solid}** | [`Boolean!`](#boolean) | **Deprecated** in 14.8. Use paused. | | `adminUrl` | [`String`](#string) | Admin URL of the runner. Only available for administrators. | | `architectureName` | [`String`](#string) | Architecture provided by the the runner. | | `contactedAt` | [`Time`](#time) | Timestamp of last contact from this runner. | | `createdAt` | [`Time`](#time) | Timestamp of creation of this runner. | | `createdBy` | [`UserCore`](#usercore) | User that created this runner. | | `description` | [`String`](#string) | Description of the runner. | | `editAdminUrl` | [`String`](#string) | Admin form URL of the runner. Only available for administrators. | | `ephemeralAuthenticationToken` **{warning-solid}** | [`String`](#string) | **Introduced** in 15.9. This feature is an Experiment. It can be changed or removed at any time. Ephemeral authentication token used for runner manager registration. Only available for the creator of the runner for a limited time during registration. | | `ephemeralRegisterUrl` **{warning-solid}** | [`String`](#string) | **Introduced** in 15.11. This feature is an Experiment. It can be changed or removed at any time. URL of the registration page of the runner manager. Only available for the creator of the runner for a limited time during registration. | | `executorName` | [`String`](#string) | Executor last advertised by the runner. | | `groups` | [`GroupConnection`](#groupconnection) | Groups the runner is associated with. For group runners only. (see [Connections](#connections)) | | `id` | [`CiRunnerID!`](#cirunnerid) | ID of the runner. | | `ipAddress` | [`String`](#string) | IP address of the runner. | | `jobCount` | [`Int`](#int) | Number of jobs processed by the runner (limited to 1000, plus one to indicate that more items exist). | | `jobExecutionStatus` **{warning-solid}** | [`CiRunnerJobExecutionStatus`](#cirunnerjobexecutionstatus) | **Introduced** in 15.7. This feature is an Experiment. It can be changed or removed at any time. Job execution status of the runner. | | `locked` | [`Boolean`](#boolean) | Indicates the runner is locked. | | `maintenanceNote` | [`String`](#string) | Runner's maintenance notes. | | `maintenanceNoteHtml` | [`String`](#string) | GitLab Flavored Markdown rendering of `maintenance_note`. | | `managers` **{warning-solid}** | [`CiRunnerManagerConnection`](#cirunnermanagerconnection) | **Introduced** in 15.10. This feature is an Experiment. It can be changed or removed at any time. Machines associated with the runner configuration. | | `maximumTimeout` | [`Int`](#int) | Maximum timeout (in seconds) for jobs processed by the runner. | | `ownerProject` | [`Project`](#project) | Project that owns the runner. For project runners only. | | `paused` | [`Boolean!`](#boolean) | Indicates the runner is paused and not available to run jobs. | | `platformName` | [`String`](#string) | Platform provided by the runner. | | `privateProjectsMinutesCostFactor` | [`Float`](#float) | Private projects' "minutes cost factor" associated with the runner (GitLab.com only). | | `projectCount` | [`Int`](#int) | Number of projects that the runner is associated with. | | `publicProjectsMinutesCostFactor` | [`Float`](#float) | Public projects' "minutes cost factor" associated with the runner (GitLab.com only). | | `registerAdminUrl` | [`String`](#string) | URL of the temporary registration page of the runner. Only available before the runner is registered. Only available for administrators. | | `revision` | [`String`](#string) | Revision of the runner. | | `runUntagged` | [`Boolean!`](#boolean) | Indicates the runner is able to run untagged jobs. | | `runnerType` | [`CiRunnerType!`](#cirunnertype) | Type of the runner. | | `shortSha` | [`String`](#string) | First eight characters of the runner's token used to authenticate new job requests. Used as the runner's unique ID. | | `tagList` | [`[String!]`](#string) | Tags associated with the runner. | | `tokenExpiresAt` | [`Time`](#time) | Runner token expiration time. | | `upgradeStatus` **{warning-solid}** | [`CiRunnerUpgradeStatus`](#cirunnerupgradestatus) | **Introduced** in 14.10. This feature is an Experiment. It can be changed or removed at any time. Availability of upgrades for the runner. | | `userPermissions` | [`RunnerPermissions!`](#runnerpermissions) | Permissions for the current user on the resource. | | `version` | [`String`](#string) | Version of the runner. | #### Fields with arguments ##### `CiRunner.jobs` Jobs assigned to the runner. This field can only be resolved for one runner in any single request. Returns [`CiJobConnection`](#cijobconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `statuses` | [`[CiJobStatus!]`](#cijobstatus) | Filter jobs by status. | ##### `CiRunner.projects` Find projects the runner is associated with. For project runners only. Returns [`ProjectConnection`](#projectconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `membership` | [`Boolean`](#boolean) | Return only projects that the current user is a member of. | | `search` | [`String`](#string) | Search query, which can be for the project name, a path, or a description. | | `searchNamespaces` | [`Boolean`](#boolean) | Include namespace in project search. | | `sort` **{warning-solid}** | [`String`](#string) | **Deprecated** in 15.4. Default sort order will change in GitLab 17.0. Specify `"id_asc"` if you require the query results to be ordered by ascending IDs. | | `topics` | [`[String!]`](#string) | Filter projects by topics. | ##### `CiRunner.status` Status of the runner. Returns [`CiRunnerStatus!`](#cirunnerstatus). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `legacyMode` **{warning-solid}** | [`String`](#string) | **Deprecated** in 15.0. Will be removed in 17.0. | ### `CiRunnerManager` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `architectureName` | [`String`](#string) | Architecture provided by the runner manager. | | `contactedAt` | [`Time`](#time) | Timestamp of last contact from the runner manager. | | `createdAt` | [`Time`](#time) | Timestamp of creation of the runner manager. | | `executorName` | [`String`](#string) | Executor last advertised by the runner. | | `id` | [`CiRunnerManagerID!`](#cirunnermanagerid) | ID of the runner manager. | | `ipAddress` | [`String`](#string) | IP address of the runner manager. | | `platformName` | [`String`](#string) | Platform provided by the runner manager. | | `revision` | [`String`](#string) | Revision of the runner. | | `runner` | [`CiRunner`](#cirunner) | Runner configuration for the runner manager. | | `status` | [`CiRunnerStatus!`](#cirunnerstatus) | Status of the runner manager. | | `systemId` | [`String!`](#string) | System ID associated with the runner manager. | | `version` | [`String`](#string) | Version of the runner. | ### `CiSecureFileRegistry` Represents the Geo replication and verification state of a ci_secure_file. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `ciSecureFileId` | [`ID!`](#id) | ID of the Ci Secure File. | | `createdAt` | [`Time`](#time) | Timestamp when the CiSecureFileRegistry was created. | | `id` | [`ID!`](#id) | ID of the CiSecureFileRegistry. | | `lastSyncFailure` | [`String`](#string) | Error message during sync of the CiSecureFileRegistry. | | `lastSyncedAt` | [`Time`](#time) | Timestamp of the most recent successful sync of the CiSecureFileRegistry. | | `retryAt` | [`Time`](#time) | Timestamp after which the CiSecureFileRegistry is resynced. | | `retryCount` | [`Int`](#int) | Number of consecutive failed sync attempts of the CiSecureFileRegistry. | | `state` | [`RegistryState`](#registrystate) | Sync state of the CiSecureFileRegistry. | | `verificationRetryAt` | [`Time`](#time) | Timestamp after which the CiSecureFileRegistry is reverified. | | `verifiedAt` | [`Time`](#time) | Timestamp of the most recent successful verification of the CiSecureFileRegistry. | ### `CiStage` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `detailedStatus` | [`DetailedStatus`](#detailedstatus) | Detailed status of the stage. | | `groups` | [`CiGroupConnection`](#cigroupconnection) | Group of jobs for the stage. (see [Connections](#connections)) | | `id` | [`ID!`](#id) | ID of the stage. | | `jobs` | [`CiJobConnection`](#cijobconnection) | Jobs for the stage. (see [Connections](#connections)) | | `name` | [`String`](#string) | Name of the stage. | | `status` | [`String`](#string) | Status of the pipeline stage. | ### `CiTemplate` GitLab CI/CD configuration template. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `content` | [`String!`](#string) | Contents of the CI template. | | `name` | [`String!`](#string) | Name of the CI template. | ### `ClusterAgent` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `activityEvents` | [`ClusterAgentActivityEventConnection`](#clusteragentactivityeventconnection) | Recent activity for the cluster agent. (see [Connections](#connections)) | | `connections` | [`ConnectedAgentConnection`](#connectedagentconnection) | Active connections for the cluster agent. (see [Connections](#connections)) | | `createdAt` | [`Time`](#time) | Timestamp the cluster agent was created. | | `createdByUser` | [`UserCore`](#usercore) | User object, containing information about the person who created the agent. | | `id` | [`ID!`](#id) | ID of the cluster agent. | | `name` | [`String`](#string) | Name of the cluster agent. | | `project` | [`Project`](#project) | Project this cluster agent is associated with. | | `tokens` | [`ClusterAgentTokenConnection`](#clusteragenttokenconnection) | Tokens associated with the cluster agent. (see [Connections](#connections)) | | `updatedAt` | [`Time`](#time) | Timestamp the cluster agent was updated. | | `vulnerabilityImages` | [`VulnerabilityContainerImageConnection`](#vulnerabilitycontainerimageconnection) | Container images reported on the agent vulnerabilities. (see [Connections](#connections)) | | `webPath` | [`String`](#string) | Web path of the cluster agent. | ### `ClusterAgentActivityEvent` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `agentToken` | [`ClusterAgentToken`](#clusteragenttoken) | Agent token associated with the event. | | `kind` | [`String`](#string) | Type of event. | | `level` | [`String`](#string) | Severity of the event. | | `recordedAt` | [`Time`](#time) | Timestamp the event was recorded. | | `user` | [`UserCore`](#usercore) | User associated with the event. | ### `ClusterAgentAuthorizationCiAccess` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `agent` | [`ClusterAgent`](#clusteragent) | Authorized cluster agent. | | `config` | [`JSON`](#json) | Configuration for the authorized project. | ### `ClusterAgentAuthorizationUserAccess` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `agent` | [`ClusterAgent`](#clusteragent) | Authorized cluster agent. | | `config` | [`JSON`](#json) | Configuration for the authorized project. | ### `ClusterAgentToken` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `clusterAgent` | [`ClusterAgent`](#clusteragent) | Cluster agent this token is associated with. | | `createdAt` | [`Time`](#time) | Timestamp the token was created. | | `createdByUser` | [`UserCore`](#usercore) | User who created the token. | | `description` | [`String`](#string) | Description of the token. | | `id` | [`ClustersAgentTokenID!`](#clustersagenttokenid) | Global ID of the token. | | `lastUsedAt` | [`Time`](#time) | Timestamp the token was last used. | | `name` | [`String`](#string) | Name given to the token. | | `status` | [`AgentTokenStatus`](#agenttokenstatus) | Current status of the token. | ### `CodeCoverageActivity` Represents the code coverage activity for a group. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `averageCoverage` | [`Float`](#float) | Average percentage of the different code coverage results available for the group. | | `coverageCount` | [`Int`](#int) | Number of different code coverage results available for the group. | | `date` | [`Date!`](#date) | Date when the code coverage was created. | | `projectCount` | [`Int`](#int) | Number of projects with code coverage results for the group. | ### `CodeCoverageSummary` Represents the code coverage summary for a project. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `averageCoverage` | [`Float`](#float) | Average percentage of the different code coverage results available for the project. | | `coverageCount` | [`Int`](#int) | Number of different code coverage results available. | | `lastUpdatedOn` | [`Date`](#date) | Latest date when the code coverage was created for the project. | ### `CodeQualityDegradation` Represents a code quality degradation on the pipeline. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `description` | [`String!`](#string) | Description of the code quality degradation. | | `engineName` | [`String!`](#string) | Code Quality plugin that reported the finding. | | `fingerprint` | [`String!`](#string) | Unique fingerprint to identify the code quality degradation. For example, an MD5 hash. | | `line` | [`Int!`](#int) | Line on which the code quality degradation occurred. | | `path` | [`String!`](#string) | Relative path to the file containing the code quality degradation. | | `severity` | [`CodeQualityDegradationSeverity!`](#codequalitydegradationseverity) | Status of the degradation (BLOCKER, CRITICAL, MAJOR, MINOR, INFO, UNKNOWN). | | `webUrl` | [`String`](#string) | URL to the file along with line number. | ### `CodeQualityReportSummary` Code Quality report for a pipeline. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `blocker` | [`Int`](#int) | Total number of blocker status. | | `count` | [`Int`](#int) | Total number of Code Quality reports. | | `critical` | [`Int`](#int) | Total number of critical status. | | `info` | [`Int`](#int) | Total number of info status. | | `major` | [`Int`](#int) | Total number of major status. | | `minor` | [`Int`](#int) | Total number of minor status. | | `unknown` | [`Int`](#int) | Total number of unknown status. | ### `Commit` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `author` | [`UserCore`](#usercore) | Author of the commit. | | `authorEmail` | [`String`](#string) | Commit author's email. | | `authorGravatar` | [`String`](#string) | Commit authors gravatar. | | `authorName` | [`String`](#string) | Commit authors name. | | `authoredDate` | [`Time`](#time) | Timestamp of when the commit was authored. | | `description` | [`String`](#string) | Description of the commit message. | | `descriptionHtml` | [`String`](#string) | GitLab Flavored Markdown rendering of `description`. | | `fullTitle` | [`String`](#string) | Full title of the commit message. | | `fullTitleHtml` | [`String`](#string) | GitLab Flavored Markdown rendering of `full_title`. | | `id` | [`ID!`](#id) | ID (global ID) of the commit. | | `message` | [`String`](#string) | Raw commit message. | | `sha` | [`String!`](#string) | SHA1 ID of the commit. | | `shortId` | [`String!`](#string) | Short SHA1 ID of the commit. | | `signature` | [`CommitSignature`](#commitsignature) | Signature of the commit. | | `signatureHtml` | [`String`](#string) | Rendered HTML of the commit signature. | | `title` | [`String`](#string) | Title of the commit message. | | `titleHtml` | [`String`](#string) | GitLab Flavored Markdown rendering of `title`. | | `webPath` | [`String!`](#string) | Web path of the commit. | | `webUrl` | [`String!`](#string) | Web URL of the commit. | #### Fields with arguments ##### `Commit.pipelines` Pipelines of the commit ordered latest first. Returns [`PipelineConnection`](#pipelineconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ref` | [`String`](#string) | Filter pipelines by the ref they are run for. | | `scope` | [`PipelineScopeEnum`](#pipelinescopeenum) | Filter pipelines by scope. | | `sha` | [`String`](#string) | Filter pipelines by the sha of the commit they are run for. | | `source` | [`String`](#string) | Filter pipelines by their source. | | `status` | [`PipelineStatusEnum`](#pipelinestatusenum) | Filter pipelines by their status. | | `updatedAfter` | [`Time`](#time) | Pipelines updated after this date. | | `updatedBefore` | [`Time`](#time) | Pipelines updated before this date. | | `username` | [`String`](#string) | Filter pipelines by the user that triggered the pipeline. | ### `CommitParentNames` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `names` | [`[String!]`](#string) | Names of the commit parent (branch or tag). | ### `CommitReferences` #### Fields with arguments ##### `CommitReferences.containingBranches` Get branch names containing a given commit. Returns [`CommitParentNames`](#commitparentnames). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `excludeTipped` | [`Boolean!`](#boolean) | Exclude tipping refs. WARNING: This argument can be confusing, if there is a limit. for example set the limit to 5 and in the 5 out a total of 25 refs there is 2 tipped refs, then the method will only 3 refs, even though there is more. | | `limit` | [`Int!`](#int) | Number of ref names to return. | ##### `CommitReferences.containingTags` Get tag names containing a given commit. Returns [`CommitParentNames`](#commitparentnames). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `excludeTipped` | [`Boolean!`](#boolean) | Exclude tipping refs. WARNING: This argument can be confusing, if there is a limit. for example set the limit to 5 and in the 5 out a total of 25 refs there is 2 tipped refs, then the method will only 3 refs, even though there is more. | | `limit` | [`Int!`](#int) | Number of ref names to return. | ##### `CommitReferences.tippingBranches` Get branch names tipping at a given commit. Returns [`CommitParentNames`](#commitparentnames). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `limit` | [`Int!`](#int) | Number of ref names to return. | ##### `CommitReferences.tippingTags` Get tag names tipping at a given commit. Returns [`CommitParentNames`](#commitparentnames). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `limit` | [`Int!`](#int) | Number of ref names to return. | ### `ComplianceFramework` Represents a ComplianceFramework associated with a Project. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `color` | [`String!`](#string) | Hexadecimal representation of compliance framework's label color. | | `default` | [`Boolean`](#boolean) | Default compliance framework for the group. | | `description` | [`String!`](#string) | Description of the compliance framework. | | `id` | [`ID!`](#id) | Compliance framework ID. | | `name` | [`String!`](#string) | Name of the compliance framework. | | `pipelineConfigurationFullPath` | [`String`](#string) | Full path of the compliance pipeline configuration stored in a project repository, such as `.gitlab/.compliance-gitlab-ci.yml@compliance/hipaa` **(ULTIMATE)**. | ### `ComplianceViolation` Compliance violation associated with a merged merge request. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`ID!`](#id) | Compliance violation ID. | | `mergeRequest` | [`MergeRequest!`](#mergerequest) | Merge request the compliance violation occurred in. | | `reason` | [`ComplianceViolationReason!`](#complianceviolationreason) | Reason the compliance violation occurred. | | `severityLevel` | [`ComplianceViolationSeverity!`](#complianceviolationseverity) | Severity of the compliance violation. | | `violatingUser` | [`UserCore!`](#usercore) | User suspected of causing the compliance violation. | ### `ComposerMetadata` Composer metadata. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `composerJson` | [`PackageComposerJsonType!`](#packagecomposerjsontype) | Data of the Composer JSON file. | | `targetSha` | [`String!`](#string) | Target SHA of the package. | ### `ConanFileMetadata` Conan file metadata. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `conanFileType` | [`ConanMetadatumFileTypeEnum!`](#conanmetadatumfiletypeenum) | Type of the Conan file. | | `conanPackageReference` | [`String`](#string) | Reference of the Conan package. | | `createdAt` | [`Time!`](#time) | Date of creation. | | `id` | [`PackagesConanFileMetadatumID!`](#packagesconanfilemetadatumid) | ID of the metadatum. | | `packageRevision` | [`String`](#string) | Revision of the package. | | `recipeRevision` | [`String!`](#string) | Revision of the Conan recipe. | | `updatedAt` | [`Time!`](#time) | Date of most recent update. | ### `ConanMetadata` Conan metadata. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `createdAt` | [`Time!`](#time) | Date of creation. | | `id` | [`PackagesConanMetadatumID!`](#packagesconanmetadatumid) | ID of the metadatum. | | `packageChannel` | [`String!`](#string) | Channel of the Conan package. | | `packageUsername` | [`String!`](#string) | Username of the Conan package. | | `recipe` | [`String!`](#string) | Recipe of the Conan package. | | `recipePath` | [`String!`](#string) | Recipe path of the Conan package. | | `updatedAt` | [`Time!`](#time) | Date of most recent update. | ### `ConnectedAgent` Connection details for an Agent. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `connectedAt` | [`Time`](#time) | When the connection was established. | | `connectionId` | [`BigInt`](#bigint) | ID of the connection. | | `metadata` | [`AgentMetadata`](#agentmetadata) | Information about the Agent. | ### `ContactStateCounts` Represents the total number of contacts for the represented states. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `active` | [`Int`](#int) | Number of contacts with state `ACTIVE`. | | `all` | [`Int`](#int) | Number of contacts with state `ALL`. | | `inactive` | [`Int`](#int) | Number of contacts with state `INACTIVE`. | ### `ContainerExpirationPolicy` A tag expiration policy designed to keep only the images that matter most. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `cadence` | [`ContainerExpirationPolicyCadenceEnum!`](#containerexpirationpolicycadenceenum) | This container expiration policy schedule. | | `createdAt` | [`Time!`](#time) | Timestamp of when the container expiration policy was created. | | `enabled` | [`Boolean!`](#boolean) | Indicates whether this container expiration policy is enabled. | | `keepN` | [`ContainerExpirationPolicyKeepEnum`](#containerexpirationpolicykeepenum) | Number of tags to retain. | | `nameRegex` | [`UntrustedRegexp`](#untrustedregexp) | Tags with names matching this regex pattern will expire. | | `nameRegexKeep` | [`UntrustedRegexp`](#untrustedregexp) | Tags with names matching this regex pattern will be preserved. | | `nextRunAt` | [`Time`](#time) | Next time that this container expiration policy will get executed. | | `olderThan` | [`ContainerExpirationPolicyOlderThanEnum`](#containerexpirationpolicyolderthanenum) | Tags older that this will expire. | | `updatedAt` | [`Time!`](#time) | Timestamp of when the container expiration policy was updated. | ### `ContainerRepository` A container repository. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `canDelete` | [`Boolean!`](#boolean) | Can the current user delete the container repository. | | `createdAt` | [`Time!`](#time) | Timestamp when the container repository was created. | | `expirationPolicyCleanupStatus` | [`ContainerRepositoryCleanupStatus`](#containerrepositorycleanupstatus) | Tags cleanup status for the container repository. | | `expirationPolicyStartedAt` | [`Time`](#time) | Timestamp when the cleanup done by the expiration policy was started on the container repository. | | `id` | [`ID!`](#id) | ID of the container repository. | | `lastCleanupDeletedTagsCount` | [`Int`](#int) | Number of deleted tags from the last cleanup. | | `location` | [`String!`](#string) | URL of the container repository. | | `migrationState` | [`String!`](#string) | Migration state of the container repository. | | `name` | [`String!`](#string) | Name of the container repository. | | `path` | [`String!`](#string) | Path of the container repository. | | `project` | [`Project!`](#project) | Project of the container registry. | | `status` | [`ContainerRepositoryStatus`](#containerrepositorystatus) | Status of the container repository. | | `tagsCount` | [`Int!`](#int) | Number of tags associated with this image. | | `updatedAt` | [`Time!`](#time) | Timestamp when the container repository was updated. | ### `ContainerRepositoryDetails` Details of a container repository. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `canDelete` | [`Boolean!`](#boolean) | Can the current user delete the container repository. | | `createdAt` | [`Time!`](#time) | Timestamp when the container repository was created. | | `expirationPolicyCleanupStatus` | [`ContainerRepositoryCleanupStatus`](#containerrepositorycleanupstatus) | Tags cleanup status for the container repository. | | `expirationPolicyStartedAt` | [`Time`](#time) | Timestamp when the cleanup done by the expiration policy was started on the container repository. | | `id` | [`ID!`](#id) | ID of the container repository. | | `lastCleanupDeletedTagsCount` | [`Int`](#int) | Number of deleted tags from the last cleanup. | | `location` | [`String!`](#string) | URL of the container repository. | | `migrationState` | [`String!`](#string) | Migration state of the container repository. | | `name` | [`String!`](#string) | Name of the container repository. | | `path` | [`String!`](#string) | Path of the container repository. | | `project` | [`Project!`](#project) | Project of the container registry. | | `size` | [`Float`](#float) | Deduplicated size of the image repository in bytes. This is only available on GitLab.com for repositories created after `2021-11-04`. | | `status` | [`ContainerRepositoryStatus`](#containerrepositorystatus) | Status of the container repository. | | `tagsCount` | [`Int!`](#int) | Number of tags associated with this image. | | `updatedAt` | [`Time!`](#time) | Timestamp when the container repository was updated. | #### Fields with arguments ##### `ContainerRepositoryDetails.tags` Tags of the container repository. Returns [`ContainerRepositoryTagConnection`](#containerrepositorytagconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `name` | [`String`](#string) | Search by tag name. | | `sort` | [`ContainerRepositoryTagSort`](#containerrepositorytagsort) | Sort tags by these criteria. | ### `ContainerRepositoryRegistry` Represents the Geo replication and verification state of an Container Repository. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `containerRepositoryId` | [`ID!`](#id) | ID of the ContainerRepository. | | `createdAt` | [`Time`](#time) | Timestamp when the ContainerRepositoryRegistry was created. | | `id` | [`ID!`](#id) | ID of the ContainerRepositoryRegistry. | | `lastSyncFailure` | [`String`](#string) | Error message during sync of the ContainerRepositoryRegistry. | | `lastSyncedAt` | [`Time`](#time) | Timestamp of the most recent successful sync of the ContainerRepositoryRegistry. | | `retryAt` | [`Time`](#time) | Timestamp after which the ContainerRepositoryRegistry is resynced. | | `retryCount` | [`Int`](#int) | Number of consecutive failed sync attempts of the ContainerRepositoryRegistry. | | `state` | [`RegistryState`](#registrystate) | Sync state of the ContainerRepositoryRegistry. | | `verificationRetryAt` | [`Time`](#time) | Timestamp after which the ContainerRepositoryRegistry is reverified. | | `verifiedAt` | [`Time`](#time) | Timestamp of the most recent successful verification of the ContainerRepositoryRegistry. | ### `ContainerRepositoryTag` A tag from a container repository. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `canDelete` | [`Boolean!`](#boolean) | Can the current user delete this tag. | | `createdAt` | [`Time`](#time) | Timestamp when the tag was created. | | `digest` | [`String`](#string) | Digest of the tag. | | `location` | [`String!`](#string) | URL of the tag. | | `name` | [`String!`](#string) | Name of the tag. | | `path` | [`String!`](#string) | Path of the tag. | | `revision` | [`String`](#string) | Revision of the tag. | | `shortRevision` | [`String`](#string) | Short revision of the tag. | | `totalSize` | [`BigInt`](#bigint) | Size of the tag. | ### `ContributionAnalyticsContribution` Represents the contributions of a user. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `issuesClosed` | [`Int`](#int) | Number of issues closed by the user. | | `issuesCreated` | [`Int`](#int) | Number of issues created by the user. | | `mergeRequestsApproved` | [`Int`](#int) | Number of merge requests approved by the user. | | `mergeRequestsClosed` | [`Int`](#int) | Number of merge requests closed by the user. | | `mergeRequestsCreated` | [`Int`](#int) | Number of merge requests created by the user. | | `mergeRequestsMerged` | [`Int`](#int) | Number of merge requests merged by the user. | | `repoPushed` | [`Int`](#int) | Number of repository pushes the user made. | | `totalEvents` | [`Int`](#int) | Total number of events contributed by the user. | | `user` | [`UserCore`](#usercore) | Contributor User object. | ### `CoverageFuzzingCorpus` Corpus for a coverage fuzzing job. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`AppSecFuzzingCoverageCorpusID!`](#appsecfuzzingcoveragecorpusid) | ID of the corpus. | | `package` | [`PackageDetailsType!`](#packagedetailstype) | Package of the corpus. | ### `CurrentLicense` Represents the current license. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `activatedAt` | [`Date`](#date) | Date when the license was activated. | | `billableUsersCount` | [`Int`](#int) | Number of billable users on the system. | | `blockChangesAt` | [`Date`](#date) | Date, including grace period, when licensed features will be blocked. | | `company` | [`String`](#string) | Company of the licensee. | | `createdAt` | [`Date`](#date) | Date when the license was added. | | `email` | [`String`](#string) | Email of the licensee. | | `expiresAt` | [`Date`](#date) | Date when the license expires. | | `id` | [`ID!`](#id) | ID of the license extracted from the license data. | | `lastSync` | [`Time`](#time) | Date when the license was last synced. | | `maximumUserCount` | [`Int`](#int) | Highest number of billable users on the system during the term of the current license. | | `name` | [`String`](#string) | Name of the licensee. | | `plan` | [`String!`](#string) | Name of the subscription plan. | | `startsAt` | [`Date`](#date) | Date when the license started. | | `type` | [`String!`](#string) | Type of the license. | | `usersInLicenseCount` | [`Int`](#int) | Number of paid users in the license. | | `usersOverLicenseCount` | [`Int`](#int) | Number of users over the paid users in the license. | ### `CustomEmoji` A custom emoji uploaded by user. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `external` | [`Boolean!`](#boolean) | Whether the emoji is an external link. | | `id` | [`CustomEmojiID!`](#customemojiid) | ID of the emoji. | | `name` | [`String!`](#string) | Name of the emoji. | | `url` | [`String!`](#string) | Link to file of the emoji. | ### `CustomerRelationsContact` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `active` | [`Boolean!`](#boolean) | State of the contact. | | `createdAt` | [`Time!`](#time) | Timestamp the contact was created. | | `description` | [`String`](#string) | Description of or notes for the contact. | | `email` | [`String`](#string) | Email address of the contact. | | `firstName` | [`String!`](#string) | First name of the contact. | | `id` | [`ID!`](#id) | Internal ID of the contact. | | `lastName` | [`String!`](#string) | Last name of the contact. | | `organization` | [`CustomerRelationsOrganization`](#customerrelationsorganization) | Organization of the contact. | | `phone` | [`String`](#string) | Phone number of the contact. | | `updatedAt` | [`Time!`](#time) | Timestamp the contact was last updated. | ### `CustomerRelationsOrganization` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `active` | [`Boolean!`](#boolean) | State of the organization. | | `createdAt` | [`Time!`](#time) | Timestamp the organization was created. | | `defaultRate` | [`Float`](#float) | Standard billing rate for the organization. | | `description` | [`String`](#string) | Description of or notes for the organization. | | `id` | [`ID!`](#id) | Internal ID of the organization. | | `name` | [`String!`](#string) | Name of the organization. | | `updatedAt` | [`Time!`](#time) | Timestamp the organization was last updated. | ### `DastPreScanVerification` Represents a DAST Pre Scan Verification. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `preScanVerificationSteps` | [`[DastPreScanVerificationStep!]`](#dastprescanverificationstep) | Pre Scan Verifications Steps. | | `status` | [`DastPreScanVerificationStatus`](#dastprescanverificationstatus) | Status of the pre scan verification. | | `valid` | [`Boolean!`](#boolean) | Whether or not the configuration has changed after the last pre scan run. | ### `DastPreScanVerificationStep` Represents a DAST Pre Scan Verification Step. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `checkType` | [`DastPreScanVerificationCheckType`](#dastprescanverificationchecktype) | Type of the pre scan verification check. | | `errors` | [`[String!]`](#string) | Errors that occurred in the pre scan verification step. | | `name` **{warning-solid}** | [`String`](#string) | **Deprecated** in 15.10. This was renamed. Use: [`DastPreScanVerificationStep.checkType`](#dastprescanverificationstepchecktype). | | `success` | [`Boolean!`](#boolean) | Whether or not the pre scan verification step has errors. | ### `DastProfile` Represents a DAST Profile. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `branch` | [`DastProfileBranch`](#dastprofilebranch) | Associated branch. | | `dastPreScanVerification` | [`DastPreScanVerification`](#dastprescanverification) | DAST Pre Scan Verification associated with the site profile. Will always return `null` if `dast_on_demand_scans_scheduler` feature flag is disabled. | | `dastProfileSchedule` | [`DastProfileSchedule`](#dastprofileschedule) | Associated profile schedule. | | `dastScannerProfile` | [`DastScannerProfile`](#dastscannerprofile) | Associated scanner profile. | | `dastSiteProfile` | [`DastSiteProfile`](#dastsiteprofile) | Associated site profile. | | `description` | [`String`](#string) | Description of the scan. | | `editPath` | [`String`](#string) | Relative web path to the edit page of a profile. | | `id` | [`DastProfileID!`](#dastprofileid) | ID of the profile. | | `name` | [`String`](#string) | Name of the profile. | | `tagList` | [`[String!]`](#string) | Runner tags associated with the profile. | ### `DastProfileBranch` Represents a DAST Profile Branch. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `exists` | [`Boolean`](#boolean) | Indicates whether or not the branch exists. | | `name` | [`String`](#string) | Name of the branch. | ### `DastProfileCadence` Represents DAST Profile Cadence. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `duration` | [`Int`](#int) | Duration of the DAST profile cadence. | | `unit` | [`DastProfileCadenceUnit`](#dastprofilecadenceunit) | Unit for the duration of DAST profile cadence. | ### `DastProfileSchedule` Represents a DAST profile schedule. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `active` | [`Boolean`](#boolean) | Status of the DAST profile schedule. | | `cadence` | [`DastProfileCadence`](#dastprofilecadence) | Cadence of the DAST profile schedule. | | `id` | [`DastProfileScheduleID!`](#dastprofilescheduleid) | ID of the DAST profile schedule. | | `nextRunAt` | [`Time`](#time) | Next run time of the DAST profile schedule in the given timezone. | | `ownerValid` | [`Boolean`](#boolean) | Status of the current owner of the DAST profile schedule. | | `startsAt` | [`Time`](#time) | Start time of the DAST profile schedule in the given timezone. | | `timezone` | [`String`](#string) | Time zone of the start time of the DAST profile schedule. | ### `DastScannerProfile` Represents a DAST scanner profile. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `editPath` | [`String`](#string) | Relative web path to the edit page of a scanner profile. | | `id` | [`DastScannerProfileID!`](#dastscannerprofileid) | ID of the DAST scanner profile. | | `profileName` | [`String`](#string) | Name of the DAST scanner profile. | | `referencedInSecurityPolicies` | [`[String!]`](#string) | List of security policy names that are referencing given project. | | `scanType` | [`DastScanTypeEnum`](#dastscantypeenum) | Indicates the type of DAST scan that will run. Either a Passive Scan or an Active Scan. | | `showDebugMessages` | [`Boolean!`](#boolean) | Indicates if debug messages should be included in DAST console output. True to include the debug messages. | | `spiderTimeout` | [`Int`](#int) | Maximum number of minutes allowed for the spider to traverse the site. | | `tagList` **{warning-solid}** | [`[String!]`](#string) | **Deprecated** in 15.8. Moved to DastProfile. | | `targetTimeout` | [`Int`](#int) | Maximum number of seconds allowed for the site under test to respond to a request. | | `useAjaxSpider` | [`Boolean!`](#boolean) | Indicates if the AJAX spider should be used to crawl the target site. True to run the AJAX spider in addition to the traditional spider, and false to run only the traditional spider. | ### `DastSiteProfile` Represents a DAST Site Profile. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `auth` | [`DastSiteProfileAuth`](#dastsiteprofileauth) | Target authentication details. | | `editPath` | [`String`](#string) | Relative web path to the edit page of a site profile. | | `excludedUrls` | [`[String!]`](#string) | URLs to skip during an authenticated scan. | | `id` | [`DastSiteProfileID!`](#dastsiteprofileid) | ID of the site profile. | | `normalizedTargetUrl` | [`String`](#string) | Normalized URL of the target to be scanned. | | `profileName` | [`String`](#string) | Name of the site profile. | | `referencedInSecurityPolicies` | [`[String!]`](#string) | List of security policy names that are referencing given project. | | `requestHeaders` | [`String`](#string) | Comma-separated list of request header names and values to be added to every request made by DAST. | | `scanFilePath` | [`String`](#string) | Scan File Path used as input for the scanner. | | `scanMethod` | [`DastScanMethodType`](#dastscanmethodtype) | Scan method used by the scanner. | | `targetType` | [`DastTargetTypeEnum`](#dasttargettypeenum) | Type of target to be scanned. | | `targetUrl` | [`String`](#string) | URL of the target to be scanned. | | `userPermissions` | [`DastSiteProfilePermissions!`](#dastsiteprofilepermissions) | Permissions for the current user on the resource. | | `validationStartedAt` | [`Time`](#time) | Site profile validation start time. | | `validationStatus` | [`DastSiteProfileValidationStatusEnum`](#dastsiteprofilevalidationstatusenum) | Current validation status of the site profile. | ### `DastSiteProfileAuth` Input type for DastSiteProfile authentication. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `enabled` | [`Boolean`](#boolean) | Indicates whether authentication is enabled. | | `password` | [`String`](#string) | Redacted password to authenticate with on the target website. | | `passwordField` | [`String`](#string) | Name of password field at the sign-in HTML form. | | `submitField` | [`String`](#string) | Name or ID of sign-in submit button at the sign-in HTML form. | | `url` | [`String`](#string) | The URL of the page containing the sign-in HTML form on the target website. | | `username` | [`String`](#string) | Username to authenticate with on the target website. | | `usernameField` | [`String`](#string) | Name of username field at the sign-in HTML form. | ### `DastSiteProfilePermissions` Check permissions for the current user on site profile. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `createOnDemandDastScan` | [`Boolean!`](#boolean) | Indicates the user can perform `create_on_demand_dast_scan` on this resource. | ### `DastSiteValidation` Represents a DAST Site Validation. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`DastSiteValidationID!`](#dastsitevalidationid) | Global ID of the site validation. | | `normalizedTargetUrl` | [`String`](#string) | Normalized URL of the target to be validated. | | `status` | [`DastSiteProfileValidationStatusEnum!`](#dastsiteprofilevalidationstatusenum) | Status of the site validation. | | `validationStartedAt` | [`Time`](#time) | Timestamp of when the validation started. | ### `DeleteJobsResponse` The response from the AdminSidekiqQueuesDeleteJobs mutation. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `completed` | [`Boolean`](#boolean) | Whether or not the entire queue was processed in time; if not, retrying the same request is safe. | | `deletedJobs` | [`Int`](#int) | Number of matching jobs deleted. | | `queueSize` | [`Int`](#int) | Queue size after processing. | ### `DeletedNote` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `discussionId` | [`DiscussionID`](#discussionid) | ID of the discussion for the deleted note. | | `id` | [`NoteID!`](#noteid) | ID of the deleted note. | | `lastDiscussionNote` | [`Boolean`](#boolean) | Whether deleted note is the last note in the discussion. | ### `Dependency` A software dependency used by a project. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `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` | [`PackageManager`](#packagemanager) | Description of the tool used to manage the dependency. | | `version` | [`String`](#string) | Version of the dependency. | ### `DependencyProxyBlob` Dependency proxy blob. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `createdAt` | [`Time!`](#time) | Date of creation. | | `fileName` | [`String!`](#string) | Name of the blob. | | `size` | [`String!`](#string) | Size of the blob file. | | `updatedAt` | [`Time!`](#time) | Date of most recent update. | ### `DependencyProxyBlobRegistry` Represents the Geo replication and verification state of a dependency_proxy_blob. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `createdAt` | [`Time`](#time) | Timestamp when the DependencyProxyBlobRegistry was created. | | `dependencyProxyBlobId` | [`ID!`](#id) | ID of the Dependency Proxy Blob. | | `id` | [`ID!`](#id) | ID of the DependencyProxyBlobRegistry. | | `lastSyncFailure` | [`String`](#string) | Error message during sync of the DependencyProxyBlobRegistry. | | `lastSyncedAt` | [`Time`](#time) | Timestamp of the most recent successful sync of the DependencyProxyBlobRegistry. | | `retryAt` | [`Time`](#time) | Timestamp after which the DependencyProxyBlobRegistry is resynced. | | `retryCount` | [`Int`](#int) | Number of consecutive failed sync attempts of the DependencyProxyBlobRegistry. | | `state` | [`RegistryState`](#registrystate) | Sync state of the DependencyProxyBlobRegistry. | | `verificationRetryAt` | [`Time`](#time) | Timestamp after which the DependencyProxyBlobRegistry is reverified. | | `verifiedAt` | [`Time`](#time) | Timestamp of the most recent successful verification of the DependencyProxyBlobRegistry. | ### `DependencyProxyImageTtlGroupPolicy` Group-level Dependency Proxy TTL policy settings. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `createdAt` | [`Time`](#time) | Timestamp of creation. | | `enabled` | [`Boolean!`](#boolean) | Indicates whether the policy is enabled or disabled. | | `ttl` | [`Int`](#int) | Number of days to retain a cached image file. | | `updatedAt` | [`Time`](#time) | Timestamp of the most recent update. | ### `DependencyProxyManifest` Dependency proxy manifest. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `createdAt` | [`Time!`](#time) | Date of creation. | | `digest` | [`String!`](#string) | Digest of the manifest. | | `fileName` | [`String!`](#string) | Name of the manifest. | | `id` | [`DependencyProxyManifestID!`](#dependencyproxymanifestid) | ID of the manifest. | | `imageName` | [`String!`](#string) | Name of the image. | | `size` | [`String!`](#string) | Size of the manifest file. | | `status` | [`DependencyProxyManifestStatus!`](#dependencyproxymanifeststatus) | Status of the manifest (default, pending_destruction, processing, error). | | `updatedAt` | [`Time!`](#time) | Date of most recent update. | ### `DependencyProxyManifestRegistry` Represents the Geo replication and verification state of a dependency_proxy_manifest. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `createdAt` | [`Time`](#time) | Timestamp when the DependencyProxyManifestRegistry was created. | | `dependencyProxyManifestId` | [`ID!`](#id) | ID of the Dependency Proxy Manifest. | | `id` | [`ID!`](#id) | ID of the DependencyProxyManifestRegistry. | | `lastSyncFailure` | [`String`](#string) | Error message during sync of the DependencyProxyManifestRegistry. | | `lastSyncedAt` | [`Time`](#time) | Timestamp of the most recent successful sync of the DependencyProxyManifestRegistry. | | `retryAt` | [`Time`](#time) | Timestamp after which the DependencyProxyManifestRegistry is resynced. | | `retryCount` | [`Int`](#int) | Number of consecutive failed sync attempts of the DependencyProxyManifestRegistry. | | `state` | [`RegistryState`](#registrystate) | Sync state of the DependencyProxyManifestRegistry. | | `verificationRetryAt` | [`Time`](#time) | Timestamp after which the DependencyProxyManifestRegistry is reverified. | | `verifiedAt` | [`Time`](#time) | Timestamp of the most recent successful verification of the DependencyProxyManifestRegistry. | ### `DependencyProxySetting` Group-level Dependency Proxy settings. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `enabled` | [`Boolean!`](#boolean) | Indicates whether the dependency proxy is enabled for the group. | ### `Deployment` The deployment of an environment. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `approvalSummary` | [`DeploymentApprovalSummary`](#deploymentapprovalsummary) | Approval summary of the deployment.This field can only be resolved for one deployment in any single request. | | `approvals` | [`[DeploymentApproval!]`](#deploymentapproval) | Current approvals of the deployment. | | `commit` | [`Commit`](#commit) | Commit details of the deployment. | | `createdAt` | [`Time`](#time) | When the deployment record was created. | | `finishedAt` | [`Time`](#time) | When the deployment finished. | | `id` | [`ID`](#id) | Global ID of the deployment. | | `iid` | [`ID`](#id) | Project-level internal ID of the deployment. | | `job` | [`CiJob`](#cijob) | Pipeline job of the deployment. | | `pendingApprovalCount` | [`Int`](#int) | Number of pending unified approvals on the deployment. | | `ref` | [`String`](#string) | Git-Ref that the deployment ran on. | | `sha` | [`String`](#string) | Git-SHA that the deployment ran on. | | `status` | [`DeploymentStatus`](#deploymentstatus) | Status of the deployment. | | `tag` | [`Boolean`](#boolean) | True or false if the deployment ran on a Git-tag. | | `tags` | [`[DeploymentTag!]`](#deploymenttag) | Git tags that contain this deployment. This field can only be resolved for two deployments in any single request. | | `triggerer` | [`UserCore`](#usercore) | User who executed the deployment. | | `updatedAt` | [`Time`](#time) | When the deployment record was updated. | | `userPermissions` | [`DeploymentPermissions!`](#deploymentpermissions) | Permissions for the current user on the resource. | ### `DeploymentApproval` Approval of the deployment. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `comment` | [`String`](#string) | Additional comment. | | `createdAt` | [`Time`](#time) | When the user approved/rejected first time. | | `status` | [`DeploymentsApprovalStatus`](#deploymentsapprovalstatus) | Whether the deployment was approved/rejected. | | `updatedAt` | [`Time`](#time) | When the user updated the approval. | | `user` | [`UserCore`](#usercore) | User who approved or rejected the deployment. | ### `DeploymentApprovalSummary` Approval summary of the deployment. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `rules` | [`[ProtectedEnvironmentApprovalRuleForSummary!]`](#protectedenvironmentapprovalruleforsummary) | Approval Rules for the deployment. | | `status` | [`DeploymentApprovalSummaryStatus`](#deploymentapprovalsummarystatus) | Status of the approvals. | | `totalPendingApprovalCount` | [`Int`](#int) | Total pending approval count. | | `totalRequiredApprovals` | [`Int`](#int) | Total number of required approvals. | ### `DeploymentPermissions` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `approveDeployment` | [`Boolean!`](#boolean) | Indicates the user can perform `approve_deployment` on this resource. This field can only be resolved for one environment in any single request. | | `destroyDeployment` | [`Boolean!`](#boolean) | Indicates the user can perform `destroy_deployment` on this resource. | | `updateDeployment` | [`Boolean!`](#boolean) | Indicates the user can perform `update_deployment` on this resource. | ### `DeploymentTag` Tags for a given deployment. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `name` | [`String`](#string) | Name of this git tag. | | `path` | [`String`](#string) | Path for this tag. | ### `DescriptionVersion` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `canDelete` **{warning-solid}** | [`Boolean`](#boolean) | **Deprecated** in 15.7. For backwards compatibility with REST API version and to be removed in a next iteration. | | `deletePath` **{warning-solid}** | [`String`](#string) | **Deprecated** in 15.7. For backwards compatibility with REST API version and to be removed in a next iteration. | | `deleted` **{warning-solid}** | [`Boolean`](#boolean) | **Deprecated** in 15.7. For backwards compatibility with REST API version and to be removed in a next iteration. | | `description` | [`String`](#string) | Content of the given description version. | | `diffPath` **{warning-solid}** | [`String`](#string) | **Deprecated** in 15.7. For backwards compatibility with REST API version and to be removed in a next iteration. | | `id` | [`DescriptionVersionID!`](#descriptionversionid) | ID of the description version. | #### Fields with arguments ##### `DescriptionVersion.diff` Description diff between versions. Returns [`String`](#string). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `versionId` | [`DescriptionVersionID`](#descriptionversionid) | ID of a previous version to compare. If not specified first previous version is used. | ### `Design` A single design. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `commenters` | [`UserCoreConnection!`](#usercoreconnection) | All commenters on this noteable. (see [Connections](#connections)) | | `description` | [`String`](#string) | Description of the design. | | `descriptionHtml` | [`String`](#string) | GitLab Flavored Markdown rendering of `description`. | | `diffRefs` | [`DiffRefs!`](#diffrefs) | Diff refs for this design. | | `discussions` | [`DiscussionConnection!`](#discussionconnection) | All discussions on this noteable. (see [Connections](#connections)) | | `event` | [`DesignVersionEvent!`](#designversionevent) | How this design was changed in the current version. | | `filename` | [`String!`](#string) | Filename of the design. | | `fullPath` | [`String!`](#string) | Full path to the design file. | | `id` | [`ID!`](#id) | ID of this design. | | `image` | [`String!`](#string) | URL of the full-sized image. | | `imageV432x230` | [`String`](#string) | The URL of the design resized to fit within the bounds of 432x230. This will be `null` if the image has not been generated. | | `issue` | [`Issue!`](#issue) | Issue the design belongs to. | | `notes` | [`NoteConnection!`](#noteconnection) | All notes on this noteable. (see [Connections](#connections)) | | `notesCount` | [`Int!`](#int) | Total count of user-created notes for this design. | | `project` | [`Project!`](#project) | Project the design belongs to. | | `webUrl` | [`String!`](#string) | URL of the design. | #### Fields with arguments ##### `Design.currentUserTodos` To-do items for the current user. Returns [`TodoConnection!`](#todoconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `state` | [`TodoStateEnum`](#todostateenum) | State of the to-do items. | ##### `Design.versions` All versions related to this design ordered newest first. Returns [`DesignVersionConnection!`](#designversionconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `earlierOrEqualToId` | [`DesignManagementVersionID`](#designmanagementversionid) | Global ID of the most recent acceptable version. | | `earlierOrEqualToSha` | [`String`](#string) | SHA256 of the most recent acceptable version. | ### `DesignAtVersion` A design pinned to a specific version. The image field reflects the design as of the associated version. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `design` | [`Design!`](#design) | Underlying design. | | `diffRefs` | [`DiffRefs!`](#diffrefs) | Diff refs for this design. | | `event` | [`DesignVersionEvent!`](#designversionevent) | How this design was changed in the current version. | | `filename` | [`String!`](#string) | Filename of the design. | | `fullPath` | [`String!`](#string) | Full path to the design file. | | `id` | [`ID!`](#id) | ID of this design. | | `image` | [`String!`](#string) | URL of the full-sized image. | | `imageV432x230` | [`String`](#string) | The URL of the design resized to fit within the bounds of 432x230. This will be `null` if the image has not been generated. | | `issue` | [`Issue!`](#issue) | Issue the design belongs to. | | `notesCount` | [`Int!`](#int) | Total count of user-created notes for this design. | | `project` | [`Project!`](#project) | Project the design belongs to. | | `version` | [`DesignVersion!`](#designversion) | Version this design-at-versions is pinned to. | ### `DesignCollection` A collection of designs. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `copyState` | [`DesignCollectionCopyState`](#designcollectioncopystate) | Copy state of the design collection. | | `issue` | [`Issue!`](#issue) | Issue associated with the design collection. | | `project` | [`Project!`](#project) | Project associated with the design collection. | #### Fields with arguments ##### `DesignCollection.design` Find a specific design. Returns [`Design`](#design). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `filename` | [`String`](#string) | Find a design by its filename. | | `id` | [`DesignManagementDesignID`](#designmanagementdesignid) | Find a design by its ID. | ##### `DesignCollection.designAtVersion` Find a design as of a version. Returns [`DesignAtVersion`](#designatversion). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`DesignManagementDesignAtVersionID!`](#designmanagementdesignatversionid) | Global ID of the design at this version. | ##### `DesignCollection.designs` All designs for the design collection. Returns [`DesignConnection!`](#designconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `atVersion` | [`DesignManagementVersionID`](#designmanagementversionid) | Filters designs to only those that existed at the version. If argument is omitted or nil then all designs will reflect the latest version. | | `filenames` | [`[String!]`](#string) | Filters designs by their filename. | | `ids` | [`[DesignManagementDesignID!]`](#designmanagementdesignid) | Filters designs by their ID. | ##### `DesignCollection.version` A specific version. Returns [`DesignVersion`](#designversion). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`DesignManagementVersionID`](#designmanagementversionid) | Global ID of the version. | | `sha` | [`String`](#string) | SHA256 of a specific version. | ##### `DesignCollection.versions` All versions related to all designs, ordered newest first. Returns [`DesignVersionConnection!`](#designversionconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `earlierOrEqualToId` | [`DesignManagementVersionID`](#designmanagementversionid) | Global ID of the most recent acceptable version. | | `earlierOrEqualToSha` | [`String`](#string) | SHA256 of the most recent acceptable version. | ### `DesignManagement` #### Fields with arguments ##### `DesignManagement.designAtVersion` Find a design as of a version. Returns [`DesignAtVersion`](#designatversion). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`DesignManagementDesignAtVersionID!`](#designmanagementdesignatversionid) | Global ID of the design at this version. | ##### `DesignManagement.version` Find a version. Returns [`DesignVersion`](#designversion). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`DesignManagementVersionID!`](#designmanagementversionid) | Global ID of the version. | ### `DesignVersion` A specific version in which designs were added, modified or deleted. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `author` | [`UserCore!`](#usercore) | Author of the version. | | `createdAt` | [`Time!`](#time) | Timestamp of when the version was created. | | `designs` | [`DesignConnection!`](#designconnection) | All designs that were changed in the version. (see [Connections](#connections)) | | `id` | [`ID!`](#id) | ID of the design version. | | `sha` | [`ID!`](#id) | SHA of the design version. | #### Fields with arguments ##### `DesignVersion.designAtVersion` A particular design as of this version, provided it is visible at this version. Returns [`DesignAtVersion!`](#designatversion). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `designId` | [`DesignManagementDesignID`](#designmanagementdesignid) | ID of a specific design. | | `filename` | [`String`](#string) | Filename of a specific design. | | `id` | [`DesignManagementDesignAtVersionID`](#designmanagementdesignatversionid) | ID of the DesignAtVersion. | ##### `DesignVersion.designsAtVersion` All designs that are visible at this version, as of this version. Returns [`DesignAtVersionConnection!`](#designatversionconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `filenames` | [`[String!]`](#string) | Filters designs by their filename. | | `ids` | [`[DesignManagementDesignID!]`](#designmanagementdesignid) | Filters designs by their ID. | ### `DetailedStatus` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `action` | [`StatusAction`](#statusaction) | Action information for the status. This includes method, button title, icon, path, and title. | | `detailsPath` | [`String`](#string) | Path of the details for the status. | | `favicon` | [`String`](#string) | Favicon of the status. | | `group` | [`String`](#string) | Group of the status. | | `hasDetails` | [`Boolean`](#boolean) | Indicates if the status has further details. | | `icon` | [`String`](#string) | Icon of the status. | | `id` | [`String!`](#string) | ID for a detailed status. | | `label` | [`String`](#string) | Label of the status. | | `text` | [`String`](#string) | Text of the status. | | `tooltip` | [`String`](#string) | Tooltip associated with the status. | ### `DevopsAdoptionEnabledNamespace` Enabled namespace for DevopsAdoption. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `displayNamespace` | [`Namespace`](#namespace) | Namespace where data should be displayed. | | `id` | [`ID!`](#id) | ID of the enabled namespace. | | `latestSnapshot` | [`DevopsAdoptionSnapshot`](#devopsadoptionsnapshot) | Metrics snapshot for previous month for the enabled namespace. | | `namespace` | [`Namespace`](#namespace) | Namespace which should be calculated. | #### Fields with arguments ##### `DevopsAdoptionEnabledNamespace.snapshots` Data snapshots of the namespace. Returns [`DevopsAdoptionSnapshotConnection`](#devopsadoptionsnapshotconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `endTimeAfter` | [`Time`](#time) | Filter to snapshots with month end after the provided date. | | `endTimeBefore` | [`Time`](#time) | Filter to snapshots with month end before the provided date. | ### `DevopsAdoptionSnapshot` Snapshot. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `codeOwnersUsedCount` | [`Int`](#int) | Total number of projects with existing CODEOWNERS file. | | `coverageFuzzingEnabledCount` | [`Int`](#int) | Total number of projects with enabled coverage fuzzing. | | `dastEnabledCount` | [`Int`](#int) | Total number of projects with enabled DAST. | | `dependencyScanningEnabledCount` | [`Int`](#int) | Total number of projects with enabled dependency scanning. | | `deploySucceeded` | [`Boolean!`](#boolean) | At least one deployment succeeded. | | `endTime` | [`Time!`](#time) | End time for the snapshot where the data points were collected. | | `issueOpened` | [`Boolean!`](#boolean) | At least one issue was opened. | | `mergeRequestApproved` | [`Boolean!`](#boolean) | At least one merge request was approved. | | `mergeRequestOpened` | [`Boolean!`](#boolean) | At least one merge request was opened. | | `pipelineSucceeded` | [`Boolean!`](#boolean) | At least one pipeline succeeded. | | `recordedAt` | [`Time!`](#time) | Time the snapshot was recorded. | | `runnerConfigured` | [`Boolean!`](#boolean) | At least one runner was used. | | `sastEnabledCount` | [`Int`](#int) | Total number of projects with enabled SAST. | | `startTime` | [`Time!`](#time) | Start time for the snapshot where the data points were collected. | | `totalProjectsCount` | [`Int`](#int) | Total number of projects. | | `vulnerabilityManagementUsedCount` | [`Int`](#int) | Total number of projects with vulnerability management used at least once. | ### `DiffPosition` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `diffRefs` | [`DiffRefs!`](#diffrefs) | Information about the branch, HEAD, and base at the time of commenting. | | `filePath` | [`String!`](#string) | Path of the file that was changed. | | `height` | [`Int`](#int) | Total height of the image. | | `newLine` | [`Int`](#int) | Line on HEAD SHA that was changed. | | `newPath` | [`String`](#string) | Path of the file on the HEAD SHA. | | `oldLine` | [`Int`](#int) | Line on start SHA that was changed. | | `oldPath` | [`String`](#string) | Path of the file on the start SHA. | | `positionType` | [`DiffPositionType!`](#diffpositiontype) | Type of file the position refers to. | | `width` | [`Int`](#int) | Total width of the image. | | `x` | [`Int`](#int) | X position of the note. | | `y` | [`Int`](#int) | Y position of the note. | ### `DiffRefs` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `baseSha` | [`String`](#string) | Merge base of the branch the comment was made on. | | `headSha` | [`String!`](#string) | SHA of the HEAD at the time the comment was made. | | `startSha` | [`String!`](#string) | SHA of the branch being compared against. | ### `DiffStats` Changes to a single file. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `additions` | [`Int!`](#int) | Number of lines added to this file. | | `deletions` | [`Int!`](#int) | Number of lines deleted from this file. | | `path` | [`String!`](#string) | File path, relative to repository root. | ### `DiffStatsSummary` Aggregated summary of changes. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `additions` | [`Int!`](#int) | Number of lines added. | | `changes` | [`Int!`](#int) | Number of lines changed. | | `deletions` | [`Int!`](#int) | Number of lines deleted. | | `fileCount` | [`Int!`](#int) | Number of files changed. | ### `Discussion` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `createdAt` | [`Time!`](#time) | Timestamp of the discussion's creation. | | `id` | [`DiscussionID!`](#discussionid) | ID of this discussion. | | `noteable` | [`NoteableType`](#noteabletype) | Object which the discussion belongs to. | | `notes` | [`NoteConnection!`](#noteconnection) | All notes in the discussion. (see [Connections](#connections)) | | `replyId` | [`DiscussionID!`](#discussionid) | ID used to reply to this discussion. | | `resolvable` | [`Boolean!`](#boolean) | Indicates if the object can be resolved. | | `resolved` | [`Boolean!`](#boolean) | Indicates if the object is resolved. | | `resolvedAt` | [`Time`](#time) | Timestamp of when the object was resolved. | | `resolvedBy` | [`UserCore`](#usercore) | User who resolved the object. | ### `Dora` All information related to DORA metrics. #### Fields with arguments ##### `Dora.metrics` DORA metrics for the current group or project. Returns [`[DoraMetric!]`](#dorametric). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `endDate` | [`Date`](#date) | Date range to end at. Default is the current date. | | `environmentTiers` | [`[DeploymentTier!]`](#deploymenttier) | Deployment tiers of the environments to return. Defaults to `[PRODUCTION]`. | | `interval` | [`DoraMetricBucketingInterval`](#dorametricbucketinginterval) | How the metric should be aggregated. Defaults to `DAILY`. In the case of `ALL`, the `date` field in the response will be `null`. | | `metric` **{warning-solid}** | [`DoraMetricType`](#dorametrictype) | **Deprecated** in 15.10. Superseded by metrics fields. See `DoraMetric` type. | | `startDate` | [`Date`](#date) | Date range to start from. Default is 3 months ago. | ### `DoraMetric` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `changeFailureRate` | [`Float`](#float) | Percentage of deployments that caused incidents in production. | | `date` | [`String`](#string) | Date of the data point. | | `deploymentFrequency` | [`Float`](#float) | Number of deployments per day. | | `leadTimeForChanges` | [`Float`](#float) | Median time to deploy a merged merge request. | | `timeToRestoreService` | [`Float`](#float) | Median time to close an incident. | | `value` **{warning-solid}** | [`Float`](#float) | **Deprecated** in 15.10. Moved to corresponding metric field. | ### `EgressNode` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `artifactsEgress` | [`BigInt!`](#bigint) | Artifacts egress for that project in that period of time. | | `date` | [`String!`](#string) | First day of the node range. There is one node per month. | | `packagesEgress` | [`BigInt!`](#bigint) | Packages egress for that project in that period of time. | | `registryEgress` | [`BigInt!`](#bigint) | Registry egress for that project in that period of time. | | `repositoryEgress` | [`BigInt!`](#bigint) | Repository egress for that project in that period of time. | | `totalEgress` | [`BigInt!`](#bigint) | Total egress for that project in that period of time. | ### `Email` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `confirmedAt` | [`Time`](#time) | Timestamp the email was confirmed. | | `createdAt` | [`Time!`](#time) | Timestamp the email was created. | | `email` | [`String!`](#string) | Email address. | | `id` | [`ID!`](#id) | Internal ID of the email. | | `updatedAt` | [`Time!`](#time) | Timestamp the email was last updated. | ### `Environment` Describes where code is deployed for a project. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `autoDeleteAt` | [`Time`](#time) | When the environment is going to be deleted automatically. | | `autoStopAt` | [`Time`](#time) | When the environment is going to be stopped automatically. | | `createdAt` | [`Time`](#time) | When the environment was created. | | `deployFreezes` | [`[CiFreezePeriod!]`](#cifreezeperiod) | Deployment freeze periods of the environment. | | `environmentType` | [`String`](#string) | Folder name of the environment. | | `externalUrl` | [`String`](#string) | External URL of the environment. | | `id` | [`ID!`](#id) | ID of the environment. | | `latestOpenedMostSevereAlert` | [`AlertManagementAlert`](#alertmanagementalert) | Most severe open alert for the environment. If multiple alerts have equal severity, the most recent is returned. | | `name` | [`String!`](#string) | Human-readable name of the environment. | | `path` | [`String!`](#string) | Path to the environment. | | `protectedEnvironments` | [`ProtectedEnvironmentConnection`](#protectedenvironmentconnection) | Protected Environments for the environment. (see [Connections](#connections)) | | `slug` | [`String`](#string) | Slug of the environment. | | `state` | [`String!`](#string) | State of the environment, for example: available/stopped. | | `tier` | [`DeploymentTier`](#deploymenttier) | Deployment tier of the environment. | | `updatedAt` | [`Time`](#time) | When the environment was updated. | | `userPermissions` | [`EnvironmentPermissions!`](#environmentpermissions) | Permissions for the current user on the resource. This field can only be resolved for one environment in any single request. | #### Fields with arguments ##### `Environment.deployments` Deployments of the environment. This field can only be resolved for one environment in any single request. Returns [`DeploymentConnection`](#deploymentconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `orderBy` | [`DeploymentsOrderByInput`](#deploymentsorderbyinput) | Order by a specified field. | | `statuses` | [`[DeploymentStatus!]`](#deploymentstatus) | Statuses of the deployments. | ##### `Environment.lastDeployment` Last deployment of the environment. Returns [`Deployment`](#deployment). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `status` | [`DeploymentStatus!`](#deploymentstatus) | Status of the Deployment. | ##### `Environment.metricsDashboard` Metrics dashboard schema for the environment. WARNING: **Deprecated** in 16.0. Returns no data. Underlying feature was removed in 16.0. Returns [`MetricsDashboard`](#metricsdashboard). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `path` | [`String!`](#string) | Path to a file which defines a metrics dashboard eg: `"config/prometheus/common_metrics.yml"`. | ### `EnvironmentPermissions` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `destroyEnvironment` | [`Boolean!`](#boolean) | Indicates the user can perform `destroy_environment` on this resource. | | `stopEnvironment` | [`Boolean!`](#boolean) | Indicates the user can perform `stop_environment` on this resource. | | `updateEnvironment` | [`Boolean!`](#boolean) | Indicates the user can perform `update_environment` on this resource. | ### `Epic` Represents an epic. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `author` | [`UserCore!`](#usercore) | Author of the epic. | | `awardEmoji` | [`AwardEmojiConnection`](#awardemojiconnection) | List of award emojis associated with the epic. (see [Connections](#connections)) | | `blocked` | [`Boolean`](#boolean) | Indicates the epic is blocked. | | `blockedByCount` | [`Int`](#int) | Count of epics blocking this epic. | | `blockedByEpics` | [`EpicConnection`](#epicconnection) | Epics blocking this epic. (see [Connections](#connections)) | | `blockingCount` | [`Int`](#int) | Count of epics that this epic is blocking. | | `closedAt` | [`Time`](#time) | Timestamp of when the epic was closed. | | `color` | [`String`](#string) | Color of the epic. Returns `null` if `epic_color_highlight` feature flag is disabled. | | `commenters` | [`UserCoreConnection!`](#usercoreconnection) | All commenters on this noteable. (see [Connections](#connections)) | | `confidential` | [`Boolean`](#boolean) | Indicates if the epic is confidential. | | `createdAt` | [`Time`](#time) | Timestamp of when the epic was created. | | `defaultProjectForIssueCreation` | [`Project`](#project) | Default Project for issue creation. Based on the project the user created the last issue in. | | `descendantCounts` | [`EpicDescendantCount`](#epicdescendantcount) | Number of open and closed descendant epics and issues. | | `descendantWeightSum` | [`EpicDescendantWeights`](#epicdescendantweights) | Total weight of open and closed issues in the epic and its descendants. | | `description` | [`String`](#string) | Description of the epic. | | `descriptionHtml` | [`String`](#string) | GitLab Flavored Markdown rendering of `description`. | | `discussions` | [`DiscussionConnection!`](#discussionconnection) | All discussions on this noteable. (see [Connections](#connections)) | | `downvotes` | [`Int!`](#int) | Number of downvotes the epic has received. | | `dueDate` | [`Time`](#time) | Due date of the epic. | | `dueDateFixed` | [`Time`](#time) | Fixed due date of the epic. | | `dueDateFromInheritedSource` | [`Time`](#time) | Inherited due date of the epic from child epics or milestones. | | `dueDateFromMilestones` | [`Time`](#time) | Inherited due date of the epic from milestones. | | `dueDateIsFixed` | [`Boolean`](#boolean) | Indicates if the due date has been manually set. | | `events` | [`EventConnection`](#eventconnection) | List of events associated with the object. (see [Connections](#connections)) | | `group` | [`Group!`](#group) | Group to which the epic belongs. | | `hasChildren` | [`Boolean!`](#boolean) | Indicates if the epic has children. | | `hasIssues` | [`Boolean!`](#boolean) | Indicates if the epic has direct issues. | | `hasParent` | [`Boolean!`](#boolean) | Indicates if the epic has a parent epic. | | `healthStatus` | [`EpicHealthStatus`](#epichealthstatus) | Current health status of the epic. | | `id` | [`ID!`](#id) | ID of the epic. | | `iid` | [`ID!`](#id) | Internal ID of the epic. | | `issues` | [`EpicIssueConnection`](#epicissueconnection) | A list of issues associated with the epic. (see [Connections](#connections)) | | `labels` | [`LabelConnection`](#labelconnection) | Labels assigned to the epic. (see [Connections](#connections)) | | `notes` | [`NoteConnection!`](#noteconnection) | All notes on this noteable. (see [Connections](#connections)) | | `parent` | [`Epic`](#epic) | Parent epic of the epic. | | `participants` | [`UserCoreConnection`](#usercoreconnection) | List of participants for the epic. (see [Connections](#connections)) | | `relationPath` | [`String`](#string) | URI path of the epic-issue relationship. | | `relativePosition` | [`Int`](#int) | Relative position of the epic in the epic tree. | | `startDate` | [`Time`](#time) | Start date of the epic. | | `startDateFixed` | [`Time`](#time) | Fixed start date of the epic. | | `startDateFromInheritedSource` | [`Time`](#time) | Inherited start date of the epic from child epics or milestones. | | `startDateFromMilestones` | [`Time`](#time) | Inherited start date of the epic from milestones. | | `startDateIsFixed` | [`Boolean`](#boolean) | Indicates if the start date has been manually set. | | `state` | [`EpicState!`](#epicstate) | State of the epic. | | `subscribed` | [`Boolean!`](#boolean) | Indicates the currently logged in user is subscribed to the epic. | | `textColor` | [`String`](#string) | Text color generated for the epic. Returns `null` if `epic_color_highlight` feature flag is disabled. | | `title` | [`String`](#string) | Title of the epic. | | `titleHtml` | [`String`](#string) | GitLab Flavored Markdown rendering of `title`. | | `updatedAt` | [`Time`](#time) | Timestamp of when the epic was updated. | | `upvotes` | [`Int!`](#int) | Number of upvotes the epic has received. | | `userDiscussionsCount` | [`Int!`](#int) | Number of user discussions in the epic. | | `userNotesCount` | [`Int!`](#int) | Number of user notes of the epic. | | `userPermissions` | [`EpicPermissions!`](#epicpermissions) | Permissions for the current user on the resource. | | `webPath` | [`String!`](#string) | Web path of the epic. | | `webUrl` | [`String!`](#string) | Web URL of the epic. | #### Fields with arguments ##### `Epic.ancestors` Ancestors (parents) of the epic. Returns [`EpicConnection`](#epicconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `authorUsername` | [`String`](#string) | Filter epics by author. | | `confidential` | [`Boolean`](#boolean) | Filter epics by given confidentiality. | | `createdAfter` | [`Time`](#time) | Epics created after this date. | | `createdBefore` | [`Time`](#time) | Epics created before this date. | | `iid` | [`ID`](#id) | IID of the epic, e.g., "1". | | `iidStartsWith` | [`String`](#string) | Filter epics by IID for autocomplete. | | `iids` | [`[ID!]`](#id) | List of IIDs of epics, e.g., `[1, 2]`. | | `in` | [`[IssuableSearchableField!]`](#issuablesearchablefield) | Specify the fields to perform the search in. Defaults to `[TITLE, DESCRIPTION]`. Requires the `search` argument.'. | | `includeAncestorGroups` | [`Boolean`](#boolean) | Include epics from ancestor groups. | | `includeDescendantGroups` | [`Boolean`](#boolean) | Include epics from descendant groups. | | `labelName` | [`[String!]`](#string) | Filter epics by labels. | | `milestoneTitle` | [`String`](#string) | Filter epics by milestone title, computed from epic's issues. | | `myReactionEmoji` | [`String`](#string) | Filter by reaction emoji applied by the current user. | | `not` | [`NegatedEpicFilterInput`](#negatedepicfilterinput) | Negated epic arguments. | | `or` **{warning-solid}** | [`UnionedEpicFilterInput`](#unionedepicfilterinput) | **Introduced** in 15.9. This feature is an Experiment. It can be changed or removed at any time. List of arguments with inclusive OR. Ignored unless `or_issuable_queries` flag is enabled. | | `search` | [`String`](#string) | Search query for title or description. | | `sort` | [`EpicSort`](#epicsort) | List epics by sort order. | | `state` | [`EpicState`](#epicstate) | Filter epics by state. | | `timeframe` | [`Timeframe`](#timeframe) | List items overlapping the given timeframe. | | `topLevelHierarchyOnly` | [`Boolean`](#boolean) | Filter epics with a top-level hierarchy. | | `updatedAfter` | [`Time`](#time) | Epics updated after this date. | | `updatedBefore` | [`Time`](#time) | Epics updated before this date. | ##### `Epic.children` Children (sub-epics) of the epic. Returns [`EpicConnection`](#epicconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `authorUsername` | [`String`](#string) | Filter epics by author. | | `confidential` | [`Boolean`](#boolean) | Filter epics by given confidentiality. | | `createdAfter` | [`Time`](#time) | Epics created after this date. | | `createdBefore` | [`Time`](#time) | Epics created before this date. | | `iid` | [`ID`](#id) | IID of the epic, e.g., "1". | | `iidStartsWith` | [`String`](#string) | Filter epics by IID for autocomplete. | | `iids` | [`[ID!]`](#id) | List of IIDs of epics, e.g., `[1, 2]`. | | `in` | [`[IssuableSearchableField!]`](#issuablesearchablefield) | Specify the fields to perform the search in. Defaults to `[TITLE, DESCRIPTION]`. Requires the `search` argument.'. | | `includeAncestorGroups` | [`Boolean`](#boolean) | Include child epics from ancestor groups. | | `includeDescendantGroups` | [`Boolean`](#boolean) | Include epics from descendant groups. | | `labelName` | [`[String!]`](#string) | Filter epics by labels. | | `milestoneTitle` | [`String`](#string) | Filter epics by milestone title, computed from epic's issues. | | `myReactionEmoji` | [`String`](#string) | Filter by reaction emoji applied by the current user. | | `not` | [`NegatedEpicFilterInput`](#negatedepicfilterinput) | Negated epic arguments. | | `or` **{warning-solid}** | [`UnionedEpicFilterInput`](#unionedepicfilterinput) | **Introduced** in 15.9. This feature is an Experiment. It can be changed or removed at any time. List of arguments with inclusive OR. Ignored unless `or_issuable_queries` flag is enabled. | | `search` | [`String`](#string) | Search query for title or description. | | `sort` | [`EpicSort`](#epicsort) | List epics by sort order. | | `state` | [`EpicState`](#epicstate) | Filter epics by state. | | `timeframe` | [`Timeframe`](#timeframe) | List items overlapping the given timeframe. | | `topLevelHierarchyOnly` | [`Boolean`](#boolean) | Filter epics with a top-level hierarchy. | | `updatedAfter` | [`Time`](#time) | Epics updated after this date. | | `updatedBefore` | [`Time`](#time) | Epics updated before this date. | ##### `Epic.currentUserTodos` To-do items for the current user. Returns [`TodoConnection!`](#todoconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `state` | [`TodoStateEnum`](#todostateenum) | State of the to-do items. | ##### `Epic.reference` Internal reference of the epic. Returned in shortened format by default. Returns [`String!`](#string). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `full` | [`Boolean`](#boolean) | Indicates if the reference should be returned in full. | ### `EpicBoard` Represents an epic board. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `displayColors` | [`Boolean`](#boolean) | Whether or not display epic colors. | | `hideBacklogList` | [`Boolean`](#boolean) | Whether or not backlog list is hidden. | | `hideClosedList` | [`Boolean`](#boolean) | Whether or not closed list is hidden. | | `id` | [`BoardsEpicBoardID!`](#boardsepicboardid) | Global ID of the epic board. | | `labels` | [`LabelConnection`](#labelconnection) | Labels of the board. (see [Connections](#connections)) | | `name` | [`String`](#string) | Name of the epic board. | | `webPath` | [`String!`](#string) | Web path of the epic board. | | `webUrl` | [`String!`](#string) | Web URL of the epic board. | #### Fields with arguments ##### `EpicBoard.lists` Epic board lists. Returns [`EpicListConnection`](#epiclistconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `epicFilters` | [`EpicFilters`](#epicfilters) | Filters applied when getting epic metadata in the epic board list. | | `id` | [`BoardsEpicListID`](#boardsepiclistid) | Find an epic board list by ID. | ### `EpicDescendantCount` Counts of descendent epics. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `closedEpics` | [`Int`](#int) | Number of closed child epics. | | `closedIssues` | [`Int`](#int) | Number of closed epic issues. | | `openedEpics` | [`Int`](#int) | Number of opened child epics. | | `openedIssues` | [`Int`](#int) | Number of opened epic issues. | ### `EpicDescendantWeights` Total weight of open and closed descendant issues. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `closedIssues` | [`Int`](#int) | Total weight of completed (closed) issues in this epic, including epic descendants. | | `openedIssues` | [`Int`](#int) | Total weight of opened issues in this epic, including epic descendants. | ### `EpicHealthStatus` Health status of child issues. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `issuesAtRisk` | [`Int`](#int) | Number of issues at risk. | | `issuesNeedingAttention` | [`Int`](#int) | Number of issues that need attention. | | `issuesOnTrack` | [`Int`](#int) | Number of issues on track. | ### `EpicIssue` Relationship between an epic and an issue. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `alertManagementAlert` **{warning-solid}** | [`AlertManagementAlert`](#alertmanagementalert) | **Deprecated** in 15.6. Use `alert_management_alerts`. | | `assignees` | [`UserCoreConnection`](#usercoreconnection) | Assignees of the issue. (see [Connections](#connections)) | | `author` | [`UserCore!`](#usercore) | User that created the issue. | | `blocked` | [`Boolean!`](#boolean) | Indicates the issue is blocked. | | `blockedByCount` | [`Int`](#int) | Count of issues blocking this issue. | | `blockedByIssues` | [`IssueConnection`](#issueconnection) | Issues blocking this issue. (see [Connections](#connections)) | | `blockingCount` | [`Int!`](#int) | Count of issues this issue is blocking. | | `closedAsDuplicateOf` | [`Issue`](#issue) | Issue this issue was closed as a duplicate of. | | `closedAt` | [`Time`](#time) | Timestamp of when the issue was closed. | | `commenters` | [`UserCoreConnection!`](#usercoreconnection) | All commenters on this noteable. (see [Connections](#connections)) | | `confidential` | [`Boolean!`](#boolean) | Indicates the issue is confidential. | | `createNoteEmail` | [`String`](#string) | User specific email address for the issue. | | `createdAt` | [`Time!`](#time) | Timestamp of when the issue was created. | | `customerRelationsContacts` | [`CustomerRelationsContactConnection`](#customerrelationscontactconnection) | Customer relations contacts of the issue. (see [Connections](#connections)) | | `description` | [`String`](#string) | Description of the issue. | | `descriptionHtml` | [`String`](#string) | GitLab Flavored Markdown rendering of `description`. | | `designCollection` | [`DesignCollection`](#designcollection) | Collection of design images associated with this issue. | | `discussionLocked` | [`Boolean!`](#boolean) | Indicates discussion is locked on the issue. | | `discussions` | [`DiscussionConnection!`](#discussionconnection) | All discussions on this noteable. (see [Connections](#connections)) | | `downvotes` | [`Int!`](#int) | Number of downvotes the issue has received. | | `dueDate` | [`Time`](#time) | Due date of the issue. | | `emailsDisabled` | [`Boolean!`](#boolean) | Indicates if a project has email notifications disabled: `true` if email notifications are disabled. | | `epic` | [`Epic`](#epic) | Epic to which this issue belongs. | | `epicIssueId` | [`ID!`](#id) | ID of the epic-issue relation. | | `escalationPolicy` | [`EscalationPolicyType`](#escalationpolicytype) | Escalation policy associated with the issue. Available for issues which support escalation. | | `escalationStatus` | [`IssueEscalationStatus`](#issueescalationstatus) | Escalation status of the issue. | | `hasEpic` | [`Boolean!`](#boolean) | Indicates if the issue belongs to an epic. Can return true and not show an associated epic when the user has no access to the epic. | | `healthStatus` | [`HealthStatus`](#healthstatus) | Current health status. | | `hidden` | [`Boolean`](#boolean) | Indicates the issue is hidden because the author has been banned. | | `humanTimeEstimate` | [`String`](#string) | Human-readable time estimate of the issue. | | `humanTotalTimeSpent` | [`String`](#string) | Human-readable total time reported as spent on the issue. | | `id` | [`ID`](#id) | Global ID of the epic-issue relation. | | `iid` | [`ID!`](#id) | Internal ID of the issue. | | `iteration` | [`Iteration`](#iteration) | Iteration of the issue. | | `labels` | [`LabelConnection`](#labelconnection) | Labels of the issue. (see [Connections](#connections)) | | `mergeRequestsCount` | [`Int!`](#int) | Number of merge requests that close the issue on merge. | | `metricImages` | [`[MetricImage!]`](#metricimage) | Metric images associated to the issue. | | `milestone` | [`Milestone`](#milestone) | Milestone of the issue. | | `moved` | [`Boolean`](#boolean) | Indicates if issue got moved from other project. | | `movedTo` | [`Issue`](#issue) | Updated Issue after it got moved to another project. | | `notes` | [`NoteConnection!`](#noteconnection) | All notes on this noteable. (see [Connections](#connections)) | | `participants` | [`UserCoreConnection`](#usercoreconnection) | List of participants in the issue. (see [Connections](#connections)) | | `projectId` | [`Int!`](#int) | ID of the issue project. | | `relatedMergeRequests` | [`MergeRequestConnection`](#mergerequestconnection) | Merge requests related to the issue. This field can only be resolved for one issue in any single request. (see [Connections](#connections)) | | `relatedVulnerabilities` | [`VulnerabilityConnection`](#vulnerabilityconnection) | Related vulnerabilities of the issue. (see [Connections](#connections)) | | `relationPath` | [`String`](#string) | URI path of the epic-issue relation. | | `relativePosition` | [`Int`](#int) | Relative position of the issue (used for positioning in epic tree and issue boards). | | `severity` | [`IssuableSeverity`](#issuableseverity) | Severity level of the incident. | | `slaDueAt` | [`Time`](#time) | Timestamp of when the issue SLA expires. | | `state` | [`IssueState!`](#issuestate) | State of the issue. | | `statusPagePublishedIncident` | [`Boolean`](#boolean) | Indicates whether an issue is published to the status page. | | `subscribed` | [`Boolean!`](#boolean) | Indicates the currently logged in user is subscribed to the issue. | | `taskCompletionStatus` | [`TaskCompletionStatus!`](#taskcompletionstatus) | Task completion status of the issue. | | `timeEstimate` | [`Int!`](#int) | Time estimate of the issue. | | `timelogs` | [`TimelogConnection!`](#timelogconnection) | Timelogs on the issue. (see [Connections](#connections)) | | `title` | [`String!`](#string) | Title of the issue. | | `titleHtml` | [`String`](#string) | GitLab Flavored Markdown rendering of `title`. | | `totalTimeSpent` | [`Int!`](#int) | Total time reported as spent on the issue. | | `type` | [`IssueType`](#issuetype) | Type of the issue. | | `updatedAt` | [`Time!`](#time) | Timestamp of when the issue was last updated. | | `updatedBy` | [`UserCore`](#usercore) | User that last updated the issue. | | `upvotes` | [`Int!`](#int) | Number of upvotes the issue has received. | | `userDiscussionsCount` | [`Int!`](#int) | Number of user discussions in the issue. | | `userNotesCount` | [`Int!`](#int) | Number of user notes of the issue. | | `userPermissions` | [`IssuePermissions!`](#issuepermissions) | Permissions for the current user on the resource. | | `webPath` | [`String!`](#string) | Web path of the issue. | | `webUrl` | [`String!`](#string) | Web URL of the issue. | | `weight` | [`Int`](#int) | Weight of the issue. | #### Fields with arguments ##### `EpicIssue.alertManagementAlerts` Alert Management alerts associated to this issue. Returns [`AlertManagementAlertConnection`](#alertmanagementalertconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `assigneeUsername` | [`String`](#string) | Username of a user assigned to the issue. | | `domain` | [`AlertManagementDomainFilter!`](#alertmanagementdomainfilter) | Filter query for given domain. | | `iid` | [`String`](#string) | IID of the alert. For example, "1". | | `search` | [`String`](#string) | Search query for title, description, service, or monitoring_tool. | | `sort` | [`AlertManagementAlertSort`](#alertmanagementalertsort) | Sort alerts by this criteria. | | `statuses` | [`[AlertManagementStatus!]`](#alertmanagementstatus) | Alerts with the specified statues. For example, `[TRIGGERED]`. | ##### `EpicIssue.currentUserTodos` To-do items for the current user. Returns [`TodoConnection!`](#todoconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `state` | [`TodoStateEnum`](#todostateenum) | State of the to-do items. | ##### `EpicIssue.issuableResourceLinks` Issuable resource links of the incident issue. Returns [`IssuableResourceLinkConnection`](#issuableresourcelinkconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `incidentId` | [`IssueID!`](#issueid) | ID of the incident. | ##### `EpicIssue.reference` Internal reference of the issue. Returned in shortened format by default. Returns [`String!`](#string). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `full` | [`Boolean`](#boolean) | Boolean option specifying whether the reference should be returned in full. | ### `EpicList` Represents an epic board list. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `collapsed` | [`Boolean`](#boolean) | Indicates if this list is collapsed for this user. | | `epicsCount` **{warning-solid}** | [`Int`](#int) | **Deprecated** in 14.9. This was renamed. Use: `metadata`. | | `id` | [`BoardsEpicListID!`](#boardsepiclistid) | Global ID of the board list. | | `label` | [`Label`](#label) | Label of the list. | | `listType` | [`String!`](#string) | Type of the list. | | `metadata` | [`EpicListMetadata`](#epiclistmetadata) | Epic list metatada. | | `position` | [`Int`](#int) | Position of the list within the board. | | `title` | [`String!`](#string) | Title of the list. | #### Fields with arguments ##### `EpicList.epics` List epics. Returns [`EpicConnection`](#epicconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `filters` | [`EpicFilters`](#epicfilters) | Filters applied when selecting epics in the board list. | ### `EpicListMetadata` Represents epic board list metadata. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `epicsCount` | [`Int`](#int) | Count of epics in the list. | | `totalWeight` **{warning-solid}** | [`Int`](#int) | **Introduced** in 14.7. This feature is an Experiment. It can be changed or removed at any time. Total weight of all issues in the list. | ### `EpicPermissions` Check permissions for the current user on an epic. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `adminEpic` | [`Boolean!`](#boolean) | Indicates the user can perform `admin_epic` on this resource. | | `awardEmoji` | [`Boolean!`](#boolean) | Indicates the user can perform `award_emoji` on this resource. | | `createEpic` | [`Boolean!`](#boolean) | Indicates the user can perform `create_epic` on this resource. | | `createNote` | [`Boolean!`](#boolean) | Indicates the user can perform `create_note` on this resource. | | `destroyEpic` | [`Boolean!`](#boolean) | Indicates the user can perform `destroy_epic` on this resource. | | `readEpic` | [`Boolean!`](#boolean) | Indicates the user can perform `read_epic` on this resource. | | `readEpicIid` | [`Boolean!`](#boolean) | Indicates the user can perform `read_epic_iid` on this resource. | | `updateEpic` | [`Boolean!`](#boolean) | Indicates the user can perform `update_epic` on this resource. | ### `EscalationPolicyType` Represents an escalation policy. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `description` | [`String`](#string) | Description of the escalation policy. | | `id` | [`IncidentManagementEscalationPolicyID`](#incidentmanagementescalationpolicyid) | ID of the escalation policy. | | `name` | [`String`](#string) | Name of the escalation policy. | | `rules` | [`[EscalationRuleType!]`](#escalationruletype) | Steps of the escalation policy. | ### `EscalationRuleType` Represents an escalation rule for an escalation policy. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `elapsedTimeSeconds` | [`Int`](#int) | Time in seconds before the rule is activated. | | `id` | [`IncidentManagementEscalationRuleID`](#incidentmanagementescalationruleid) | ID of the escalation policy. | | `oncallSchedule` | [`IncidentManagementOncallSchedule`](#incidentmanagementoncallschedule) | On-call schedule to notify. | | `status` | [`EscalationRuleStatus`](#escalationrulestatus) | Status required to prevent the rule from activating. | | `user` | [`UserCore`](#usercore) | User to notify. | ### `Event` Representing an event. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `action` | [`EventAction!`](#eventaction) | Action of the event. | | `author` | [`UserCore!`](#usercore) | Author of this event. | | `createdAt` | [`Time!`](#time) | When this event was created. | | `id` | [`ID!`](#id) | ID of the event. | | `updatedAt` | [`Time!`](#time) | When this event was updated. | ### `ExternalAuditEventDestination` Represents an external resource to send audit events to. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `destinationUrl` | [`String!`](#string) | External destination to send audit events to. | | `eventTypeFilters` | [`[String!]!`](#string) | List of event type filters added for streaming. | | `group` | [`Group!`](#group) | Group the destination belongs to. | | `headers` | [`AuditEventStreamingHeaderConnection!`](#auditeventstreamingheaderconnection) | List of additional HTTP headers sent with each event. (see [Connections](#connections)) | | `id` | [`ID!`](#id) | ID of the destination. | | `verificationToken` | [`String!`](#string) | Verification token to validate source of event. | ### `ExternalIssue` Represents an external issue. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `createdAt` | [`Time`](#time) | Timestamp of when the issue was created. | | `externalTracker` | [`String`](#string) | Type of external tracker. | | `relativeReference` | [`String`](#string) | Relative reference of the issue in the external tracker. | | `status` | [`String`](#string) | Status of the issue in the external tracker. | | `title` | [`String`](#string) | Title of the issue in the external tracker. | | `updatedAt` | [`Time`](#time) | Timestamp of when the issue was updated. | | `webUrl` | [`String`](#string) | URL to the issue in the external tracker. | ### `ExternalStatusCheck` Describes an external status check. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `externalUrl` | [`String!`](#string) | External URL for the status check. | | `id` | [`GlobalID!`](#globalid) | ID of the rule. | | `name` | [`String!`](#string) | Name of the rule. | ### `FileUpload` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`UploadID!`](#uploadid) | Global ID of the upload. | | `path` | [`String!`](#string) | Path of the upload. | | `size` | [`Int!`](#int) | Size of the upload in bytes. | ### `ForkDetails` Details of the fork project compared to its upstream project. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `ahead` | [`Int`](#int) | Number of commits ahead of upstream. | | `behind` | [`Int`](#int) | Number of commits behind upstream. | | `hasConflicts` | [`Boolean`](#boolean) | Indicates if the fork conflicts with its upstream project. | | `isSyncing` | [`Boolean`](#boolean) | Indicates if there is a synchronization in progress. | ### `GeoNode` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `containerRepositoriesMaxCapacity` | [`Int`](#int) | Maximum concurrency of container repository sync for this secondary node. | | `enabled` | [`Boolean`](#boolean) | Indicates whether this Geo node is enabled. | | `filesMaxCapacity` | [`Int`](#int) | Maximum concurrency of LFS/attachment backfill for this secondary node. | | `id` | [`ID!`](#id) | ID of this GeoNode. | | `internalUrl` | [`String`](#string) | URL defined on the primary node secondary nodes should use to contact it. | | `minimumReverificationInterval` | [`Int`](#int) | Interval (in days) in which the repository verification is valid. After expiry, it is reverted. | | `name` | [`String`](#string) | Unique identifier for this Geo node. | | `primary` | [`Boolean`](#boolean) | Indicates whether this Geo node is the primary. | | `reposMaxCapacity` | [`Int`](#int) | Maximum concurrency of repository backfill for this secondary node. | | `selectiveSyncNamespaces` | [`NamespaceConnection`](#namespaceconnection) | Namespaces that should be synced, if `selective_sync_type` == `namespaces`. (see [Connections](#connections)) | | `selectiveSyncShards` | [`[String!]`](#string) | Repository storages whose projects should be synced, if `selective_sync_type` == `shards`. | | `selectiveSyncType` | [`String`](#string) | Indicates if syncing is limited to only specific groups, or shards. | | `syncObjectStorage` | [`Boolean`](#boolean) | Indicates if this secondary node will replicate blobs in Object Storage. | | `url` | [`String`](#string) | User-facing URL for this Geo node. | | `verificationMaxCapacity` | [`Int`](#int) | Maximum concurrency of repository verification for this secondary node. | #### Fields with arguments ##### `GeoNode.ciSecureFileRegistries` Find Ci Secure File registries on this Geo node. Returns [`CiSecureFileRegistryConnection`](#cisecurefileregistryconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ids` | [`[ID!]`](#id) | Filters registries by their ID. | | `keyword` | [`String`](#string) | Filters registries by their attributes using a keyword. | | `replicationState` | [`ReplicationStateEnum`](#replicationstateenum) | Filters registries by their replication state. | | `verificationState` | [`VerificationStateEnum`](#verificationstateenum) | Filters registries by their verification state. | ##### `GeoNode.containerRepositoryRegistries` Find Container Repository registries on this Geo node. Returns [`ContainerRepositoryRegistryConnection`](#containerrepositoryregistryconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ids` | [`[ID!]`](#id) | Filters registries by their ID. | | `keyword` | [`String`](#string) | Filters registries by their attributes using a keyword. | | `replicationState` | [`ReplicationStateEnum`](#replicationstateenum) | Filters registries by their replication state. | | `verificationState` | [`VerificationStateEnum`](#verificationstateenum) | Filters registries by their verification state. | ##### `GeoNode.dependencyProxyBlobRegistries` Find Dependency Proxy Blob registries on this Geo node. WARNING: **Introduced** in 15.6. This feature is an Experiment. It can be changed or removed at any time. Returns [`DependencyProxyBlobRegistryConnection`](#dependencyproxyblobregistryconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ids` | [`[ID!]`](#id) | Filters registries by their ID. | | `keyword` | [`String`](#string) | Filters registries by their attributes using a keyword. | | `replicationState` | [`ReplicationStateEnum`](#replicationstateenum) | Filters registries by their replication state. | | `verificationState` | [`VerificationStateEnum`](#verificationstateenum) | Filters registries by their verification state. | ##### `GeoNode.dependencyProxyManifestRegistries` Find Dependency Proxy Manifest registries on this Geo node. Returns [`DependencyProxyManifestRegistryConnection`](#dependencyproxymanifestregistryconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ids` | [`[ID!]`](#id) | Filters registries by their ID. | | `keyword` | [`String`](#string) | Filters registries by their attributes using a keyword. | | `replicationState` | [`ReplicationStateEnum`](#replicationstateenum) | Filters registries by their replication state. | | `verificationState` | [`VerificationStateEnum`](#verificationstateenum) | Filters registries by their verification state. | ##### `GeoNode.groupWikiRepositoryRegistries` Find group wiki repository registries on this Geo node. Returns [`GroupWikiRepositoryRegistryConnection`](#groupwikirepositoryregistryconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ids` | [`[ID!]`](#id) | Filters registries by their ID. | | `keyword` | [`String`](#string) | Filters registries by their attributes using a keyword. | | `replicationState` | [`ReplicationStateEnum`](#replicationstateenum) | Filters registries by their replication state. | | `verificationState` | [`VerificationStateEnum`](#verificationstateenum) | Filters registries by their verification state. | ##### `GeoNode.jobArtifactRegistries` Find Job Artifact registries on this Geo node. Returns [`JobArtifactRegistryConnection`](#jobartifactregistryconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ids` | [`[ID!]`](#id) | Filters registries by their ID. | | `keyword` | [`String`](#string) | Filters registries by their attributes using a keyword. | | `replicationState` | [`ReplicationStateEnum`](#replicationstateenum) | Filters registries by their replication state. | | `verificationState` | [`VerificationStateEnum`](#verificationstateenum) | Filters registries by their verification state. | ##### `GeoNode.lfsObjectRegistries` Find LFS object registries on this Geo node. Returns [`LfsObjectRegistryConnection`](#lfsobjectregistryconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ids` | [`[ID!]`](#id) | Filters registries by their ID. | | `keyword` | [`String`](#string) | Filters registries by their attributes using a keyword. | | `replicationState` | [`ReplicationStateEnum`](#replicationstateenum) | Filters registries by their replication state. | | `verificationState` | [`VerificationStateEnum`](#verificationstateenum) | Filters registries by their verification state. | ##### `GeoNode.mergeRequestDiffRegistries` Find merge request diff registries on this Geo node. Returns [`MergeRequestDiffRegistryConnection`](#mergerequestdiffregistryconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ids` | [`[ID!]`](#id) | Filters registries by their ID. | | `keyword` | [`String`](#string) | Filters registries by their attributes using a keyword. | | `replicationState` | [`ReplicationStateEnum`](#replicationstateenum) | Filters registries by their replication state. | | `verificationState` | [`VerificationStateEnum`](#verificationstateenum) | Filters registries by their verification state. | ##### `GeoNode.packageFileRegistries` Package file registries of the GeoNode. Returns [`PackageFileRegistryConnection`](#packagefileregistryconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ids` | [`[ID!]`](#id) | Filters registries by their ID. | | `keyword` | [`String`](#string) | Filters registries by their attributes using a keyword. | | `replicationState` | [`ReplicationStateEnum`](#replicationstateenum) | Filters registries by their replication state. | | `verificationState` | [`VerificationStateEnum`](#verificationstateenum) | Filters registries by their verification state. | ##### `GeoNode.pagesDeploymentRegistries` Find Pages Deployment registries on this Geo node. Returns [`PagesDeploymentRegistryConnection`](#pagesdeploymentregistryconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ids` | [`[ID!]`](#id) | Filters registries by their ID. | | `keyword` | [`String`](#string) | Filters registries by their attributes using a keyword. | | `replicationState` | [`ReplicationStateEnum`](#replicationstateenum) | Filters registries by their replication state. | | `verificationState` | [`VerificationStateEnum`](#verificationstateenum) | Filters registries by their verification state. | ##### `GeoNode.pipelineArtifactRegistries` Find pipeline artifact registries on this Geo node. Returns [`PipelineArtifactRegistryConnection`](#pipelineartifactregistryconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ids` | [`[ID!]`](#id) | Filters registries by their ID. | | `keyword` | [`String`](#string) | Filters registries by their attributes using a keyword. | | `replicationState` | [`ReplicationStateEnum`](#replicationstateenum) | Filters registries by their replication state. | | `verificationState` | [`VerificationStateEnum`](#verificationstateenum) | Filters registries by their verification state. | ##### `GeoNode.projectWikiRepositoryRegistries` Find Project Wiki Repository registries on this Geo node. Ignored if `geo_project_wiki_repository_replication` feature flag is disabled. Returns [`ProjectWikiRepositoryRegistryConnection`](#projectwikirepositoryregistryconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ids` | [`[ID!]`](#id) | Filters registries by their ID. | | `keyword` | [`String`](#string) | Filters registries by their attributes using a keyword. | | `replicationState` | [`ReplicationStateEnum`](#replicationstateenum) | Filters registries by their replication state. | | `verificationState` | [`VerificationStateEnum`](#verificationstateenum) | Filters registries by their verification state. | ##### `GeoNode.snippetRepositoryRegistries` Find snippet repository registries on this Geo node. Returns [`SnippetRepositoryRegistryConnection`](#snippetrepositoryregistryconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ids` | [`[ID!]`](#id) | Filters registries by their ID. | | `keyword` | [`String`](#string) | Filters registries by their attributes using a keyword. | | `replicationState` | [`ReplicationStateEnum`](#replicationstateenum) | Filters registries by their replication state. | | `verificationState` | [`VerificationStateEnum`](#verificationstateenum) | Filters registries by their verification state. | ##### `GeoNode.terraformStateVersionRegistries` Find terraform state version registries on this Geo node. Returns [`TerraformStateVersionRegistryConnection`](#terraformstateversionregistryconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ids` | [`[ID!]`](#id) | Filters registries by their ID. | | `keyword` | [`String`](#string) | Filters registries by their attributes using a keyword. | | `replicationState` | [`ReplicationStateEnum`](#replicationstateenum) | Filters registries by their replication state. | | `verificationState` | [`VerificationStateEnum`](#verificationstateenum) | Filters registries by their verification state. | ##### `GeoNode.uploadRegistries` Find Upload registries on this Geo node. Returns [`UploadRegistryConnection`](#uploadregistryconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ids` | [`[ID!]`](#id) | Filters registries by their ID. | | `keyword` | [`String`](#string) | Filters registries by their attributes using a keyword. | | `replicationState` | [`ReplicationStateEnum`](#replicationstateenum) | Filters registries by their replication state. | | `verificationState` | [`VerificationStateEnum`](#verificationstateenum) | Filters registries by their verification state. | ### `GpgSignature` GPG signature for a signed commit. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `commitSha` | [`String`](#string) | SHA of the associated commit. | | `gpgKeyPrimaryKeyid` | [`String`](#string) | ID of the GPG key. | | `gpgKeyUserEmail` | [`String`](#string) | User email associated with the GPG key. | | `gpgKeyUserName` | [`String`](#string) | User name associated with the GPG key. | | `project` | [`Project`](#project) | Project of the associated commit. | | `user` | [`UserCore`](#usercore) | User associated with the key. | | `verificationStatus` | [`VerificationStatus`](#verificationstatus) | Indicates verification status of the associated key or certificate. | ### `GrafanaIntegration` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `createdAt` | [`Time!`](#time) | Timestamp of the issue's creation. | | `enabled` | [`Boolean!`](#boolean) | Indicates whether Grafana integration is enabled. | | `grafanaUrl` | [`String!`](#string) | URL for the Grafana host for the Grafana integration. | | `id` | [`ID!`](#id) | Internal ID of the Grafana integration. | | `updatedAt` | [`Time!`](#time) | Timestamp of the issue's last activity. | ### `Group` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `actualRepositorySizeLimit` | [`Float`](#float) | Size limit for repositories in the namespace in bytes. | | `additionalPurchasedStorageSize` | [`Float`](#float) | Additional storage purchased for the root namespace in bytes. | | `allowStaleRunnerPruning` | [`Boolean!`](#boolean) | Indicates whether to regularly prune stale group runners. Defaults to false. | | `autoDevopsEnabled` | [`Boolean`](#boolean) | Indicates whether Auto DevOps is enabled for all projects within this group. | | `avatarUrl` | [`String`](#string) | Avatar URL of the group. | | `containerRepositoriesCount` | [`Int!`](#int) | Number of container repositories in the group. | | `containsLockedProjects` | [`Boolean!`](#boolean) | Includes at least one project where the repository size exceeds the limit. | | `crossProjectPipelineAvailable` | [`Boolean!`](#boolean) | Indicates if the cross_project_pipeline feature is available for the namespace. | | `customEmoji` **{warning-solid}** | [`CustomEmojiConnection`](#customemojiconnection) | **Introduced** in 13.6. This feature is an Experiment. It can be changed or removed at any time. Custom emoji within this namespace. | | `dependencyProxyBlobCount` | [`Int!`](#int) | Number of dependency proxy blobs cached in the group. | | `dependencyProxyBlobs` | [`DependencyProxyBlobConnection`](#dependencyproxyblobconnection) | Dependency Proxy blobs. (see [Connections](#connections)) | | `dependencyProxyImageCount` | [`Int!`](#int) | Number of dependency proxy images cached in the group. | | `dependencyProxyImagePrefix` | [`String!`](#string) | Prefix for pulling images when using the dependency proxy. | | `dependencyProxyImageTtlPolicy` | [`DependencyProxyImageTtlGroupPolicy`](#dependencyproxyimagettlgrouppolicy) | Dependency proxy TTL policy for the group. | | `dependencyProxyManifests` | [`DependencyProxyManifestConnection`](#dependencyproxymanifestconnection) | Dependency Proxy manifests. (see [Connections](#connections)) | | `dependencyProxySetting` | [`DependencyProxySetting`](#dependencyproxysetting) | Dependency Proxy settings for the group. | | `dependencyProxyTotalSize` | [`String!`](#string) | Total size of the dependency proxy cached images. | | `dependencyProxyTotalSizeInBytes` | [`Int!`](#int) | Total size of the dependency proxy cached images in bytes. | | `description` | [`String`](#string) | Description of the namespace. | | `descriptionHtml` | [`String`](#string) | GitLab Flavored Markdown rendering of `description`. | | `dora` | [`Dora`](#dora) | Group's DORA metrics. | | `emailsDisabled` | [`Boolean`](#boolean) | Indicates if a group has email notifications disabled. | | `enforceFreeUserCap` | [`Boolean`](#boolean) | Indicates whether the group has limited users for a free plan. | | `epicBoards` | [`EpicBoardConnection`](#epicboardconnection) | Find epic boards. (see [Connections](#connections)) | | `epicsEnabled` | [`Boolean`](#boolean) | Indicates if Epics are enabled for namespace. | | `externalAuditEventDestinations` | [`ExternalAuditEventDestinationConnection`](#externalauditeventdestinationconnection) | External locations that receive audit events belonging to the group. (see [Connections](#connections)) | | `flowMetrics` **{warning-solid}** | [`GroupValueStreamAnalyticsFlowMetrics`](#groupvaluestreamanalyticsflowmetrics) | **Introduced** in 15.10. This feature is an Experiment. It can be changed or removed at any time. Flow metrics for value stream analytics. | | `fullName` | [`String!`](#string) | Full name of the namespace. | | `fullPath` | [`ID!`](#id) | Full path of the namespace. | | `id` | [`ID!`](#id) | ID of the namespace. | | `isTemporaryStorageIncreaseEnabled` | [`Boolean!`](#boolean) | Status of the temporary storage increase. | | `lfsEnabled` | [`Boolean`](#boolean) | Indicates if Large File Storage (LFS) is enabled for namespace. | | `mentionsDisabled` | [`Boolean`](#boolean) | Indicates if a group is disabled from getting mentioned. | | `name` | [`String!`](#string) | Name of the namespace. | | `packageSettings` | [`PackageSettings`](#packagesettings) | Package settings for the namespace. | | `parent` | [`Group`](#group) | Parent group. | | `path` | [`String!`](#string) | Path of the namespace. | | `projectCreationLevel` | [`String`](#string) | Permission level required to create projects in the group. | | `recentIssueBoards` | [`BoardConnection`](#boardconnection) | List of recently visited boards of the group. Maximum size is 4. (see [Connections](#connections)) | | `repositorySizeExcessProjectCount` | [`Int!`](#int) | Number of projects in the root namespace where the repository size exceeds the limit. | | `requestAccessEnabled` | [`Boolean`](#boolean) | Indicates if users can request access to namespace. | | `requireTwoFactorAuthentication` | [`Boolean`](#boolean) | Indicates if all users in this group are required to set up two-factor authentication. | | `rootStorageStatistics` | [`RootStorageStatistics`](#rootstoragestatistics) | Aggregated storage statistics of the namespace. Only available for root namespaces. | | `shareWithGroupLock` | [`Boolean`](#boolean) | Indicates if sharing a project with another group within this group is prevented. | | `sharedRunnersSetting` | [`SharedRunnersSetting`](#sharedrunnerssetting) | Shared runners availability for the namespace and its descendants. | | `stats` | [`GroupStats`](#groupstats) | Group statistics. | | `storageSizeLimit` | [`Float`](#float) | Total storage limit of the root namespace in bytes. | | `subgroupCreationLevel` | [`String`](#string) | Permission level required to create subgroups within the group. | | `temporaryStorageIncreaseEndsOn` | [`Time`](#time) | Date until the temporary storage increase is active. | | `timelogCategories` **{warning-solid}** | [`TimeTrackingTimelogCategoryConnection`](#timetrackingtimelogcategoryconnection) | **Introduced** in 15.3. This feature is an Experiment. It can be changed or removed at any time. Timelog categories for the namespace. | | `totalRepositorySize` | [`Float`](#float) | Total repository size of all projects in the root namespace in bytes. | | `totalRepositorySizeExcess` | [`Float`](#float) | Total excess repository size of all projects in the root namespace in bytes. | | `twoFactorGracePeriod` | [`Int`](#int) | Time before two-factor authentication is enforced. | | `userPermissions` | [`GroupPermissions!`](#grouppermissions) | Permissions for the current user on the resource. | | `visibility` | [`String`](#string) | Visibility of the namespace. | | `vulnerabilityScanners` | [`VulnerabilityScannerConnection`](#vulnerabilityscannerconnection) | Vulnerability scanners reported on the project vulnerabilities of the group and its subgroups. (see [Connections](#connections)) | | `webUrl` | [`String!`](#string) | Web URL of the group. | #### Fields with arguments ##### `Group.achievements` Achievements for the namespace. Returns `null` if the `achievements` feature flag is disabled. WARNING: **Introduced** in 15.8. This feature is an Experiment. It can be changed or removed at any time. Returns [`AchievementConnection`](#achievementconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ids` | [`[AchievementsAchievementID!]`](#achievementsachievementid) | Filter achievements by IDs. | ##### `Group.billableMembersCount` Number of billable users in the group. Returns [`Int`](#int). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `requestedHostedPlan` | [`String`](#string) | Plan from which to get billable members. | ##### `Group.board` A single board of the group. Returns [`Board`](#board). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`BoardID!`](#boardid) | ID of the board. | ##### `Group.boards` Boards of the group. Returns [`BoardConnection`](#boardconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`BoardID`](#boardid) | Find a board by its ID. | ##### `Group.ciVariables` List of the group's CI/CD variables. Returns [`CiGroupVariableConnection`](#cigroupvariableconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `sort` | [`CiVariableSort`](#civariablesort) | Sort order of results. | ##### `Group.clusterAgents` Cluster agents associated with projects in the group and its subgroups. Returns [`ClusterAgentConnection`](#clusteragentconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `hasRemoteDevelopmentAgentConfig` | [`Boolean`](#boolean) | Returns only cluster agents which have an associated remote development agent config. | | `hasVulnerabilities` | [`Boolean`](#boolean) | Returns only cluster agents which have vulnerabilities. | ##### `Group.codeCoverageActivities` Represents the code coverage activity for this group. Returns [`CodeCoverageActivityConnection`](#codecoverageactivityconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `startDate` | [`Date!`](#date) | First day for which to fetch code coverage activity (maximum time window is set to 90 days). | ##### `Group.complianceFrameworks` Compliance frameworks available to projects in this namespace. Returns [`ComplianceFrameworkConnection`](#complianceframeworkconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`ComplianceManagementFrameworkID`](#compliancemanagementframeworkid) | Global ID of a specific compliance framework to return. | ##### `Group.contactStateCounts` Counts of contacts by state for the group. Returns [`ContactStateCounts`](#contactstatecounts). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `search` | [`String`](#string) | Search term to find contacts with. | | `state` | [`CustomerRelationsContactState`](#customerrelationscontactstate) | State of the contacts to search for. | ##### `Group.contacts` Find contacts of this group. Returns [`CustomerRelationsContactConnection`](#customerrelationscontactconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ids` | [`[CustomerRelationsContactID!]`](#customerrelationscontactid) | Filter contacts by IDs. | | `search` | [`String`](#string) | Search term to find contacts with. | | `sort` | [`ContactSort`](#contactsort) | Criteria to sort contacts by. | | `state` | [`CustomerRelationsContactState`](#customerrelationscontactstate) | State of the contacts to search for. | ##### `Group.containerRepositories` Container repositories of the group. Returns [`ContainerRepositoryConnection`](#containerrepositoryconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `name` | [`String`](#string) | Filter the container repositories by their name. | | `sort` | [`ContainerRepositorySort`](#containerrepositorysort) | Sort container repositories by this criteria. | ##### `Group.contributions` Provides the aggregated contributions by users within the group and its subgroups. Returns [`ContributionAnalyticsContributionConnection`](#contributionanalyticscontributionconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `from` | [`ISO8601Date!`](#iso8601date) | Start date of the reporting time range. | | `to` | [`ISO8601Date!`](#iso8601date) | End date of the reporting time range. The end date must be within 93 days after the start date. | ##### `Group.dataTransfer` Data transfer data point for a specific period. This is mocked data under a development feature flag. Returns [`GroupDataTransfer`](#groupdatatransfer). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `from` | [`Date`](#date) | Retain egress data for one year. Data for the current month will increase dynamically as egress occurs. | | `to` | [`Date`](#date) | End date for the data. | ##### `Group.descendantGroups` List of descendant groups of this group. Returns [`GroupConnection`](#groupconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `includeParentDescendants` | [`Boolean`](#boolean) | List of descendant groups of the parent group. | | `owned` | [`Boolean`](#boolean) | Limit result to groups owned by authenticated user. | | `search` | [`String`](#string) | Search query for group name or group full path. | ##### `Group.epic` Find a single epic. Returns [`Epic`](#epic). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `authorUsername` | [`String`](#string) | Filter epics by author. | | `confidential` | [`Boolean`](#boolean) | Filter epics by given confidentiality. | | `createdAfter` | [`Time`](#time) | Epics created after this date. | | `createdBefore` | [`Time`](#time) | Epics created before this date. | | `iid` | [`ID`](#id) | IID of the epic, e.g., "1". | | `iidStartsWith` | [`String`](#string) | Filter epics by IID for autocomplete. | | `iids` | [`[ID!]`](#id) | List of IIDs of epics, e.g., `[1, 2]`. | | `in` | [`[IssuableSearchableField!]`](#issuablesearchablefield) | Specify the fields to perform the search in. Defaults to `[TITLE, DESCRIPTION]`. Requires the `search` argument.'. | | `includeAncestorGroups` | [`Boolean`](#boolean) | Include epics from ancestor groups. | | `includeDescendantGroups` | [`Boolean`](#boolean) | Include epics from descendant groups. | | `labelName` | [`[String!]`](#string) | Filter epics by labels. | | `milestoneTitle` | [`String`](#string) | Filter epics by milestone title, computed from epic's issues. | | `myReactionEmoji` | [`String`](#string) | Filter by reaction emoji applied by the current user. | | `not` | [`NegatedEpicFilterInput`](#negatedepicfilterinput) | Negated epic arguments. | | `or` **{warning-solid}** | [`UnionedEpicFilterInput`](#unionedepicfilterinput) | **Introduced** in 15.9. This feature is an Experiment. It can be changed or removed at any time. List of arguments with inclusive OR. Ignored unless `or_issuable_queries` flag is enabled. | | `search` | [`String`](#string) | Search query for title or description. | | `sort` | [`EpicSort`](#epicsort) | List epics by sort order. | | `state` | [`EpicState`](#epicstate) | Filter epics by state. | | `timeframe` | [`Timeframe`](#timeframe) | List items overlapping the given timeframe. | | `topLevelHierarchyOnly` | [`Boolean`](#boolean) | Filter epics with a top-level hierarchy. | | `updatedAfter` | [`Time`](#time) | Epics updated after this date. | | `updatedBefore` | [`Time`](#time) | Epics updated before this date. | ##### `Group.epicBoard` Find a single epic board. Returns [`EpicBoard`](#epicboard). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`BoardsEpicBoardID!`](#boardsepicboardid) | Find an epic board by ID. | ##### `Group.epics` Find epics. Returns [`EpicConnection`](#epicconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `authorUsername` | [`String`](#string) | Filter epics by author. | | `confidential` | [`Boolean`](#boolean) | Filter epics by given confidentiality. | | `createdAfter` | [`Time`](#time) | Epics created after this date. | | `createdBefore` | [`Time`](#time) | Epics created before this date. | | `iid` | [`ID`](#id) | IID of the epic, e.g., "1". | | `iidStartsWith` | [`String`](#string) | Filter epics by IID for autocomplete. | | `iids` | [`[ID!]`](#id) | List of IIDs of epics, e.g., `[1, 2]`. | | `in` | [`[IssuableSearchableField!]`](#issuablesearchablefield) | Specify the fields to perform the search in. Defaults to `[TITLE, DESCRIPTION]`. Requires the `search` argument.'. | | `includeAncestorGroups` | [`Boolean`](#boolean) | Include epics from ancestor groups. | | `includeDescendantGroups` | [`Boolean`](#boolean) | Include epics from descendant groups. | | `labelName` | [`[String!]`](#string) | Filter epics by labels. | | `milestoneTitle` | [`String`](#string) | Filter epics by milestone title, computed from epic's issues. | | `myReactionEmoji` | [`String`](#string) | Filter by reaction emoji applied by the current user. | | `not` | [`NegatedEpicFilterInput`](#negatedepicfilterinput) | Negated epic arguments. | | `or` **{warning-solid}** | [`UnionedEpicFilterInput`](#unionedepicfilterinput) | **Introduced** in 15.9. This feature is an Experiment. It can be changed or removed at any time. List of arguments with inclusive OR. Ignored unless `or_issuable_queries` flag is enabled. | | `search` | [`String`](#string) | Search query for title or description. | | `sort` | [`EpicSort`](#epicsort) | List epics by sort order. | | `state` | [`EpicState`](#epicstate) | Filter epics by state. | | `timeframe` | [`Timeframe`](#timeframe) | List items overlapping the given timeframe. | | `topLevelHierarchyOnly` | [`Boolean`](#boolean) | Filter epics with a top-level hierarchy. | | `updatedAfter` | [`Time`](#time) | Epics updated after this date. | | `updatedBefore` | [`Time`](#time) | Epics updated before this date. | ##### `Group.gitlabSubscriptionsPreviewBillableUserChange` Preview Billable User Changes. Returns [`PreviewBillableUserChange`](#previewbillableuserchange). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `addGroupId` | [`Int`](#int) | Group ID to add. | | `addUserEmails` | [`[String!]`](#string) | User emails to add. | | `addUserIds` | [`[Int!]`](#int) | User IDs to add. | | `role` | [`GitlabSubscriptionsUserRole!`](#gitlabsubscriptionsuserrole) | Role of users being added to group. | ##### `Group.groupMembers` A membership of a user within this group. Returns [`GroupMemberConnection`](#groupmemberconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `accessLevels` | [`[AccessLevelEnum!]`](#accesslevelenum) | Filter members by the given access levels. | | `relations` | [`[GroupMemberRelation!]`](#groupmemberrelation) | Filter members by the given member relations. | | `search` | [`String`](#string) | Search query. | | `sort` | [`MemberSort`](#membersort) | sort query. | ##### `Group.issues` Issues for projects in this group. Returns [`IssueConnection`](#issueconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `assigneeId` | [`String`](#string) | ID of a user assigned to the issues. Wildcard values "NONE" and "ANY" are supported. | | `assigneeUsername` **{warning-solid}** | [`String`](#string) | **Deprecated** in 13.11. Use `assigneeUsernames`. | | `assigneeUsernames` | [`[String!]`](#string) | Usernames of users assigned to the issue. | | `authorUsername` | [`String`](#string) | Username of the author of the issue. | | `closedAfter` | [`Time`](#time) | Issues closed after this date. | | `closedBefore` | [`Time`](#time) | Issues closed before this date. | | `confidential` | [`Boolean`](#boolean) | Filter for confidential issues. If "false", excludes confidential issues. If "true", returns only confidential issues. | | `createdAfter` | [`Time`](#time) | Issues created after this date. | | `createdBefore` | [`Time`](#time) | Issues created before this date. | | `crmContactId` | [`String`](#string) | ID of a contact assigned to the issues. | | `crmOrganizationId` | [`String`](#string) | ID of an organization assigned to the issues. | | `epicId` | [`String`](#string) | ID of an epic associated with the issues, "none" and "any" values are supported. | | `healthStatus` **{warning-solid}** | [`HealthStatus`](#healthstatus) | **Deprecated** in 15.4. Use `healthStatusFilter`. | | `healthStatusFilter` | [`HealthStatusFilter`](#healthstatusfilter) | Health status of the issue, "none" and "any" values are supported. | | `iid` | [`String`](#string) | IID of the issue. For example, "1". | | `iids` | [`[String!]`](#string) | List of IIDs of issues. For example, `["1", "2"]`. | | `in` | [`[IssuableSearchableField!]`](#issuablesearchablefield) | Specify the fields to perform the search in. Defaults to `[TITLE, DESCRIPTION]`. Requires the `search` argument.'. | | `includeArchived` | [`Boolean`](#boolean) | Return issues from archived projects. | | `includeSubepics` | [`Boolean`](#boolean) | Whether to include subepics when filtering issues by epicId. | | `includeSubgroups` | [`Boolean`](#boolean) | Include issues belonging to subgroups. | | `iterationId` | [`[ID]`](#id) | List of iteration Global IDs applied to the issue. | | `iterationWildcardId` | [`IterationWildcardId`](#iterationwildcardid) | Filter by iteration ID wildcard. | | `labelName` | [`[String]`](#string) | Labels applied to this issue. | | `milestoneTitle` | [`[String]`](#string) | Milestone applied to this issue. | | `milestoneWildcardId` | [`MilestoneWildcardId`](#milestonewildcardid) | Filter issues by milestone ID wildcard. | | `myReactionEmoji` | [`String`](#string) | Filter by reaction emoji applied by the current user. Wildcard values "NONE" and "ANY" are supported. | | `not` | [`NegatedIssueFilterInput`](#negatedissuefilterinput) | Negated arguments. | | `or` | [`UnionedIssueFilterInput`](#unionedissuefilterinput) | List of arguments with inclusive OR. | | `search` | [`String`](#string) | Search query for title or description. | | `sort` | [`IssueSort`](#issuesort) | Sort issues by this criteria. | | `state` | [`IssuableState`](#issuablestate) | Current state of this issue. | | `types` | [`[IssueType!]`](#issuetype) | Filter issues by the given issue types. | | `updatedAfter` | [`Time`](#time) | Issues updated after this date. | | `updatedBefore` | [`Time`](#time) | Issues updated before this date. | | `weight` | [`String`](#string) | Weight applied to the issue, "none" and "any" values are supported. | ##### `Group.iterationCadences` Find iteration cadences. Returns [`IterationCadenceConnection`](#iterationcadenceconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `active` | [`Boolean`](#boolean) | Whether the iteration cadence is active. | | `automatic` | [`Boolean`](#boolean) | Whether the iteration cadence should automatically generate upcoming iterations. | | `durationInWeeks` | [`Int`](#int) | Duration in weeks of the iterations within this cadence. | | `id` | [`IterationsCadenceID`](#iterationscadenceid) | Global ID of the iteration cadence to look up. | | `includeAncestorGroups` | [`Boolean`](#boolean) | Whether to include ancestor groups to search iterations cadences in. | | `title` | [`String`](#string) | Fuzzy search by title. | ##### `Group.iterations` Find iterations. Returns [`IterationConnection`](#iterationconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`ID`](#id) | Global ID of the Iteration to look up. | | `iid` | [`ID`](#id) | Internal ID of the Iteration to look up. | | `in` | [`[IterationSearchableField!]`](#iterationsearchablefield) | Fields in which the fuzzy-search should be performed with the query given in the argument `search`. Defaults to `[title]`. | | `includeAncestors` | [`Boolean`](#boolean) | Whether to include ancestor iterations. Defaults to true. | | `iterationCadenceIds` | [`[IterationsCadenceID!]`](#iterationscadenceid) | Global iteration cadence IDs by which to look up the iterations. | | `search` | [`String`](#string) | Query used for fuzzy-searching in the fields selected in the argument `in`. Returns all iterations if empty. | | `sort` | [`IterationSort`](#iterationsort) | List iterations by sort order. If unspecified, an arbitrary order (subject to change) is used. | | `state` | [`IterationState`](#iterationstate) | Filter iterations by state. | | `timeframe` | [`Timeframe`](#timeframe) | List items overlapping the given timeframe. | | `title` **{warning-solid}** | [`String`](#string) | **Deprecated** in 15.4. The argument will be removed in 15.4. Please use `search` and `in` fields instead. | ##### `Group.label` Label available on this group. Returns [`Label`](#label). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `title` | [`String!`](#string) | Title of the label. | ##### `Group.labels` Labels available on this group. Returns [`LabelConnection`](#labelconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `includeAncestorGroups` | [`Boolean`](#boolean) | Include labels from ancestor groups. | | `includeDescendantGroups` | [`Boolean`](#boolean) | Include labels from descendant groups. | | `onlyGroupLabels` | [`Boolean`](#boolean) | Include only group level labels. | | `searchTerm` | [`String`](#string) | Search term to find labels with. | ##### `Group.mergeRequestViolations` Compliance violations reported on merge requests merged within the group. Returns [`ComplianceViolationConnection`](#complianceviolationconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `filters` | [`ComplianceViolationInput`](#complianceviolationinput) | Filters applied when retrieving compliance violations. | | `sort` | [`ComplianceViolationSort`](#complianceviolationsort) | List compliance violations by sort order. | ##### `Group.mergeRequests` Merge requests for projects in this group. Returns [`MergeRequestConnection`](#mergerequestconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `approved` | [`Boolean`](#boolean) | Limit results to approved merge requests. Available only when the feature flag `mr_approved_filter` is enabled. | | `assigneeUsername` | [`String`](#string) | Username of the assignee. | | `authorUsername` | [`String`](#string) | Username of the author. | | `createdAfter` | [`Time`](#time) | Merge requests created after this timestamp. | | `createdBefore` | [`Time`](#time) | Merge requests created before this timestamp. | | `draft` | [`Boolean`](#boolean) | Limit result to draft merge requests. | | `iids` | [`[String!]`](#string) | Array of IIDs of merge requests, for example `[1, 2]`. | | `includeArchived` | [`Boolean`](#boolean) | Return merge requests from archived projects. | | `includeSubgroups` | [`Boolean`](#boolean) | Include merge requests belonging to subgroups. | | `labels` | [`[String!]`](#string) | Array of label names. All resolved merge requests will have all of these labels. | | `mergedAfter` | [`Time`](#time) | Merge requests merged after this date. | | `mergedBefore` | [`Time`](#time) | Merge requests merged before this date. | | `milestoneTitle` | [`String`](#string) | Title of the milestone. | | `not` | [`MergeRequestsResolverNegatedParams`](#mergerequestsresolvernegatedparams) | List of negated arguments. Warning: this argument is experimental and a subject to change in future. | | `sort` | [`MergeRequestSort`](#mergerequestsort) | Sort merge requests by this criteria. | | `sourceBranches` | [`[String!]`](#string) | Array of source branch names. All resolved merge requests will have one of these branches as their source. | | `state` | [`MergeRequestState`](#mergerequeststate) | Merge request state. If provided, all resolved merge requests will have this state. | | `targetBranches` | [`[String!]`](#string) | Array of target branch names. All resolved merge requests will have one of these branches as their target. | | `updatedAfter` | [`Time`](#time) | Merge requests updated after this timestamp. | | `updatedBefore` | [`Time`](#time) | Merge requests updated before this timestamp. | ##### `Group.milestones` Milestones of the group. Returns [`MilestoneConnection`](#milestoneconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `containingDate` | [`Time`](#time) | Date the milestone contains. | | `ids` | [`[ID!]`](#id) | Array of global milestone IDs, e.g., `"gid://gitlab/Milestone/1"`. | | `includeAncestors` | [`Boolean`](#boolean) | Include milestones from all parent groups. | | `includeDescendants` | [`Boolean`](#boolean) | Include milestones from all subgroups and subprojects. | | `searchTitle` | [`String`](#string) | Search string for the title. | | `sort` | [`MilestoneSort`](#milestonesort) | Sort milestones by this criteria. | | `state` | [`MilestoneStateEnum`](#milestonestateenum) | Filter milestones by state. | | `timeframe` | [`Timeframe`](#timeframe) | List items overlapping the given timeframe. | | `title` | [`String`](#string) | Title of the milestone. | ##### `Group.organizationStateCounts` Counts of organizations by status for the group. Returns [`OrganizationStateCounts`](#organizationstatecounts). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `search` | [`String`](#string) | Search term to find organizations with. | | `state` | [`CustomerRelationsOrganizationState`](#customerrelationsorganizationstate) | State of the organizations to search for. | ##### `Group.organizations` Find organizations of this group. Returns [`CustomerRelationsOrganizationConnection`](#customerrelationsorganizationconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ids` | [`[CustomerRelationsOrganizationID!]`](#customerrelationsorganizationid) | Filter organizations by IDs. | | `search` | [`String`](#string) | Search term used to find organizations with. | | `sort` | [`OrganizationSort`](#organizationsort) | Criteria to sort organizations by. | | `state` | [`CustomerRelationsOrganizationState`](#customerrelationsorganizationstate) | State of the organization to search for. | ##### `Group.packages` Packages of the group. This field can only be resolved for one group in any single request. Returns [`PackageConnection`](#packageconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `includeVersionless` | [`Boolean`](#boolean) | Include versionless packages. | | `packageName` | [`String`](#string) | Search a package by name. | | `packageType` | [`PackageTypeEnum`](#packagetypeenum) | Filter a package by type. | | `sort` | [`PackageGroupSort`](#packagegroupsort) | Sort packages by this criteria. | | `status` | [`PackageStatus`](#packagestatus) | Filter a package by status. | ##### `Group.projects` Projects within this namespace. Returns [`ProjectConnection!`](#projectconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `complianceFrameworkFilters` | [`ComplianceFrameworkFilters`](#complianceframeworkfilters) | Filters applied when selecting a compliance framework. | | `hasCodeCoverage` | [`Boolean`](#boolean) | Returns only the projects which have code coverage. | | `hasVulnerabilities` | [`Boolean`](#boolean) | Returns only the projects which have vulnerabilities. | | `ids` | [`[ID!]`](#id) | Filter projects by IDs. | | `includeSubgroups` | [`Boolean`](#boolean) | Include also subgroup projects. | | `search` | [`String`](#string) | Search project with most similar names or paths. | | `sort` | [`NamespaceProjectSort`](#namespaceprojectsort) | Sort projects by this criteria. | | `withIssuesEnabled` | [`Boolean`](#boolean) | Return only projects with issues enabled. | | `withMergeRequestsEnabled` | [`Boolean`](#boolean) | Return only projects with merge requests enabled. | ##### `Group.releases` Releases belonging to projects in the group. Returns [`ReleaseConnection`](#releaseconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `sort` | [`GroupReleaseSort`](#groupreleasesort) | Sort group releases by given criteria. | ##### `Group.runners` Find runners visible to the current user. Returns [`CiRunnerConnection`](#cirunnerconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `active` **{warning-solid}** | [`Boolean`](#boolean) | **Deprecated** in 14.8. This was renamed. Use: `paused`. | | `membership` | [`CiRunnerMembershipFilter`](#cirunnermembershipfilter) | Control which runners to include in the results. | | `paused` | [`Boolean`](#boolean) | Filter runners by `paused` (true) or `active` (false) status. | | `search` | [`String`](#string) | Filter by full token or partial text in description field. | | `sort` | [`CiRunnerSort`](#cirunnersort) | Sort order of results. | | `status` | [`CiRunnerStatus`](#cirunnerstatus) | Filter runners by status. | | `tagList` | [`[String!]`](#string) | Filter by tags associated with the runner (comma-separated or array). | | `type` | [`CiRunnerType`](#cirunnertype) | Filter runners by type. | | `upgradeStatus` | [`CiRunnerUpgradeStatus`](#cirunnerupgradestatus) | Filter by upgrade status. | ##### `Group.scanExecutionPolicies` Scan Execution Policies of the namespace. Returns [`ScanExecutionPolicyConnection`](#scanexecutionpolicyconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `actionScanTypes` | [`[SecurityReportTypeEnum!]`](#securityreporttypeenum) | Filters policies by the action scan type. Only these scan types are supported: `dast`, `secret_detection`, `cluster_image_scanning`, `container_scanning`, `sast`, `sast_iac`, `dependency_scanning`. | | `relationship` | [`SecurityPolicyRelationType`](#securitypolicyrelationtype) | Filter policies by the given policy relationship. | ##### `Group.scanResultPolicies` Scan Result Policies of the project. Returns [`ScanResultPolicyConnection`](#scanresultpolicyconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `relationship` | [`SecurityPolicyRelationType`](#securitypolicyrelationtype) | Filter policies by the given policy relationship. | ##### `Group.timelogs` Time logged on issues and merge requests in the group and its subgroups. Returns [`TimelogConnection!`](#timelogconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `endDate` | [`Time`](#time) | List timelogs within a date range where the logged date is equal to or before endDate. | | `endTime` | [`Time`](#time) | List timelogs within a time range where the logged time is equal to or before endTime. | | `groupId` | [`GroupID`](#groupid) | List timelogs for a group. | | `projectId` | [`ProjectID`](#projectid) | List timelogs for a project. | | `sort` | [`TimelogSort`](#timelogsort) | List timelogs in a particular order. | | `startDate` | [`Time`](#time) | List timelogs within a date range where the logged date is equal to or after startDate. | | `startTime` | [`Time`](#time) | List timelogs within a time range where the logged time is equal to or after startTime. | | `username` | [`String`](#string) | List timelogs for a user. | ##### `Group.vulnerabilities` Vulnerabilities reported on the projects in the group and its subgroups. Returns [`VulnerabilityConnection`](#vulnerabilityconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clusterAgentId` | [`[ClustersAgentID!]`](#clustersagentid) | Filter vulnerabilities by `cluster_agent_id`. Vulnerabilities with a `reportType` of `cluster_image_scanning` are only included with this filter. | | `clusterId` | [`[ClustersClusterID!]`](#clustersclusterid) | Filter vulnerabilities by `cluster_id`. Vulnerabilities with a `reportType` of `cluster_image_scanning` are only included with this filter. | | `hasIssues` | [`Boolean`](#boolean) | Returns only the vulnerabilities which have linked issues. | | `hasResolution` | [`Boolean`](#boolean) | Returns only the vulnerabilities which have been resolved on default branch. | | `image` | [`[String!]`](#string) | Filter vulnerabilities by location image. When this filter is present, the response only matches entries for a `reportType` that includes `container_scanning`, `cluster_image_scanning`. | | `projectId` | [`[ID!]`](#id) | Filter vulnerabilities by project. | | `reportType` | [`[VulnerabilityReportType!]`](#vulnerabilityreporttype) | Filter vulnerabilities by report type. | | `scanner` | [`[String!]`](#string) | Filter vulnerabilities by VulnerabilityScanner.externalId. | | `scannerId` | [`[VulnerabilitiesScannerID!]`](#vulnerabilitiesscannerid) | Filter vulnerabilities by scanner ID. | | `severity` | [`[VulnerabilitySeverity!]`](#vulnerabilityseverity) | Filter vulnerabilities by severity. | | `sort` | [`VulnerabilitySort`](#vulnerabilitysort) | List vulnerabilities by sort order. | | `state` | [`[VulnerabilityState!]`](#vulnerabilitystate) | Filter vulnerabilities by state. | ##### `Group.vulnerabilitiesCountByDay` The historical number of vulnerabilities per day for the projects in the group and its subgroups. Returns [`VulnerabilitiesCountByDayConnection`](#vulnerabilitiescountbydayconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `endDate` | [`ISO8601Date!`](#iso8601date) | Last day for which to fetch vulnerability history. | | `startDate` | [`ISO8601Date!`](#iso8601date) | First day for which to fetch vulnerability history. | ##### `Group.vulnerabilityGrades` Represents vulnerable project counts for each grade. Returns [`[VulnerableProjectsByGrade!]!`](#vulnerableprojectsbygrade). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `includeSubgroups` | [`Boolean`](#boolean) | Include grades belonging to subgroups. | | `letterGrade` | [`VulnerabilityGrade`](#vulnerabilitygrade) | Filter the response by given letter grade. | ##### `Group.vulnerabilitySeveritiesCount` Counts for each vulnerability severity in the group and its subgroups. Returns [`VulnerabilitySeveritiesCount`](#vulnerabilityseveritiescount). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clusterAgentId` | [`[ClustersAgentID!]`](#clustersagentid) | Filter vulnerabilities by `cluster_agent_id`. Vulnerabilities with a `reportType` of `cluster_image_scanning` are only included with this filter. | | `hasIssues` | [`Boolean`](#boolean) | Filter vulnerabilities that do or do not have issues. | | `hasResolution` | [`Boolean`](#boolean) | Filter vulnerabilities that do or do not have a resolution. | | `image` | [`[String!]`](#string) | Filter vulnerabilities by location image. When this filter is present, the response only matches entries for a `reportType` that includes `container_scanning`, `cluster_image_scanning`. | | `projectId` | [`[ID!]`](#id) | Filter vulnerabilities by project. | | `reportType` | [`[VulnerabilityReportType!]`](#vulnerabilityreporttype) | Filter vulnerabilities by report type. | | `scanner` | [`[String!]`](#string) | Filter vulnerabilities by scanner. | | `scannerId` | [`[VulnerabilitiesScannerID!]`](#vulnerabilitiesscannerid) | Filter vulnerabilities by scanner ID. | | `severity` | [`[VulnerabilitySeverity!]`](#vulnerabilityseverity) | Filter vulnerabilities by severity. | | `state` | [`[VulnerabilityState!]`](#vulnerabilitystate) | Filter vulnerabilities by state. | ##### `Group.workItemTypes` Work item types available to the group. Returns [`WorkItemTypeConnection`](#workitemtypeconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `taskable` | [`Boolean`](#boolean) | If `true`, only taskable work item types will be returned. Argument is experimental and can be removed in the future without notice. | ### `GroupDataTransfer` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `egressNodes` | [`EgressNodeConnection`](#egressnodeconnection) | Data nodes. (see [Connections](#connections)) | ### `GroupMember` Represents a Group Membership. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `accessLevel` | [`AccessLevel`](#accesslevel) | GitLab::Access level. | | `createdAt` | [`Time`](#time) | Date and time the membership was created. | | `createdBy` | [`UserCore`](#usercore) | User that authorized membership. | | `expiresAt` | [`Time`](#time) | Date and time the membership expires. | | `group` | [`Group`](#group) | Group that a User is a member of. | | `id` | [`ID!`](#id) | ID of the member. | | `notificationEmail` | [`String`](#string) | Group notification email for User. Only available for admins. | | `updatedAt` | [`Time`](#time) | Date and time the membership was last updated. | | `user` | [`UserCore`](#usercore) | User that is associated with the member object. | | `userPermissions` | [`GroupPermissions!`](#grouppermissions) | Permissions for the current user on the resource. | #### Fields with arguments ##### `GroupMember.mergeRequestInteraction` Find a merge request. Returns [`UserMergeRequestInteraction`](#usermergerequestinteraction). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`MergeRequestID!`](#mergerequestid) | Global ID of the merge request. | ### `GroupPermissions` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `createProjects` | [`Boolean!`](#boolean) | Indicates the user can perform `create_projects` on this resource. | | `readGroup` | [`Boolean!`](#boolean) | Indicates the user can perform `read_group` on this resource. | ### `GroupReleaseStats` Contains release-related statistics about a group. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `releasesCount` | [`Int`](#int) | Total number of releases in all descendant projects of the group. | | `releasesPercentage` | [`Int`](#int) | Percentage of the group's descendant projects that have at least one release. | ### `GroupSecurityPolicySource` Represents the source of a security policy belonging to a group. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `inherited` | [`Boolean!`](#boolean) | Indicates whether this policy is inherited from parent group. | | `namespace` | [`Namespace`](#namespace) | Project the policy is associated with. | ### `GroupStats` Contains statistics about a group. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `releaseStats` | [`GroupReleaseStats`](#groupreleasestats) | Statistics related to releases within the group. | ### `GroupValueStreamAnalyticsFlowMetrics` Exposes aggregated value stream flow metrics. #### Fields with arguments ##### `GroupValueStreamAnalyticsFlowMetrics.cycleTime` Median time from first commit to issue closed. 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) | Timestamp marking the start date and time. | | `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) | Timestamp marking the end date and time. | ##### `GroupValueStreamAnalyticsFlowMetrics.deploymentCount` Number of production deployments in the given period. Returns [`ValueStreamAnalyticsMetric`](#valuestreamanalyticsmetric). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `from` | [`Time!`](#time) | Timestamp marking the start date and time. | | `projectIds` | [`[ID!]`](#id) | Project IDs within the group hierarchy. | | `to` | [`Time!`](#time) | Timestamp marking the end date and time. | ##### `GroupValueStreamAnalyticsFlowMetrics.issueCount` Number of issues opened in the given period. 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) | Timestamp marking the start date and time. | | `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) | Timestamp marking the end date and time. | ##### `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) | Timestamp marking the start date and time. | | `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) | Timestamp marking the end date and time. | ##### `GroupValueStreamAnalyticsFlowMetrics.leadTime` Median time from when the issue was created to when it was closed. 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) | Timestamp marking the start date and time. | | `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) | Timestamp marking the end date and time. | ### `GroupWikiRepositoryRegistry` Represents the Geo sync and verification state of a group wiki repository. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `createdAt` | [`Time`](#time) | Timestamp when the GroupWikiRepositoryRegistry was created. | | `groupWikiRepositoryId` | [`ID!`](#id) | ID of the Group Wiki Repository. | | `id` | [`ID!`](#id) | ID of the GroupWikiRepositoryRegistry. | | `lastSyncFailure` | [`String`](#string) | Error message during sync of the GroupWikiRepositoryRegistry. | | `lastSyncedAt` | [`Time`](#time) | Timestamp of the most recent successful sync of the GroupWikiRepositoryRegistry. | | `retryAt` | [`Time`](#time) | Timestamp after which the GroupWikiRepositoryRegistry is resynced. | | `retryCount` | [`Int`](#int) | Number of consecutive failed sync attempts of the GroupWikiRepositoryRegistry. | | `state` | [`RegistryState`](#registrystate) | Sync state of the GroupWikiRepositoryRegistry. | | `verificationRetryAt` | [`Time`](#time) | Timestamp after which the GroupWikiRepositoryRegistry is reverified. | | `verifiedAt` | [`Time`](#time) | Timestamp of the most recent successful verification of the GroupWikiRepositoryRegistry. | ### `HelmFileMetadata` Helm file metadata. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `channel` | [`String!`](#string) | Channel of the Helm chart. | | `createdAt` | [`Time!`](#time) | Date of creation. | | `metadata` | [`PackageHelmMetadataType!`](#packagehelmmetadatatype) | Metadata of the Helm chart. | | `updatedAt` | [`Time!`](#time) | Date of most recent update. | ### `IncidentManagementOncallRotation` Describes an incident management on-call rotation. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `activePeriod` | [`OncallRotationActivePeriodType`](#oncallrotationactiveperiodtype) | Active period for the on-call rotation. | | `endsAt` | [`Time`](#time) | End date and time of the on-call rotation. | | `id` | [`IncidentManagementOncallRotationID!`](#incidentmanagementoncallrotationid) | ID of the on-call rotation. | | `length` | [`Int`](#int) | Length of the on-call schedule, in the units specified by lengthUnit. | | `lengthUnit` | [`OncallRotationUnitEnum`](#oncallrotationunitenum) | Unit of the on-call rotation length. | | `name` | [`String!`](#string) | Name of the on-call rotation. | | `participants` | [`OncallParticipantTypeConnection`](#oncallparticipanttypeconnection) | Participants of the on-call rotation. (see [Connections](#connections)) | | `startsAt` | [`Time`](#time) | Start date of the on-call rotation. | #### Fields with arguments ##### `IncidentManagementOncallRotation.shifts` Blocks of time for which a participant is on-call within a given time frame. Time frame cannot exceed one month. Returns [`IncidentManagementOncallShiftConnection`](#incidentmanagementoncallshiftconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `endTime` | [`Time!`](#time) | End of timeframe to include shifts for. Cannot exceed one month after start. | | `startTime` | [`Time!`](#time) | Start of timeframe to include shifts for. | ### `IncidentManagementOncallSchedule` Describes an incident management on-call schedule. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `description` | [`String`](#string) | Description of the on-call schedule. | | `iid` | [`ID!`](#id) | Internal ID of the on-call schedule. | | `name` | [`String!`](#string) | Name of the on-call schedule. | | `oncallUsers` | [`[UserCore!]`](#usercore) | | | `rotations` | [`IncidentManagementOncallRotationConnection!`](#incidentmanagementoncallrotationconnection) | On-call rotations for the on-call schedule. (see [Connections](#connections)) | | `timezone` | [`String!`](#string) | Time zone of the on-call schedule. | #### Fields with arguments ##### `IncidentManagementOncallSchedule.rotation` On-call rotation for the on-call schedule. Returns [`IncidentManagementOncallRotation`](#incidentmanagementoncallrotation). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`IncidentManagementOncallRotationID!`](#incidentmanagementoncallrotationid) | ID of the on-call rotation. | ### `IncidentManagementOncallShift` A block of time for which a participant is on-call. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `endsAt` | [`Time`](#time) | End time of the on-call shift. | | `participant` | [`OncallParticipantType`](#oncallparticipanttype) | Participant assigned to the on-call shift. | | `startsAt` | [`Time`](#time) | Start time of the on-call shift. | ### `InheritedCiVariable` CI/CD variables a project inherites from its parent group and ancestors. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `environmentScope` | [`String`](#string) | Scope defining the environments that can use the variable. | | `groupCiCdSettingsPath` | [`String`](#string) | Indicates the path to the CI/CD settings of the group the variable belongs to. | | `groupName` | [`String`](#string) | Indicates group the variable belongs to. | | `id` | [`ID!`](#id) | ID of the variable. | | `key` | [`String`](#string) | Name of the variable. | | `masked` | [`Boolean`](#boolean) | Indicates whether the variable is masked. | | `protected` | [`Boolean`](#boolean) | Indicates whether the variable is protected. | | `raw` | [`Boolean`](#boolean) | Indicates whether the variable is raw. | | `variableType` | [`CiVariableType`](#civariabletype) | Type of the variable. | ### `InstanceExternalAuditEventDestination` Represents an external resource to send instance audit events to. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `destinationUrl` | [`String!`](#string) | External destination to send audit events to. | | `id` | [`ID!`](#id) | ID of the destination. | | `verificationToken` | [`String!`](#string) | Verification token to validate source of event. | ### `InstanceSecurityDashboard` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `vulnerabilityScanners` | [`VulnerabilityScannerConnection`](#vulnerabilityscannerconnection) | Vulnerability scanners reported on the vulnerabilities from projects selected in Instance Security Dashboard. (see [Connections](#connections)) | #### Fields with arguments ##### `InstanceSecurityDashboard.clusterAgents` Cluster agents associated with projects selected in the Instance Security Dashboard. Returns [`ClusterAgentConnection`](#clusteragentconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `hasRemoteDevelopmentAgentConfig` | [`Boolean`](#boolean) | Returns only cluster agents which have an associated remote development agent config. | | `hasVulnerabilities` | [`Boolean`](#boolean) | Returns only cluster agents which have vulnerabilities. | ##### `InstanceSecurityDashboard.projects` Projects selected in Instance Security Dashboard. Returns [`ProjectConnection!`](#projectconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `search` | [`String`](#string) | Search query, which can be for the project name, a path, or a description. | ##### `InstanceSecurityDashboard.vulnerabilityGrades` Represents vulnerable project counts for each grade. Returns [`[VulnerableProjectsByGrade!]!`](#vulnerableprojectsbygrade). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `letterGrade` | [`VulnerabilityGrade`](#vulnerabilitygrade) | Filter the response by given letter grade. | ##### `InstanceSecurityDashboard.vulnerabilitySeveritiesCount` Counts for each vulnerability severity from projects selected in Instance Security Dashboard. Returns [`VulnerabilitySeveritiesCount`](#vulnerabilityseveritiescount). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clusterAgentId` | [`[ClustersAgentID!]`](#clustersagentid) | Filter vulnerabilities by `cluster_agent_id`. Vulnerabilities with a `reportType` of `cluster_image_scanning` are only included with this filter. | | `hasIssues` | [`Boolean`](#boolean) | Filter vulnerabilities that do or do not have issues. | | `hasResolution` | [`Boolean`](#boolean) | Filter vulnerabilities that do or do not have a resolution. | | `image` | [`[String!]`](#string) | Filter vulnerabilities by location image. When this filter is present, the response only matches entries for a `reportType` that includes `container_scanning`, `cluster_image_scanning`. | | `projectId` | [`[ID!]`](#id) | Filter vulnerabilities by project. | | `reportType` | [`[VulnerabilityReportType!]`](#vulnerabilityreporttype) | Filter vulnerabilities by report type. | | `scanner` | [`[String!]`](#string) | Filter vulnerabilities by scanner. | | `scannerId` | [`[VulnerabilitiesScannerID!]`](#vulnerabilitiesscannerid) | Filter vulnerabilities by scanner ID. | | `severity` | [`[VulnerabilitySeverity!]`](#vulnerabilityseverity) | Filter vulnerabilities by severity. | | `state` | [`[VulnerabilityState!]`](#vulnerabilitystate) | Filter vulnerabilities by state. | ### `IssuableResourceLink` Describes an issuable resource link for incident issues. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`IncidentManagementIssuableResourceLinkID!`](#incidentmanagementissuableresourcelinkid) | ID of the Issuable resource link. | | `issue` | [`Issue!`](#issue) | Incident of the resource link. | | `link` | [`String!`](#string) | Web Link to the resource. | | `linkText` | [`String`](#string) | Optional text for the link. | | `linkType` | [`IssuableResourceLinkType!`](#issuableresourcelinktype) | Type of the resource link. | ### `Issue` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `alertManagementAlert` **{warning-solid}** | [`AlertManagementAlert`](#alertmanagementalert) | **Deprecated** in 15.6. Use `alert_management_alerts`. | | `assignees` | [`UserCoreConnection`](#usercoreconnection) | Assignees of the issue. (see [Connections](#connections)) | | `author` | [`UserCore!`](#usercore) | User that created the issue. | | `blocked` | [`Boolean!`](#boolean) | Indicates the issue is blocked. | | `blockedByCount` | [`Int`](#int) | Count of issues blocking this issue. | | `blockedByIssues` | [`IssueConnection`](#issueconnection) | Issues blocking this issue. (see [Connections](#connections)) | | `blockingCount` | [`Int!`](#int) | Count of issues this issue is blocking. | | `closedAsDuplicateOf` | [`Issue`](#issue) | Issue this issue was closed as a duplicate of. | | `closedAt` | [`Time`](#time) | Timestamp of when the issue was closed. | | `commenters` | [`UserCoreConnection!`](#usercoreconnection) | All commenters on this noteable. (see [Connections](#connections)) | | `confidential` | [`Boolean!`](#boolean) | Indicates the issue is confidential. | | `createNoteEmail` | [`String`](#string) | User specific email address for the issue. | | `createdAt` | [`Time!`](#time) | Timestamp of when the issue was created. | | `customerRelationsContacts` | [`CustomerRelationsContactConnection`](#customerrelationscontactconnection) | Customer relations contacts of the issue. (see [Connections](#connections)) | | `description` | [`String`](#string) | Description of the issue. | | `descriptionHtml` | [`String`](#string) | GitLab Flavored Markdown rendering of `description`. | | `designCollection` | [`DesignCollection`](#designcollection) | Collection of design images associated with this issue. | | `discussionLocked` | [`Boolean!`](#boolean) | Indicates discussion is locked on the issue. | | `discussions` | [`DiscussionConnection!`](#discussionconnection) | All discussions on this noteable. (see [Connections](#connections)) | | `downvotes` | [`Int!`](#int) | Number of downvotes the issue has received. | | `dueDate` | [`Time`](#time) | Due date of the issue. | | `emailsDisabled` | [`Boolean!`](#boolean) | Indicates if a project has email notifications disabled: `true` if email notifications are disabled. | | `epic` | [`Epic`](#epic) | Epic to which this issue belongs. | | `escalationPolicy` | [`EscalationPolicyType`](#escalationpolicytype) | Escalation policy associated with the issue. Available for issues which support escalation. | | `escalationStatus` | [`IssueEscalationStatus`](#issueescalationstatus) | Escalation status of the issue. | | `hasEpic` | [`Boolean!`](#boolean) | Indicates if the issue belongs to an epic. Can return true and not show an associated epic when the user has no access to the epic. | | `healthStatus` | [`HealthStatus`](#healthstatus) | Current health status. | | `hidden` | [`Boolean`](#boolean) | Indicates the issue is hidden because the author has been banned. | | `humanTimeEstimate` | [`String`](#string) | Human-readable time estimate of the issue. | | `humanTotalTimeSpent` | [`String`](#string) | Human-readable total time reported as spent on the issue. | | `id` | [`ID!`](#id) | ID of the issue. | | `iid` | [`ID!`](#id) | Internal ID of the issue. | | `iteration` | [`Iteration`](#iteration) | Iteration of the issue. | | `labels` | [`LabelConnection`](#labelconnection) | Labels of the issue. (see [Connections](#connections)) | | `mergeRequestsCount` | [`Int!`](#int) | Number of merge requests that close the issue on merge. | | `metricImages` | [`[MetricImage!]`](#metricimage) | Metric images associated to the issue. | | `milestone` | [`Milestone`](#milestone) | Milestone of the issue. | | `moved` | [`Boolean`](#boolean) | Indicates if issue got moved from other project. | | `movedTo` | [`Issue`](#issue) | Updated Issue after it got moved to another project. | | `notes` | [`NoteConnection!`](#noteconnection) | All notes on this noteable. (see [Connections](#connections)) | | `participants` | [`UserCoreConnection`](#usercoreconnection) | List of participants in the issue. (see [Connections](#connections)) | | `projectId` | [`Int!`](#int) | ID of the issue project. | | `relatedMergeRequests` | [`MergeRequestConnection`](#mergerequestconnection) | Merge requests related to the issue. This field can only be resolved for one issue in any single request. (see [Connections](#connections)) | | `relatedVulnerabilities` | [`VulnerabilityConnection`](#vulnerabilityconnection) | Related vulnerabilities of the issue. (see [Connections](#connections)) | | `relativePosition` | [`Int`](#int) | Relative position of the issue (used for positioning in epic tree and issue boards). | | `severity` | [`IssuableSeverity`](#issuableseverity) | Severity level of the incident. | | `slaDueAt` | [`Time`](#time) | Timestamp of when the issue SLA expires. | | `state` | [`IssueState!`](#issuestate) | State of the issue. | | `statusPagePublishedIncident` | [`Boolean`](#boolean) | Indicates whether an issue is published to the status page. | | `subscribed` | [`Boolean!`](#boolean) | Indicates the currently logged in user is subscribed to the issue. | | `taskCompletionStatus` | [`TaskCompletionStatus!`](#taskcompletionstatus) | Task completion status of the issue. | | `timeEstimate` | [`Int!`](#int) | Time estimate of the issue. | | `timelogs` | [`TimelogConnection!`](#timelogconnection) | Timelogs on the issue. (see [Connections](#connections)) | | `title` | [`String!`](#string) | Title of the issue. | | `titleHtml` | [`String`](#string) | GitLab Flavored Markdown rendering of `title`. | | `totalTimeSpent` | [`Int!`](#int) | Total time reported as spent on the issue. | | `type` | [`IssueType`](#issuetype) | Type of the issue. | | `updatedAt` | [`Time!`](#time) | Timestamp of when the issue was last updated. | | `updatedBy` | [`UserCore`](#usercore) | User that last updated the issue. | | `upvotes` | [`Int!`](#int) | Number of upvotes the issue has received. | | `userDiscussionsCount` | [`Int!`](#int) | Number of user discussions in the issue. | | `userNotesCount` | [`Int!`](#int) | Number of user notes of the issue. | | `userPermissions` | [`IssuePermissions!`](#issuepermissions) | Permissions for the current user on the resource. | | `webPath` | [`String!`](#string) | Web path of the issue. | | `webUrl` | [`String!`](#string) | Web URL of the issue. | | `weight` | [`Int`](#int) | Weight of the issue. | #### Fields with arguments ##### `Issue.alertManagementAlerts` Alert Management alerts associated to this issue. Returns [`AlertManagementAlertConnection`](#alertmanagementalertconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `assigneeUsername` | [`String`](#string) | Username of a user assigned to the issue. | | `domain` | [`AlertManagementDomainFilter!`](#alertmanagementdomainfilter) | Filter query for given domain. | | `iid` | [`String`](#string) | IID of the alert. For example, "1". | | `search` | [`String`](#string) | Search query for title, description, service, or monitoring_tool. | | `sort` | [`AlertManagementAlertSort`](#alertmanagementalertsort) | Sort alerts by this criteria. | | `statuses` | [`[AlertManagementStatus!]`](#alertmanagementstatus) | Alerts with the specified statues. For example, `[TRIGGERED]`. | ##### `Issue.currentUserTodos` To-do items for the current user. Returns [`TodoConnection!`](#todoconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `state` | [`TodoStateEnum`](#todostateenum) | State of the to-do items. | ##### `Issue.issuableResourceLinks` Issuable resource links of the incident issue. Returns [`IssuableResourceLinkConnection`](#issuableresourcelinkconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `incidentId` | [`IssueID!`](#issueid) | ID of the incident. | ##### `Issue.reference` Internal reference of the issue. Returned in shortened format by default. Returns [`String!`](#string). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `full` | [`Boolean`](#boolean) | Boolean option specifying whether the reference should be returned in full. | ### `IssuePermissions` Check permissions for the current user on a issue. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `adminIssue` | [`Boolean!`](#boolean) | Indicates the user can perform `admin_issue` on this resource. | | `createDesign` | [`Boolean!`](#boolean) | Indicates the user can perform `create_design` on this resource. | | `createNote` | [`Boolean!`](#boolean) | Indicates the user can perform `create_note` on this resource. | | `destroyDesign` | [`Boolean!`](#boolean) | Indicates the user can perform `destroy_design` on this resource. | | `readDesign` | [`Boolean!`](#boolean) | Indicates the user can perform `read_design` on this resource. | | `readIssue` | [`Boolean!`](#boolean) | Indicates the user can perform `read_issue` on this resource. | | `reopenIssue` | [`Boolean!`](#boolean) | Indicates the user can perform `reopen_issue` on this resource. | | `updateDesign` | [`Boolean!`](#boolean) | Indicates the user can perform `update_design` on this resource. | | `updateIssue` | [`Boolean!`](#boolean) | Indicates the user can perform `update_issue` on this resource. | ### `IssueStatusCountsType` Represents total number of issues for the represented statuses. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `all` | [`Int`](#int) | Number of issues with status ALL for the project. | | `closed` | [`Int`](#int) | Number of issues with status CLOSED for the project. | | `opened` | [`Int`](#int) | Number of issues with status OPENED for the project. | ### `Iteration` Represents an iteration object. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `createdAt` | [`Time!`](#time) | Timestamp of iteration creation. | | `description` | [`String`](#string) | Description of the iteration. | | `descriptionHtml` | [`String`](#string) | GitLab Flavored Markdown rendering of `description`. | | `dueDate` | [`Time`](#time) | Timestamp of the iteration due date. | | `id` | [`ID!`](#id) | ID of the iteration. | | `iid` | [`ID!`](#id) | Internal ID of the iteration. | | `iterationCadence` | [`IterationCadence!`](#iterationcadence) | Cadence of the iteration. | | `scopedPath` | [`String`](#string) | Web path of the iteration, scoped to the query parent. Only valid for Project parents. Returns null in other contexts. | | `scopedUrl` | [`String`](#string) | Web URL of the iteration, scoped to the query parent. Only valid for Project parents. Returns null in other contexts. | | `sequence` | [`Int!`](#int) | Sequence number for the iteration when you sort the containing cadence's iterations by the start and end date. The earliest starting and ending iteration is assigned 1. | | `startDate` | [`Time`](#time) | Timestamp of the iteration start date. | | `state` | [`IterationState!`](#iterationstate) | State of the iteration. | | `title` | [`String`](#string) | Title of the iteration. | | `updatedAt` | [`Time!`](#time) | Timestamp of last iteration update. | | `webPath` | [`String!`](#string) | Web path of the iteration. | | `webUrl` | [`String!`](#string) | Web URL of the iteration. | #### Fields with arguments ##### `Iteration.report` Historically accurate report about the timebox. Returns [`TimeboxReport`](#timeboxreport). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `fullPath` | [`String`](#string) | Full path of the project or group used as a scope for report. For example, `gitlab-org` or `gitlab-org/gitlab`. | ### `IterationCadence` Represents an iteration cadence. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `active` | [`Boolean`](#boolean) | Whether the iteration cadence is active. | | `automatic` | [`Boolean`](#boolean) | Whether the iteration cadence should automatically generate upcoming iterations. | | `description` | [`String`](#string) | Description of the iteration cadence. Maximum length is 5000 characters. | | `durationInWeeks` | [`Int`](#int) | Duration in weeks of the iterations within this cadence. | | `id` | [`IterationsCadenceID!`](#iterationscadenceid) | Global ID of the iteration cadence. | | `iterationsInAdvance` | [`Int`](#int) | Upcoming iterations to be created when iteration cadence is set to automatic. | | `rollOver` | [`Boolean!`](#boolean) | Whether the iteration cadence should roll over issues to the next iteration or not. | | `startDate` | [`Time`](#time) | Timestamp of the automation start date. | | `title` | [`String!`](#string) | Title of the iteration cadence. | ### `JiraImport` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `createdAt` | [`Time`](#time) | Timestamp of when the Jira import was created. | | `failedToImportCount` | [`Int!`](#int) | Count of issues that failed to import. | | `importedIssuesCount` | [`Int!`](#int) | Count of issues that were successfully imported. | | `jiraProjectKey` | [`String!`](#string) | Project key for the imported Jira project. | | `scheduledAt` | [`Time`](#time) | Timestamp of when the Jira import was scheduled. | | `scheduledBy` | [`UserCore`](#usercore) | User that started the Jira import. | | `totalIssueCount` | [`Int!`](#int) | Total count of issues that were attempted to import. | ### `JiraProject` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `key` | [`String!`](#string) | Key of the Jira project. | | `name` | [`String`](#string) | Name of the Jira project. | | `projectId` | [`Int!`](#int) | ID of the Jira project. | ### `JiraService` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `active` | [`Boolean`](#boolean) | Indicates if the service is active. | | `serviceType` | [`ServiceType`](#servicetype) | Type of the service. | | `type` | [`String`](#string) | Class name of the service. | #### Fields with arguments ##### `JiraService.projects` List of all Jira projects fetched through Jira REST API. Returns [`JiraProjectConnection`](#jiraprojectconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `name` | [`String`](#string) | Project name or key. | ### `JiraUser` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `gitlabId` | [`Int`](#int) | ID of the matched GitLab user. | | `gitlabName` | [`String`](#string) | Name of the matched GitLab user. | | `gitlabUsername` | [`String`](#string) | Username of the matched GitLab user. | | `jiraAccountId` | [`String!`](#string) | Account ID of the Jira user. | | `jiraDisplayName` | [`String!`](#string) | Display name of the Jira user. | | `jiraEmail` | [`String`](#string) | Email of the Jira user, returned only for users with public emails. | ### `JobArtifactRegistry` Represents the Geo replication and verification state of a job_artifact. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `artifactId` | [`ID!`](#id) | ID of the Job Artifact. | | `createdAt` | [`Time`](#time) | Timestamp when the JobArtifactRegistry was created. | | `id` | [`ID!`](#id) | ID of the JobArtifactRegistry. | | `lastSyncFailure` | [`String`](#string) | Error message during sync of the JobArtifactRegistry. | | `lastSyncedAt` | [`Time`](#time) | Timestamp of the most recent successful sync of the JobArtifactRegistry. | | `retryAt` | [`Time`](#time) | Timestamp after which the JobArtifactRegistry is resynced. | | `retryCount` | [`Int`](#int) | Number of consecutive failed sync attempts of the JobArtifactRegistry. | | `state` | [`RegistryState`](#registrystate) | Sync state of the JobArtifactRegistry. | | `verificationRetryAt` | [`Time`](#time) | Timestamp after which the JobArtifactRegistry is reverified. | | `verifiedAt` | [`Time`](#time) | Timestamp of the most recent successful verification of the JobArtifactRegistry. | ### `JobPermissions` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `readBuild` | [`Boolean!`](#boolean) | Indicates the user can perform `read_build` on this resource. | | `readJobArtifacts` | [`Boolean!`](#boolean) | Indicates the user can perform `read_job_artifacts` on this resource. | | `updateBuild` | [`Boolean!`](#boolean) | Indicates the user can perform `update_build` on this resource. | ### `Kas` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `enabled` | [`Boolean!`](#boolean) | Indicates whether the Kubernetes Agent Server is enabled. | | `externalUrl` | [`String`](#string) | URL used by the Agents to communicate with KAS. | | `version` | [`String`](#string) | KAS version. | ### `Key` Represents an SSH key. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `createdAt` | [`Time!`](#time) | Timestamp of when the key was created. | | `expiresAt` | [`Time!`](#time) | Timestamp of when the key expires. It's null if it never expires. | | `id` | [`ID!`](#id) | ID of the key. | | `key` | [`String!`](#string) | Public key of the key pair. | | `title` | [`String!`](#string) | Title of the key. | ### `Label` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `color` | [`String!`](#string) | Background color of the label. | | `createdAt` | [`Time!`](#time) | When this label was created. | | `description` | [`String`](#string) | Description of the label (Markdown rendered as HTML for caching). | | `descriptionHtml` | [`String`](#string) | GitLab Flavored Markdown rendering of `description`. | | `id` | [`ID!`](#id) | Label ID. | | `textColor` | [`String!`](#string) | Text color of the label. | | `title` | [`String!`](#string) | Content of the label. | | `updatedAt` | [`Time!`](#time) | When this label was last updated. | ### `LfsObjectRegistry` Represents the Geo sync and verification state of an LFS object. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `createdAt` | [`Time`](#time) | Timestamp when the LfsObjectRegistry was created. | | `id` | [`ID!`](#id) | ID of the LfsObjectRegistry. | | `lastSyncFailure` | [`String`](#string) | Error message during sync of the LfsObjectRegistry. | | `lastSyncedAt` | [`Time`](#time) | Timestamp of the most recent successful sync of the LfsObjectRegistry. | | `lfsObjectId` | [`ID!`](#id) | ID of the LFS object. | | `retryAt` | [`Time`](#time) | Timestamp after which the LfsObjectRegistry is resynced. | | `retryCount` | [`Int`](#int) | Number of consecutive failed sync attempts of the LfsObjectRegistry. | | `state` | [`RegistryState`](#registrystate) | Sync state of the LfsObjectRegistry. | | `verificationRetryAt` | [`Time`](#time) | Timestamp after which the LfsObjectRegistry is reverified. | | `verifiedAt` | [`Time`](#time) | Timestamp of the most recent successful verification of the LfsObjectRegistry. | ### `LicenseHistoryEntry` Represents an entry from the Cloud License history. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `activatedAt` | [`Date`](#date) | Date when the license was activated. | | `blockChangesAt` | [`Date`](#date) | Date, including grace period, when licensed features will be blocked. | | `company` | [`String`](#string) | Company of the licensee. | | `createdAt` | [`Date`](#date) | Date when the license was added. | | `email` | [`String`](#string) | Email of the licensee. | | `expiresAt` | [`Date`](#date) | Date when the license expires. | | `id` | [`ID!`](#id) | ID of the license extracted from the license data. | | `name` | [`String`](#string) | Name of the licensee. | | `plan` | [`String!`](#string) | Name of the subscription plan. | | `startsAt` | [`Date`](#date) | Date when the license started. | | `type` | [`String!`](#string) | Type of the license. | | `usersInLicenseCount` | [`Int`](#int) | Number of paid users in the license. | ### `Location` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `blobPath` | [`String`](#string) | HTTP URI path to view the input file in GitLab. | | `path` | [`String`](#string) | Path, relative to the root of the repository, of the filewhich was analyzed to detect the dependency. | ### `MavenMetadata` Maven metadata. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `appGroup` | [`String!`](#string) | App group of the Maven package. | | `appName` | [`String!`](#string) | App name of the Maven package. | | `appVersion` | [`String`](#string) | App version of the Maven package. | | `createdAt` | [`Time!`](#time) | Date of creation. | | `id` | [`PackagesMavenMetadatumID!`](#packagesmavenmetadatumid) | ID of the metadatum. | | `path` | [`String!`](#string) | Path of the Maven package. | | `updatedAt` | [`Time!`](#time) | Date of most recent update. | ### `MergeAccessLevel` Defines which user roles, users, or groups can merge into a protected branch. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `accessLevel` | [`Int!`](#int) | GitLab::Access level. | | `accessLevelDescription` | [`String!`](#string) | Human readable representation for this access level. | | `group` | [`AccessLevelGroup`](#accesslevelgroup) | Group associated with this access level. | | `user` | [`AccessLevelUser`](#accessleveluser) | User associated with this access level. | ### `MergeRequest` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `allowCollaboration` | [`Boolean`](#boolean) | Indicates if members of the target project can push to the fork. | | `approvalState` | [`MergeRequestApprovalState!`](#mergerequestapprovalstate) | Information relating to rules that must be satisfied to merge this merge request. | | `approvalsLeft` | [`Int`](#int) | Number of approvals left. | | `approvalsRequired` | [`Int`](#int) | Number of approvals required. | | `approved` | [`Boolean!`](#boolean) | Indicates if the merge request has all the required approvals. Returns true if no required approvals are configured. | | `approvedBy` | [`UserCoreConnection`](#usercoreconnection) | Users who approved the merge request. (see [Connections](#connections)) | | `assignees` | [`MergeRequestAssigneeConnection`](#mergerequestassigneeconnection) | Assignees of the merge request. (see [Connections](#connections)) | | `author` | [`MergeRequestAuthor`](#mergerequestauthor) | User who created this merge request. | | `autoMergeEnabled` | [`Boolean!`](#boolean) | Indicates if auto merge is enabled for the merge request. | | `autoMergeStrategy` | [`String`](#string) | Selected auto merge strategy. | | `availableAutoMergeStrategies` | [`[String!]`](#string) | Array of available auto merge strategies. | | `awardEmoji` | [`AwardEmojiConnection`](#awardemojiconnection) | List of award emojis associated with the merge request. (see [Connections](#connections)) | | `commenters` | [`UserCoreConnection!`](#usercoreconnection) | All commenters on this noteable. (see [Connections](#connections)) | | `commitCount` | [`Int`](#int) | Number of commits in the merge request. | | `commits` | [`CommitConnection`](#commitconnection) | Merge request commits. (see [Connections](#connections)) | | `commitsWithoutMergeCommits` | [`CommitConnection`](#commitconnection) | Merge request commits excluding merge commits. (see [Connections](#connections)) | | `committers` | [`UserCoreConnection`](#usercoreconnection) | Users who have added commits to the merge request. (see [Connections](#connections)) | | `conflicts` | [`Boolean!`](#boolean) | Indicates if the merge request has conflicts. | | `createdAt` | [`Time!`](#time) | Timestamp of when the merge request was created. | | `defaultMergeCommitMessage` | [`String`](#string) | Default merge commit message of the merge request. | | `defaultSquashCommitMessage` | [`String`](#string) | Default squash commit message of the merge request. | | `description` | [`String`](#string) | Description of the merge request (Markdown rendered as HTML for caching). | | `descriptionHtml` | [`String`](#string) | GitLab Flavored Markdown rendering of `description`. | | `detailedMergeStatus` | [`DetailedMergeStatus`](#detailedmergestatus) | Detailed merge status of the merge request. | | `diffHeadSha` | [`String`](#string) | Diff head SHA of the merge request. | | `diffRefs` | [`DiffRefs`](#diffrefs) | References of the base SHA, the head SHA, and the start SHA for this merge request. | | `diffStatsSummary` | [`DiffStatsSummary`](#diffstatssummary) | Summary of which files were changed in this merge request. | | `discussionLocked` | [`Boolean!`](#boolean) | Indicates if comments on the merge request are locked to members only. | | `discussions` | [`DiscussionConnection!`](#discussionconnection) | All discussions on this noteable. (see [Connections](#connections)) | | `divergedFromTargetBranch` | [`Boolean!`](#boolean) | Indicates if the source branch is behind the target branch. | | `downvotes` | [`Int!`](#int) | Number of downvotes for the merge request. | | `draft` | [`Boolean!`](#boolean) | Indicates if the merge request is a draft. | | `forceRemoveSourceBranch` | [`Boolean`](#boolean) | Indicates if the project settings will lead to source branch deletion after merge. | | `hasCi` | [`Boolean!`](#boolean) | Indicates if the merge request has CI. | | `hasSecurityReports` | [`Boolean!`](#boolean) | Indicates if the source branch has any security reports. | | `headPipeline` | [`Pipeline`](#pipeline) | Pipeline running on the branch HEAD of the merge request. | | `humanTimeEstimate` | [`String`](#string) | Human-readable time estimate of the merge request. | | `humanTotalTimeSpent` | [`String`](#string) | Human-readable total time reported as spent on the merge request. | | `id` | [`ID!`](#id) | ID of the merge request. | | `iid` | [`String!`](#string) | Internal ID of the merge request. | | `inProgressMergeCommitSha` | [`String`](#string) | Commit SHA of the merge request if merge is in progress. | | `labels` | [`LabelConnection`](#labelconnection) | Labels of the merge request. (see [Connections](#connections)) | | `mergeCommitSha` | [`String`](#string) | SHA of the merge request commit (set once merged). | | `mergeError` | [`String`](#string) | Error message due to a merge error. | | `mergeOngoing` | [`Boolean!`](#boolean) | Indicates if a merge is currently occurring. | | `mergeStatus` **{warning-solid}** | [`String`](#string) | **Deprecated** in 14.0. This was renamed. Use: [`MergeRequest.mergeStatusEnum`](#mergerequestmergestatusenum). | | `mergeStatusEnum` | [`MergeStatus`](#mergestatus) | Merge status of the merge request. | | `mergeTrainsCount` | [`Int`](#int) | Number of merge requests in the merge train. | | `mergeUser` | [`UserCore`](#usercore) | User who merged this merge request or set it to merge when pipeline succeeds. | | `mergeWhenPipelineSucceeds` | [`Boolean`](#boolean) | Indicates if the merge has been set to be merged when its pipeline succeeds (MWPS). | | `mergeable` | [`Boolean!`](#boolean) | Indicates if the merge request is mergeable. | | `mergeableDiscussionsState` | [`Boolean`](#boolean) | Indicates if all discussions in the merge request have been resolved, allowing the merge request to be merged. | | `mergedAt` | [`Time`](#time) | Timestamp of when the merge request was merged, null if not merged. | | `milestone` | [`Milestone`](#milestone) | Milestone of the merge request. | | `notes` | [`NoteConnection!`](#noteconnection) | All notes on this noteable. (see [Connections](#connections)) | | `participants` | [`MergeRequestParticipantConnection`](#mergerequestparticipantconnection) | Participants in the merge request. This includes the author, assignees, reviewers, and users mentioned in notes. (see [Connections](#connections)) | | `preparedAt` | [`Time`](#time) | Timestamp of when the merge request was prepared. | | `project` | [`Project!`](#project) | Alias for target_project. | | `projectId` | [`Int!`](#int) | ID of the merge request project. | | `rebaseCommitSha` | [`String`](#string) | Rebase commit SHA of the merge request. | | `rebaseInProgress` | [`Boolean!`](#boolean) | Indicates if there is a rebase currently in progress for the merge request. | | `reviewers` | [`MergeRequestReviewerConnection`](#mergerequestreviewerconnection) | Users from whom a review has been requested. (see [Connections](#connections)) | | `securityAutoFix` | [`Boolean`](#boolean) | Indicates if the merge request is created by @GitLab-Security-Bot. | | `securityReportsUpToDateOnTargetBranch` | [`Boolean!`](#boolean) | Indicates if the target branch security reports are out of date. | | `shouldBeRebased` | [`Boolean!`](#boolean) | Indicates if the merge request will be rebased. | | `shouldRemoveSourceBranch` | [`Boolean`](#boolean) | Indicates if the source branch of the merge request will be deleted after merge. | | `sourceBranch` | [`String!`](#string) | Source branch of the merge request. | | `sourceBranchExists` | [`Boolean!`](#boolean) | Indicates if the source branch of the merge request exists. | | `sourceBranchProtected` | [`Boolean!`](#boolean) | Indicates if the source branch is protected. | | `sourceProject` | [`Project`](#project) | Source project of the merge request. | | `sourceProjectId` | [`Int`](#int) | ID of the merge request source project. | | `squash` | [`Boolean!`](#boolean) | Indicates if the merge request is set to be squashed when merged. [Project settings](https://docs.gitlab.com/ee/user/project/merge_requests/squash_and_merge.html#configure-squash-options-for-a-project) may override this value. Use `squash_on_merge` instead to take project squash options into account. | | `squashOnMerge` | [`Boolean!`](#boolean) | Indicates if the merge request will be squashed when merged. | | `state` | [`MergeRequestState!`](#mergerequeststate) | State of the merge request. | | `subscribed` | [`Boolean!`](#boolean) | Indicates if the currently logged in user is subscribed to this merge request. | | `suggestedReviewers` **{warning-solid}** | [`SuggestedReviewersType`](#suggestedreviewerstype) | **Introduced** in 15.4. This feature is an Experiment. It can be changed or removed at any time. Suggested reviewers for merge request. Returns `null` if `suggested_reviewers` feature flag is disabled. This flag is disabled by default and only available on GitLab.com because the feature is experimental and is subject to change without notice. | | `targetBranch` | [`String!`](#string) | Target branch of the merge request. | | `targetBranchExists` | [`Boolean!`](#boolean) | Indicates if the target branch of the merge request exists. | | `targetProject` | [`Project!`](#project) | Target project of the merge request. | | `targetProjectId` | [`Int!`](#int) | ID of the merge request target project. | | `taskCompletionStatus` | [`TaskCompletionStatus!`](#taskcompletionstatus) | Completion status of tasks. | | `timeEstimate` | [`Int!`](#int) | Time estimate of the merge request. | | `timelogs` | [`TimelogConnection!`](#timelogconnection) | Timelogs on the merge request. (see [Connections](#connections)) | | `title` | [`String!`](#string) | Title of the merge request. | | `titleHtml` | [`String`](#string) | GitLab Flavored Markdown rendering of `title`. | | `totalTimeSpent` | [`Int!`](#int) | Total time reported as spent on the merge request. | | `updatedAt` | [`Time!`](#time) | Timestamp of when the merge request was last updated. | | `upvotes` | [`Int!`](#int) | Number of upvotes for the merge request. | | `userDiscussionsCount` | [`Int`](#int) | Number of user discussions in the merge request. | | `userNotesCount` | [`Int`](#int) | User notes count of the merge request. | | `userPermissions` | [`MergeRequestPermissions!`](#mergerequestpermissions) | Permissions for the current user on the resource. | | `webUrl` | [`String`](#string) | Web URL of the merge request. | #### Fields with arguments ##### `MergeRequest.currentUserTodos` To-do items for the current user. Returns [`TodoConnection!`](#todoconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `state` | [`TodoStateEnum`](#todostateenum) | State of the to-do items. | ##### `MergeRequest.diffStats` Details about which files were changed in this merge request. Returns [`[DiffStats!]`](#diffstats). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `path` | [`String`](#string) | Specific file path. | ##### `MergeRequest.pipelines` Pipelines for the merge request. Note: for performance reasons, no more than the most recent 500 pipelines will be returned. Returns [`PipelineConnection`](#pipelineconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ref` | [`String`](#string) | Filter pipelines by the ref they are run for. | | `scope` | [`PipelineScopeEnum`](#pipelinescopeenum) | Filter pipelines by scope. | | `sha` | [`String`](#string) | Filter pipelines by the sha of the commit they are run for. | | `source` | [`String`](#string) | Filter pipelines by their source. | | `status` | [`PipelineStatusEnum`](#pipelinestatusenum) | Filter pipelines by their status. | | `updatedAfter` | [`Time`](#time) | Pipelines updated after this date. | | `updatedBefore` | [`Time`](#time) | Pipelines updated before this date. | | `username` | [`String`](#string) | Filter pipelines by the user that triggered the pipeline. | ##### `MergeRequest.reference` Internal reference of the merge request. Returned in shortened format by default. Returns [`String!`](#string). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `full` | [`Boolean`](#boolean) | Boolean option specifying whether the reference should be returned in full. | ### `MergeRequestApprovalState` Information relating to rules that must be satisfied to merge this merge request. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `approvalRulesOverwritten` | [`Boolean`](#boolean) | Indicates if the merge request approval rules are overwritten for the merge request. | | `invalidApproversRules` | [`[ApprovalRule!]`](#approvalrule) | List of approval rules that are associated with the merge request, but invalid. | | `rules` | [`[ApprovalRule!]`](#approvalrule) | List of approval rules associated with the merge request. | | `suggestedApprovers` | [`UserCoreConnection`](#usercoreconnection) | List of suggested approvers. (see [Connections](#connections)) | ### `MergeRequestAssignee` A user assigned to a merge request. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `avatarUrl` | [`String`](#string) | URL of the user's avatar. | | `bot` | [`Boolean!`](#boolean) | Indicates if the user is a bot. | | `callouts` | [`UserCalloutConnection`](#usercalloutconnection) | User callouts that belong to the user. (see [Connections](#connections)) | | `commitEmail` | [`String`](#string) | User's default commit email. | | `email` **{warning-solid}** | [`String`](#string) | **Deprecated** in 13.7. This was renamed. Use: [`User.publicEmail`](#userpublicemail). | | `emails` | [`EmailConnection`](#emailconnection) | User's email addresses. (see [Connections](#connections)) | | `gitpodEnabled` | [`Boolean`](#boolean) | Whether Gitpod is enabled at the user level. | | `groupCount` | [`Int`](#int) | Group count for the user. | | `groupMemberships` | [`GroupMemberConnection`](#groupmemberconnection) | Group memberships of the user. (see [Connections](#connections)) | | `id` | [`ID!`](#id) | ID of the user. | | `location` | [`String`](#string) | Location of the user. | | `mergeRequestInteraction` | [`UserMergeRequestInteraction`](#usermergerequestinteraction) | Details of this user's interactions with the merge request. | | `name` | [`String!`](#string) | Human-readable name of the user. Returns `****` if the user is a project bot and the requester does not have permission to view the project. | | `namespace` | [`Namespace`](#namespace) | Personal namespace of the user. | | `namespaceCommitEmails` | [`NamespaceCommitEmailConnection`](#namespacecommitemailconnection) | User's custom namespace commit emails. (see [Connections](#connections)) | | `preferencesGitpodPath` | [`String`](#string) | Web path to the Gitpod section within user preferences. | | `profileEnableGitpodPath` | [`String`](#string) | Web path to enable Gitpod for the user. | | `projectMemberships` | [`ProjectMemberConnection`](#projectmemberconnection) | Project memberships of the user. (see [Connections](#connections)) | | `publicEmail` | [`String`](#string) | User's public email. | | `savedReplies` | [`SavedReplyConnection`](#savedreplyconnection) | Saved replies authored by the user. Will not return saved replies if `saved_replies` feature flag is disabled. (see [Connections](#connections)) | | `state` | [`UserState!`](#userstate) | State of the user. | | `status` | [`UserStatus`](#userstatus) | User status. | | `userAchievements` **{warning-solid}** | [`UserAchievementConnection`](#userachievementconnection) | **Introduced** in 15.10. This feature is an Experiment. It can be changed or removed at any time. Achievements for the user. Only returns for namespaces where the `achievements` feature flag is enabled. | | `userPermissions` | [`UserPermissions!`](#userpermissions) | Permissions for the current user on the resource. | | `username` | [`String!`](#string) | Username of the user. Unique within this instance of GitLab. | | `webPath` | [`String!`](#string) | Web path of the user. | | `webUrl` | [`String!`](#string) | Web URL of the user. | #### Fields with arguments ##### `MergeRequestAssignee.assignedMergeRequests` Merge requests assigned to the user. Returns [`MergeRequestConnection`](#mergerequestconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `approved` | [`Boolean`](#boolean) | Limit results to approved merge requests. Available only when the feature flag `mr_approved_filter` is enabled. | | `authorUsername` | [`String`](#string) | Username of the author. | | `createdAfter` | [`Time`](#time) | Merge requests created after this timestamp. | | `createdBefore` | [`Time`](#time) | Merge requests created before this timestamp. | | `draft` | [`Boolean`](#boolean) | Limit result to draft merge requests. | | `iids` | [`[String!]`](#string) | Array of IIDs of merge requests, for example `[1, 2]`. | | `labels` | [`[String!]`](#string) | Array of label names. All resolved merge requests will have all of these labels. | | `mergedAfter` | [`Time`](#time) | Merge requests merged after this date. | | `mergedBefore` | [`Time`](#time) | Merge requests merged before this date. | | `milestoneTitle` | [`String`](#string) | Title of the milestone. | | `not` | [`MergeRequestsResolverNegatedParams`](#mergerequestsresolvernegatedparams) | List of negated arguments. Warning: this argument is experimental and a subject to change in future. | | `projectId` | [`ProjectID`](#projectid) | The global ID of the project the authored merge requests should be in. Incompatible with projectPath. | | `projectPath` | [`String`](#string) | The full-path of the project the authored merge requests should be in. Incompatible with projectId. | | `reviewerUsername` | [`String`](#string) | Username of the reviewer. | | `sort` | [`MergeRequestSort`](#mergerequestsort) | Sort merge requests by this criteria. | | `sourceBranches` | [`[String!]`](#string) | Array of source branch names. All resolved merge requests will have one of these branches as their source. | | `state` | [`MergeRequestState`](#mergerequeststate) | Merge request state. If provided, all resolved merge requests will have this state. | | `targetBranches` | [`[String!]`](#string) | Array of target branch names. All resolved merge requests will have one of these branches as their target. | | `updatedAfter` | [`Time`](#time) | Merge requests updated after this timestamp. | | `updatedBefore` | [`Time`](#time) | Merge requests updated before this timestamp. | ##### `MergeRequestAssignee.authoredMergeRequests` Merge requests authored by the user. Returns [`MergeRequestConnection`](#mergerequestconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `approved` | [`Boolean`](#boolean) | Limit results to approved merge requests. Available only when the feature flag `mr_approved_filter` is enabled. | | `assigneeUsername` | [`String`](#string) | Username of the assignee. | | `createdAfter` | [`Time`](#time) | Merge requests created after this timestamp. | | `createdBefore` | [`Time`](#time) | Merge requests created before this timestamp. | | `draft` | [`Boolean`](#boolean) | Limit result to draft merge requests. | | `iids` | [`[String!]`](#string) | Array of IIDs of merge requests, for example `[1, 2]`. | | `labels` | [`[String!]`](#string) | Array of label names. All resolved merge requests will have all of these labels. | | `mergedAfter` | [`Time`](#time) | Merge requests merged after this date. | | `mergedBefore` | [`Time`](#time) | Merge requests merged before this date. | | `milestoneTitle` | [`String`](#string) | Title of the milestone. | | `not` | [`MergeRequestsResolverNegatedParams`](#mergerequestsresolvernegatedparams) | List of negated arguments. Warning: this argument is experimental and a subject to change in future. | | `projectId` | [`ProjectID`](#projectid) | The global ID of the project the authored merge requests should be in. Incompatible with projectPath. | | `projectPath` | [`String`](#string) | The full-path of the project the authored merge requests should be in. Incompatible with projectId. | | `reviewerUsername` | [`String`](#string) | Username of the reviewer. | | `sort` | [`MergeRequestSort`](#mergerequestsort) | Sort merge requests by this criteria. | | `sourceBranches` | [`[String!]`](#string) | Array of source branch names. All resolved merge requests will have one of these branches as their source. | | `state` | [`MergeRequestState`](#mergerequeststate) | Merge request state. If provided, all resolved merge requests will have this state. | | `targetBranches` | [`[String!]`](#string) | Array of target branch names. All resolved merge requests will have one of these branches as their target. | | `updatedAfter` | [`Time`](#time) | Merge requests updated after this timestamp. | | `updatedBefore` | [`Time`](#time) | Merge requests updated before this timestamp. | ##### `MergeRequestAssignee.groups` Groups where the user has access. Returns [`GroupConnection`](#groupconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `permissionScope` | [`GroupPermission`](#grouppermission) | Filter by permissions the user has on groups. | | `search` | [`String`](#string) | Search by group name or path. | ##### `MergeRequestAssignee.reviewRequestedMergeRequests` Merge requests assigned to the user for review. Returns [`MergeRequestConnection`](#mergerequestconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `approved` | [`Boolean`](#boolean) | Limit results to approved merge requests. Available only when the feature flag `mr_approved_filter` is enabled. | | `assigneeUsername` | [`String`](#string) | Username of the assignee. | | `authorUsername` | [`String`](#string) | Username of the author. | | `createdAfter` | [`Time`](#time) | Merge requests created after this timestamp. | | `createdBefore` | [`Time`](#time) | Merge requests created before this timestamp. | | `draft` | [`Boolean`](#boolean) | Limit result to draft merge requests. | | `iids` | [`[String!]`](#string) | Array of IIDs of merge requests, for example `[1, 2]`. | | `labels` | [`[String!]`](#string) | Array of label names. All resolved merge requests will have all of these labels. | | `mergedAfter` | [`Time`](#time) | Merge requests merged after this date. | | `mergedBefore` | [`Time`](#time) | Merge requests merged before this date. | | `milestoneTitle` | [`String`](#string) | Title of the milestone. | | `not` | [`MergeRequestsResolverNegatedParams`](#mergerequestsresolvernegatedparams) | List of negated arguments. Warning: this argument is experimental and a subject to change in future. | | `projectId` | [`ProjectID`](#projectid) | The global ID of the project the authored merge requests should be in. Incompatible with projectPath. | | `projectPath` | [`String`](#string) | The full-path of the project the authored merge requests should be in. Incompatible with projectId. | | `sort` | [`MergeRequestSort`](#mergerequestsort) | Sort merge requests by this criteria. | | `sourceBranches` | [`[String!]`](#string) | Array of source branch names. All resolved merge requests will have one of these branches as their source. | | `state` | [`MergeRequestState`](#mergerequeststate) | Merge request state. If provided, all resolved merge requests will have this state. | | `targetBranches` | [`[String!]`](#string) | Array of target branch names. All resolved merge requests will have one of these branches as their target. | | `updatedAfter` | [`Time`](#time) | Merge requests updated after this timestamp. | | `updatedBefore` | [`Time`](#time) | Merge requests updated before this timestamp. | ##### `MergeRequestAssignee.savedReply` Saved reply authored by the user. Will not return saved reply if `saved_replies` feature flag is disabled. Returns [`SavedReply`](#savedreply). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`UsersSavedReplyID!`](#userssavedreplyid) | ID of a saved reply. | ##### `MergeRequestAssignee.snippets` Snippets authored by the user. Returns [`SnippetConnection`](#snippetconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ids` | [`[SnippetID!]`](#snippetid) | Array of global snippet IDs. For example, `gid://gitlab/ProjectSnippet/1`. | | `type` | [`TypeEnum`](#typeenum) | Type of snippet. | | `visibility` | [`VisibilityScopesEnum`](#visibilityscopesenum) | Visibility of the snippet. | ##### `MergeRequestAssignee.starredProjects` Projects starred by the user. Returns [`ProjectConnection`](#projectconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `search` | [`String`](#string) | Search query. | ##### `MergeRequestAssignee.timelogs` Time logged by the user. Returns [`TimelogConnection`](#timelogconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `endDate` | [`Time`](#time) | List timelogs within a date range where the logged date is equal to or before endDate. | | `endTime` | [`Time`](#time) | List timelogs within a time range where the logged time is equal to or before endTime. | | `groupId` | [`GroupID`](#groupid) | List timelogs for a group. | | `projectId` | [`ProjectID`](#projectid) | List timelogs for a project. | | `sort` | [`TimelogSort`](#timelogsort) | List timelogs in a particular order. | | `startDate` | [`Time`](#time) | List timelogs within a date range where the logged date is equal to or after startDate. | | `startTime` | [`Time`](#time) | List timelogs within a time range where the logged time is equal to or after startTime. | | `username` | [`String`](#string) | List timelogs for a user. | ##### `MergeRequestAssignee.todos` To-do items of the user. Returns [`TodoConnection`](#todoconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `action` | [`[TodoActionEnum!]`](#todoactionenum) | Action to be filtered. | | `authorId` | [`[ID!]`](#id) | ID of an author. | | `groupId` | [`[ID!]`](#id) | ID of a group. | | `projectId` | [`[ID!]`](#id) | ID of a project. | | `state` | [`[TodoStateEnum!]`](#todostateenum) | State of the todo. | | `type` | [`[TodoTargetEnum!]`](#todotargetenum) | Type of the todo. | ##### `MergeRequestAssignee.workspaces` Workspaces owned by the current user. Returns [`WorkspaceConnection`](#workspaceconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ids` | [`[RemoteDevelopmentWorkspaceID!]`](#remotedevelopmentworkspaceid) | Array of global workspace IDs. For example, `["gid://gitlab/RemoteDevelopment::Workspace/1"]`. | ### `MergeRequestAuthor` The author of the merge request. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `avatarUrl` | [`String`](#string) | URL of the user's avatar. | | `bot` | [`Boolean!`](#boolean) | Indicates if the user is a bot. | | `callouts` | [`UserCalloutConnection`](#usercalloutconnection) | User callouts that belong to the user. (see [Connections](#connections)) | | `commitEmail` | [`String`](#string) | User's default commit email. | | `email` **{warning-solid}** | [`String`](#string) | **Deprecated** in 13.7. This was renamed. Use: [`User.publicEmail`](#userpublicemail). | | `emails` | [`EmailConnection`](#emailconnection) | User's email addresses. (see [Connections](#connections)) | | `gitpodEnabled` | [`Boolean`](#boolean) | Whether Gitpod is enabled at the user level. | | `groupCount` | [`Int`](#int) | Group count for the user. | | `groupMemberships` | [`GroupMemberConnection`](#groupmemberconnection) | Group memberships of the user. (see [Connections](#connections)) | | `id` | [`ID!`](#id) | ID of the user. | | `location` | [`String`](#string) | Location of the user. | | `mergeRequestInteraction` | [`UserMergeRequestInteraction`](#usermergerequestinteraction) | Details of this user's interactions with the merge request. | | `name` | [`String!`](#string) | Human-readable name of the user. Returns `****` if the user is a project bot and the requester does not have permission to view the project. | | `namespace` | [`Namespace`](#namespace) | Personal namespace of the user. | | `namespaceCommitEmails` | [`NamespaceCommitEmailConnection`](#namespacecommitemailconnection) | User's custom namespace commit emails. (see [Connections](#connections)) | | `preferencesGitpodPath` | [`String`](#string) | Web path to the Gitpod section within user preferences. | | `profileEnableGitpodPath` | [`String`](#string) | Web path to enable Gitpod for the user. | | `projectMemberships` | [`ProjectMemberConnection`](#projectmemberconnection) | Project memberships of the user. (see [Connections](#connections)) | | `publicEmail` | [`String`](#string) | User's public email. | | `savedReplies` | [`SavedReplyConnection`](#savedreplyconnection) | Saved replies authored by the user. Will not return saved replies if `saved_replies` feature flag is disabled. (see [Connections](#connections)) | | `state` | [`UserState!`](#userstate) | State of the user. | | `status` | [`UserStatus`](#userstatus) | User status. | | `userAchievements` **{warning-solid}** | [`UserAchievementConnection`](#userachievementconnection) | **Introduced** in 15.10. This feature is an Experiment. It can be changed or removed at any time. Achievements for the user. Only returns for namespaces where the `achievements` feature flag is enabled. | | `userPermissions` | [`UserPermissions!`](#userpermissions) | Permissions for the current user on the resource. | | `username` | [`String!`](#string) | Username of the user. Unique within this instance of GitLab. | | `webPath` | [`String!`](#string) | Web path of the user. | | `webUrl` | [`String!`](#string) | Web URL of the user. | #### Fields with arguments ##### `MergeRequestAuthor.assignedMergeRequests` Merge requests assigned to the user. Returns [`MergeRequestConnection`](#mergerequestconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `approved` | [`Boolean`](#boolean) | Limit results to approved merge requests. Available only when the feature flag `mr_approved_filter` is enabled. | | `authorUsername` | [`String`](#string) | Username of the author. | | `createdAfter` | [`Time`](#time) | Merge requests created after this timestamp. | | `createdBefore` | [`Time`](#time) | Merge requests created before this timestamp. | | `draft` | [`Boolean`](#boolean) | Limit result to draft merge requests. | | `iids` | [`[String!]`](#string) | Array of IIDs of merge requests, for example `[1, 2]`. | | `labels` | [`[String!]`](#string) | Array of label names. All resolved merge requests will have all of these labels. | | `mergedAfter` | [`Time`](#time) | Merge requests merged after this date. | | `mergedBefore` | [`Time`](#time) | Merge requests merged before this date. | | `milestoneTitle` | [`String`](#string) | Title of the milestone. | | `not` | [`MergeRequestsResolverNegatedParams`](#mergerequestsresolvernegatedparams) | List of negated arguments. Warning: this argument is experimental and a subject to change in future. | | `projectId` | [`ProjectID`](#projectid) | The global ID of the project the authored merge requests should be in. Incompatible with projectPath. | | `projectPath` | [`String`](#string) | The full-path of the project the authored merge requests should be in. Incompatible with projectId. | | `reviewerUsername` | [`String`](#string) | Username of the reviewer. | | `sort` | [`MergeRequestSort`](#mergerequestsort) | Sort merge requests by this criteria. | | `sourceBranches` | [`[String!]`](#string) | Array of source branch names. All resolved merge requests will have one of these branches as their source. | | `state` | [`MergeRequestState`](#mergerequeststate) | Merge request state. If provided, all resolved merge requests will have this state. | | `targetBranches` | [`[String!]`](#string) | Array of target branch names. All resolved merge requests will have one of these branches as their target. | | `updatedAfter` | [`Time`](#time) | Merge requests updated after this timestamp. | | `updatedBefore` | [`Time`](#time) | Merge requests updated before this timestamp. | ##### `MergeRequestAuthor.authoredMergeRequests` Merge requests authored by the user. Returns [`MergeRequestConnection`](#mergerequestconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `approved` | [`Boolean`](#boolean) | Limit results to approved merge requests. Available only when the feature flag `mr_approved_filter` is enabled. | | `assigneeUsername` | [`String`](#string) | Username of the assignee. | | `createdAfter` | [`Time`](#time) | Merge requests created after this timestamp. | | `createdBefore` | [`Time`](#time) | Merge requests created before this timestamp. | | `draft` | [`Boolean`](#boolean) | Limit result to draft merge requests. | | `iids` | [`[String!]`](#string) | Array of IIDs of merge requests, for example `[1, 2]`. | | `labels` | [`[String!]`](#string) | Array of label names. All resolved merge requests will have all of these labels. | | `mergedAfter` | [`Time`](#time) | Merge requests merged after this date. | | `mergedBefore` | [`Time`](#time) | Merge requests merged before this date. | | `milestoneTitle` | [`String`](#string) | Title of the milestone. | | `not` | [`MergeRequestsResolverNegatedParams`](#mergerequestsresolvernegatedparams) | List of negated arguments. Warning: this argument is experimental and a subject to change in future. | | `projectId` | [`ProjectID`](#projectid) | The global ID of the project the authored merge requests should be in. Incompatible with projectPath. | | `projectPath` | [`String`](#string) | The full-path of the project the authored merge requests should be in. Incompatible with projectId. | | `reviewerUsername` | [`String`](#string) | Username of the reviewer. | | `sort` | [`MergeRequestSort`](#mergerequestsort) | Sort merge requests by this criteria. | | `sourceBranches` | [`[String!]`](#string) | Array of source branch names. All resolved merge requests will have one of these branches as their source. | | `state` | [`MergeRequestState`](#mergerequeststate) | Merge request state. If provided, all resolved merge requests will have this state. | | `targetBranches` | [`[String!]`](#string) | Array of target branch names. All resolved merge requests will have one of these branches as their target. | | `updatedAfter` | [`Time`](#time) | Merge requests updated after this timestamp. | | `updatedBefore` | [`Time`](#time) | Merge requests updated before this timestamp. | ##### `MergeRequestAuthor.groups` Groups where the user has access. Returns [`GroupConnection`](#groupconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `permissionScope` | [`GroupPermission`](#grouppermission) | Filter by permissions the user has on groups. | | `search` | [`String`](#string) | Search by group name or path. | ##### `MergeRequestAuthor.reviewRequestedMergeRequests` Merge requests assigned to the user for review. Returns [`MergeRequestConnection`](#mergerequestconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `approved` | [`Boolean`](#boolean) | Limit results to approved merge requests. Available only when the feature flag `mr_approved_filter` is enabled. | | `assigneeUsername` | [`String`](#string) | Username of the assignee. | | `authorUsername` | [`String`](#string) | Username of the author. | | `createdAfter` | [`Time`](#time) | Merge requests created after this timestamp. | | `createdBefore` | [`Time`](#time) | Merge requests created before this timestamp. | | `draft` | [`Boolean`](#boolean) | Limit result to draft merge requests. | | `iids` | [`[String!]`](#string) | Array of IIDs of merge requests, for example `[1, 2]`. | | `labels` | [`[String!]`](#string) | Array of label names. All resolved merge requests will have all of these labels. | | `mergedAfter` | [`Time`](#time) | Merge requests merged after this date. | | `mergedBefore` | [`Time`](#time) | Merge requests merged before this date. | | `milestoneTitle` | [`String`](#string) | Title of the milestone. | | `not` | [`MergeRequestsResolverNegatedParams`](#mergerequestsresolvernegatedparams) | List of negated arguments. Warning: this argument is experimental and a subject to change in future. | | `projectId` | [`ProjectID`](#projectid) | The global ID of the project the authored merge requests should be in. Incompatible with projectPath. | | `projectPath` | [`String`](#string) | The full-path of the project the authored merge requests should be in. Incompatible with projectId. | | `sort` | [`MergeRequestSort`](#mergerequestsort) | Sort merge requests by this criteria. | | `sourceBranches` | [`[String!]`](#string) | Array of source branch names. All resolved merge requests will have one of these branches as their source. | | `state` | [`MergeRequestState`](#mergerequeststate) | Merge request state. If provided, all resolved merge requests will have this state. | | `targetBranches` | [`[String!]`](#string) | Array of target branch names. All resolved merge requests will have one of these branches as their target. | | `updatedAfter` | [`Time`](#time) | Merge requests updated after this timestamp. | | `updatedBefore` | [`Time`](#time) | Merge requests updated before this timestamp. | ##### `MergeRequestAuthor.savedReply` Saved reply authored by the user. Will not return saved reply if `saved_replies` feature flag is disabled. Returns [`SavedReply`](#savedreply). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`UsersSavedReplyID!`](#userssavedreplyid) | ID of a saved reply. | ##### `MergeRequestAuthor.snippets` Snippets authored by the user. Returns [`SnippetConnection`](#snippetconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ids` | [`[SnippetID!]`](#snippetid) | Array of global snippet IDs. For example, `gid://gitlab/ProjectSnippet/1`. | | `type` | [`TypeEnum`](#typeenum) | Type of snippet. | | `visibility` | [`VisibilityScopesEnum`](#visibilityscopesenum) | Visibility of the snippet. | ##### `MergeRequestAuthor.starredProjects` Projects starred by the user. Returns [`ProjectConnection`](#projectconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `search` | [`String`](#string) | Search query. | ##### `MergeRequestAuthor.timelogs` Time logged by the user. Returns [`TimelogConnection`](#timelogconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `endDate` | [`Time`](#time) | List timelogs within a date range where the logged date is equal to or before endDate. | | `endTime` | [`Time`](#time) | List timelogs within a time range where the logged time is equal to or before endTime. | | `groupId` | [`GroupID`](#groupid) | List timelogs for a group. | | `projectId` | [`ProjectID`](#projectid) | List timelogs for a project. | | `sort` | [`TimelogSort`](#timelogsort) | List timelogs in a particular order. | | `startDate` | [`Time`](#time) | List timelogs within a date range where the logged date is equal to or after startDate. | | `startTime` | [`Time`](#time) | List timelogs within a time range where the logged time is equal to or after startTime. | | `username` | [`String`](#string) | List timelogs for a user. | ##### `MergeRequestAuthor.todos` To-do items of the user. Returns [`TodoConnection`](#todoconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `action` | [`[TodoActionEnum!]`](#todoactionenum) | Action to be filtered. | | `authorId` | [`[ID!]`](#id) | ID of an author. | | `groupId` | [`[ID!]`](#id) | ID of a group. | | `projectId` | [`[ID!]`](#id) | ID of a project. | | `state` | [`[TodoStateEnum!]`](#todostateenum) | State of the todo. | | `type` | [`[TodoTargetEnum!]`](#todotargetenum) | Type of the todo. | ##### `MergeRequestAuthor.workspaces` Workspaces owned by the current user. Returns [`WorkspaceConnection`](#workspaceconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ids` | [`[RemoteDevelopmentWorkspaceID!]`](#remotedevelopmentworkspaceid) | Array of global workspace IDs. For example, `["gid://gitlab/RemoteDevelopment::Workspace/1"]`. | ### `MergeRequestDiffRegistry` Represents the Geo sync and verification state of a Merge Request diff. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `createdAt` | [`Time`](#time) | Timestamp when the MergeRequestDiffRegistry was created. | | `id` | [`ID!`](#id) | ID of the MergeRequestDiffRegistry. | | `lastSyncFailure` | [`String`](#string) | Error message during sync of the MergeRequestDiffRegistry. | | `lastSyncedAt` | [`Time`](#time) | Timestamp of the most recent successful sync of the MergeRequestDiffRegistry. | | `mergeRequestDiffId` | [`ID!`](#id) | ID of the Merge Request diff. | | `retryAt` | [`Time`](#time) | Timestamp after which the MergeRequestDiffRegistry is resynced. | | `retryCount` | [`Int`](#int) | Number of consecutive failed sync attempts of the MergeRequestDiffRegistry. | | `state` | [`RegistryState`](#registrystate) | Sync state of the MergeRequestDiffRegistry. | | `verificationRetryAt` | [`Time`](#time) | Timestamp after which the MergeRequestDiffRegistry is reverified. | | `verifiedAt` | [`Time`](#time) | Timestamp of the most recent successful verification of the MergeRequestDiffRegistry. | ### `MergeRequestParticipant` A user participating in a merge request. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `avatarUrl` | [`String`](#string) | URL of the user's avatar. | | `bot` | [`Boolean!`](#boolean) | Indicates if the user is a bot. | | `callouts` | [`UserCalloutConnection`](#usercalloutconnection) | User callouts that belong to the user. (see [Connections](#connections)) | | `commitEmail` | [`String`](#string) | User's default commit email. | | `email` **{warning-solid}** | [`String`](#string) | **Deprecated** in 13.7. This was renamed. Use: [`User.publicEmail`](#userpublicemail). | | `emails` | [`EmailConnection`](#emailconnection) | User's email addresses. (see [Connections](#connections)) | | `gitpodEnabled` | [`Boolean`](#boolean) | Whether Gitpod is enabled at the user level. | | `groupCount` | [`Int`](#int) | Group count for the user. | | `groupMemberships` | [`GroupMemberConnection`](#groupmemberconnection) | Group memberships of the user. (see [Connections](#connections)) | | `id` | [`ID!`](#id) | ID of the user. | | `location` | [`String`](#string) | Location of the user. | | `mergeRequestInteraction` | [`UserMergeRequestInteraction`](#usermergerequestinteraction) | Details of this user's interactions with the merge request. | | `name` | [`String!`](#string) | Human-readable name of the user. Returns `****` if the user is a project bot and the requester does not have permission to view the project. | | `namespace` | [`Namespace`](#namespace) | Personal namespace of the user. | | `namespaceCommitEmails` | [`NamespaceCommitEmailConnection`](#namespacecommitemailconnection) | User's custom namespace commit emails. (see [Connections](#connections)) | | `preferencesGitpodPath` | [`String`](#string) | Web path to the Gitpod section within user preferences. | | `profileEnableGitpodPath` | [`String`](#string) | Web path to enable Gitpod for the user. | | `projectMemberships` | [`ProjectMemberConnection`](#projectmemberconnection) | Project memberships of the user. (see [Connections](#connections)) | | `publicEmail` | [`String`](#string) | User's public email. | | `savedReplies` | [`SavedReplyConnection`](#savedreplyconnection) | Saved replies authored by the user. Will not return saved replies if `saved_replies` feature flag is disabled. (see [Connections](#connections)) | | `state` | [`UserState!`](#userstate) | State of the user. | | `status` | [`UserStatus`](#userstatus) | User status. | | `userAchievements` **{warning-solid}** | [`UserAchievementConnection`](#userachievementconnection) | **Introduced** in 15.10. This feature is an Experiment. It can be changed or removed at any time. Achievements for the user. Only returns for namespaces where the `achievements` feature flag is enabled. | | `userPermissions` | [`UserPermissions!`](#userpermissions) | Permissions for the current user on the resource. | | `username` | [`String!`](#string) | Username of the user. Unique within this instance of GitLab. | | `webPath` | [`String!`](#string) | Web path of the user. | | `webUrl` | [`String!`](#string) | Web URL of the user. | #### Fields with arguments ##### `MergeRequestParticipant.assignedMergeRequests` Merge requests assigned to the user. Returns [`MergeRequestConnection`](#mergerequestconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `approved` | [`Boolean`](#boolean) | Limit results to approved merge requests. Available only when the feature flag `mr_approved_filter` is enabled. | | `authorUsername` | [`String`](#string) | Username of the author. | | `createdAfter` | [`Time`](#time) | Merge requests created after this timestamp. | | `createdBefore` | [`Time`](#time) | Merge requests created before this timestamp. | | `draft` | [`Boolean`](#boolean) | Limit result to draft merge requests. | | `iids` | [`[String!]`](#string) | Array of IIDs of merge requests, for example `[1, 2]`. | | `labels` | [`[String!]`](#string) | Array of label names. All resolved merge requests will have all of these labels. | | `mergedAfter` | [`Time`](#time) | Merge requests merged after this date. | | `mergedBefore` | [`Time`](#time) | Merge requests merged before this date. | | `milestoneTitle` | [`String`](#string) | Title of the milestone. | | `not` | [`MergeRequestsResolverNegatedParams`](#mergerequestsresolvernegatedparams) | List of negated arguments. Warning: this argument is experimental and a subject to change in future. | | `projectId` | [`ProjectID`](#projectid) | The global ID of the project the authored merge requests should be in. Incompatible with projectPath. | | `projectPath` | [`String`](#string) | The full-path of the project the authored merge requests should be in. Incompatible with projectId. | | `reviewerUsername` | [`String`](#string) | Username of the reviewer. | | `sort` | [`MergeRequestSort`](#mergerequestsort) | Sort merge requests by this criteria. | | `sourceBranches` | [`[String!]`](#string) | Array of source branch names. All resolved merge requests will have one of these branches as their source. | | `state` | [`MergeRequestState`](#mergerequeststate) | Merge request state. If provided, all resolved merge requests will have this state. | | `targetBranches` | [`[String!]`](#string) | Array of target branch names. All resolved merge requests will have one of these branches as their target. | | `updatedAfter` | [`Time`](#time) | Merge requests updated after this timestamp. | | `updatedBefore` | [`Time`](#time) | Merge requests updated before this timestamp. | ##### `MergeRequestParticipant.authoredMergeRequests` Merge requests authored by the user. Returns [`MergeRequestConnection`](#mergerequestconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `approved` | [`Boolean`](#boolean) | Limit results to approved merge requests. Available only when the feature flag `mr_approved_filter` is enabled. | | `assigneeUsername` | [`String`](#string) | Username of the assignee. | | `createdAfter` | [`Time`](#time) | Merge requests created after this timestamp. | | `createdBefore` | [`Time`](#time) | Merge requests created before this timestamp. | | `draft` | [`Boolean`](#boolean) | Limit result to draft merge requests. | | `iids` | [`[String!]`](#string) | Array of IIDs of merge requests, for example `[1, 2]`. | | `labels` | [`[String!]`](#string) | Array of label names. All resolved merge requests will have all of these labels. | | `mergedAfter` | [`Time`](#time) | Merge requests merged after this date. | | `mergedBefore` | [`Time`](#time) | Merge requests merged before this date. | | `milestoneTitle` | [`String`](#string) | Title of the milestone. | | `not` | [`MergeRequestsResolverNegatedParams`](#mergerequestsresolvernegatedparams) | List of negated arguments. Warning: this argument is experimental and a subject to change in future. | | `projectId` | [`ProjectID`](#projectid) | The global ID of the project the authored merge requests should be in. Incompatible with projectPath. | | `projectPath` | [`String`](#string) | The full-path of the project the authored merge requests should be in. Incompatible with projectId. | | `reviewerUsername` | [`String`](#string) | Username of the reviewer. | | `sort` | [`MergeRequestSort`](#mergerequestsort) | Sort merge requests by this criteria. | | `sourceBranches` | [`[String!]`](#string) | Array of source branch names. All resolved merge requests will have one of these branches as their source. | | `state` | [`MergeRequestState`](#mergerequeststate) | Merge request state. If provided, all resolved merge requests will have this state. | | `targetBranches` | [`[String!]`](#string) | Array of target branch names. All resolved merge requests will have one of these branches as their target. | | `updatedAfter` | [`Time`](#time) | Merge requests updated after this timestamp. | | `updatedBefore` | [`Time`](#time) | Merge requests updated before this timestamp. | ##### `MergeRequestParticipant.groups` Groups where the user has access. Returns [`GroupConnection`](#groupconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `permissionScope` | [`GroupPermission`](#grouppermission) | Filter by permissions the user has on groups. | | `search` | [`String`](#string) | Search by group name or path. | ##### `MergeRequestParticipant.reviewRequestedMergeRequests` Merge requests assigned to the user for review. Returns [`MergeRequestConnection`](#mergerequestconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `approved` | [`Boolean`](#boolean) | Limit results to approved merge requests. Available only when the feature flag `mr_approved_filter` is enabled. | | `assigneeUsername` | [`String`](#string) | Username of the assignee. | | `authorUsername` | [`String`](#string) | Username of the author. | | `createdAfter` | [`Time`](#time) | Merge requests created after this timestamp. | | `createdBefore` | [`Time`](#time) | Merge requests created before this timestamp. | | `draft` | [`Boolean`](#boolean) | Limit result to draft merge requests. | | `iids` | [`[String!]`](#string) | Array of IIDs of merge requests, for example `[1, 2]`. | | `labels` | [`[String!]`](#string) | Array of label names. All resolved merge requests will have all of these labels. | | `mergedAfter` | [`Time`](#time) | Merge requests merged after this date. | | `mergedBefore` | [`Time`](#time) | Merge requests merged before this date. | | `milestoneTitle` | [`String`](#string) | Title of the milestone. | | `not` | [`MergeRequestsResolverNegatedParams`](#mergerequestsresolvernegatedparams) | List of negated arguments. Warning: this argument is experimental and a subject to change in future. | | `projectId` | [`ProjectID`](#projectid) | The global ID of the project the authored merge requests should be in. Incompatible with projectPath. | | `projectPath` | [`String`](#string) | The full-path of the project the authored merge requests should be in. Incompatible with projectId. | | `sort` | [`MergeRequestSort`](#mergerequestsort) | Sort merge requests by this criteria. | | `sourceBranches` | [`[String!]`](#string) | Array of source branch names. All resolved merge requests will have one of these branches as their source. | | `state` | [`MergeRequestState`](#mergerequeststate) | Merge request state. If provided, all resolved merge requests will have this state. | | `targetBranches` | [`[String!]`](#string) | Array of target branch names. All resolved merge requests will have one of these branches as their target. | | `updatedAfter` | [`Time`](#time) | Merge requests updated after this timestamp. | | `updatedBefore` | [`Time`](#time) | Merge requests updated before this timestamp. | ##### `MergeRequestParticipant.savedReply` Saved reply authored by the user. Will not return saved reply if `saved_replies` feature flag is disabled. Returns [`SavedReply`](#savedreply). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`UsersSavedReplyID!`](#userssavedreplyid) | ID of a saved reply. | ##### `MergeRequestParticipant.snippets` Snippets authored by the user. Returns [`SnippetConnection`](#snippetconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ids` | [`[SnippetID!]`](#snippetid) | Array of global snippet IDs. For example, `gid://gitlab/ProjectSnippet/1`. | | `type` | [`TypeEnum`](#typeenum) | Type of snippet. | | `visibility` | [`VisibilityScopesEnum`](#visibilityscopesenum) | Visibility of the snippet. | ##### `MergeRequestParticipant.starredProjects` Projects starred by the user. Returns [`ProjectConnection`](#projectconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `search` | [`String`](#string) | Search query. | ##### `MergeRequestParticipant.timelogs` Time logged by the user. Returns [`TimelogConnection`](#timelogconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `endDate` | [`Time`](#time) | List timelogs within a date range where the logged date is equal to or before endDate. | | `endTime` | [`Time`](#time) | List timelogs within a time range where the logged time is equal to or before endTime. | | `groupId` | [`GroupID`](#groupid) | List timelogs for a group. | | `projectId` | [`ProjectID`](#projectid) | List timelogs for a project. | | `sort` | [`TimelogSort`](#timelogsort) | List timelogs in a particular order. | | `startDate` | [`Time`](#time) | List timelogs within a date range where the logged date is equal to or after startDate. | | `startTime` | [`Time`](#time) | List timelogs within a time range where the logged time is equal to or after startTime. | | `username` | [`String`](#string) | List timelogs for a user. | ##### `MergeRequestParticipant.todos` To-do items of the user. Returns [`TodoConnection`](#todoconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `action` | [`[TodoActionEnum!]`](#todoactionenum) | Action to be filtered. | | `authorId` | [`[ID!]`](#id) | ID of an author. | | `groupId` | [`[ID!]`](#id) | ID of a group. | | `projectId` | [`[ID!]`](#id) | ID of a project. | | `state` | [`[TodoStateEnum!]`](#todostateenum) | State of the todo. | | `type` | [`[TodoTargetEnum!]`](#todotargetenum) | Type of the todo. | ##### `MergeRequestParticipant.workspaces` Workspaces owned by the current user. Returns [`WorkspaceConnection`](#workspaceconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ids` | [`[RemoteDevelopmentWorkspaceID!]`](#remotedevelopmentworkspaceid) | Array of global workspace IDs. For example, `["gid://gitlab/RemoteDevelopment::Workspace/1"]`. | ### `MergeRequestPermissions` Check permissions for the current user on a merge request. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `adminMergeRequest` | [`Boolean!`](#boolean) | Indicates the user can perform `admin_merge_request` on this resource. | | `canApprove` | [`Boolean!`](#boolean) | Indicates the user can perform `can_approve` on this resource. | | `canMerge` | [`Boolean!`](#boolean) | Indicates the user can perform `can_merge` on this resource. | | `cherryPickOnCurrentMergeRequest` | [`Boolean!`](#boolean) | Indicates the user can perform `cherry_pick_on_current_merge_request` on this resource. | | `createNote` | [`Boolean!`](#boolean) | Indicates the user can perform `create_note` on this resource. | | `pushToSourceBranch` | [`Boolean!`](#boolean) | Indicates the user can perform `push_to_source_branch` on this resource. | | `readMergeRequest` | [`Boolean!`](#boolean) | Indicates the user can perform `read_merge_request` on this resource. | | `removeSourceBranch` | [`Boolean!`](#boolean) | Indicates the user can perform `remove_source_branch` on this resource. | | `revertOnCurrentMergeRequest` | [`Boolean!`](#boolean) | Indicates the user can perform `revert_on_current_merge_request` on this resource. | | `updateMergeRequest` | [`Boolean!`](#boolean) | Indicates the user can perform `update_merge_request` on this resource. | ### `MergeRequestReviewer` A user assigned to a merge request as a reviewer. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `avatarUrl` | [`String`](#string) | URL of the user's avatar. | | `bot` | [`Boolean!`](#boolean) | Indicates if the user is a bot. | | `callouts` | [`UserCalloutConnection`](#usercalloutconnection) | User callouts that belong to the user. (see [Connections](#connections)) | | `commitEmail` | [`String`](#string) | User's default commit email. | | `email` **{warning-solid}** | [`String`](#string) | **Deprecated** in 13.7. This was renamed. Use: [`User.publicEmail`](#userpublicemail). | | `emails` | [`EmailConnection`](#emailconnection) | User's email addresses. (see [Connections](#connections)) | | `gitpodEnabled` | [`Boolean`](#boolean) | Whether Gitpod is enabled at the user level. | | `groupCount` | [`Int`](#int) | Group count for the user. | | `groupMemberships` | [`GroupMemberConnection`](#groupmemberconnection) | Group memberships of the user. (see [Connections](#connections)) | | `id` | [`ID!`](#id) | ID of the user. | | `location` | [`String`](#string) | Location of the user. | | `mergeRequestInteraction` | [`UserMergeRequestInteraction`](#usermergerequestinteraction) | Details of this user's interactions with the merge request. | | `name` | [`String!`](#string) | Human-readable name of the user. Returns `****` if the user is a project bot and the requester does not have permission to view the project. | | `namespace` | [`Namespace`](#namespace) | Personal namespace of the user. | | `namespaceCommitEmails` | [`NamespaceCommitEmailConnection`](#namespacecommitemailconnection) | User's custom namespace commit emails. (see [Connections](#connections)) | | `preferencesGitpodPath` | [`String`](#string) | Web path to the Gitpod section within user preferences. | | `profileEnableGitpodPath` | [`String`](#string) | Web path to enable Gitpod for the user. | | `projectMemberships` | [`ProjectMemberConnection`](#projectmemberconnection) | Project memberships of the user. (see [Connections](#connections)) | | `publicEmail` | [`String`](#string) | User's public email. | | `savedReplies` | [`SavedReplyConnection`](#savedreplyconnection) | Saved replies authored by the user. Will not return saved replies if `saved_replies` feature flag is disabled. (see [Connections](#connections)) | | `state` | [`UserState!`](#userstate) | State of the user. | | `status` | [`UserStatus`](#userstatus) | User status. | | `userAchievements` **{warning-solid}** | [`UserAchievementConnection`](#userachievementconnection) | **Introduced** in 15.10. This feature is an Experiment. It can be changed or removed at any time. Achievements for the user. Only returns for namespaces where the `achievements` feature flag is enabled. | | `userPermissions` | [`UserPermissions!`](#userpermissions) | Permissions for the current user on the resource. | | `username` | [`String!`](#string) | Username of the user. Unique within this instance of GitLab. | | `webPath` | [`String!`](#string) | Web path of the user. | | `webUrl` | [`String!`](#string) | Web URL of the user. | #### Fields with arguments ##### `MergeRequestReviewer.assignedMergeRequests` Merge requests assigned to the user. Returns [`MergeRequestConnection`](#mergerequestconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `approved` | [`Boolean`](#boolean) | Limit results to approved merge requests. Available only when the feature flag `mr_approved_filter` is enabled. | | `authorUsername` | [`String`](#string) | Username of the author. | | `createdAfter` | [`Time`](#time) | Merge requests created after this timestamp. | | `createdBefore` | [`Time`](#time) | Merge requests created before this timestamp. | | `draft` | [`Boolean`](#boolean) | Limit result to draft merge requests. | | `iids` | [`[String!]`](#string) | Array of IIDs of merge requests, for example `[1, 2]`. | | `labels` | [`[String!]`](#string) | Array of label names. All resolved merge requests will have all of these labels. | | `mergedAfter` | [`Time`](#time) | Merge requests merged after this date. | | `mergedBefore` | [`Time`](#time) | Merge requests merged before this date. | | `milestoneTitle` | [`String`](#string) | Title of the milestone. | | `not` | [`MergeRequestsResolverNegatedParams`](#mergerequestsresolvernegatedparams) | List of negated arguments. Warning: this argument is experimental and a subject to change in future. | | `projectId` | [`ProjectID`](#projectid) | The global ID of the project the authored merge requests should be in. Incompatible with projectPath. | | `projectPath` | [`String`](#string) | The full-path of the project the authored merge requests should be in. Incompatible with projectId. | | `reviewerUsername` | [`String`](#string) | Username of the reviewer. | | `sort` | [`MergeRequestSort`](#mergerequestsort) | Sort merge requests by this criteria. | | `sourceBranches` | [`[String!]`](#string) | Array of source branch names. All resolved merge requests will have one of these branches as their source. | | `state` | [`MergeRequestState`](#mergerequeststate) | Merge request state. If provided, all resolved merge requests will have this state. | | `targetBranches` | [`[String!]`](#string) | Array of target branch names. All resolved merge requests will have one of these branches as their target. | | `updatedAfter` | [`Time`](#time) | Merge requests updated after this timestamp. | | `updatedBefore` | [`Time`](#time) | Merge requests updated before this timestamp. | ##### `MergeRequestReviewer.authoredMergeRequests` Merge requests authored by the user. Returns [`MergeRequestConnection`](#mergerequestconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `approved` | [`Boolean`](#boolean) | Limit results to approved merge requests. Available only when the feature flag `mr_approved_filter` is enabled. | | `assigneeUsername` | [`String`](#string) | Username of the assignee. | | `createdAfter` | [`Time`](#time) | Merge requests created after this timestamp. | | `createdBefore` | [`Time`](#time) | Merge requests created before this timestamp. | | `draft` | [`Boolean`](#boolean) | Limit result to draft merge requests. | | `iids` | [`[String!]`](#string) | Array of IIDs of merge requests, for example `[1, 2]`. | | `labels` | [`[String!]`](#string) | Array of label names. All resolved merge requests will have all of these labels. | | `mergedAfter` | [`Time`](#time) | Merge requests merged after this date. | | `mergedBefore` | [`Time`](#time) | Merge requests merged before this date. | | `milestoneTitle` | [`String`](#string) | Title of the milestone. | | `not` | [`MergeRequestsResolverNegatedParams`](#mergerequestsresolvernegatedparams) | List of negated arguments. Warning: this argument is experimental and a subject to change in future. | | `projectId` | [`ProjectID`](#projectid) | The global ID of the project the authored merge requests should be in. Incompatible with projectPath. | | `projectPath` | [`String`](#string) | The full-path of the project the authored merge requests should be in. Incompatible with projectId. | | `reviewerUsername` | [`String`](#string) | Username of the reviewer. | | `sort` | [`MergeRequestSort`](#mergerequestsort) | Sort merge requests by this criteria. | | `sourceBranches` | [`[String!]`](#string) | Array of source branch names. All resolved merge requests will have one of these branches as their source. | | `state` | [`MergeRequestState`](#mergerequeststate) | Merge request state. If provided, all resolved merge requests will have this state. | | `targetBranches` | [`[String!]`](#string) | Array of target branch names. All resolved merge requests will have one of these branches as their target. | | `updatedAfter` | [`Time`](#time) | Merge requests updated after this timestamp. | | `updatedBefore` | [`Time`](#time) | Merge requests updated before this timestamp. | ##### `MergeRequestReviewer.groups` Groups where the user has access. Returns [`GroupConnection`](#groupconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `permissionScope` | [`GroupPermission`](#grouppermission) | Filter by permissions the user has on groups. | | `search` | [`String`](#string) | Search by group name or path. | ##### `MergeRequestReviewer.reviewRequestedMergeRequests` Merge requests assigned to the user for review. Returns [`MergeRequestConnection`](#mergerequestconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `approved` | [`Boolean`](#boolean) | Limit results to approved merge requests. Available only when the feature flag `mr_approved_filter` is enabled. | | `assigneeUsername` | [`String`](#string) | Username of the assignee. | | `authorUsername` | [`String`](#string) | Username of the author. | | `createdAfter` | [`Time`](#time) | Merge requests created after this timestamp. | | `createdBefore` | [`Time`](#time) | Merge requests created before this timestamp. | | `draft` | [`Boolean`](#boolean) | Limit result to draft merge requests. | | `iids` | [`[String!]`](#string) | Array of IIDs of merge requests, for example `[1, 2]`. | | `labels` | [`[String!]`](#string) | Array of label names. All resolved merge requests will have all of these labels. | | `mergedAfter` | [`Time`](#time) | Merge requests merged after this date. | | `mergedBefore` | [`Time`](#time) | Merge requests merged before this date. | | `milestoneTitle` | [`String`](#string) | Title of the milestone. | | `not` | [`MergeRequestsResolverNegatedParams`](#mergerequestsresolvernegatedparams) | List of negated arguments. Warning: this argument is experimental and a subject to change in future. | | `projectId` | [`ProjectID`](#projectid) | The global ID of the project the authored merge requests should be in. Incompatible with projectPath. | | `projectPath` | [`String`](#string) | The full-path of the project the authored merge requests should be in. Incompatible with projectId. | | `sort` | [`MergeRequestSort`](#mergerequestsort) | Sort merge requests by this criteria. | | `sourceBranches` | [`[String!]`](#string) | Array of source branch names. All resolved merge requests will have one of these branches as their source. | | `state` | [`MergeRequestState`](#mergerequeststate) | Merge request state. If provided, all resolved merge requests will have this state. | | `targetBranches` | [`[String!]`](#string) | Array of target branch names. All resolved merge requests will have one of these branches as their target. | | `updatedAfter` | [`Time`](#time) | Merge requests updated after this timestamp. | | `updatedBefore` | [`Time`](#time) | Merge requests updated before this timestamp. | ##### `MergeRequestReviewer.savedReply` Saved reply authored by the user. Will not return saved reply if `saved_replies` feature flag is disabled. Returns [`SavedReply`](#savedreply). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`UsersSavedReplyID!`](#userssavedreplyid) | ID of a saved reply. | ##### `MergeRequestReviewer.snippets` Snippets authored by the user. Returns [`SnippetConnection`](#snippetconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ids` | [`[SnippetID!]`](#snippetid) | Array of global snippet IDs. For example, `gid://gitlab/ProjectSnippet/1`. | | `type` | [`TypeEnum`](#typeenum) | Type of snippet. | | `visibility` | [`VisibilityScopesEnum`](#visibilityscopesenum) | Visibility of the snippet. | ##### `MergeRequestReviewer.starredProjects` Projects starred by the user. Returns [`ProjectConnection`](#projectconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `search` | [`String`](#string) | Search query. | ##### `MergeRequestReviewer.timelogs` Time logged by the user. Returns [`TimelogConnection`](#timelogconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `endDate` | [`Time`](#time) | List timelogs within a date range where the logged date is equal to or before endDate. | | `endTime` | [`Time`](#time) | List timelogs within a time range where the logged time is equal to or before endTime. | | `groupId` | [`GroupID`](#groupid) | List timelogs for a group. | | `projectId` | [`ProjectID`](#projectid) | List timelogs for a project. | | `sort` | [`TimelogSort`](#timelogsort) | List timelogs in a particular order. | | `startDate` | [`Time`](#time) | List timelogs within a date range where the logged date is equal to or after startDate. | | `startTime` | [`Time`](#time) | List timelogs within a time range where the logged time is equal to or after startTime. | | `username` | [`String`](#string) | List timelogs for a user. | ##### `MergeRequestReviewer.todos` To-do items of the user. Returns [`TodoConnection`](#todoconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `action` | [`[TodoActionEnum!]`](#todoactionenum) | Action to be filtered. | | `authorId` | [`[ID!]`](#id) | ID of an author. | | `groupId` | [`[ID!]`](#id) | ID of a group. | | `projectId` | [`[ID!]`](#id) | ID of a project. | | `state` | [`[TodoStateEnum!]`](#todostateenum) | State of the todo. | | `type` | [`[TodoTargetEnum!]`](#todotargetenum) | Type of the todo. | ##### `MergeRequestReviewer.workspaces` Workspaces owned by the current user. Returns [`WorkspaceConnection`](#workspaceconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ids` | [`[RemoteDevelopmentWorkspaceID!]`](#remotedevelopmentworkspaceid) | Array of global workspace IDs. For example, `["gid://gitlab/RemoteDevelopment::Workspace/1"]`. | ### `Metadata` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `enterprise` | [`Boolean!`](#boolean) | Enterprise edition. | | `kas` | [`Kas!`](#kas) | Metadata about KAS. | | `revision` | [`String!`](#string) | Revision. | | `version` | [`String!`](#string) | Version. | ### `MetricImage` Represents a metric image upload. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `fileName` | [`String`](#string) | File name of the metric image. | | `filePath` | [`String`](#string) | File path of the metric image. | | `id` | [`ID!`](#id) | ID of the metric upload. | | `iid` | [`ID!`](#id) | Internal ID of the metric upload. | | `url` | [`String!`](#string) | URL of the metric source. | ### `MetricsDashboard` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `path` | [`String`](#string) | Path to a file with the dashboard definition. | | `schemaValidationWarnings` | [`[String!]`](#string) | Dashboard schema validation warnings. | #### Fields with arguments ##### `MetricsDashboard.annotations` Annotations added to the dashboard. Returns [`MetricsDashboardAnnotationConnection`](#metricsdashboardannotationconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `from` | [`Time!`](#time) | Timestamp marking date and time from which annotations need to be fetched. | | `to` | [`Time`](#time) | Timestamp marking date and time to which annotations need to be fetched. | ### `MetricsDashboardAnnotation` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `description` | [`String`](#string) | Description of the annotation. | | `endingAt` | [`Time`](#time) | Timestamp marking end of annotated time span. | | `id` | [`ID!`](#id) | ID of the annotation. | | `panelId` | [`String`](#string) | ID of a dashboard panel to which the annotation should be scoped. | | `startingAt` | [`Time`](#time) | Timestamp marking start of annotated time span. | ### `Milestone` Represents a milestone. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `createdAt` | [`Time!`](#time) | Timestamp of milestone creation. | | `description` | [`String`](#string) | Description of the milestone. | | `dueDate` | [`Time`](#time) | Timestamp of the milestone due date. | | `expired` | [`Boolean!`](#boolean) | Expired state of the milestone (a milestone is expired when the due date is past the current date). Defaults to `false` when due date has not been set. | | `groupMilestone` | [`Boolean!`](#boolean) | Indicates if milestone is at group level. | | `id` | [`ID!`](#id) | ID of the milestone. | | `iid` | [`ID!`](#id) | Internal ID of the milestone. | | `projectMilestone` | [`Boolean!`](#boolean) | Indicates if milestone is at project level. | | `releases` | [`ReleaseConnection`](#releaseconnection) | Releases associated with this milestone. (see [Connections](#connections)) | | `startDate` | [`Time`](#time) | Timestamp of the milestone start date. | | `state` | [`MilestoneStateEnum!`](#milestonestateenum) | State of the milestone. | | `stats` | [`MilestoneStats`](#milestonestats) | Milestone statistics. | | `subgroupMilestone` | [`Boolean!`](#boolean) | Indicates if milestone is at subgroup level. | | `title` | [`String!`](#string) | Title of the milestone. | | `updatedAt` | [`Time!`](#time) | Timestamp of last milestone update. | | `webPath` | [`String!`](#string) | Web path of the milestone. | #### Fields with arguments ##### `Milestone.report` Historically accurate report about the timebox. Returns [`TimeboxReport`](#timeboxreport). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `fullPath` | [`String`](#string) | Full path of the project or group used as a scope for report. For example, `gitlab-org` or `gitlab-org/gitlab`. | ### `MilestoneStats` Contains statistics about a milestone. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `closedIssuesCount` | [`Int`](#int) | Number of closed issues associated with the milestone. | | `totalIssuesCount` | [`Int`](#int) | Total number of issues associated with the milestone. | ### `Namespace` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `actualRepositorySizeLimit` | [`Float`](#float) | Size limit for repositories in the namespace in bytes. | | `additionalPurchasedStorageSize` | [`Float`](#float) | Additional storage purchased for the root namespace in bytes. | | `containsLockedProjects` | [`Boolean!`](#boolean) | Includes at least one project where the repository size exceeds the limit. | | `crossProjectPipelineAvailable` | [`Boolean!`](#boolean) | Indicates if the cross_project_pipeline feature is available for the namespace. | | `description` | [`String`](#string) | Description of the namespace. | | `descriptionHtml` | [`String`](#string) | GitLab Flavored Markdown rendering of `description`. | | `fullName` | [`String!`](#string) | Full name of the namespace. | | `fullPath` | [`ID!`](#id) | Full path of the namespace. | | `id` | [`ID!`](#id) | ID of the namespace. | | `isTemporaryStorageIncreaseEnabled` | [`Boolean!`](#boolean) | Status of the temporary storage increase. | | `lfsEnabled` | [`Boolean`](#boolean) | Indicates if Large File Storage (LFS) is enabled for namespace. | | `name` | [`String!`](#string) | Name of the namespace. | | `packageSettings` | [`PackageSettings`](#packagesettings) | Package settings for the namespace. | | `path` | [`String!`](#string) | Path of the namespace. | | `repositorySizeExcessProjectCount` | [`Int!`](#int) | Number of projects in the root namespace where the repository size exceeds the limit. | | `requestAccessEnabled` | [`Boolean`](#boolean) | Indicates if users can request access to namespace. | | `rootStorageStatistics` | [`RootStorageStatistics`](#rootstoragestatistics) | Aggregated storage statistics of the namespace. Only available for root namespaces. | | `sharedRunnersSetting` | [`SharedRunnersSetting`](#sharedrunnerssetting) | Shared runners availability for the namespace and its descendants. | | `storageSizeLimit` | [`Float`](#float) | Total storage limit of the root namespace in bytes. | | `temporaryStorageIncreaseEndsOn` | [`Time`](#time) | Date until the temporary storage increase is active. | | `timelogCategories` **{warning-solid}** | [`TimeTrackingTimelogCategoryConnection`](#timetrackingtimelogcategoryconnection) | **Introduced** in 15.3. This feature is an Experiment. It can be changed or removed at any time. Timelog categories for the namespace. | | `totalRepositorySize` | [`Float`](#float) | Total repository size of all projects in the root namespace in bytes. | | `totalRepositorySizeExcess` | [`Float`](#float) | Total excess repository size of all projects in the root namespace in bytes. | | `visibility` | [`String`](#string) | Visibility of the namespace. | #### Fields with arguments ##### `Namespace.achievements` Achievements for the namespace. Returns `null` if the `achievements` feature flag is disabled. WARNING: **Introduced** in 15.8. This feature is an Experiment. It can be changed or removed at any time. Returns [`AchievementConnection`](#achievementconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ids` | [`[AchievementsAchievementID!]`](#achievementsachievementid) | Filter achievements by IDs. | ##### `Namespace.complianceFrameworks` Compliance frameworks available to projects in this namespace. Returns [`ComplianceFrameworkConnection`](#complianceframeworkconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`ComplianceManagementFrameworkID`](#compliancemanagementframeworkid) | Global ID of a specific compliance framework to return. | ##### `Namespace.projects` Projects within this namespace. Returns [`ProjectConnection!`](#projectconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `complianceFrameworkFilters` | [`ComplianceFrameworkFilters`](#complianceframeworkfilters) | Filters applied when selecting a compliance framework. | | `hasCodeCoverage` | [`Boolean`](#boolean) | Returns only the projects which have code coverage. | | `hasVulnerabilities` | [`Boolean`](#boolean) | Returns only the projects which have vulnerabilities. | | `ids` | [`[ID!]`](#id) | Filter projects by IDs. | | `includeSubgroups` | [`Boolean`](#boolean) | Include also subgroup projects. | | `search` | [`String`](#string) | Search project with most similar names or paths. | | `sort` | [`NamespaceProjectSort`](#namespaceprojectsort) | Sort projects by this criteria. | | `withIssuesEnabled` | [`Boolean`](#boolean) | Return only projects with issues enabled. | | `withMergeRequestsEnabled` | [`Boolean`](#boolean) | Return only projects with merge requests enabled. | ##### `Namespace.scanExecutionPolicies` Scan Execution Policies of the namespace. Returns [`ScanExecutionPolicyConnection`](#scanexecutionpolicyconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `actionScanTypes` | [`[SecurityReportTypeEnum!]`](#securityreporttypeenum) | Filters policies by the action scan type. Only these scan types are supported: `dast`, `secret_detection`, `cluster_image_scanning`, `container_scanning`, `sast`, `sast_iac`, `dependency_scanning`. | | `relationship` | [`SecurityPolicyRelationType`](#securitypolicyrelationtype) | Filter policies by the given policy relationship. | ##### `Namespace.scanResultPolicies` Scan Result Policies of the project. Returns [`ScanResultPolicyConnection`](#scanresultpolicyconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `relationship` | [`SecurityPolicyRelationType`](#securitypolicyrelationtype) | Filter policies by the given policy relationship. | ### `NamespaceBan` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`GlobalID!`](#globalid) | Global ID of the namespace ban. | | `namespace` | [`Namespace!`](#namespace) | Root namespace to which the ban applies. | | `user` | [`UserCore!`](#usercore) | User to which the namespace ban applies. | ### `NamespaceCiCdSetting` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `allowStaleRunnerPruning` | [`Boolean`](#boolean) | Indicates if stale runners directly belonging to this namespace should be periodically pruned. | | `namespace` | [`Namespace`](#namespace) | Namespace the CI/CD settings belong to. | ### `NamespaceCommitEmail` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `createdAt` | [`Time!`](#time) | Timestamp the namespace commit email was created. | | `email` | [`Email!`](#email) | Email. | | `id` | [`ID!`](#id) | Internal ID of the namespace commit email. | | `namespace` | [`Namespace!`](#namespace) | Namespace. | | `updatedAt` | [`Time!`](#time) | Timestamp the namespace commit email was last updated. | ### `NestedEnvironment` Describes where code is deployed for a project organized by folder. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `environment` | [`Environment`](#environment) | Latest environment in the folder. | | `name` | [`String!`](#string) | Human-readable name of the environment. | | `size` | [`Int!`](#int) | Number of environments nested in the folder. | ### `NetworkPolicy` Represents the network policy. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `enabled` | [`Boolean!`](#boolean) | Indicates whether this policy is enabled. | | `environments` | [`EnvironmentConnection`](#environmentconnection) | Environments where this policy is applied. (see [Connections](#connections)) | | `fromAutoDevops` | [`Boolean!`](#boolean) | Indicates whether this policy is created from AutoDevops. | | `kind` | [`NetworkPolicyKind!`](#networkpolicykind) | Kind of the policy. | | `name` | [`String!`](#string) | Name of the policy. | | `namespace` | [`String!`](#string) | Namespace of the policy. | | `updatedAt` | [`Time!`](#time) | Timestamp of when the policy YAML was last updated. | | `yaml` | [`String!`](#string) | YAML definition of the policy. | ### `Note` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `author` | [`UserCore!`](#usercore) | User who wrote this note. | | `body` | [`String!`](#string) | Content of the note. | | `bodyHtml` | [`String`](#string) | GitLab Flavored Markdown rendering of `note`. | | `confidential` **{warning-solid}** | [`Boolean`](#boolean) | **Deprecated** in 15.5. This was renamed. Use: `internal`. | | `createdAt` | [`Time!`](#time) | Timestamp of the note creation. | | `discussion` | [`Discussion`](#discussion) | Discussion this note is a part of. | | `id` | [`NoteID!`](#noteid) | ID of the note. | | `internal` | [`Boolean`](#boolean) | Indicates if this note is internal. | | `lastEditedAt` | [`Time`](#time) | Timestamp when note was last edited. | | `lastEditedBy` | [`UserCore`](#usercore) | User who last edited the note. | | `position` | [`DiffPosition`](#diffposition) | Position of this note on a diff. | | `project` | [`Project`](#project) | Project associated with the note. | | `resolvable` | [`Boolean!`](#boolean) | Indicates if the object can be resolved. | | `resolved` | [`Boolean!`](#boolean) | Indicates if the object is resolved. | | `resolvedAt` | [`Time`](#time) | Timestamp of when the object was resolved. | | `resolvedBy` | [`UserCore`](#usercore) | User who resolved the object. | | `system` | [`Boolean!`](#boolean) | Indicates whether this note was created by the system or by a user. | | `systemNoteIconName` | [`String`](#string) | Name of the icon corresponding to a system note. | | `systemNoteMetadata` | [`SystemNoteMetadata`](#systemnotemetadata) | Metadata for the given note if it is a system note. | | `updatedAt` | [`Time!`](#time) | Timestamp of the note's last activity. | | `url` | [`String`](#string) | URL to view this Note in the Web UI. | | `userPermissions` | [`NotePermissions!`](#notepermissions) | Permissions for the current user on the resource. | ### `NotePermissions` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `adminNote` | [`Boolean!`](#boolean) | Indicates the user can perform `admin_note` on this resource. | | `awardEmoji` | [`Boolean!`](#boolean) | Indicates the user can perform `award_emoji` on this resource. | | `createNote` | [`Boolean!`](#boolean) | Indicates the user can perform `create_note` on this resource. | | `readNote` | [`Boolean!`](#boolean) | Indicates the user can perform `read_note` on this resource. | | `repositionNote` | [`Boolean!`](#boolean) | Indicates the user can perform `reposition_note` on this resource. | | `resolveNote` | [`Boolean!`](#boolean) | Indicates the user can perform `resolve_note` on this resource. | ### `NugetDependencyLinkMetadata` Nuget dependency link metadata. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`PackagesNugetDependencyLinkMetadatumID!`](#packagesnugetdependencylinkmetadatumid) | ID of the metadatum. | | `targetFramework` | [`String!`](#string) | Target framework of the dependency link package. | ### `NugetMetadata` Nuget metadata. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `iconUrl` | [`String`](#string) | Icon URL of the Nuget package. | | `id` | [`PackagesNugetMetadatumID!`](#packagesnugetmetadatumid) | ID of the metadatum. | | `licenseUrl` | [`String`](#string) | License URL of the Nuget package. | | `projectUrl` | [`String`](#string) | Project URL of the Nuget package. | ### `OncallParticipantType` The rotation participant and color palette. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `colorPalette` | [`String`](#string) | Color palette to assign to the on-call user. For example "blue". | | `colorWeight` | [`String`](#string) | Color weight to assign to for the on-call user, for example "500". Max 4 chars. For easy identification of the user. | | `id` | [`IncidentManagementOncallParticipantID!`](#incidentmanagementoncallparticipantid) | ID of the on-call participant. | | `user` | [`UserCore!`](#usercore) | User who is participating. | ### `OncallRotationActivePeriodType` Active period time range for on-call rotation. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `endTime` | [`String`](#string) | End of the rotation active period. | | `startTime` | [`String`](#string) | Start of the rotation active period. | ### `OrganizationStateCounts` Represents the total number of organizations for the represented states. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `active` | [`Int`](#int) | Number of organizations with state `ACTIVE`. | | `all` | [`Int`](#int) | Number of organizations with state `ALL`. | | `inactive` | [`Int`](#int) | Number of organizations with state `INACTIVE`. | ### `Package` Represents a package with pipelines in the Package Registry. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `_links` | [`PackageLinks!`](#packagelinks) | Map of links to perform actions on the package. | | `canDestroy` | [`Boolean!`](#boolean) | Whether the user can destroy the package. | | `createdAt` | [`Time!`](#time) | Date of creation. | | `id` | [`PackagesPackageID!`](#packagespackageid) | ID of the package. | | `metadata` | [`PackageMetadata`](#packagemetadata) | Package metadata. | | `name` | [`String!`](#string) | Name of the package. | | `packageType` | [`PackageTypeEnum!`](#packagetypeenum) | Package type. | | `pipelines` | [`PipelineConnection`](#pipelineconnection) | Pipelines that built the package. Max page size 20. (see [Connections](#connections)) | | `project` | [`Project!`](#project) | Project where the package is stored. | | `status` | [`PackageStatus!`](#packagestatus) | Package status. | | `tags` | [`PackageTagConnection`](#packagetagconnection) | Package tags. (see [Connections](#connections)) | | `updatedAt` | [`Time!`](#time) | Date of most recent update. | | `version` | [`String`](#string) | Version string. | ### `PackageBase` Represents a package in the Package Registry. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `_links` | [`PackageLinks!`](#packagelinks) | Map of links to perform actions on the package. | | `canDestroy` | [`Boolean!`](#boolean) | Whether the user can destroy the package. | | `createdAt` | [`Time!`](#time) | Date of creation. | | `id` | [`PackagesPackageID!`](#packagespackageid) | ID of the package. | | `metadata` | [`PackageMetadata`](#packagemetadata) | Package metadata. | | `name` | [`String!`](#string) | Name of the package. | | `packageType` | [`PackageTypeEnum!`](#packagetypeenum) | Package type. | | `project` | [`Project!`](#project) | Project where the package is stored. | | `status` | [`PackageStatus!`](#packagestatus) | Package status. | | `tags` | [`PackageTagConnection`](#packagetagconnection) | Package tags. (see [Connections](#connections)) | | `updatedAt` | [`Time!`](#time) | Date of most recent update. | | `version` | [`String`](#string) | Version string. | ### `PackageComposerJsonType` Represents a composer JSON file. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `license` | [`String`](#string) | License set in the Composer JSON file. | | `name` | [`String`](#string) | Name set in the Composer JSON file. | | `type` | [`String`](#string) | Type set in the Composer JSON file. | | `version` | [`String`](#string) | Version set in the Composer JSON file. | ### `PackageDependency` Represents a package dependency. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`PackagesDependencyID!`](#packagesdependencyid) | ID of the dependency. | | `name` | [`String!`](#string) | Name of the dependency. | | `versionPattern` | [`String!`](#string) | Version pattern of the dependency. | ### `PackageDependencyLink` Represents a package dependency link. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `dependency` | [`PackageDependency`](#packagedependency) | Dependency. | | `dependencyType` | [`PackageDependencyType!`](#packagedependencytype) | Dependency type. | | `id` | [`PackagesDependencyLinkID!`](#packagesdependencylinkid) | ID of the dependency link. | | `metadata` | [`DependencyLinkMetadata`](#dependencylinkmetadata) | Dependency link metadata. | ### `PackageDetailsType` Represents a package details in the Package Registry. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `_links` | [`PackageLinks!`](#packagelinks) | Map of links to perform actions on the package. | | `canDestroy` | [`Boolean!`](#boolean) | Whether the user can destroy the package. | | `composerConfigRepositoryUrl` | [`String`](#string) | Url of the Composer setup endpoint. | | `composerUrl` | [`String`](#string) | Url of the Composer endpoint. | | `conanUrl` | [`String`](#string) | Url of the Conan project endpoint. | | `createdAt` | [`Time!`](#time) | Date of creation. | | `dependencyLinks` | [`PackageDependencyLinkConnection`](#packagedependencylinkconnection) | Dependency link. (see [Connections](#connections)) | | `id` | [`PackagesPackageID!`](#packagespackageid) | ID of the package. | | `lastDownloadedAt` | [`Time`](#time) | Last time that a file of this package was downloaded. | | `mavenUrl` | [`String`](#string) | Url of the Maven project endpoint. | | `metadata` | [`PackageMetadata`](#packagemetadata) | Package metadata. | | `name` | [`String!`](#string) | Name of the package. | | `npmUrl` | [`String`](#string) | Url of the NPM project endpoint. | | `nugetUrl` | [`String`](#string) | Url of the Nuget project endpoint. | | `packageFiles` | [`PackageFileConnection`](#packagefileconnection) | Package files. (see [Connections](#connections)) | | `packageType` | [`PackageTypeEnum!`](#packagetypeenum) | Package type. | | `pipelines` | [`PipelineConnection`](#pipelineconnection) | Pipelines that built the package. Max page size 20. (see [Connections](#connections)) | | `project` | [`Project!`](#project) | Project where the package is stored. | | `publicPackage` | [`Boolean`](#boolean) | Indicates if there is public access to the package. | | `pypiSetupUrl` | [`String`](#string) | Url of the PyPi project setup endpoint. | | `pypiUrl` | [`String`](#string) | Url of the PyPi project endpoint. | | `status` | [`PackageStatus!`](#packagestatus) | Package status. | | `tags` | [`PackageTagConnection`](#packagetagconnection) | Package tags. (see [Connections](#connections)) | | `updatedAt` | [`Time!`](#time) | Date of most recent update. | | `version` | [`String`](#string) | Version string. | | `versions` | [`PackageBaseConnection`](#packagebaseconnection) | Other versions of the package. (see [Connections](#connections)) | ### `PackageFile` Represents a package file. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `createdAt` | [`Time!`](#time) | Created date. | | `downloadPath` | [`String!`](#string) | Download path of the package file. | | `fileMd5` | [`String`](#string) | Md5 of the package file. | | `fileMetadata` | [`PackageFileMetadata`](#packagefilemetadata) | File metadata. | | `fileName` | [`String!`](#string) | Name of the package file. | | `fileSha1` | [`String`](#string) | Sha1 of the package file. | | `fileSha256` | [`String`](#string) | Sha256 of the package file. | | `id` | [`PackagesPackageFileID!`](#packagespackagefileid) | ID of the file. | | `size` | [`String!`](#string) | Size of the package file. | | `updatedAt` | [`Time!`](#time) | Updated date. | ### `PackageFileRegistry` Represents the Geo sync and verification state of a package file. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `createdAt` | [`Time`](#time) | Timestamp when the PackageFileRegistry was created. | | `id` | [`ID!`](#id) | ID of the PackageFileRegistry. | | `lastSyncFailure` | [`String`](#string) | Error message during sync of the PackageFileRegistry. | | `lastSyncedAt` | [`Time`](#time) | Timestamp of the most recent successful sync of the PackageFileRegistry. | | `packageFileId` | [`ID!`](#id) | ID of the PackageFile. | | `retryAt` | [`Time`](#time) | Timestamp after which the PackageFileRegistry is resynced. | | `retryCount` | [`Int`](#int) | Number of consecutive failed sync attempts of the PackageFileRegistry. | | `state` | [`RegistryState`](#registrystate) | Sync state of the PackageFileRegistry. | | `verificationRetryAt` | [`Time`](#time) | Timestamp after which the PackageFileRegistry is reverified. | | `verifiedAt` | [`Time`](#time) | Timestamp of the most recent successful verification of the PackageFileRegistry. | ### `PackageHelmDependencyType` Represents a Helm dependency. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `alias` | [`String`](#string) | Alias of the dependency. | | `condition` | [`String`](#string) | Condition of the dependency. | | `enabled` | [`Boolean`](#boolean) | Indicates the dependency is enabled. | | `importValues` | [`[JSON!]`](#json) | Import-values of the dependency. | | `name` | [`String`](#string) | Name of the dependency. | | `repository` | [`String`](#string) | Repository of the dependency. | | `tags` | [`[String!]`](#string) | Tags of the dependency. | | `version` | [`String`](#string) | Version of the dependency. | ### `PackageHelmMaintainerType` Represents a Helm maintainer. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `email` | [`String`](#string) | Email of the maintainer. | | `name` | [`String`](#string) | Name of the maintainer. | | `url` | [`String`](#string) | URL of the maintainer. | ### `PackageHelmMetadataType` Represents the contents of a Helm Chart.yml file. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `annotations` | [`JSON`](#json) | Annotations for the chart. | | `apiVersion` | [`String!`](#string) | API version of the chart. | | `appVersion` | [`String`](#string) | App version of the chart. | | `condition` | [`String`](#string) | Condition for the chart. | | `dependencies` | [`[PackageHelmDependencyType!]`](#packagehelmdependencytype) | Dependencies of the chart. | | `deprecated` | [`Boolean`](#boolean) | Indicates if the chart is deprecated. | | `description` | [`String`](#string) | Description of the chart. | | `home` | [`String`](#string) | URL of the home page. | | `icon` | [`String`](#string) | URL to an SVG or PNG image for the chart. | | `keywords` | [`[String!]`](#string) | Keywords for the chart. | | `kubeVersion` | [`String`](#string) | Kubernetes versions for the chart. | | `maintainers` | [`[PackageHelmMaintainerType!]`](#packagehelmmaintainertype) | Maintainers of the chart. | | `name` | [`String!`](#string) | Name of the chart. | | `sources` | [`[String!]`](#string) | URLs of the source code for the chart. | | `tags` | [`String`](#string) | Tags for the chart. | | `type` | [`String`](#string) | Type of the chart. | | `version` | [`String!`](#string) | Version of the chart. | ### `PackageLinks` Represents links to perform actions on the package. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `webPath` | [`String`](#string) | Path to the package details page. | ### `PackageSettings` Namespace-level Package Registry settings. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `genericDuplicateExceptionRegex` | [`UntrustedRegexp`](#untrustedregexp) | When generic_duplicates_allowed is false, you can publish duplicate packages with names that match this regex. Otherwise, this setting has no effect. | | `genericDuplicatesAllowed` | [`Boolean!`](#boolean) | Indicates whether duplicate generic packages are allowed for this namespace. | | `lockMavenPackageRequestsForwarding` | [`Boolean!`](#boolean) | Indicates whether Maven package forwarding is locked for all descendent namespaces. | | `lockNpmPackageRequestsForwarding` | [`Boolean!`](#boolean) | Indicates whether npm package forwarding is locked for all descendent namespaces. | | `lockPypiPackageRequestsForwarding` | [`Boolean!`](#boolean) | Indicates whether PyPI package forwarding is locked for all descendent namespaces. | | `mavenDuplicateExceptionRegex` | [`UntrustedRegexp`](#untrustedregexp) | When maven_duplicates_allowed is false, you can publish duplicate packages with names that match this regex. Otherwise, this setting has no effect. | | `mavenDuplicatesAllowed` | [`Boolean!`](#boolean) | Indicates whether duplicate Maven packages are allowed for this namespace. | | `mavenPackageRequestsForwarding` | [`Boolean`](#boolean) | Indicates whether Maven package forwarding is allowed for this namespace. | | `mavenPackageRequestsForwardingLocked` | [`Boolean!`](#boolean) | Indicates whether Maven package forwarding settings are locked by a parent namespace. | | `npmPackageRequestsForwarding` | [`Boolean`](#boolean) | Indicates whether npm package forwarding is allowed for this namespace. | | `npmPackageRequestsForwardingLocked` | [`Boolean!`](#boolean) | Indicates whether npm package forwarding settings are locked by a parent namespace. | | `pypiPackageRequestsForwarding` | [`Boolean`](#boolean) | Indicates whether PyPI package forwarding is allowed for this namespace. | | `pypiPackageRequestsForwardingLocked` | [`Boolean!`](#boolean) | Indicates whether PyPI package forwarding settings are locked by a parent namespace. | ### `PackageTag` Represents a package tag. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `createdAt` | [`Time!`](#time) | Created date. | | `id` | [`ID!`](#id) | ID of the tag. | | `name` | [`String!`](#string) | Name of the tag. | | `updatedAt` | [`Time!`](#time) | Updated date. | ### `PackagesCleanupPolicy` A packages cleanup policy designed to keep only packages and packages assets that matter most. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `keepNDuplicatedPackageFiles` | [`PackagesCleanupKeepDuplicatedPackageFilesEnum!`](#packagescleanupkeepduplicatedpackagefilesenum) | Number of duplicated package files to retain. | | `nextRunAt` | [`Time`](#time) | Next time that this packages cleanup policy will be executed. | ### `PageInfo` Information about pagination in a connection. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `endCursor` | [`String`](#string) | When paginating forwards, the cursor to continue. | | `hasNextPage` | [`Boolean!`](#boolean) | When paginating forwards, are there more items?. | | `hasPreviousPage` | [`Boolean!`](#boolean) | When paginating backwards, are there more items?. | | `startCursor` | [`String`](#string) | When paginating backwards, the cursor to continue. | ### `PagesDeploymentRegistry` Represents the Geo replication and verification state of a pages_deployment. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `createdAt` | [`Time`](#time) | Timestamp when the PagesDeploymentRegistry was created. | | `id` | [`ID!`](#id) | ID of the PagesDeploymentRegistry. | | `lastSyncFailure` | [`String`](#string) | Error message during sync of the PagesDeploymentRegistry. | | `lastSyncedAt` | [`Time`](#time) | Timestamp of the most recent successful sync of the PagesDeploymentRegistry. | | `pagesDeploymentId` | [`ID!`](#id) | ID of the Pages Deployment. | | `retryAt` | [`Time`](#time) | Timestamp after which the PagesDeploymentRegistry is resynced. | | `retryCount` | [`Int`](#int) | Number of consecutive failed sync attempts of the PagesDeploymentRegistry. | | `state` | [`RegistryState`](#registrystate) | Sync state of the PagesDeploymentRegistry. | | `verificationRetryAt` | [`Time`](#time) | Timestamp after which the PagesDeploymentRegistry is reverified. | | `verifiedAt` | [`Time`](#time) | Timestamp of the most recent successful verification of the PagesDeploymentRegistry. | ### `PathLock` Represents a file or directory in the project repository that has been locked. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`PathLockID!`](#pathlockid) | ID of the path lock. | | `path` | [`String`](#string) | Locked path. | | `user` | [`UserCore`](#usercore) | User that has locked this path. | ### `Pipeline` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `active` | [`Boolean!`](#boolean) | Indicates if the pipeline is active. | | `beforeSha` | [`String`](#string) | Base SHA of the source branch. | | `cancelable` | [`Boolean!`](#boolean) | Specifies if a pipeline can be canceled. | | `codeQualityReportSummary` | [`CodeQualityReportSummary`](#codequalityreportsummary) | Code Quality report summary for a pipeline. | | `codeQualityReports` | [`CodeQualityDegradationConnection`](#codequalitydegradationconnection) | Code Quality degradations reported on the pipeline. (see [Connections](#connections)) | | `commit` | [`Commit`](#commit) | Git commit of the pipeline. | | `commitPath` | [`String`](#string) | Path to the commit that triggered the pipeline. | | `committedAt` | [`Time`](#time) | Timestamp of the pipeline's commit. | | `complete` | [`Boolean!`](#boolean) | Indicates if a pipeline is complete. | | `configSource` | [`PipelineConfigSourceEnum`](#pipelineconfigsourceenum) | Configuration source of the pipeline (UNKNOWN_SOURCE, REPOSITORY_SOURCE, AUTO_DEVOPS_SOURCE, WEBIDE_SOURCE, REMOTE_SOURCE, EXTERNAL_PROJECT_SOURCE, BRIDGE_SOURCE, PARAMETER_SOURCE, COMPLIANCE_SOURCE). | | `coverage` | [`Float`](#float) | Coverage percentage. | | `createdAt` | [`Time!`](#time) | Timestamp of the pipeline's creation. | | `dastProfile` | [`DastProfile`](#dastprofile) | DAST profile associated with the pipeline. | | `detailedStatus` | [`DetailedStatus!`](#detailedstatus) | Detailed status of the pipeline. | | `downstream` | [`PipelineConnection`](#pipelineconnection) | Pipelines this pipeline will trigger. (see [Connections](#connections)) | | `duration` | [`Int`](#int) | Duration of the pipeline in seconds. | | `finishedAt` | [`Time`](#time) | Timestamp of the pipeline's completion. | | `id` | [`ID!`](#id) | ID of the pipeline. | | `iid` | [`String!`](#string) | Internal ID of the pipeline. | | `jobArtifacts` | [`[CiJobArtifact!]`](#cijobartifact) | Job artifacts of the pipeline. | | `mergeRequestEventType` | [`PipelineMergeRequestEventType`](#pipelinemergerequesteventtype) | Event type of the pipeline associated with a merge request. | | `path` | [`String`](#string) | Relative path to the pipeline's page. | | `project` | [`Project`](#project) | Project the pipeline belongs to. | | `queuedDuration` | [`Duration`](#duration) | How long the pipeline was queued before starting. | | `ref` | [`String`](#string) | Reference to the branch from which the pipeline was triggered. | | `refPath` | [`String`](#string) | Reference path to the branch from which the pipeline was triggered. | | `retryable` | [`Boolean!`](#boolean) | Specifies if a pipeline can be retried. | | `securityReportSummary` | [`SecurityReportSummary`](#securityreportsummary) | Vulnerability and scanned resource counts for each security scanner of the pipeline. | | `sourceJob` | [`CiJob`](#cijob) | Job where pipeline was triggered from. | | `stages` | [`CiStageConnection`](#cistageconnection) | Stages of the pipeline. (see [Connections](#connections)) | | `startedAt` | [`Time`](#time) | Timestamp when the pipeline was started. | | `status` | [`PipelineStatusEnum!`](#pipelinestatusenum) | Status of the pipeline (CREATED, WAITING_FOR_RESOURCE, PREPARING, PENDING, RUNNING, FAILED, SUCCESS, CANCELED, SKIPPED, MANUAL, SCHEDULED). | | `testReportSummary` | [`TestReportSummary!`](#testreportsummary) | Summary of the test report generated by the pipeline. | | `updatedAt` | [`Time!`](#time) | Timestamp of the pipeline's last activity. | | `upstream` | [`Pipeline`](#pipeline) | Pipeline that triggered the pipeline. | | `user` | [`UserCore`](#usercore) | Pipeline user. | | `userPermissions` | [`PipelinePermissions!`](#pipelinepermissions) | Permissions for the current user on the resource. | | `usesNeeds` | [`Boolean`](#boolean) | Indicates if the pipeline has jobs with `needs` dependencies. | | `warningMessages` | [`[PipelineMessage!]`](#pipelinemessage) | Pipeline warning messages. | | `warnings` | [`Boolean!`](#boolean) | Indicates if a pipeline has warnings. | #### Fields with arguments ##### `Pipeline.job` Specific job in this pipeline, either by name or ID. Returns [`CiJob`](#cijob). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`JobID`](#jobid) | ID of the job. | | `name` | [`String`](#string) | Name of the job. | ##### `Pipeline.jobs` Jobs belonging to the pipeline. Returns [`CiJobConnection`](#cijobconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `jobKind` | [`CiJobKind`](#cijobkind) | Filter jobs by kind. | | `retried` | [`Boolean`](#boolean) | Filter jobs by retry-status. | | `securityReportTypes` | [`[SecurityReportTypeEnum!]`](#securityreporttypeenum) | Filter jobs by the type of security report they produce. | | `statuses` | [`[CiJobStatus!]`](#cijobstatus) | Filter jobs by status. | | `whenExecuted` | [`[String!]`](#string) | Filter jobs by when they are executed. | ##### `Pipeline.securityReportFinding` Vulnerability finding reported on the pipeline. Returns [`PipelineSecurityReportFinding`](#pipelinesecurityreportfinding). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `uuid` | [`String!`](#string) | UUID of the security report finding. | ##### `Pipeline.securityReportFindings` Vulnerability findings reported on the pipeline. Returns [`PipelineSecurityReportFindingConnection`](#pipelinesecurityreportfindingconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `reportType` | [`[String!]`](#string) | Filter vulnerability findings by report type. | | `scanner` | [`[String!]`](#string) | Filter vulnerability findings by Scanner.externalId. | | `severity` | [`[String!]`](#string) | Filter vulnerability findings by severity. | | `state` | [`[VulnerabilityState!]`](#vulnerabilitystate) | Filter vulnerability findings by state. | ##### `Pipeline.sha` SHA of the pipeline's commit. Returns [`String`](#string). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `format` | [`ShaFormat`](#shaformat) | Format of the SHA. | ##### `Pipeline.testSuite` A specific test suite in a pipeline test report. Returns [`TestSuite`](#testsuite). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `buildIds` | [`[ID!]!`](#id) | IDs of the builds used to run the test suite. | ### `PipelineAnalytics` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `monthPipelinesLabels` | [`[String!]`](#string) | Labels for the monthly pipeline count. | | `monthPipelinesSuccessful` | [`[Int!]`](#int) | Total monthly successful pipeline count. | | `monthPipelinesTotals` | [`[Int!]`](#int) | Total monthly pipeline count. | | `pipelineTimesLabels` | [`[String!]`](#string) | Pipeline times labels. | | `pipelineTimesValues` | [`[Int!]`](#int) | Pipeline times. | | `weekPipelinesLabels` | [`[String!]`](#string) | Labels for the weekly pipeline count. | | `weekPipelinesSuccessful` | [`[Int!]`](#int) | Total weekly successful pipeline count. | | `weekPipelinesTotals` | [`[Int!]`](#int) | Total weekly pipeline count. | | `yearPipelinesLabels` | [`[String!]`](#string) | Labels for the yearly pipeline count. | | `yearPipelinesSuccessful` | [`[Int!]`](#int) | Total yearly successful pipeline count. | | `yearPipelinesTotals` | [`[Int!]`](#int) | Total yearly pipeline count. | ### `PipelineArtifactRegistry` Represents the Geo sync and verification state of a pipeline artifact. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `createdAt` | [`Time`](#time) | Timestamp when the PipelineArtifactRegistry was created. | | `id` | [`ID!`](#id) | ID of the PipelineArtifactRegistry. | | `lastSyncFailure` | [`String`](#string) | Error message during sync of the PipelineArtifactRegistry. | | `lastSyncedAt` | [`Time`](#time) | Timestamp of the most recent successful sync of the PipelineArtifactRegistry. | | `pipelineArtifactId` | [`ID!`](#id) | ID of the pipeline artifact. | | `retryAt` | [`Time`](#time) | Timestamp after which the PipelineArtifactRegistry is resynced. | | `retryCount` | [`Int`](#int) | Number of consecutive failed sync attempts of the PipelineArtifactRegistry. | | `state` | [`RegistryState`](#registrystate) | Sync state of the PipelineArtifactRegistry. | | `verificationRetryAt` | [`Time`](#time) | Timestamp after which the PipelineArtifactRegistry is reverified. | | `verifiedAt` | [`Time`](#time) | Timestamp of the most recent successful verification of the PipelineArtifactRegistry. | ### `PipelineCounts` Represents pipeline counts for the project. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `all` | [`Int`](#int) | Total number of pipelines for the project. | | `finished` | [`Int`](#int) | Number of pipelines with scope FINISHED for the project. | | `pending` | [`Int`](#int) | Number of pipelines with scope PENDING for the project. | | `running` | [`Int`](#int) | Number of pipelines with scope RUNNING for the project. | ### `PipelineMessage` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `content` | [`String!`](#string) | Content of the pipeline message. | | `id` | [`ID!`](#id) | ID of the pipeline message. | ### `PipelinePermissions` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `adminPipeline` | [`Boolean!`](#boolean) | Indicates the user can perform `admin_pipeline` on this resource. | | `destroyPipeline` | [`Boolean!`](#boolean) | Indicates the user can perform `destroy_pipeline` on this resource. | | `updatePipeline` | [`Boolean!`](#boolean) | Indicates the user can perform `update_pipeline` on this resource. | ### `PipelineSchedule` Represents a pipeline schedule. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `active` | [`Boolean!`](#boolean) | Indicates if the pipeline schedule is active. | | `createdAt` | [`Time!`](#time) | Timestamp of when the pipeline schedule was created. | | `cron` | [`String!`](#string) | Cron notation for the schedule. | | `cronTimezone` | [`String!`](#string) | Timezone for the pipeline schedule. | | `description` | [`String`](#string) | Description of the pipeline schedule. | | `editPath` | [`String`](#string) | Edit path of the pipeline schedule. | | `forTag` | [`Boolean!`](#boolean) | Indicates if a pipelines schedule belongs to a tag. | | `id` | [`ID!`](#id) | ID of the pipeline schedule. | | `lastPipeline` | [`Pipeline`](#pipeline) | Last pipeline object. | | `nextRunAt` | [`Time!`](#time) | Time when the next pipeline will run. | | `owner` | [`UserCore!`](#usercore) | Owner of the pipeline schedule. | | `project` | [`Project`](#project) | Project of the pipeline schedule. | | `realNextRun` | [`Time!`](#time) | Time when the next pipeline will run. | | `ref` | [`String`](#string) | Ref of the pipeline schedule. | | `refForDisplay` | [`String`](#string) | Git ref for the pipeline schedule. | | `refPath` | [`String`](#string) | Path to the ref that triggered the pipeline. | | `updatedAt` | [`Time!`](#time) | Timestamp of when the pipeline schedule was last updated. | | `userPermissions` | [`PipelineSchedulePermissions!`](#pipelineschedulepermissions) | Permissions for the current user on the resource. | | `variables` | [`PipelineScheduleVariableConnection`](#pipelineschedulevariableconnection) | Pipeline schedule variables. (see [Connections](#connections)) | ### `PipelineSchedulePermissions` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `adminPipelineSchedule` | [`Boolean!`](#boolean) | Indicates the user can perform `admin_pipeline_schedule` on this resource. | | `playPipelineSchedule` | [`Boolean!`](#boolean) | Indicates the user can perform `play_pipeline_schedule` on this resource. | | `takeOwnershipPipelineSchedule` **{warning-solid}** | [`Boolean!`](#boolean) | **Deprecated** in 15.9. Use admin_pipeline_schedule permission to determine if the user can take ownership of a pipeline schedule. | | `updatePipelineSchedule` | [`Boolean!`](#boolean) | Indicates the user can perform `update_pipeline_schedule` on this resource. | ### `PipelineScheduleVariable` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`ID!`](#id) | ID of the variable. | | `key` | [`String`](#string) | Name of the variable. | | `raw` | [`Boolean`](#boolean) | Indicates whether the variable is raw. | | `value` | [`String`](#string) | Value of the variable. | | `variableType` | [`CiVariableType`](#civariabletype) | Type of the variable. | ### `PipelineSecurityReportFinding` Represents vulnerability finding of a security report on the pipeline. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `assets` | [`[AssetType!]`](#assettype) | List of assets associated with the vulnerability. | | `description` | [`String`](#string) | Description of the vulnerability finding. | | `descriptionHtml` | [`String`](#string) | GitLab Flavored Markdown rendering of `description`. | | `details` | [`[VulnerabilityDetail!]!`](#vulnerabilitydetail) | Details of the security finding. | | `dismissalReason` | [`VulnerabilityDismissalReason`](#vulnerabilitydismissalreason) | Reason for the dismissal of the security report finding. | | `dismissedAt` | [`Time`](#time) | Time of the dismissal of the security report finding. | | `dismissedBy` | [`UserCore`](#usercore) | User who dismissed the security report finding. | | `evidence` | [`VulnerabilityEvidence`](#vulnerabilityevidence) | Evidence for the vulnerability. | | `falsePositive` | [`Boolean`](#boolean) | Indicates whether the vulnerability is a false positive. | | `identifiers` | [`[VulnerabilityIdentifier!]!`](#vulnerabilityidentifier) | Identifiers of the vulnerability finding. | | `issueLinks` | [`VulnerabilityIssueLinkConnection`](#vulnerabilityissuelinkconnection) | List of issue links related to the vulnerability. (see [Connections](#connections)) | | `links` | [`[VulnerabilityLink!]`](#vulnerabilitylink) | List of links associated with the vulnerability. | | `location` | [`VulnerabilityLocation`](#vulnerabilitylocation) | Location metadata for the vulnerability. Its fields depend on the type of security scan that found the vulnerability. | | `mergeRequest` | [`MergeRequest`](#mergerequest) | Merge request that fixes the vulnerability. | | `project` | [`Project`](#project) | Project on which the vulnerability finding was found. | | `projectFingerprint` **{warning-solid}** | [`String`](#string) | **Introduced** in 16.0. This feature is an Experiment. It can be changed or removed at any time. Fingerprint of the vulnerability finding. | | `remediations` | [`[VulnerabilityRemediationType!]`](#vulnerabilityremediationtype) | Remediations of the security report finding. | | `reportType` | [`VulnerabilityReportType`](#vulnerabilityreporttype) | Type of the security report that found the vulnerability finding. | | `scanner` | [`VulnerabilityScanner`](#vulnerabilityscanner) | Scanner metadata for the vulnerability. | | `severity` | [`VulnerabilitySeverity`](#vulnerabilityseverity) | Severity of the vulnerability finding. | | `solution` | [`String`](#string) | Solution for resolving the security report finding. | | `state` | [`VulnerabilityState`](#vulnerabilitystate) | Finding status. | | `stateComment` | [`String`](#string) | Comment for the state of the security report finding. | | `title` | [`String`](#string) | Title of the vulnerability finding. | | `uuid` | [`String`](#string) | UUIDv5 digest based on the vulnerability's report type, primary identifier, location, fingerprint, project identifier. | | `vulnerability` | [`Vulnerability`](#vulnerability) | Vulnerability related to the security report finding. | ### `PreviewBillableUserChange` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `newBillableUserCount` | [`Int`](#int) | Total number of billable users after change. | | `seatsInSubscription` | [`Int`](#int) | Number of seats in subscription. | | `willIncreaseOverage` | [`Boolean`](#boolean) | If the group will have an increased overage after change. | ### `ProductAnalyticsDashboard` Represents a product analytics dashboard. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `description` | [`String`](#string) | Description of the dashboard. | | `panels` | [`ProductAnalyticsDashboardPanelConnection!`](#productanalyticsdashboardpanelconnection) | Panels shown on the dashboard. (see [Connections](#connections)) | | `slug` | [`String!`](#string) | Slug of the dashboard. | | `title` | [`String!`](#string) | Title of the dashboard. | | `userDefined` | [`Boolean!`](#boolean) | Indicates whether the dashboard is user-defined or provided by GitLab. | ### `ProductAnalyticsDashboardPanel` Represents a product analytics dashboard panel. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `gridAttributes` | [`JSON`](#json) | Description of the position and size of the panel. | | `title` | [`String!`](#string) | Title of the panel. | | `visualization` | [`ProductAnalyticsDashboardVisualization!`](#productanalyticsdashboardvisualization) | Visualization of the panel. | ### `ProductAnalyticsDashboardVisualization` Represents a product analytics dashboard visualization. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `data` | [`JSON!`](#json) | Data of the visualization. | | `options` | [`JSON!`](#json) | Options of the visualization. | | `type` | [`String!`](#string) | Type of the visualization. | ### `Project` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `actualRepositorySizeLimit` | [`Float`](#float) | Size limit for the repository in bytes. | | `agentConfigurations` | [`AgentConfigurationConnection`](#agentconfigurationconnection) | Agent configurations defined by the project. (see [Connections](#connections)) | | `aiConversations` **{warning-solid}** | [`ProjectConversations`](#projectconversations) | **Introduced** in 16.0. This feature is an Experiment. It can be changed or removed at any time. Ai Chat conversations related to a given project. | | `allowMergeOnSkippedPipeline` | [`Boolean`](#boolean) | If `only_allow_merge_if_pipeline_succeeds` is true, indicates if merge requests of the project can also be merged with skipped jobs. | | `apiFuzzingCiConfiguration` | [`ApiFuzzingCiConfiguration`](#apifuzzingciconfiguration) | API fuzzing configuration for the project. | | `archived` | [`Boolean`](#boolean) | Indicates the archived status of the project. | | `autocloseReferencedIssues` | [`Boolean`](#boolean) | Indicates if issues referenced by merge requests and commits within the default branch are closed automatically. | | `avatarUrl` | [`String`](#string) | URL to avatar image file of the project. | | `branchRules` | [`BranchRuleConnection`](#branchruleconnection) | Branch rules configured for the project. (see [Connections](#connections)) | | `ciAccessAuthorizedAgents` | [`ClusterAgentAuthorizationCiAccessConnection`](#clusteragentauthorizationciaccessconnection) | Authorized cluster agents for the project through ci_access keyword. (see [Connections](#connections)) | | `ciCdSettings` | [`ProjectCiCdSetting`](#projectcicdsetting) | CI/CD settings for the project. | | `ciConfigPathOrDefault` | [`String!`](#string) | Path of the CI configuration file. | | `ciJobTokenScope` | [`CiJobTokenScopeType`](#cijobtokenscopetype) | The CI Job Tokens scope of access. | | `codeCoverageSummary` | [`CodeCoverageSummary`](#codecoveragesummary) | Code coverage summary associated with the project. | | `complianceFrameworks` | [`ComplianceFrameworkConnection`](#complianceframeworkconnection) | Compliance frameworks associated with the project. (see [Connections](#connections)) | | `containerExpirationPolicy` | [`ContainerExpirationPolicy`](#containerexpirationpolicy) | Container expiration policy of the project. | | `containerRegistryEnabled` | [`Boolean`](#boolean) | Indicates if Container Registry is enabled for the current user. | | `containerRepositoriesCount` | [`Int!`](#int) | Number of container repositories in the project. | | `corpuses` | [`CoverageFuzzingCorpusConnection`](#coveragefuzzingcorpusconnection) | Find corpuses of the project. (see [Connections](#connections)) | | `createdAt` | [`Time`](#time) | Timestamp of the project creation. | | `dastScannerProfiles` | [`DastScannerProfileConnection`](#dastscannerprofileconnection) | DAST scanner profiles associated with the project. (see [Connections](#connections)) | | `dastSiteProfiles` | [`DastSiteProfileConnection`](#dastsiteprofileconnection) | DAST Site Profiles associated with the project. (see [Connections](#connections)) | | `description` | [`String`](#string) | Short description of the project. | | `descriptionHtml` | [`String`](#string) | GitLab Flavored Markdown rendering of `description`. | | `dora` | [`Dora`](#dora) | Project's DORA metrics. | | `flowMetrics` **{warning-solid}** | [`ProjectValueStreamAnalyticsFlowMetrics`](#projectvaluestreamanalyticsflowmetrics) | **Introduced** in 15.10. This feature is an Experiment. It can be changed or removed at any time. Flow metrics for value stream analytics. | | `forksCount` | [`Int!`](#int) | Number of times the project has been forked. | | `fullPath` | [`ID!`](#id) | Full path of the project. | | `grafanaIntegration` | [`GrafanaIntegration`](#grafanaintegration) | Grafana integration details for the project. | | `group` | [`Group`](#group) | Group of the project. | | `hasJiraVulnerabilityIssueCreationEnabled` | [`Boolean!`](#boolean) | Indicates whether Jira issue creation from vulnerabilities is enabled. | | `httpUrlToRepo` | [`String`](#string) | URL to connect to the project via HTTPS. | | `id` | [`ID!`](#id) | ID of the project. | | `importStatus` | [`String`](#string) | Status of import background job of the project. | | `incidentManagementTimelineEventTags` | [`[TimelineEventTagType!]`](#timelineeventtagtype) | Timeline event tags for the project. | | `inheritedCiVariables` | [`InheritedCiVariableConnection`](#inheritedcivariableconnection) | List of CI/CD variables the project inherited from its parent group and ancestors. (see [Connections](#connections)) | | `isCatalogResource` **{warning-solid}** | [`Boolean`](#boolean) | **Introduced** in 15.11. This feature is an Experiment. It can be changed or removed at any time. Indicates if a project is a catalog resource. | | `issuesEnabled` | [`Boolean`](#boolean) | Indicates if Issues are enabled for the current user. | | `jiraImportStatus` | [`String`](#string) | Status of Jira import background job of the project. | | `jiraImports` | [`JiraImportConnection`](#jiraimportconnection) | Jira imports into the project. (see [Connections](#connections)) | | `jobsEnabled` | [`Boolean`](#boolean) | Indicates if CI/CD pipeline jobs are enabled for the current user. | | `languages` | [`[RepositoryLanguage!]`](#repositorylanguage) | Programming languages used in the project. | | `lastActivityAt` | [`Time`](#time) | Timestamp of the project last activity. | | `lfsEnabled` | [`Boolean`](#boolean) | Indicates if the project has Large File Storage (LFS) enabled. | | `mergeCommitTemplate` | [`String`](#string) | Template used to create merge commit message in merge requests. | | `mergeRequestsDisableCommittersApproval` | [`Boolean!`](#boolean) | Indicates that committers of the given merge request cannot approve. | | `mergeRequestsEnabled` | [`Boolean`](#boolean) | Indicates if Merge Requests are enabled for the current user. | | `mergeRequestsFfOnlyEnabled` | [`Boolean`](#boolean) | Indicates if no merge commits should be created and all merges should instead be fast-forwarded, which means that merging is only allowed if the branch could be fast-forwarded. | | `name` | [`String!`](#string) | Name of the project (without namespace). | | `nameWithNamespace` | [`String!`](#string) | Full name of the project with its namespace. | | `namespace` | [`Namespace`](#namespace) | Namespace of the project. | | `onlyAllowMergeIfAllDiscussionsAreResolved` | [`Boolean`](#boolean) | Indicates if merge requests of the project can only be merged when all the discussions are resolved. | | `onlyAllowMergeIfAllStatusChecksPassed` | [`Boolean`](#boolean) | Indicates that merges of merge requests should be blocked unless all status checks have passed. | | `onlyAllowMergeIfPipelineSucceeds` | [`Boolean`](#boolean) | Indicates if merge requests of the project can only be merged with successful jobs. | | `openIssuesCount` | [`Int`](#int) | Number of open issues for the project. | | `packagesCleanupPolicy` | [`PackagesCleanupPolicy`](#packagescleanuppolicy) | Packages cleanup policy for the project. | | `path` | [`String!`](#string) | Path of the project. | | `pathLocks` | [`PathLockConnection`](#pathlockconnection) | The project's path locks. (see [Connections](#connections)) | | `pipelineAnalytics` | [`PipelineAnalytics`](#pipelineanalytics) | Pipeline analytics. | | `printingMergeRequestLinkEnabled` | [`Boolean`](#boolean) | Indicates if a link to create or view a merge request should display after a push to Git repositories of the project from the command line. | | `productAnalyticsInstrumentationKey` **{warning-solid}** | [`String`](#string) | **Introduced** in 16.0. This feature is an Experiment. It can be changed or removed at any time. Product Analytics instrumentation key assigned to the project. | | `productAnalyticsState` **{warning-solid}** | [`ProductAnalyticsState`](#productanalyticsstate) | **Introduced** in 15.10. This feature is an Experiment. It can be changed or removed at any time. Current state of the product analytics stack for this project.Can only be called for one project in a single request. | | `publicJobs` | [`Boolean`](#boolean) | Indicates if there is public access to pipelines and job details of the project, including output logs and artifacts. | | `pushRules` | [`PushRules`](#pushrules) | Project's push rules settings. | | `recentIssueBoards` | [`BoardConnection`](#boardconnection) | List of recently visited boards of the project. Maximum size is 4. (see [Connections](#connections)) | | `removeSourceBranchAfterMerge` | [`Boolean`](#boolean) | Indicates if `Delete source branch` option should be enabled by default for all new merge requests of the project. | | `repository` | [`Repository`](#repository) | Git repository of the project. | | `repositorySizeExcess` | [`Float`](#float) | Size of repository that exceeds the limit in bytes. | | `requestAccessEnabled` | [`Boolean`](#boolean) | Indicates if users can request member access to the project. | | `requirementStatesCount` | [`RequirementStatesCount`](#requirementstatescount) | Number of requirements for the project by their state. | | `sastCiConfiguration` | [`SastCiConfiguration`](#sastciconfiguration) | SAST CI configuration for the project. | | `securityDashboardPath` | [`String`](#string) | Path to project's security dashboard. | | `securityScanners` | [`SecurityScanners`](#securityscanners) | Information about security analyzers used in the project. | | `sentryErrors` | [`SentryErrorCollection`](#sentryerrorcollection) | Paginated collection of Sentry errors on the project. | | `serviceDeskAddress` | [`String`](#string) | E-mail address of the Service Desk. | | `serviceDeskEnabled` | [`Boolean`](#boolean) | Indicates if the project has Service Desk enabled. | | `sharedRunnersEnabled` | [`Boolean`](#boolean) | Indicates if shared runners are enabled for the project. | | `snippetsEnabled` | [`Boolean`](#boolean) | Indicates if Snippets are enabled for the current user. | | `squashCommitTemplate` | [`String`](#string) | Template used to create squash commit message in merge requests. | | `squashReadOnly` | [`Boolean!`](#boolean) | Indicates if `squashReadOnly` is enabled. | | `sshUrlToRepo` | [`String`](#string) | URL to connect to the project via SSH. | | `starCount` | [`Int!`](#int) | Number of times the project has been starred. | | `statistics` | [`ProjectStatistics`](#projectstatistics) | Statistics of the project. | | `statisticsDetailsPaths` | [`ProjectStatisticsRedirect`](#projectstatisticsredirect) | Redirects for Statistics of the project. | | `suggestionCommitMessage` | [`String`](#string) | Commit message used to apply merge request suggestions. | | `tagList` **{warning-solid}** | [`String`](#string) | **Deprecated** in 13.12. Use `topics`. | | `terraformStates` | [`TerraformStateConnection`](#terraformstateconnection) | Terraform states associated with the project. (see [Connections](#connections)) | | `timelogCategories` **{warning-solid}** | [`TimeTrackingTimelogCategoryConnection`](#timetrackingtimelogcategoryconnection) | **Introduced** in 15.3. This feature is an Experiment. It can be changed or removed at any time. Timelog categories for the project. | | `topics` | [`[String!]`](#string) | List of project topics. | | `trackingKey` **{warning-solid}** | [`String`](#string) | **Introduced** in 16.0. This feature is an Experiment. It can be changed or removed at any time. Tracking key assigned to the project. | | `userAccessAuthorizedAgents` | [`ClusterAgentAuthorizationUserAccessConnection`](#clusteragentauthorizationuseraccessconnection) | Authorized cluster agents for the project through user_access keyword. (see [Connections](#connections)) | | `userPermissions` | [`ProjectPermissions!`](#projectpermissions) | Permissions for the current user on the resource. | | `visibility` | [`String`](#string) | Visibility of the project. | | `vulnerabilityImages` | [`VulnerabilityContainerImageConnection`](#vulnerabilitycontainerimageconnection) | Container images reported on the project vulnerabilities. (see [Connections](#connections)) | | `vulnerabilityScanners` | [`VulnerabilityScannerConnection`](#vulnerabilityscannerconnection) | Vulnerability scanners reported on the project vulnerabilities. (see [Connections](#connections)) | | `webUrl` | [`String`](#string) | Web URL of the project. | | `wikiEnabled` | [`Boolean`](#boolean) | Indicates if Wikis are enabled for the current user. | #### Fields with arguments ##### `Project.alertManagementAlert` A single Alert Management alert of the project. Returns [`AlertManagementAlert`](#alertmanagementalert). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `assigneeUsername` | [`String`](#string) | Username of a user assigned to the issue. | | `domain` | [`AlertManagementDomainFilter!`](#alertmanagementdomainfilter) | Filter query for given domain. | | `iid` | [`String`](#string) | IID of the alert. For example, "1". | | `search` | [`String`](#string) | Search query for title, description, service, or monitoring_tool. | | `sort` | [`AlertManagementAlertSort`](#alertmanagementalertsort) | Sort alerts by this criteria. | | `statuses` | [`[AlertManagementStatus!]`](#alertmanagementstatus) | Alerts with the specified statues. For example, `[TRIGGERED]`. | ##### `Project.alertManagementAlertStatusCounts` Counts of alerts by status for the project. Returns [`AlertManagementAlertStatusCountsType`](#alertmanagementalertstatuscountstype). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `assigneeUsername` | [`String`](#string) | Username of a user assigned to the issue. | | `search` | [`String`](#string) | Search query for title, description, service, or monitoring_tool. | ##### `Project.alertManagementAlerts` Alert Management alerts of the project. Returns [`AlertManagementAlertConnection`](#alertmanagementalertconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `assigneeUsername` | [`String`](#string) | Username of a user assigned to the issue. | | `domain` | [`AlertManagementDomainFilter!`](#alertmanagementdomainfilter) | Filter query for given domain. | | `iid` | [`String`](#string) | IID of the alert. For example, "1". | | `search` | [`String`](#string) | Search query for title, description, service, or monitoring_tool. | | `sort` | [`AlertManagementAlertSort`](#alertmanagementalertsort) | Sort alerts by this criteria. | | `statuses` | [`[AlertManagementStatus!]`](#alertmanagementstatus) | Alerts with the specified statues. For example, `[TRIGGERED]`. | ##### `Project.alertManagementHttpIntegrations` HTTP Integrations which can receive alerts for the project. Returns [`AlertManagementHttpIntegrationConnection`](#alertmanagementhttpintegrationconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`AlertManagementHttpIntegrationID`](#alertmanagementhttpintegrationid) | ID of the integration. | ##### `Project.alertManagementIntegrations` Integrations which can receive alerts for the project. Returns [`AlertManagementIntegrationConnection`](#alertmanagementintegrationconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`GlobalID`](#globalid) | ID of the integration. | ##### `Project.alertManagementPayloadFields` Extract alert fields from payload for custom mapping. Returns [`[AlertManagementPayloadAlertField!]`](#alertmanagementpayloadalertfield). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `payloadExample` | [`String!`](#string) | Sample payload for extracting alert fields for custom mappings. | ##### `Project.board` A single board of the project. Returns [`Board`](#board). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`BoardID!`](#boardid) | ID of the board. | ##### `Project.boards` Boards of the project. Returns [`BoardConnection`](#boardconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`BoardID`](#boardid) | Find a board by its ID. | ##### `Project.ciConfigVariables` CI/CD config variable. WARNING: **Introduced** in 15.3. This feature is an Experiment. It can be changed or removed at any time. Returns [`[CiConfigVariable!]`](#ciconfigvariable). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ref` | [`String!`](#string) | Ref. | ##### `Project.ciTemplate` Find a single CI/CD template by name. Returns [`CiTemplate`](#citemplate). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `name` | [`String!`](#string) | Name of the CI/CD template to search for. Template must be formatted as `Name.gitlab-ci.yml`. | ##### `Project.ciVariables` List of the project's CI/CD variables. Returns [`CiProjectVariableConnection`](#ciprojectvariableconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `sort` | [`CiVariableSort`](#civariablesort) | Sort order of results. | ##### `Project.clusterAgent` Find a single cluster agent by name. Returns [`ClusterAgent`](#clusteragent). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `hasRemoteDevelopmentAgentConfig` | [`Boolean`](#boolean) | Returns only cluster agents which have an associated remote development agent config. | | `hasVulnerabilities` | [`Boolean`](#boolean) | Returns only cluster agents which have vulnerabilities. | | `name` | [`String!`](#string) | Name of the cluster agent. | ##### `Project.clusterAgents` Cluster agents associated with the project. Returns [`ClusterAgentConnection`](#clusteragentconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `hasRemoteDevelopmentAgentConfig` | [`Boolean`](#boolean) | Returns only cluster agents which have an associated remote development agent config. | | `hasVulnerabilities` | [`Boolean`](#boolean) | Returns only cluster agents which have vulnerabilities. | ##### `Project.commitReferences` Get tag names containing a given commit. WARNING: **Introduced** in 16.0. This feature is an Experiment. It can be changed or removed at any time. Returns [`CommitReferences`](#commitreferences). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `commitSha` | [`String!`](#string) | Project commit SHA identifier. For example, `287774414568010855642518513f085491644061`. | ##### `Project.containerRepositories` Container repositories of the project. Returns [`ContainerRepositoryConnection`](#containerrepositoryconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `name` | [`String`](#string) | Filter the container repositories by their name. | | `sort` | [`ContainerRepositorySort`](#containerrepositorysort) | Sort container repositories by this criteria. | ##### `Project.dastProfile` DAST Profile associated with the project. Returns [`DastProfile`](#dastprofile). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `hasDastProfileSchedule` | [`Boolean`](#boolean) | Filter DAST Profiles by whether or not they have a schedule. | | `id` | [`DastProfileID!`](#dastprofileid) | ID of the DAST Profile. | ##### `Project.dastProfiles` DAST Profiles associated with the project. Returns [`DastProfileConnection`](#dastprofileconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `hasDastProfileSchedule` | [`Boolean`](#boolean) | Filter DAST Profiles by whether or not they have a schedule. | ##### `Project.dastSiteProfile` DAST Site Profile associated with the project. Returns [`DastSiteProfile`](#dastsiteprofile). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`DastSiteProfileID!`](#dastsiteprofileid) | ID of the site profile. | ##### `Project.dastSiteValidations` DAST Site Validations associated with the project. Returns [`DastSiteValidationConnection`](#dastsitevalidationconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `normalizedTargetUrls` | [`[String!]`](#string) | Normalized URL of the target to be scanned. | | `status` | [`DastSiteValidationStatusEnum`](#dastsitevalidationstatusenum) | Status of the site validation. | ##### `Project.dataTransfer` Data transfer data point for a specific period. This is mocked data under a development feature flag. Returns [`ProjectDataTransfer`](#projectdatatransfer). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `from` | [`Date`](#date) | Retain egress data for one year. Data for the current month will increase dynamically as egress occurs. | | `to` | [`Date`](#date) | End date for the data. | ##### `Project.dependencies` Software dependencies used by the project. WARNING: **Introduced** in 15.9. This feature is an Experiment. It can be changed or removed at any time. Returns [`DependencyConnection`](#dependencyconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `componentNames` | [`[String!]`](#string) | Filter dependencies by component names. | | `packageManagers` | [`[PackageManager!]`](#packagemanager) | Filter dependencies by package managers. | | `sort` | [`DependencySort`](#dependencysort) | Sort dependencies by given criteria. | ##### `Project.deployment` Details of the deployment of the project. Returns [`Deployment`](#deployment). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `iid` | [`ID!`](#id) | Project-level internal ID of the Deployment. | ##### `Project.environment` A single environment of the project. Returns [`Environment`](#environment). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `name` | [`String`](#string) | Name of the environment. | | `search` | [`String`](#string) | Search query for environment name. | | `states` | [`[String!]`](#string) | States of environments that should be included in result. | | `type` | [`String`](#string) | Search query for environment type. | ##### `Project.environments` Environments of the project. This field can only be resolved for one project in any single request. Returns [`EnvironmentConnection`](#environmentconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `name` | [`String`](#string) | Name of the environment. | | `search` | [`String`](#string) | Search query for environment name. | | `states` | [`[String!]`](#string) | States of environments that should be included in result. | | `type` | [`String`](#string) | Search query for environment type. | ##### `Project.forkDetails` Details of the fork project compared to its upstream project. WARNING: **Introduced** in 15.7. This feature is an Experiment. It can be changed or removed at any time. Returns [`ForkDetails`](#forkdetails). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ref` | [`String`](#string) | Ref of the fork. Default value is HEAD. | ##### `Project.forkTargets` Namespaces in which the current user can fork the project into. Returns [`NamespaceConnection`](#namespaceconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `search` | [`String`](#string) | Search query for path or name. | ##### `Project.gitlabSubscriptionsPreviewBillableUserChange` Preview Billable User Changes. Returns [`PreviewBillableUserChange`](#previewbillableuserchange). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `addGroupId` | [`Int`](#int) | Group ID to add. | | `addUserEmails` | [`[String!]`](#string) | User emails to add. | | `addUserIds` | [`[Int!]`](#int) | User IDs to add. | | `role` | [`GitlabSubscriptionsUserRole!`](#gitlabsubscriptionsuserrole) | Role of users being added to group. | ##### `Project.incidentManagementEscalationPolicies` Incident Management escalation policies of the project. Returns [`EscalationPolicyTypeConnection`](#escalationpolicytypeconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `name` | [`String`](#string) | Fuzzy search by escalation policy name. | ##### `Project.incidentManagementEscalationPolicy` Incident Management escalation policy of the project. Returns [`EscalationPolicyType`](#escalationpolicytype). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`IncidentManagementEscalationPolicyID!`](#incidentmanagementescalationpolicyid) | ID of the escalation policy. | | `name` | [`String`](#string) | Fuzzy search by escalation policy name. | ##### `Project.incidentManagementOncallSchedules` Incident Management On-call schedules of the project. Returns [`IncidentManagementOncallScheduleConnection`](#incidentmanagementoncallscheduleconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `iids` | [`[ID!]`](#id) | IIDs of on-call schedules. | ##### `Project.incidentManagementTimelineEvent` Incident Management Timeline event associated with the incident. Returns [`TimelineEventType`](#timelineeventtype). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`IncidentManagementTimelineEventID!`](#incidentmanagementtimelineeventid) | ID of the timeline event. | | `incidentId` | [`IssueID!`](#issueid) | ID of the incident. | ##### `Project.incidentManagementTimelineEvents` Incident Management Timeline events associated with the incident. Returns [`TimelineEventTypeConnection`](#timelineeventtypeconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `incidentId` | [`IssueID!`](#issueid) | ID of the incident. | ##### `Project.issue` A single issue of the project. Returns [`Issue`](#issue). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `assigneeId` | [`String`](#string) | ID of a user assigned to the issues. Wildcard values "NONE" and "ANY" are supported. | | `assigneeUsername` **{warning-solid}** | [`String`](#string) | **Deprecated** in 13.11. Use `assigneeUsernames`. | | `assigneeUsernames` | [`[String!]`](#string) | Usernames of users assigned to the issue. | | `authorUsername` | [`String`](#string) | Username of the author of the issue. | | `closedAfter` | [`Time`](#time) | Issues closed after this date. | | `closedBefore` | [`Time`](#time) | Issues closed before this date. | | `confidential` | [`Boolean`](#boolean) | Filter for confidential issues. If "false", excludes confidential issues. If "true", returns only confidential issues. | | `createdAfter` | [`Time`](#time) | Issues created after this date. | | `createdBefore` | [`Time`](#time) | Issues created before this date. | | `crmContactId` | [`String`](#string) | ID of a contact assigned to the issues. | | `crmOrganizationId` | [`String`](#string) | ID of an organization assigned to the issues. | | `epicId` | [`String`](#string) | ID of an epic associated with the issues, "none" and "any" values are supported. | | `healthStatus` **{warning-solid}** | [`HealthStatus`](#healthstatus) | **Deprecated** in 15.4. Use `healthStatusFilter`. | | `healthStatusFilter` | [`HealthStatusFilter`](#healthstatusfilter) | Health status of the issue, "none" and "any" values are supported. | | `iid` | [`String`](#string) | IID of the issue. For example, "1". | | `iids` | [`[String!]`](#string) | List of IIDs of issues. For example, `["1", "2"]`. | | `in` | [`[IssuableSearchableField!]`](#issuablesearchablefield) | Specify the fields to perform the search in. Defaults to `[TITLE, DESCRIPTION]`. Requires the `search` argument.'. | | `includeSubepics` | [`Boolean`](#boolean) | Whether to include subepics when filtering issues by epicId. | | `iterationId` | [`[ID]`](#id) | List of iteration Global IDs applied to the issue. | | `iterationWildcardId` | [`IterationWildcardId`](#iterationwildcardid) | Filter by iteration ID wildcard. | | `labelName` | [`[String]`](#string) | Labels applied to this issue. | | `milestoneTitle` | [`[String]`](#string) | Milestone applied to this issue. | | `milestoneWildcardId` | [`MilestoneWildcardId`](#milestonewildcardid) | Filter issues by milestone ID wildcard. | | `myReactionEmoji` | [`String`](#string) | Filter by reaction emoji applied by the current user. Wildcard values "NONE" and "ANY" are supported. | | `not` | [`NegatedIssueFilterInput`](#negatedissuefilterinput) | Negated arguments. | | `or` | [`UnionedIssueFilterInput`](#unionedissuefilterinput) | List of arguments with inclusive OR. | | `releaseTag` | [`[String!]`](#string) | Release tag associated with the issue's milestone. | | `releaseTagWildcardId` | [`ReleaseTagWildcardId`](#releasetagwildcardid) | Filter issues by release tag ID wildcard. | | `search` | [`String`](#string) | Search query for title or description. | | `sort` | [`IssueSort`](#issuesort) | Sort issues by this criteria. | | `state` | [`IssuableState`](#issuablestate) | Current state of this issue. | | `types` | [`[IssueType!]`](#issuetype) | Filter issues by the given issue types. | | `updatedAfter` | [`Time`](#time) | Issues updated after this date. | | `updatedBefore` | [`Time`](#time) | Issues updated before this date. | | `weight` | [`String`](#string) | Weight applied to the issue, "none" and "any" values are supported. | ##### `Project.issueStatusCounts` Counts of issues by status for the project. Returns [`IssueStatusCountsType`](#issuestatuscountstype). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `assigneeId` | [`String`](#string) | ID of a user assigned to the issues. Wildcard values "NONE" and "ANY" are supported. | | `assigneeUsername` **{warning-solid}** | [`String`](#string) | **Deprecated** in 13.11. Use `assigneeUsernames`. | | `assigneeUsernames` | [`[String!]`](#string) | Usernames of users assigned to the issue. | | `authorUsername` | [`String`](#string) | Username of the author of the issue. | | `closedAfter` | [`Time`](#time) | Issues closed after this date. | | `closedBefore` | [`Time`](#time) | Issues closed before this date. | | `confidential` | [`Boolean`](#boolean) | Filter for confidential issues. If "false", excludes confidential issues. If "true", returns only confidential issues. | | `createdAfter` | [`Time`](#time) | Issues created after this date. | | `createdBefore` | [`Time`](#time) | Issues created before this date. | | `crmContactId` | [`String`](#string) | ID of a contact assigned to the issues. | | `crmOrganizationId` | [`String`](#string) | ID of an organization assigned to the issues. | | `epicId` | [`String`](#string) | ID of an epic associated with the issues, "none" and "any" values are supported. | | `healthStatusFilter` | [`HealthStatusFilter`](#healthstatusfilter) | Health status of the issue, "none" and "any" values are supported. | | `iid` | [`String`](#string) | IID of the issue. For example, "1". | | `iids` | [`[String!]`](#string) | List of IIDs of issues. For example, `["1", "2"]`. | | `in` | [`[IssuableSearchableField!]`](#issuablesearchablefield) | Specify the fields to perform the search in. Defaults to `[TITLE, DESCRIPTION]`. Requires the `search` argument.'. | | `includeSubepics` | [`Boolean`](#boolean) | Whether to include subepics when filtering issues by epicId. | | `iterationId` | [`[ID]`](#id) | List of iteration Global IDs applied to the issue. | | `iterationWildcardId` | [`IterationWildcardId`](#iterationwildcardid) | Filter by iteration ID wildcard. | | `labelName` | [`[String]`](#string) | Labels applied to this issue. | | `milestoneTitle` | [`[String]`](#string) | Milestone applied to this issue. | | `milestoneWildcardId` | [`MilestoneWildcardId`](#milestonewildcardid) | Filter issues by milestone ID wildcard. | | `myReactionEmoji` | [`String`](#string) | Filter by reaction emoji applied by the current user. Wildcard values "NONE" and "ANY" are supported. | | `not` | [`NegatedIssueFilterInput`](#negatedissuefilterinput) | Negated arguments. | | `or` | [`UnionedIssueFilterInput`](#unionedissuefilterinput) | List of arguments with inclusive OR. | | `releaseTag` | [`[String!]`](#string) | Release tag associated with the issue's milestone. | | `releaseTagWildcardId` | [`ReleaseTagWildcardId`](#releasetagwildcardid) | Filter issues by release tag ID wildcard. | | `search` | [`String`](#string) | Search query for title or description. | | `types` | [`[IssueType!]`](#issuetype) | Filter issues by the given issue types. | | `updatedAfter` | [`Time`](#time) | Issues updated after this date. | | `updatedBefore` | [`Time`](#time) | Issues updated before this date. | | `weight` | [`String`](#string) | Weight applied to the issue, "none" and "any" values are supported. | ##### `Project.issues` Issues of the project. Returns [`IssueConnection`](#issueconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `assigneeId` | [`String`](#string) | ID of a user assigned to the issues. Wildcard values "NONE" and "ANY" are supported. | | `assigneeUsername` **{warning-solid}** | [`String`](#string) | **Deprecated** in 13.11. Use `assigneeUsernames`. | | `assigneeUsernames` | [`[String!]`](#string) | Usernames of users assigned to the issue. | | `authorUsername` | [`String`](#string) | Username of the author of the issue. | | `closedAfter` | [`Time`](#time) | Issues closed after this date. | | `closedBefore` | [`Time`](#time) | Issues closed before this date. | | `confidential` | [`Boolean`](#boolean) | Filter for confidential issues. If "false", excludes confidential issues. If "true", returns only confidential issues. | | `createdAfter` | [`Time`](#time) | Issues created after this date. | | `createdBefore` | [`Time`](#time) | Issues created before this date. | | `crmContactId` | [`String`](#string) | ID of a contact assigned to the issues. | | `crmOrganizationId` | [`String`](#string) | ID of an organization assigned to the issues. | | `epicId` | [`String`](#string) | ID of an epic associated with the issues, "none" and "any" values are supported. | | `healthStatus` **{warning-solid}** | [`HealthStatus`](#healthstatus) | **Deprecated** in 15.4. Use `healthStatusFilter`. | | `healthStatusFilter` | [`HealthStatusFilter`](#healthstatusfilter) | Health status of the issue, "none" and "any" values are supported. | | `iid` | [`String`](#string) | IID of the issue. For example, "1". | | `iids` | [`[String!]`](#string) | List of IIDs of issues. For example, `["1", "2"]`. | | `in` | [`[IssuableSearchableField!]`](#issuablesearchablefield) | Specify the fields to perform the search in. Defaults to `[TITLE, DESCRIPTION]`. Requires the `search` argument.'. | | `includeSubepics` | [`Boolean`](#boolean) | Whether to include subepics when filtering issues by epicId. | | `iterationId` | [`[ID]`](#id) | List of iteration Global IDs applied to the issue. | | `iterationWildcardId` | [`IterationWildcardId`](#iterationwildcardid) | Filter by iteration ID wildcard. | | `labelName` | [`[String]`](#string) | Labels applied to this issue. | | `milestoneTitle` | [`[String]`](#string) | Milestone applied to this issue. | | `milestoneWildcardId` | [`MilestoneWildcardId`](#milestonewildcardid) | Filter issues by milestone ID wildcard. | | `myReactionEmoji` | [`String`](#string) | Filter by reaction emoji applied by the current user. Wildcard values "NONE" and "ANY" are supported. | | `not` | [`NegatedIssueFilterInput`](#negatedissuefilterinput) | Negated arguments. | | `or` | [`UnionedIssueFilterInput`](#unionedissuefilterinput) | List of arguments with inclusive OR. | | `releaseTag` | [`[String!]`](#string) | Release tag associated with the issue's milestone. | | `releaseTagWildcardId` | [`ReleaseTagWildcardId`](#releasetagwildcardid) | Filter issues by release tag ID wildcard. | | `search` | [`String`](#string) | Search query for title or description. | | `sort` | [`IssueSort`](#issuesort) | Sort issues by this criteria. | | `state` | [`IssuableState`](#issuablestate) | Current state of this issue. | | `types` | [`[IssueType!]`](#issuetype) | Filter issues by the given issue types. | | `updatedAfter` | [`Time`](#time) | Issues updated after this date. | | `updatedBefore` | [`Time`](#time) | Issues updated before this date. | | `weight` | [`String`](#string) | Weight applied to the issue, "none" and "any" values are supported. | ##### `Project.iterationCadences` Find iteration cadences. Returns [`IterationCadenceConnection`](#iterationcadenceconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `active` | [`Boolean`](#boolean) | Whether the iteration cadence is active. | | `automatic` | [`Boolean`](#boolean) | Whether the iteration cadence should automatically generate upcoming iterations. | | `durationInWeeks` | [`Int`](#int) | Duration in weeks of the iterations within this cadence. | | `id` | [`IterationsCadenceID`](#iterationscadenceid) | Global ID of the iteration cadence to look up. | | `includeAncestorGroups` | [`Boolean`](#boolean) | Whether to include ancestor groups to search iterations cadences in. | | `title` | [`String`](#string) | Fuzzy search by title. | ##### `Project.iterations` Find iterations. Returns [`IterationConnection`](#iterationconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`ID`](#id) | Global ID of the Iteration to look up. | | `iid` | [`ID`](#id) | Internal ID of the Iteration to look up. | | `in` | [`[IterationSearchableField!]`](#iterationsearchablefield) | Fields in which the fuzzy-search should be performed with the query given in the argument `search`. Defaults to `[title]`. | | `includeAncestors` | [`Boolean`](#boolean) | Whether to include ancestor iterations. Defaults to true. | | `iterationCadenceIds` | [`[IterationsCadenceID!]`](#iterationscadenceid) | Global iteration cadence IDs by which to look up the iterations. | | `search` | [`String`](#string) | Query used for fuzzy-searching in the fields selected in the argument `in`. Returns all iterations if empty. | | `sort` | [`IterationSort`](#iterationsort) | List iterations by sort order. If unspecified, an arbitrary order (subject to change) is used. | | `state` | [`IterationState`](#iterationstate) | Filter iterations by state. | | `timeframe` | [`Timeframe`](#timeframe) | List items overlapping the given timeframe. | | `title` **{warning-solid}** | [`String`](#string) | **Deprecated** in 15.4. The argument will be removed in 15.4. Please use `search` and `in` fields instead. | ##### `Project.job` One job belonging to the project, selected by ID. Returns [`CiJob`](#cijob). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`JobID!`](#jobid) | ID of the job. | ##### `Project.jobs` Jobs of a project. This field can only be resolved for one project in any single request. Returns [`CiJobConnection`](#cijobconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `statuses` | [`[CiJobStatus!]`](#cijobstatus) | Filter jobs by status. | | `withArtifacts` | [`Boolean`](#boolean) | Filter by artifacts presence. | ##### `Project.label` Label available on this project. Returns [`Label`](#label). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `title` | [`String!`](#string) | Title of the label. | ##### `Project.labels` Labels available on this project. Returns [`LabelConnection`](#labelconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `includeAncestorGroups` | [`Boolean`](#boolean) | Include labels from ancestor groups. | | `searchTerm` | [`String`](#string) | Search term to find labels with. | ##### `Project.mergeRequest` A single merge request of the project. Returns [`MergeRequest`](#mergerequest). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `iid` | [`String!`](#string) | IID of the merge request, for example `1`. | ##### `Project.mergeRequests` Merge requests of the project. Returns [`MergeRequestConnection`](#mergerequestconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `approved` | [`Boolean`](#boolean) | Limit results to approved merge requests. Available only when the feature flag `mr_approved_filter` is enabled. | | `assigneeUsername` | [`String`](#string) | Username of the assignee. | | `authorUsername` | [`String`](#string) | Username of the author. | | `createdAfter` | [`Time`](#time) | Merge requests created after this timestamp. | | `createdBefore` | [`Time`](#time) | Merge requests created before this timestamp. | | `draft` | [`Boolean`](#boolean) | Limit result to draft merge requests. | | `iids` | [`[String!]`](#string) | Array of IIDs of merge requests, for example `[1, 2]`. | | `labels` | [`[String!]`](#string) | Array of label names. All resolved merge requests will have all of these labels. | | `mergedAfter` | [`Time`](#time) | Merge requests merged after this date. | | `mergedBefore` | [`Time`](#time) | Merge requests merged before this date. | | `milestoneTitle` | [`String`](#string) | Title of the milestone. | | `not` | [`MergeRequestsResolverNegatedParams`](#mergerequestsresolvernegatedparams) | List of negated arguments. Warning: this argument is experimental and a subject to change in future. | | `reviewerUsername` | [`String`](#string) | Username of the reviewer. | | `sort` | [`MergeRequestSort`](#mergerequestsort) | Sort merge requests by this criteria. | | `sourceBranches` | [`[String!]`](#string) | Array of source branch names. All resolved merge requests will have one of these branches as their source. | | `state` | [`MergeRequestState`](#mergerequeststate) | Merge request state. If provided, all resolved merge requests will have this state. | | `targetBranches` | [`[String!]`](#string) | Array of target branch names. All resolved merge requests will have one of these branches as their target. | | `updatedAfter` | [`Time`](#time) | Merge requests updated after this timestamp. | | `updatedBefore` | [`Time`](#time) | Merge requests updated before this timestamp. | ##### `Project.milestones` Milestones of the project. Returns [`MilestoneConnection`](#milestoneconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `containingDate` | [`Time`](#time) | Date the milestone contains. | | `ids` | [`[ID!]`](#id) | Array of global milestone IDs, e.g., `"gid://gitlab/Milestone/1"`. | | `includeAncestors` | [`Boolean`](#boolean) | Also return milestones in the project's parent group and its ancestors. | | `searchTitle` | [`String`](#string) | Search string for the title. | | `sort` | [`MilestoneSort`](#milestonesort) | Sort milestones by this criteria. | | `state` | [`MilestoneStateEnum`](#milestonestateenum) | Filter milestones by state. | | `timeframe` | [`Timeframe`](#timeframe) | List items overlapping the given timeframe. | | `title` | [`String`](#string) | Title of the milestone. | ##### `Project.nestedEnvironments` Environments for this project with nested folders, can only be resolved for one project in any single request. Returns [`NestedEnvironmentConnection`](#nestedenvironmentconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `name` | [`String`](#string) | Name of the environment. | | `search` | [`String`](#string) | Search query for environment name. | | `states` | [`[String!]`](#string) | States of environments that should be included in result. | | `type` | [`String`](#string) | Search query for environment type. | ##### `Project.networkPolicies` Network Policies of the project. WARNING: **Deprecated** in 14.8. Network policies are deprecated and will be removed in GitLab 16.0. Since GitLab 15.0 this field returns no data. Returns [`NetworkPolicyConnection`](#networkpolicyconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `environmentId` | [`EnvironmentID`](#environmentid) | Global ID of the environment to filter policies. | ##### `Project.packages` Packages of the project. Returns [`PackageConnection`](#packageconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `includeVersionless` | [`Boolean`](#boolean) | Include versionless packages. | | `packageName` | [`String`](#string) | Search a package by name. | | `packageType` | [`PackageTypeEnum`](#packagetypeenum) | Filter a package by type. | | `sort` | [`PackageSort`](#packagesort) | Sort packages by this criteria. | | `status` | [`PackageStatus`](#packagestatus) | Filter a package by status. | ##### `Project.pipeline` Build pipeline of the project. Returns [`Pipeline`](#pipeline). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `iid` | [`ID`](#id) | IID of the Pipeline. For example, "1". | | `sha` | [`String`](#string) | SHA of the Pipeline. For example, "dyd0f15ay83993f5ab66k927w28673882x99100b". | ##### `Project.pipelineCounts` Build pipeline counts of the project. Returns [`PipelineCounts`](#pipelinecounts). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ref` | [`String`](#string) | Filter pipelines by the ref they are run for. | | `sha` | [`String`](#string) | Filter pipelines by the SHA of the commit they are run for. | | `source` | [`String`](#string) | Filter pipelines by their source. | ##### `Project.pipelineSchedules` Pipeline schedules of the project. This field can only be resolved for one project per request. Returns [`PipelineScheduleConnection`](#pipelinescheduleconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ids` | [`[ID!]`](#id) | Filter pipeline schedules by IDs. | | `status` | [`PipelineScheduleStatus`](#pipelineschedulestatus) | Filter pipeline schedules by active status. | ##### `Project.pipelines` Build pipelines of the project. Returns [`PipelineConnection`](#pipelineconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ref` | [`String`](#string) | Filter pipelines by the ref they are run for. | | `scope` | [`PipelineScopeEnum`](#pipelinescopeenum) | Filter pipelines by scope. | | `sha` | [`String`](#string) | Filter pipelines by the sha of the commit they are run for. | | `source` | [`String`](#string) | Filter pipelines by their source. | | `status` | [`PipelineStatusEnum`](#pipelinestatusenum) | Filter pipelines by their status. | | `updatedAfter` | [`Time`](#time) | Pipelines updated after this date. | | `updatedBefore` | [`Time`](#time) | Pipelines updated before this date. | | `username` | [`String`](#string) | Filter pipelines by the user that triggered the pipeline. | ##### `Project.productAnalyticsDashboards` Product Analytics dashboards of the project. WARNING: **Introduced** in 15.6. This feature is an Experiment. It can be changed or removed at any time. Returns [`ProductAnalyticsDashboardConnection`](#productanalyticsdashboardconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `slug` | [`String`](#string) | Find by dashboard slug. | ##### `Project.projectMembers` Members of the project. Returns [`MemberInterfaceConnection`](#memberinterfaceconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `relations` | [`[ProjectMemberRelation!]`](#projectmemberrelation) | Filter members by the given member relations. | | `search` | [`String`](#string) | Search query. | | `sort` | [`MemberSort`](#membersort) | sort query. | ##### `Project.release` A single release of the project. Returns [`Release`](#release). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `tagName` | [`String!`](#string) | Name of the tag associated to the release. | ##### `Project.releases` Releases of the project. Returns [`ReleaseConnection`](#releaseconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `sort` | [`ReleaseSort`](#releasesort) | Sort releases by given criteria. | ##### `Project.requirement` Find a single requirement. Returns [`Requirement`](#requirement). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `authorUsername` | [`[String!]`](#string) | Filter requirements by author username. | | `iid` **{warning-solid}** | [`ID`](#id) | **Deprecated** in 15.8. Use work_item_iid instead. | | `iids` **{warning-solid}** | [`[ID!]`](#id) | **Deprecated** in 15.8. Use work_item_iids instead. | | `lastTestReportState` | [`RequirementStatusFilter`](#requirementstatusfilter) | State of latest requirement test report. | | `search` | [`String`](#string) | Search query for requirement title. | | `sort` | [`Sort`](#sort) | List requirements by sort order. | | `state` | [`RequirementState`](#requirementstate) | Filter requirements by state. | | `workItemIid` | [`ID`](#id) | IID of the requirement work item, for example, "1". | | `workItemIids` | [`[ID!]`](#id) | List of IIDs of requirement work items, for example, `[1, 2]`. | ##### `Project.requirements` Find requirements. Returns [`RequirementConnection`](#requirementconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `authorUsername` | [`[String!]`](#string) | Filter requirements by author username. | | `iid` **{warning-solid}** | [`ID`](#id) | **Deprecated** in 15.8. Use work_item_iid instead. | | `iids` **{warning-solid}** | [`[ID!]`](#id) | **Deprecated** in 15.8. Use work_item_iids instead. | | `lastTestReportState` | [`RequirementStatusFilter`](#requirementstatusfilter) | State of latest requirement test report. | | `search` | [`String`](#string) | Search query for requirement title. | | `sort` | [`Sort`](#sort) | List requirements by sort order. | | `state` | [`RequirementState`](#requirementstate) | Filter requirements by state. | | `workItemIid` | [`ID`](#id) | IID of the requirement work item, for example, "1". | | `workItemIids` | [`[ID!]`](#id) | List of IIDs of requirement work items, for example, `[1, 2]`. | ##### `Project.runners` Find runners visible to the current user. Returns [`CiRunnerConnection`](#cirunnerconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `active` **{warning-solid}** | [`Boolean`](#boolean) | **Deprecated** in 14.8. This was renamed. Use: `paused`. | | `paused` | [`Boolean`](#boolean) | Filter runners by `paused` (true) or `active` (false) status. | | `search` | [`String`](#string) | Filter by full token or partial text in description field. | | `sort` | [`CiRunnerSort`](#cirunnersort) | Sort order of results. | | `status` | [`CiRunnerStatus`](#cirunnerstatus) | Filter runners by status. | | `tagList` | [`[String!]`](#string) | Filter by tags associated with the runner (comma-separated or array). | | `type` | [`CiRunnerType`](#cirunnertype) | Filter runners by type. | | `upgradeStatus` | [`CiRunnerUpgradeStatus`](#cirunnerupgradestatus) | Filter by upgrade status. | ##### `Project.scanExecutionPolicies` Scan Execution Policies of the project. Returns [`ScanExecutionPolicyConnection`](#scanexecutionpolicyconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `actionScanTypes` | [`[SecurityReportTypeEnum!]`](#securityreporttypeenum) | Filters policies by the action scan type. Only these scan types are supported: `dast`, `secret_detection`, `cluster_image_scanning`, `container_scanning`, `sast`, `sast_iac`, `dependency_scanning`. | | `relationship` | [`SecurityPolicyRelationType`](#securitypolicyrelationtype) | Filter policies by the given policy relationship. | ##### `Project.scanResultPolicies` Scan Result Policies of the project. Returns [`ScanResultPolicyConnection`](#scanresultpolicyconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `relationship` | [`SecurityPolicyRelationType`](#securitypolicyrelationtype) | Filter policies by the given policy relationship. | ##### `Project.securityTrainingProviders` List of security training providers for the project. Returns [`[ProjectSecurityTraining!]`](#projectsecuritytraining). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `onlyEnabled` | [`Boolean`](#boolean) | Filter the list by only enabled security trainings. | ##### `Project.securityTrainingUrls` Security training URLs for the enabled training providers of the project. Returns [`[SecurityTrainingUrl!]`](#securitytrainingurl). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `filename` | [`String`](#string) | Filename to filter security training URLs by programming language. | | `identifierExternalIds` | [`[String!]!`](#string) | List of external IDs of vulnerability identifiers. | ##### `Project.sentryDetailedError` Detailed version of a Sentry error on the project. Returns [`SentryDetailedError`](#sentrydetailederror). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`GitlabErrorTrackingDetailedErrorID!`](#gitlaberrortrackingdetailederrorid) | ID of the Sentry issue. | ##### `Project.services` Project services. WARNING: **Deprecated** in 15.9. This will be renamed to `Project.integrations`. Returns [`ServiceConnection`](#serviceconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `active` | [`Boolean`](#boolean) | Indicates if the integration is active. | | `type` | [`ServiceType`](#servicetype) | Type of integration. | ##### `Project.snippets` Snippets of the project. Returns [`SnippetConnection`](#snippetconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ids` | [`[SnippetID!]`](#snippetid) | Array of global snippet IDs. For example, `gid://gitlab/ProjectSnippet/1`. | | `visibility` | [`VisibilityScopesEnum`](#visibilityscopesenum) | Visibility of the snippet. | ##### `Project.terraformState` Find a single Terraform state by name. Returns [`TerraformState`](#terraformstate). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `name` | [`String!`](#string) | Name of the Terraform state. | ##### `Project.timelogs` Time logged on issues and merge requests in the project. Returns [`TimelogConnection`](#timelogconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `endDate` | [`Time`](#time) | List timelogs within a date range where the logged date is equal to or before endDate. | | `endTime` | [`Time`](#time) | List timelogs within a time range where the logged time is equal to or before endTime. | | `groupId` | [`GroupID`](#groupid) | List timelogs for a group. | | `projectId` | [`ProjectID`](#projectid) | List timelogs for a project. | | `sort` | [`TimelogSort`](#timelogsort) | List timelogs in a particular order. | | `startDate` | [`Time`](#time) | List timelogs within a date range where the logged date is equal to or after startDate. | | `startTime` | [`Time`](#time) | List timelogs within a time range where the logged time is equal to or after startTime. | | `username` | [`String`](#string) | List timelogs for a user. | ##### `Project.visibleForks` Visible forks of the project. WARNING: **Introduced** in 15.10. This feature is an Experiment. It can be changed or removed at any time. Returns [`ProjectConnection`](#projectconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `minimumAccessLevel` | [`AccessLevelEnum`](#accesslevelenum) | Minimum access level. | ##### `Project.vulnerabilities` Vulnerabilities reported on the project. Returns [`VulnerabilityConnection`](#vulnerabilityconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clusterAgentId` | [`[ClustersAgentID!]`](#clustersagentid) | Filter vulnerabilities by `cluster_agent_id`. Vulnerabilities with a `reportType` of `cluster_image_scanning` are only included with this filter. | | `clusterId` | [`[ClustersClusterID!]`](#clustersclusterid) | Filter vulnerabilities by `cluster_id`. Vulnerabilities with a `reportType` of `cluster_image_scanning` are only included with this filter. | | `hasIssues` | [`Boolean`](#boolean) | Returns only the vulnerabilities which have linked issues. | | `hasResolution` | [`Boolean`](#boolean) | Returns only the vulnerabilities which have been resolved on default branch. | | `image` | [`[String!]`](#string) | Filter vulnerabilities by location image. When this filter is present, the response only matches entries for a `reportType` that includes `container_scanning`, `cluster_image_scanning`. | | `projectId` | [`[ID!]`](#id) | Filter vulnerabilities by project. | | `reportType` | [`[VulnerabilityReportType!]`](#vulnerabilityreporttype) | Filter vulnerabilities by report type. | | `scanner` | [`[String!]`](#string) | Filter vulnerabilities by VulnerabilityScanner.externalId. | | `scannerId` | [`[VulnerabilitiesScannerID!]`](#vulnerabilitiesscannerid) | Filter vulnerabilities by scanner ID. | | `severity` | [`[VulnerabilitySeverity!]`](#vulnerabilityseverity) | Filter vulnerabilities by severity. | | `sort` | [`VulnerabilitySort`](#vulnerabilitysort) | List vulnerabilities by sort order. | | `state` | [`[VulnerabilityState!]`](#vulnerabilitystate) | Filter vulnerabilities by state. | ##### `Project.vulnerabilitiesCountByDay` The historical number of vulnerabilities per day for the project. Returns [`VulnerabilitiesCountByDayConnection`](#vulnerabilitiescountbydayconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `endDate` | [`ISO8601Date!`](#iso8601date) | Last day for which to fetch vulnerability history. | | `startDate` | [`ISO8601Date!`](#iso8601date) | First day for which to fetch vulnerability history. | ##### `Project.vulnerabilitySeveritiesCount` Counts for each vulnerability severity in the project. Returns [`VulnerabilitySeveritiesCount`](#vulnerabilityseveritiescount). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `clusterAgentId` | [`[ClustersAgentID!]`](#clustersagentid) | Filter vulnerabilities by `cluster_agent_id`. Vulnerabilities with a `reportType` of `cluster_image_scanning` are only included with this filter. | | `hasIssues` | [`Boolean`](#boolean) | Filter vulnerabilities that do or do not have issues. | | `hasResolution` | [`Boolean`](#boolean) | Filter vulnerabilities that do or do not have a resolution. | | `image` | [`[String!]`](#string) | Filter vulnerabilities by location image. When this filter is present, the response only matches entries for a `reportType` that includes `container_scanning`, `cluster_image_scanning`. | | `projectId` | [`[ID!]`](#id) | Filter vulnerabilities by project. | | `reportType` | [`[VulnerabilityReportType!]`](#vulnerabilityreporttype) | Filter vulnerabilities by report type. | | `scanner` | [`[String!]`](#string) | Filter vulnerabilities by scanner. | | `scannerId` | [`[VulnerabilitiesScannerID!]`](#vulnerabilitiesscannerid) | Filter vulnerabilities by scanner ID. | | `severity` | [`[VulnerabilitySeverity!]`](#vulnerabilityseverity) | Filter vulnerabilities by severity. | | `state` | [`[VulnerabilityState!]`](#vulnerabilitystate) | Filter vulnerabilities by state. | ##### `Project.workItemTypes` Work item types available to the project. Returns [`WorkItemTypeConnection`](#workitemtypeconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `taskable` | [`Boolean`](#boolean) | If `true`, only taskable work item types will be returned. Argument is experimental and can be removed in the future without notice. | ##### `Project.workItems` Work items of the project. WARNING: **Introduced** in 15.1. This feature is an Experiment. It can be changed or removed at any time. Returns [`WorkItemConnection`](#workitemconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `authorUsername` **{warning-solid}** | [`String`](#string) | **Introduced** in 15.9. This feature is an Experiment. It can be changed or removed at any time. Filter work items by author username. | | `iid` | [`String`](#string) | IID of the work item. For example, "1". | | `iids` | [`[String!]`](#string) | List of IIDs of work items. For example, `["1", "2"]`. | | `in` | [`[IssuableSearchableField!]`](#issuablesearchablefield) | Specify the fields to perform the search in. Defaults to `[TITLE, DESCRIPTION]`. Requires the `search` argument.'. | | `requirementLegacyWidget` **{warning-solid}** | [`RequirementLegacyFilterInput`](#requirementlegacyfilterinput) | **Deprecated** in 15.9. Use work item IID filter instead. | | `search` | [`String`](#string) | Search query for title or description. | | `sort` | [`WorkItemSort`](#workitemsort) | Sort work items by criteria. | | `state` | [`IssuableState`](#issuablestate) | Current state of the work item. | | `statusWidget` | [`StatusFilterInput`](#statusfilterinput) | Input for status widget filter. Ignored if `work_items_mvc_2` is disabled. | | `types` | [`[IssueType!]`](#issuetype) | Filter work items by the given work item types. | ### `ProjectCiCdSetting` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `inboundJobTokenScopeEnabled` | [`Boolean`](#boolean) | Indicates CI/CD job tokens generated in other projects have restricted access to this project. | | `jobTokenScopeEnabled` | [`Boolean`](#boolean) | Indicates CI/CD job tokens generated in this project have restricted access to other projects. | | `keepLatestArtifact` | [`Boolean`](#boolean) | Whether to keep the latest builds artifacts. | | `mergePipelinesEnabled` | [`Boolean`](#boolean) | Whether merge pipelines are enabled. | | `mergeTrainsEnabled` | [`Boolean`](#boolean) | Whether merge trains are enabled. | | `project` | [`Project`](#project) | Project the CI/CD settings belong to. | ### `ProjectConversations` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `ciConfigMessages` **{warning-solid}** | [`AiMessageTypeConnection`](#aimessagetypeconnection) | **Introduced** in 16.0. This feature is an Experiment. It can be changed or removed at any time. Messages generated by open ai and the user. | ### `ProjectDataTransfer` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `egressNodes` | [`EgressNodeConnection`](#egressnodeconnection) | Data nodes. (see [Connections](#connections)) | | `totalEgress` | [`BigInt`](#bigint) | Total egress for that project in that period of time. | ### `ProjectMember` Represents a Project Membership. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `accessLevel` | [`AccessLevel`](#accesslevel) | GitLab::Access level. | | `createdAt` | [`Time`](#time) | Date and time the membership was created. | | `createdBy` | [`UserCore`](#usercore) | User that authorized membership. | | `expiresAt` | [`Time`](#time) | Date and time the membership expires. | | `id` | [`ID!`](#id) | ID of the member. | | `project` | [`Project`](#project) | Project that User is a member of. | | `updatedAt` | [`Time`](#time) | Date and time the membership was last updated. | | `user` | [`UserCore`](#usercore) | User that is associated with the member object. | | `userPermissions` | [`ProjectPermissions!`](#projectpermissions) | Permissions for the current user on the resource. | #### Fields with arguments ##### `ProjectMember.mergeRequestInteraction` Find a merge request. Returns [`UserMergeRequestInteraction`](#usermergerequestinteraction). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`MergeRequestID!`](#mergerequestid) | Global ID of the merge request. | ### `ProjectPermissions` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `adminOperations` | [`Boolean!`](#boolean) | Indicates the user can perform `admin_operations` on this resource. | | `adminPathLocks` | [`Boolean!`](#boolean) | Indicates the user can perform `admin_path_locks` on this resource. | | `adminProject` | [`Boolean!`](#boolean) | Indicates the user can perform `admin_project` on this resource. | | `adminRemoteMirror` | [`Boolean!`](#boolean) | Indicates the user can perform `admin_remote_mirror` on this resource. | | `adminWiki` | [`Boolean!`](#boolean) | Indicates the user can perform `admin_wiki` on this resource. | | `archiveProject` | [`Boolean!`](#boolean) | Indicates the user can perform `archive_project` on this resource. | | `changeNamespace` | [`Boolean!`](#boolean) | Indicates the user can perform `change_namespace` on this resource. | | `changeVisibilityLevel` | [`Boolean!`](#boolean) | Indicates the user can perform `change_visibility_level` on this resource. | | `createDeployment` | [`Boolean!`](#boolean) | Indicates the user can perform `create_deployment` on this resource. | | `createDesign` | [`Boolean!`](#boolean) | Indicates the user can perform `create_design` on this resource. | | `createIssue` | [`Boolean!`](#boolean) | Indicates the user can perform `create_issue` on this resource. | | `createLabel` | [`Boolean!`](#boolean) | Indicates the user can perform `create_label` on this resource. | | `createMergeRequestFrom` | [`Boolean!`](#boolean) | Indicates the user can perform `create_merge_request_from` on this resource. | | `createMergeRequestIn` | [`Boolean!`](#boolean) | Indicates the user can perform `create_merge_request_in` on this resource. | | `createPages` | [`Boolean!`](#boolean) | Indicates the user can perform `create_pages` on this resource. | | `createPipeline` | [`Boolean!`](#boolean) | Indicates the user can perform `create_pipeline` on this resource. | | `createPipelineSchedule` | [`Boolean!`](#boolean) | Indicates the user can perform `create_pipeline_schedule` on this resource. | | `createSnippet` | [`Boolean!`](#boolean) | Indicates the user can perform `create_snippet` on this resource. | | `createWiki` | [`Boolean!`](#boolean) | Indicates the user can perform `create_wiki` on this resource. | | `destroyDesign` | [`Boolean!`](#boolean) | Indicates the user can perform `destroy_design` on this resource. | | `destroyPages` | [`Boolean!`](#boolean) | Indicates the user can perform `destroy_pages` on this resource. | | `destroyWiki` | [`Boolean!`](#boolean) | Indicates the user can perform `destroy_wiki` on this resource. | | `downloadCode` | [`Boolean!`](#boolean) | Indicates the user can perform `download_code` on this resource. | | `downloadWikiCode` | [`Boolean!`](#boolean) | Indicates the user can perform `download_wiki_code` on this resource. | | `forkProject` | [`Boolean!`](#boolean) | Indicates the user can perform `fork_project` on this resource. | | `pushCode` | [`Boolean!`](#boolean) | Indicates the user can perform `push_code` on this resource. | | `pushToDeleteProtectedBranch` | [`Boolean!`](#boolean) | Indicates the user can perform `push_to_delete_protected_branch` on this resource. | | `readCommitStatus` | [`Boolean!`](#boolean) | Indicates the user can perform `read_commit_status` on this resource. | | `readCycleAnalytics` | [`Boolean!`](#boolean) | Indicates the user can perform `read_cycle_analytics` on this resource. | | `readDesign` | [`Boolean!`](#boolean) | Indicates the user can perform `read_design` on this resource. | | `readEnvironment` | [`Boolean!`](#boolean) | Indicates the user can perform `read_environment` on this resource. | | `readMergeRequest` | [`Boolean!`](#boolean) | Indicates the user can perform `read_merge_request` on this resource. | | `readPagesContent` | [`Boolean!`](#boolean) | Indicates the user can perform `read_pages_content` on this resource. | | `readProject` | [`Boolean!`](#boolean) | Indicates the user can perform `read_project` on this resource. | | `readProjectMember` | [`Boolean!`](#boolean) | Indicates the user can perform `read_project_member` on this resource. | | `readWiki` | [`Boolean!`](#boolean) | Indicates the user can perform `read_wiki` on this resource. | | `removeForkProject` | [`Boolean!`](#boolean) | Indicates the user can perform `remove_fork_project` on this resource. | | `removePages` | [`Boolean!`](#boolean) | Indicates the user can perform `remove_pages` on this resource. | | `removeProject` | [`Boolean!`](#boolean) | Indicates the user can perform `remove_project` on this resource. | | `renameProject` | [`Boolean!`](#boolean) | Indicates the user can perform `rename_project` on this resource. | | `requestAccess` | [`Boolean!`](#boolean) | Indicates the user can perform `request_access` on this resource. | | `updatePages` | [`Boolean!`](#boolean) | Indicates the user can perform `update_pages` on this resource. | | `updateWiki` | [`Boolean!`](#boolean) | Indicates the user can perform `update_wiki` on this resource. | | `uploadFile` | [`Boolean!`](#boolean) | Indicates the user can perform `upload_file` on this resource. | ### `ProjectSecurityPolicySource` Represents the source of a security policy belonging to a project. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `project` | [`Project`](#project) | Project the policy is associated with. | ### `ProjectSecurityTraining` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `description` | [`String`](#string) | Description of the training provider. | | `id` | [`GlobalID!`](#globalid) | ID of the training provider. | | `isEnabled` | [`Boolean!`](#boolean) | Represents whether the provider is enabled or not. | | `isPrimary` | [`Boolean!`](#boolean) | Represents whether the provider is set as primary or not. | | `logoUrl` | [`String`](#string) | Logo URL of the provider. | | `name` | [`String!`](#string) | Name of the training provider. | | `url` | [`String!`](#string) | URL of the provider. | ### `ProjectStatistics` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `buildArtifactsSize` | [`Float!`](#float) | Build artifacts size of the project in bytes. | | `commitCount` | [`Float!`](#float) | Commit count of the project. | | `containerRegistrySize` | [`Float`](#float) | Container Registry size of the project in bytes. | | `lfsObjectsSize` | [`Float!`](#float) | Large File Storage (LFS) object size of the project in bytes. | | `packagesSize` | [`Float!`](#float) | Packages size of the project in bytes. | | `pipelineArtifactsSize` | [`Float`](#float) | CI Pipeline artifacts size in bytes. | | `repositorySize` | [`Float!`](#float) | Repository size of the project in bytes. | | `snippetsSize` | [`Float`](#float) | Snippets size of the project in bytes. | | `storageSize` | [`Float!`](#float) | Storage size of the project in bytes. | | `uploadsSize` | [`Float`](#float) | Uploads size of the project in bytes. | | `wikiSize` | [`Float`](#float) | Wiki size of the project in bytes. | ### `ProjectStatisticsRedirect` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `buildArtifacts` | [`String!`](#string) | Redirection Route for job_artifacts. | | `containerRegistry` | [`String!`](#string) | Redirection Route for container_registry. | | `packages` | [`String!`](#string) | Redirection Route for packages. | | `repository` | [`String!`](#string) | Redirection Route for repository. | | `snippets` | [`String!`](#string) | Redirection Route for snippets. | | `wiki` | [`String!`](#string) | Redirection Route for wiki. | ### `ProjectValueStreamAnalyticsFlowMetrics` Exposes aggregated value stream flow metrics. #### Fields with arguments ##### `ProjectValueStreamAnalyticsFlowMetrics.cycleTime` Median time from first commit to issue closed. 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) | Timestamp marking the start date and time. | | `labelNames` | [`[String!]`](#string) | Labels applied to the issue. | | `milestoneTitle` | [`String`](#string) | Milestone applied to the issue. | | `to` | [`Time!`](#time) | Timestamp marking the end date and time. | ##### `ProjectValueStreamAnalyticsFlowMetrics.deploymentCount` Number of production deployments in the given period. Returns [`ValueStreamAnalyticsMetric`](#valuestreamanalyticsmetric). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `from` | [`Time!`](#time) | Timestamp marking the start date and time. | | `to` | [`Time!`](#time) | Timestamp marking the end date and time. | ##### `ProjectValueStreamAnalyticsFlowMetrics.issueCount` Number of issues opened in the given period. 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) | Timestamp marking the start date and time. | | `labelNames` | [`[String!]`](#string) | Labels applied to the issue. | | `milestoneTitle` | [`String`](#string) | Milestone applied to the issue. | | `to` | [`Time!`](#time) | Timestamp marking the end date and time. | ##### `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) | Timestamp marking the start date and time. | | `labelNames` | [`[String!]`](#string) | Labels applied to the issue. | | `milestoneTitle` | [`String`](#string) | Milestone applied to the issue. | | `to` | [`Time!`](#time) | Timestamp marking the end date and time. | ##### `ProjectValueStreamAnalyticsFlowMetrics.leadTime` Median time from when the issue was created to when it was closed. 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) | Timestamp marking the start date and time. | | `labelNames` | [`[String!]`](#string) | Labels applied to the issue. | | `milestoneTitle` | [`String`](#string) | Milestone applied to the issue. | | `to` | [`Time!`](#time) | Timestamp marking the end date and time. | ### `ProjectWikiRepositoryRegistry` Represents the Geo replication and verification state of a project_wiki_repository. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `createdAt` | [`Time`](#time) | Timestamp when the ProjectWikiRepositoryRegistry was created. | | `id` | [`ID!`](#id) | ID of the ProjectWikiRepositoryRegistry. | | `lastSyncFailure` | [`String`](#string) | Error message during sync of the ProjectWikiRepositoryRegistry. | | `lastSyncedAt` | [`Time`](#time) | Timestamp of the most recent successful sync of the ProjectWikiRepositoryRegistry. | | `projectWikiRepositoryId` | [`ID!`](#id) | ID of the Project Wiki Repository. | | `retryAt` | [`Time`](#time) | Timestamp after which the ProjectWikiRepositoryRegistry is resynced. | | `retryCount` | [`Int`](#int) | Number of consecutive failed sync attempts of the ProjectWikiRepositoryRegistry. | | `state` | [`RegistryState`](#registrystate) | Sync state of the ProjectWikiRepositoryRegistry. | | `verificationRetryAt` | [`Time`](#time) | Timestamp after which the ProjectWikiRepositoryRegistry is reverified. | | `verifiedAt` | [`Time`](#time) | Timestamp of the most recent successful verification of the ProjectWikiRepositoryRegistry. | ### `PrometheusAlert` The alert condition for Prometheus. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `humanizedText` | [`String!`](#string) | Human-readable text of the alert condition. | | `id` | [`ID!`](#id) | ID of the alert condition. | ### `ProtectedEnvironment` Protected Environments of the environment. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `approvalRules` | [`ProtectedEnvironmentApprovalRuleConnection`](#protectedenvironmentapprovalruleconnection) | Which group, user or role is allowed to approve deployments to the environment. (see [Connections](#connections)) | | `deployAccessLevels` | [`ProtectedEnvironmentDeployAccessLevelConnection`](#protectedenvironmentdeployaccesslevelconnection) | Which group, user or role is allowed to execute deployments to the environment. (see [Connections](#connections)) | | `group` | [`Group`](#group) | Group details. Present if it's group-level protected environment. | | `name` | [`String`](#string) | Name of the environment if it's a project-level protected environment. Tier of the environment if it's a group-level protected environment. | | `project` | [`Project`](#project) | Project details. Present if it's project-level protected environment. | | `requiredApprovalCount` | [`Int`](#int) | Required approval count for Unified Approval Setting. | ### `ProtectedEnvironmentApprovalRule` Which group, user or role is allowed to approve deployments to the environment. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `accessLevel` | [`AccessLevel`](#accesslevel) | Role details. Present if it's role specific access control. | | `group` | [`Group`](#group) | Group details. Present if it's group specific access control. | | `requiredApprovals` | [`Int`](#int) | Number of required approvals. | | `user` | [`UserCore`](#usercore) | User details. Present if it's user specific access control. | ### `ProtectedEnvironmentApprovalRuleForSummary` Which group, user or role is allowed to approve deployments to the environment. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `accessLevel` | [`AccessLevel`](#accesslevel) | Role details. Present if it's role specific access control. | | `approvals` | [`[DeploymentApproval!]`](#deploymentapproval) | Current approvals of the deployment. | | `approvedCount` | [`Int`](#int) | Approved count. | | `group` | [`Group`](#group) | Group details. Present if it's group specific access control. | | `pendingApprovalCount` | [`Int`](#int) | Pending approval count. | | `requiredApprovals` | [`Int`](#int) | Number of required approvals. | | `status` | [`DeploymentApprovalSummaryStatus`](#deploymentapprovalsummarystatus) | Status of the approval summary. | | `user` | [`UserCore`](#usercore) | User details. Present if it's user specific access control. | ### `ProtectedEnvironmentDeployAccessLevel` Which group, user or role is allowed to execute deployments to the environment. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `accessLevel` | [`AccessLevel`](#accesslevel) | Role details. Present if it's role specific access control. | | `group` | [`Group`](#group) | Group details. Present if it's group specific access control. | | `user` | [`UserCore`](#usercore) | User details. Present if it's user specific access control. | ### `PushAccessLevel` Defines which user roles, users, or groups can push to a protected branch. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `accessLevel` | [`Int!`](#int) | GitLab::Access level. | | `accessLevelDescription` | [`String!`](#string) | Human readable representation for this access level. | | `group` | [`AccessLevelGroup`](#accesslevelgroup) | Group associated with this access level. | | `user` | [`AccessLevelUser`](#accessleveluser) | User associated with this access level. | ### `PushRules` Represents rules that commit pushes must follow. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `rejectUnsignedCommits` | [`Boolean!`](#boolean) | Indicates whether commits not signed through GPG will be rejected. | ### `PypiMetadata` Pypi metadata. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`PackagesPypiMetadatumID!`](#packagespypimetadatumid) | ID of the metadatum. | | `requiredPython` | [`String`](#string) | Required Python version of the Pypi package. | ### `QueryComplexity` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `limit` | [`Int`](#int) | GraphQL query complexity limit. See [GitLab documentation on this limit](https://docs.gitlab.com/ee/api/graphql/index.html#max-query-complexity). | | `score` | [`Int`](#int) | GraphQL query complexity score. | ### `RecentFailures` Recent failure history of a test case. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `baseBranch` | [`String`](#string) | Name of the base branch of the project. | | `count` | [`Int`](#int) | Number of times the test case has failed in the past 14 days. | ### `Release` Represents a release. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `assets` | [`ReleaseAssets`](#releaseassets) | Assets of the release. | | `author` | [`UserCore`](#usercore) | User that created the release. | | `commit` | [`Commit`](#commit) | Commit associated with the release. | | `createdAt` | [`Time`](#time) | Timestamp of when the release was created. | | `description` | [`String`](#string) | Description (also known as "release notes") of the release. | | `descriptionHtml` | [`String`](#string) | GitLab Flavored Markdown rendering of `description`. | | `evidences` | [`ReleaseEvidenceConnection`](#releaseevidenceconnection) | Evidence for the release. (see [Connections](#connections)) | | `historicalRelease` | [`Boolean`](#boolean) | Indicates the release is an historical release. | | `id` | [`ReleaseID!`](#releaseid) | Global ID of the release. | | `links` | [`ReleaseLinks`](#releaselinks) | Links of the release. | | `milestones` | [`MilestoneConnection`](#milestoneconnection) | Milestones associated to the release. (see [Connections](#connections)) | | `name` | [`String`](#string) | Name of the release. | | `releasedAt` | [`Time`](#time) | Timestamp of when the release was released. | | `tagName` | [`String`](#string) | Name of the tag associated with the release. | | `tagPath` | [`String`](#string) | Relative web path to the tag associated with the release. | | `upcomingRelease` | [`Boolean`](#boolean) | Indicates the release is an upcoming release. | ### `ReleaseAssetLink` Represents an asset link associated with a release. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `directAssetPath` | [`String`](#string) | Relative path for the direct asset link. | | `directAssetUrl` | [`String`](#string) | Direct asset URL of the link. | | `id` | [`ID!`](#id) | ID of the link. | | `linkType` | [`ReleaseAssetLinkType`](#releaseassetlinktype) | Type of the link: `other`, `runbook`, `image`, `package`; defaults to `other`. | | `name` | [`String`](#string) | Name of the link. | | `url` | [`String`](#string) | URL of the link. | ### `ReleaseAssets` A container for all assets associated with a release. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `count` | [`Int`](#int) | Number of assets of the release. | | `links` | [`ReleaseAssetLinkConnection`](#releaseassetlinkconnection) | Asset links of the release. (see [Connections](#connections)) | | `sources` | [`ReleaseSourceConnection`](#releasesourceconnection) | Sources of the release. (see [Connections](#connections)) | ### `ReleaseEvidence` Evidence for a release. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `collectedAt` | [`Time`](#time) | Timestamp when the evidence was collected. | | `filepath` | [`String`](#string) | URL from where the evidence can be downloaded. | | `id` | [`ID!`](#id) | ID of the evidence. | | `sha` | [`String`](#string) | SHA1 ID of the evidence hash. | ### `ReleaseLinks` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `closedIssuesUrl` | [`String`](#string) | HTTP URL of the issues page, filtered by this release and `state=closed`. | | `closedMergeRequestsUrl` | [`String`](#string) | HTTP URL of the merge request page , filtered by this release and `state=closed`. | | `editUrl` | [`String`](#string) | HTTP URL of the release's edit page. | | `mergedMergeRequestsUrl` | [`String`](#string) | HTTP URL of the merge request page , filtered by this release and `state=merged`. | | `openedIssuesUrl` | [`String`](#string) | HTTP URL of the issues page, filtered by this release and `state=open`. | | `openedMergeRequestsUrl` | [`String`](#string) | HTTP URL of the merge request page, filtered by this release and `state=open`. | | `selfUrl` | [`String`](#string) | HTTP URL of the release. | ### `ReleaseSource` Represents the source code attached to a release in a particular format. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `format` | [`String`](#string) | Format of the source. | | `url` | [`String`](#string) | Download URL of the source. | ### `Repository` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `diskPath` | [`String`](#string) | Shows a disk path of the repository. | | `empty` | [`Boolean!`](#boolean) | Indicates repository has no visible content. | | `exists` | [`Boolean!`](#boolean) | Indicates a corresponding Git repository exists on disk. | | `rootRef` | [`String`](#string) | Default branch of the repository. | #### Fields with arguments ##### `Repository.blobs` Blobs contained within the repository. Returns [`RepositoryBlobConnection`](#repositoryblobconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `paths` | [`[String!]!`](#string) | Array of desired blob paths. | | `ref` | [`String`](#string) | Commit ref to get the blobs from. Default value is HEAD. | ##### `Repository.branchNames` Names of branches available in this repository that match the search pattern. Returns [`[String!]`](#string). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `limit` | [`Int!`](#int) | Number of branch names to return. | | `offset` | [`Int!`](#int) | Number of branch names to skip. | | `searchPattern` | [`String!`](#string) | Pattern to search for branch names by. | ##### `Repository.codeOwnersPath` Path to CODEOWNERS file in a ref. Returns [`String`](#string). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ref` | [`String`](#string) | Name of the ref. | ##### `Repository.paginatedTree` Paginated tree of the repository. Returns [`TreeConnection`](#treeconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `path` | [`String`](#string) | Path to get the tree for. Default value is the root of the repository. | | `recursive` | [`Boolean`](#boolean) | Used to get a recursive tree. Default is false. | | `ref` | [`String`](#string) | Commit ref to get the tree for. Default value is HEAD. | ##### `Repository.tree` Tree of the repository. Returns [`Tree`](#tree). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `path` | [`String`](#string) | Path to get the tree for. Default value is the root of the repository. | | `recursive` | [`Boolean`](#boolean) | Used to get a recursive tree. Default is false. | | `ref` | [`String`](#string) | Commit ref to get the tree for. Default value is HEAD. | ### `RepositoryBlob` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `archived` | [`Boolean`](#boolean) | Whether the current project is archived. | | `blamePath` | [`String`](#string) | Web path to blob blame page. | | `canCurrentUserPushToBranch` | [`Boolean`](#boolean) | Whether the current user can push to the branch. | | `canModifyBlob` | [`Boolean`](#boolean) | Whether the current user can modify the blob. | | `codeNavigationPath` | [`String`](#string) | Web path for code navigation. | | `codeOwners` | [`[UserCore!]`](#usercore) | List of code owners for the blob. | | `editBlobPath` | [`String`](#string) | Web path to edit the blob in the old-style editor. | | `environmentExternalUrlForRouteMap` | [`String`](#string) | Web path to blob on an environment. | | `environmentFormattedExternalUrl` | [`String`](#string) | Environment on which the blob is available. | | `externalStorage` | [`String`](#string) | External storage being used, if enabled (for instance, 'LFS'). | | `externalStorageUrl` | [`String`](#string) | Web path to download the raw blob via external storage, if enabled. | | `fileType` | [`String`](#string) | Expected format of the blob based on the extension. | | `findFilePath` | [`String`](#string) | Web path to find file. | | `forkAndEditPath` | [`String`](#string) | Web path to edit this blob using a forked project. | | `forkAndViewPath` | [`String`](#string) | Web path to view this blob using a forked project. | | `gitpodBlobUrl` | [`String`](#string) | URL to the blob within Gitpod. | | `historyPath` | [`String`](#string) | Web path to blob history page. | | `id` | [`ID!`](#id) | ID of the blob. | | `ideEditPath` | [`String`](#string) | Web path to edit this blob in the Web IDE. | | `ideForkAndEditPath` | [`String`](#string) | Web path to edit this blob in the Web IDE using a forked project. | | `language` | [`String`](#string) | Blob language. | | `lfsOid` | [`String`](#string) | LFS OID of the blob. | | `mode` | [`String`](#string) | Blob mode. | | `name` | [`String`](#string) | Blob name. | | `oid` | [`String!`](#string) | OID of the blob. | | `path` | [`String!`](#string) | Path of the blob. | | `permalinkPath` | [`String`](#string) | Web path to blob permalink. | | `pipelineEditorPath` | [`String`](#string) | Web path to edit .gitlab-ci.yml file. | | `plainData` | [`String`](#string) | Blob plain highlighted data. | | `projectBlobPathRoot` | [`String`](#string) | Web path for the root of the blob. | | `rawBlob` | [`String`](#string) | Raw content of the blob. | | `rawPath` | [`String`](#string) | Web path to download the raw blob. | | `rawSize` | [`BigInt`](#bigint) | Size (in bytes) of the blob, or the blob target if stored externally. | | `rawTextBlob` | [`String`](#string) | Raw content of the blob, if the blob is text data. | | `replacePath` | [`String`](#string) | Web path to replace the blob content. | | `richViewer` | [`BlobViewer`](#blobviewer) | Blob content rich viewer. | | `simpleViewer` | [`BlobViewer!`](#blobviewer) | Blob content simple viewer. | | `size` | [`BigInt`](#bigint) | Size (in bytes) of the blob. | | `storedExternally` | [`Boolean`](#boolean) | Whether the blob's content is stored externally (for instance, in LFS). | | `webPath` | [`String`](#string) | Web path of the blob. | ### `RepositoryLanguage` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `color` | [`Color`](#color) | Color to visualize the repository language. | | `name` | [`String!`](#string) | Name of the repository language. | | `share` | [`Float`](#float) | Percentage of the repository's languages. | ### `Requirement` Represents a requirement. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `author` | [`UserCore!`](#usercore) | Author of the requirement. | | `createdAt` | [`Time!`](#time) | Timestamp of when the requirement was created. | | `description` | [`String`](#string) | Description of the requirement. | | `descriptionHtml` | [`String`](#string) | GitLab Flavored Markdown rendering of `description`. | | `id` | [`ID!`](#id) | ID of the requirement. | | `iid` **{warning-solid}** | [`ID!`](#id) | **Deprecated** in 15.8. Use work_item_iid instead. | | `lastTestReportManuallyCreated` | [`Boolean`](#boolean) | Indicates if latest test report was created by user. | | `lastTestReportState` | [`TestReportState`](#testreportstate) | Latest requirement test report state. | | `project` | [`Project!`](#project) | Project to which the requirement belongs. | | `state` | [`RequirementState!`](#requirementstate) | State of the requirement. | | `title` | [`String`](#string) | Title of the requirement. | | `titleHtml` | [`String`](#string) | GitLab Flavored Markdown rendering of `title`. | | `updatedAt` | [`Time!`](#time) | Timestamp of when the requirement was last updated. | | `userPermissions` | [`RequirementPermissions!`](#requirementpermissions) | Permissions for the current user on the resource. | | `workItemIid` | [`ID!`](#id) | Work item IID of the requirement, will replace current IID as identifier soon. | #### Fields with arguments ##### `Requirement.testReports` Test reports of the requirement. Returns [`TestReportConnection`](#testreportconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `sort` | [`Sort`](#sort) | List test reports by sort order. | ### `RequirementPermissions` Check permissions for the current user on a requirement. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `adminRequirement` | [`Boolean!`](#boolean) | Indicates the user can perform `admin_requirement` on this resource. | | `createRequirement` | [`Boolean!`](#boolean) | Indicates the user can perform `create_requirement` on this resource. | | `destroyRequirement` | [`Boolean!`](#boolean) | Indicates the user can perform `destroy_requirement` on this resource. | | `readRequirement` | [`Boolean!`](#boolean) | Indicates the user can perform `read_requirement` on this resource. | | `updateRequirement` | [`Boolean!`](#boolean) | Indicates the user can perform `update_requirement` on this resource. | ### `RequirementStatesCount` Counts of requirements by their state. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `archived` | [`Int`](#int) | Number of archived requirements. | | `opened` | [`Int`](#int) | Number of opened requirements. | ### `RootStorageStatistics` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `buildArtifactsSize` | [`Float!`](#float) | CI artifacts size in bytes. | | `containerRegistrySize` | [`Float!`](#float) | Container Registry size in bytes. | | `dependencyProxySize` | [`Float!`](#float) | Dependency Proxy sizes in bytes. | | `lfsObjectsSize` | [`Float!`](#float) | LFS objects size in bytes. | | `packagesSize` | [`Float!`](#float) | Packages size in bytes. | | `pipelineArtifactsSize` | [`Float!`](#float) | CI pipeline artifacts size in bytes. | | `registrySizeEstimated` | [`Boolean!`](#boolean) | Indicates whether the deduplicated Container Registry size for the namespace is an estimated value or not. | | `repositorySize` | [`Float!`](#float) | Git repository size in bytes. | | `snippetsSize` | [`Float!`](#float) | Snippets size in bytes. | | `storageSize` | [`Float!`](#float) | Total storage in bytes. | | `uploadsSize` | [`Float!`](#float) | Uploads size in bytes. | | `wikiSize` | [`Float!`](#float) | Wiki size in bytes. | ### `RunnerArchitecture` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `downloadLocation` | [`String!`](#string) | Download location for the runner for the platform architecture. | | `name` | [`String!`](#string) | Name of the runner platform architecture. | ### `RunnerPermissions` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `assignRunner` | [`Boolean!`](#boolean) | Indicates the user can perform `assign_runner` on this resource. | | `deleteRunner` | [`Boolean!`](#boolean) | Indicates the user can perform `delete_runner` on this resource. | | `readRunner` | [`Boolean!`](#boolean) | Indicates the user can perform `read_runner` on this resource. | | `updateRunner` | [`Boolean!`](#boolean) | Indicates the user can perform `update_runner` on this resource. | ### `RunnerPlatform` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `architectures` | [`RunnerArchitectureConnection`](#runnerarchitectureconnection) | Runner architectures supported for the platform. (see [Connections](#connections)) | | `humanReadableName` | [`String!`](#string) | Human readable name of the runner platform. | | `name` | [`String!`](#string) | Name slug of the runner platform. | ### `RunnerSetup` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `installInstructions` | [`String!`](#string) | Instructions for installing the runner on the specified architecture. | | `registerInstructions` | [`String`](#string) | Instructions for registering the runner. The actual registration tokens are not included in the commands. Instead, a placeholder `$REGISTRATION_TOKEN` is shown. | ### `SastCiConfiguration` Represents a CI configuration of SAST. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `analyzers` | [`SastCiConfigurationAnalyzersEntityConnection`](#sastciconfigurationanalyzersentityconnection) | List of analyzers entities attached to SAST configuration. (see [Connections](#connections)) | | `global` | [`SastCiConfigurationEntityConnection`](#sastciconfigurationentityconnection) | List of global entities related to SAST configuration. (see [Connections](#connections)) | | `pipeline` | [`SastCiConfigurationEntityConnection`](#sastciconfigurationentityconnection) | List of pipeline entities related to SAST configuration. (see [Connections](#connections)) | ### `SastCiConfigurationAnalyzersEntity` Represents an analyzer entity in SAST CI configuration. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `description` | [`String`](#string) | Analyzer description that is displayed on the form. | | `enabled` | [`Boolean`](#boolean) | Indicates whether an analyzer is enabled. | | `label` | [`String`](#string) | Analyzer label used in the config UI. | | `name` | [`String`](#string) | Name of the analyzer. | | `variables` | [`SastCiConfigurationEntityConnection`](#sastciconfigurationentityconnection) | List of supported variables. (see [Connections](#connections)) | ### `SastCiConfigurationEntity` Represents an entity in SAST CI configuration. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `defaultValue` | [`String`](#string) | Default value that is used if value is empty. | | `description` | [`String`](#string) | Entity description that is displayed on the form. | | `field` | [`String`](#string) | CI keyword of entity. | | `label` | [`String`](#string) | Label for entity used in the form. | | `options` | [`SastCiConfigurationOptionsEntityConnection`](#sastciconfigurationoptionsentityconnection) | Different possible values of the field. (see [Connections](#connections)) | | `size` | [`SastUiComponentSize`](#sastuicomponentsize) | Size of the UI component. | | `type` | [`String`](#string) | Type of the field value. | | `value` | [`String`](#string) | Current value of the entity. | ### `SastCiConfigurationOptionsEntity` Represents an entity for options in SAST CI configuration. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `label` | [`String`](#string) | Label of option entity. | | `value` | [`String`](#string) | Value of option entity. | ### `SavedReply` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `content` | [`String!`](#string) | Content of the saved reply. | | `id` | [`UsersSavedReplyID!`](#userssavedreplyid) | Global ID of the saved reply. | | `name` | [`String!`](#string) | Name of the saved reply. | ### `Scan` Represents the security scan information. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `errors` | [`[String!]!`](#string) | List of errors. | | `name` | [`String!`](#string) | Name of the scan. | | `status` | [`ScanStatus!`](#scanstatus) | Indicates the status of the scan. | | `warnings` | [`[String!]!`](#string) | List of warnings. | ### `ScanExecutionPolicy` Represents the scan execution policy. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `description` | [`String!`](#string) | Description of the policy. | | `enabled` | [`Boolean!`](#boolean) | Indicates whether this policy is enabled. | | `name` | [`String!`](#string) | Name of the policy. | | `source` | [`SecurityPolicySource!`](#securitypolicysource) | Source of the policy. Its fields depend on the source type. | | `updatedAt` | [`Time!`](#time) | Timestamp of when the policy YAML was last updated. | | `yaml` | [`String!`](#string) | YAML definition of the policy. | ### `ScanResultPolicy` Represents the scan result policy. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `description` | [`String!`](#string) | Description of the policy. | | `enabled` | [`Boolean!`](#boolean) | Indicates whether this policy is enabled. | | `groupApprovers` | [`[Group!]`](#group) | Approvers of the group type. | | `name` | [`String!`](#string) | Name of the policy. | | `roleApprovers` | [`[MemberAccessLevelName!]`](#memberaccesslevelname) | Approvers of the role type. Users belonging to these role(s) alone will be approvers. | | `source` | [`SecurityPolicySource!`](#securitypolicysource) | Source of the policy. Its fields depend on the source type. | | `updatedAt` | [`Time!`](#time) | Timestamp of when the policy YAML was last updated. | | `userApprovers` | [`[UserCore!]`](#usercore) | Approvers of the user type. | | `yaml` | [`String!`](#string) | YAML definition of the policy. | ### `ScannedResource` Represents a resource scanned by a security scan. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `requestMethod` | [`String`](#string) | HTTP request method used to access the URL. | | `url` | [`String`](#string) | URL scanned by the scanner. | ### `SecurityReportSummary` Represents summary of a security report. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `apiFuzzing` | [`SecurityReportSummarySection`](#securityreportsummarysection) | Aggregated counts for the `api_fuzzing` scan. | | `clusterImageScanning` | [`SecurityReportSummarySection`](#securityreportsummarysection) | Aggregated counts for the `cluster_image_scanning` scan. | | `containerScanning` | [`SecurityReportSummarySection`](#securityreportsummarysection) | Aggregated counts for the `container_scanning` scan. | | `coverageFuzzing` | [`SecurityReportSummarySection`](#securityreportsummarysection) | Aggregated counts for the `coverage_fuzzing` scan. | | `dast` | [`SecurityReportSummarySection`](#securityreportsummarysection) | Aggregated counts for the `dast` scan. | | `dependencyScanning` | [`SecurityReportSummarySection`](#securityreportsummarysection) | Aggregated counts for the `dependency_scanning` scan. | | `generic` | [`SecurityReportSummarySection`](#securityreportsummarysection) | Aggregated counts for the `generic` scan. | | `sast` | [`SecurityReportSummarySection`](#securityreportsummarysection) | Aggregated counts for the `sast` scan. | | `secretDetection` | [`SecurityReportSummarySection`](#securityreportsummarysection) | Aggregated counts for the `secret_detection` scan. | ### `SecurityReportSummarySection` Represents a section of a summary of a security report. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `scannedResources` | [`ScannedResourceConnection`](#scannedresourceconnection) | List of the first 20 scanned resources. (see [Connections](#connections)) | | `scannedResourcesCount` | [`Int`](#int) | Total number of scanned resources. | | `scannedResourcesCsvPath` | [`String`](#string) | Path to download all the scanned resources in CSV format. | | `scans` | [`ScanConnection!`](#scanconnection) | List of security scans ran for the type. (see [Connections](#connections)) | | `vulnerabilitiesCount` | [`Int`](#int) | Total number of vulnerabilities. | ### `SecurityScanners` Represents a list of security scanners. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `available` | [`[SecurityScannerType!]`](#securityscannertype) | List of analyzers which are available for the project. | | `enabled` | [`[SecurityScannerType!]`](#securityscannertype) | List of analyzers which are enabled for the project. | | `pipelineRun` | [`[SecurityScannerType!]`](#securityscannertype) | List of analyzers which ran successfully in the latest pipeline. | ### `SecurityTrainingUrl` Represents a URL related to a security training. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `identifier` | [`String`](#string) | Name of the vulnerability identifier. | | `name` | [`String`](#string) | Name of the training provider. | | `status` | [`TrainingUrlRequestStatus`](#trainingurlrequeststatus) | Status of the request to training provider. | | `url` | [`String`](#string) | URL of the link for security training content. | ### `SentryDetailedError` A Sentry error. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `count` | [`Int!`](#int) | Count of occurrences. | | `culprit` | [`String!`](#string) | Culprit of the error. | | `externalBaseUrl` | [`String!`](#string) | External Base URL of the Sentry Instance. | | `externalUrl` | [`String!`](#string) | External URL of the error. | | `firstReleaseLastCommit` | [`String`](#string) | Commit the error was first seen. | | `firstReleaseShortVersion` | [`String`](#string) | Release short version the error was first seen. | | `firstReleaseVersion` | [`String`](#string) | Release version the error was first seen. | | `firstSeen` | [`Time!`](#time) | Timestamp when the error was first seen. | | `frequency` | [`[SentryErrorFrequency!]!`](#sentryerrorfrequency) | Last 24hr stats of the error. | | `gitlabCommit` | [`String`](#string) | GitLab commit SHA attributed to the Error based on the release version. | | `gitlabCommitPath` | [`String`](#string) | Path to the GitLab page for the GitLab commit attributed to the error. | | `gitlabIssuePath` | [`String`](#string) | URL of GitLab Issue. | | `id` | [`ID!`](#id) | ID (global ID) of the error. | | `integrated` | [`Boolean`](#boolean) | Error tracking backend. | | `lastReleaseLastCommit` | [`String`](#string) | Commit the error was last seen. | | `lastReleaseShortVersion` | [`String`](#string) | Release short version the error was last seen. | | `lastReleaseVersion` | [`String`](#string) | Release version the error was last seen. | | `lastSeen` | [`Time!`](#time) | Timestamp when the error was last seen. | | `message` | [`String`](#string) | Sentry metadata message of the error. | | `sentryId` | [`String!`](#string) | ID (Sentry ID) of the error. | | `sentryProjectId` | [`ID!`](#id) | ID of the project (Sentry project). | | `sentryProjectName` | [`String!`](#string) | Name of the project affected by the error. | | `sentryProjectSlug` | [`String!`](#string) | Slug of the project affected by the error. | | `shortId` | [`String!`](#string) | Short ID (Sentry ID) of the error. | | `status` | [`SentryErrorStatus!`](#sentryerrorstatus) | Status of the error. | | `tags` | [`SentryErrorTags!`](#sentryerrortags) | Tags associated with the Sentry Error. | | `title` | [`String!`](#string) | Title of the error. | | `type` | [`String!`](#string) | Type of the error. | | `userCount` | [`Int!`](#int) | Count of users affected by the error. | ### `SentryError` A Sentry error. A simplified version of SentryDetailedError. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `count` | [`Int!`](#int) | Count of occurrences. | | `culprit` | [`String!`](#string) | Culprit of the error. | | `externalUrl` | [`String!`](#string) | External URL of the error. | | `firstSeen` | [`Time!`](#time) | Timestamp when the error was first seen. | | `frequency` | [`[SentryErrorFrequency!]!`](#sentryerrorfrequency) | Last 24hr stats of the error. | | `id` | [`ID!`](#id) | ID (global ID) of the error. | | `lastSeen` | [`Time!`](#time) | Timestamp when the error was last seen. | | `message` | [`String`](#string) | Sentry metadata message of the error. | | `sentryId` | [`String!`](#string) | ID (Sentry ID) of the error. | | `sentryProjectId` | [`ID!`](#id) | ID of the project (Sentry project). | | `sentryProjectName` | [`String!`](#string) | Name of the project affected by the error. | | `sentryProjectSlug` | [`String!`](#string) | Slug of the project affected by the error. | | `shortId` | [`String!`](#string) | Short ID (Sentry ID) of the error. | | `status` | [`SentryErrorStatus!`](#sentryerrorstatus) | Status of the error. | | `title` | [`String!`](#string) | Title of the error. | | `type` | [`String!`](#string) | Type of the error. | | `userCount` | [`Int!`](#int) | Count of users affected by the error. | ### `SentryErrorCollection` An object containing a collection of Sentry errors, and a detailed error. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `externalUrl` | [`String`](#string) | External URL for Sentry. | #### Fields with arguments ##### `SentryErrorCollection.detailedError` Detailed version of a Sentry error on the project. Returns [`SentryDetailedError`](#sentrydetailederror). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`GitlabErrorTrackingDetailedErrorID!`](#gitlaberrortrackingdetailederrorid) | ID of the Sentry issue. | ##### `SentryErrorCollection.errorStackTrace` Stack Trace of Sentry Error. Returns [`SentryErrorStackTrace`](#sentryerrorstacktrace). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`GitlabErrorTrackingDetailedErrorID!`](#gitlaberrortrackingdetailederrorid) | ID of the Sentry issue. | ##### `SentryErrorCollection.errors` Collection of Sentry Errors. Returns [`SentryErrorConnection`](#sentryerrorconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `searchTerm` | [`String`](#string) | Search query for the Sentry error details. | | `sort` | [`String`](#string) | Attribute to sort on. Options are frequency, first_seen, last_seen. last_seen is default. | ### `SentryErrorFrequency` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `count` | [`Int!`](#int) | Count of errors received since the previously recorded time. | | `time` | [`Time!`](#time) | Time the error frequency stats were recorded. | ### `SentryErrorStackTrace` An object containing a stack trace entry for a Sentry error. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `dateReceived` | [`String!`](#string) | Time the stack trace was received by Sentry. | | `issueId` | [`String!`](#string) | ID of the Sentry error. | | `stackTraceEntries` | [`[SentryErrorStackTraceEntry!]!`](#sentryerrorstacktraceentry) | Stack trace entries for the Sentry error. | ### `SentryErrorStackTraceContext` An object context for a Sentry error stack trace. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `code` | [`String!`](#string) | Code number of the context. | | `line` | [`Int!`](#int) | Line number of the context. | ### `SentryErrorStackTraceEntry` An object containing a stack trace entry for a Sentry error. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `col` | [`String`](#string) | Function in which the Sentry error occurred. | | `fileName` | [`String`](#string) | File in which the Sentry error occurred. | | `function` | [`String`](#string) | Function in which the Sentry error occurred. | | `line` | [`String`](#string) | Function in which the Sentry error occurred. | | `traceContext` | [`[SentryErrorStackTraceContext!]`](#sentryerrorstacktracecontext) | Context of the Sentry error. | ### `SentryErrorTags` State of a Sentry error. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `level` | [`String`](#string) | Severity level of the Sentry Error. | | `logger` | [`String`](#string) | Logger of the Sentry Error. | ### `Snippet` Represents a snippet entry. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `author` | [`UserCore`](#usercore) | Owner of the snippet. | | `commenters` | [`UserCoreConnection!`](#usercoreconnection) | All commenters on this noteable. (see [Connections](#connections)) | | `createdAt` | [`Time!`](#time) | Timestamp this snippet was created. | | `description` | [`String`](#string) | Description of the snippet. | | `descriptionHtml` | [`String`](#string) | GitLab Flavored Markdown rendering of `description`. | | `discussions` | [`DiscussionConnection!`](#discussionconnection) | All discussions on this noteable. (see [Connections](#connections)) | | `fileName` | [`String`](#string) | File Name of the snippet. | | `httpUrlToRepo` | [`String`](#string) | HTTP URL to the snippet repository. | | `id` | [`SnippetID!`](#snippetid) | ID of the snippet. | | `notes` | [`NoteConnection!`](#noteconnection) | All notes on this noteable. (see [Connections](#connections)) | | `project` | [`Project`](#project) | Project the snippet is associated with. | | `rawUrl` | [`String!`](#string) | Raw URL of the snippet. | | `sshUrlToRepo` | [`String`](#string) | SSH URL to the snippet repository. | | `title` | [`String!`](#string) | Title of the snippet. | | `updatedAt` | [`Time!`](#time) | Timestamp this snippet was updated. | | `userPermissions` | [`SnippetPermissions!`](#snippetpermissions) | Permissions for the current user on the resource. | | `visibilityLevel` | [`VisibilityLevelsEnum!`](#visibilitylevelsenum) | Visibility Level of the snippet. | | `webUrl` | [`String!`](#string) | Web URL of the snippet. | #### Fields with arguments ##### `Snippet.blobs` Snippet blobs. Returns [`SnippetBlobConnection`](#snippetblobconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `paths` | [`[String!]`](#string) | Paths of the blobs. | ### `SnippetBlob` Represents the snippet blob. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `binary` | [`Boolean!`](#boolean) | Shows whether the blob is binary. | | `externalStorage` | [`String`](#string) | Blob external storage. | | `mode` | [`String`](#string) | Blob mode. | | `name` | [`String`](#string) | Blob name. | | `path` | [`String`](#string) | Blob path. | | `plainData` | [`String`](#string) | Blob plain highlighted data. | | `rawPath` | [`String!`](#string) | Blob raw content endpoint path. | | `rawPlainData` | [`String`](#string) | Raw content of the blob, if the blob is text data. | | `renderedAsText` | [`Boolean!`](#boolean) | Shows whether the blob is rendered as text. | | `richData` | [`String`](#string) | Blob highlighted data. | | `richViewer` | [`SnippetBlobViewer`](#snippetblobviewer) | Blob content rich viewer. | | `simpleViewer` | [`SnippetBlobViewer!`](#snippetblobviewer) | Blob content simple viewer. | | `size` | [`Int!`](#int) | Blob size. | ### `SnippetBlobViewer` Represents how the blob content should be displayed. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `collapsed` | [`Boolean!`](#boolean) | Shows whether the blob should be displayed collapsed. | | `fileType` | [`String!`](#string) | Content file type. | | `loadAsync` | [`Boolean!`](#boolean) | Shows whether the blob content is loaded asynchronously. | | `loadingPartialName` | [`String!`](#string) | Loading partial name. | | `renderError` | [`String`](#string) | Error rendering the blob content. | | `tooLarge` | [`Boolean!`](#boolean) | Shows whether the blob is too large to be displayed. | | `type` | [`BlobViewersType!`](#blobviewerstype) | Type of blob viewer. | ### `SnippetPermissions` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `adminSnippet` | [`Boolean!`](#boolean) | Indicates the user can perform `admin_snippet` on this resource. | | `awardEmoji` | [`Boolean!`](#boolean) | Indicates the user can perform `award_emoji` on this resource. | | `createNote` | [`Boolean!`](#boolean) | Indicates the user can perform `create_note` on this resource. | | `readSnippet` | [`Boolean!`](#boolean) | Indicates the user can perform `read_snippet` on this resource. | | `reportSnippet` | [`Boolean!`](#boolean) | Indicates the user can perform `report_snippet` on this resource. | | `updateSnippet` | [`Boolean!`](#boolean) | Indicates the user can perform `update_snippet` on this resource. | ### `SnippetRepositoryRegistry` Represents the Geo sync and verification state of a snippet repository. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `createdAt` | [`Time`](#time) | Timestamp when the SnippetRepositoryRegistry was created. | | `id` | [`ID!`](#id) | ID of the SnippetRepositoryRegistry. | | `lastSyncFailure` | [`String`](#string) | Error message during sync of the SnippetRepositoryRegistry. | | `lastSyncedAt` | [`Time`](#time) | Timestamp of the most recent successful sync of the SnippetRepositoryRegistry. | | `retryAt` | [`Time`](#time) | Timestamp after which the SnippetRepositoryRegistry is resynced. | | `retryCount` | [`Int`](#int) | Number of consecutive failed sync attempts of the SnippetRepositoryRegistry. | | `snippetRepositoryId` | [`ID!`](#id) | ID of the Snippet Repository. | | `state` | [`RegistryState`](#registrystate) | Sync state of the SnippetRepositoryRegistry. | | `verificationRetryAt` | [`Time`](#time) | Timestamp after which the SnippetRepositoryRegistry is reverified. | | `verifiedAt` | [`Time`](#time) | Timestamp of the most recent successful verification of the SnippetRepositoryRegistry. | ### `SshSignature` SSH signature for a signed commit. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `commitSha` | [`String`](#string) | SHA of the associated commit. | | `key` | [`Key`](#key) | SSH key used for the signature. | | `keyFingerprintSha256` | [`String`](#string) | Fingerprint of the key. | | `project` | [`Project`](#project) | Project of the associated commit. | | `user` | [`UserCore`](#usercore) | User associated with the key. | | `verificationStatus` | [`VerificationStatus`](#verificationstatus) | Indicates verification status of the associated key or certificate. | ### `StatusAction` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `buttonTitle` | [`String`](#string) | Title for the button, for example: Retry this job. | | `icon` | [`String`](#string) | Icon used in the action button. | | `id` | [`String!`](#string) | ID for a status action. | | `method` | [`String`](#string) | Method for the action, for example: :post. | | `path` | [`String`](#string) | Path for the action. | | `title` | [`String`](#string) | Title for the action, for example: Retry. | ### `Submodule` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `flatPath` | [`String!`](#string) | Flat path of the entry. | | `id` | [`ID!`](#id) | ID of the entry. | | `name` | [`String!`](#string) | Name of the entry. | | `path` | [`String!`](#string) | Path of the entry. | | `sha` | [`String!`](#string) | Last commit SHA for the entry. | | `treeUrl` | [`String`](#string) | Tree URL for the sub-module. | | `type` | [`EntryType!`](#entrytype) | Type of tree entry. | | `webUrl` | [`String`](#string) | Web URL for the sub-module. | ### `SubscriptionFutureEntry` Represents an entry from the future subscriptions. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `company` | [`String`](#string) | Company of the licensee. | | `email` | [`String`](#string) | Email of the licensee. | | `expiresAt` | [`Date`](#date) | Date when the license expires. | | `name` | [`String`](#string) | Name of the licensee. | | `plan` | [`String!`](#string) | Name of the subscription plan. | | `startsAt` | [`Date`](#date) | Date when the license started. | | `type` | [`String!`](#string) | Type of license the subscription will yield. | | `usersInLicenseCount` | [`Int`](#int) | Number of paid user seats. | ### `SuggestedReviewersType` Represents a Suggested Reviewers result set. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `accepted` | [`[String!]`](#string) | List of accepted reviewer usernames. | | `createdAt` | [`Time!`](#time) | Timestamp of when the suggestions were created. | | `suggested` | [`[String!]!`](#string) | List of suggested reviewer usernames. | | `updatedAt` | [`Time!`](#time) | Timestamp of when the suggestions were updated. | ### `SystemNoteMetadata` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `action` | [`String`](#string) | System note metadata action. | | `descriptionVersion` | [`DescriptionVersion`](#descriptionversion) | Version of the changed description. | | `id` | [`SystemNoteMetadataID!`](#systemnotemetadataid) | Global ID of the specific system note metadata. | ### `TaskCompletionStatus` Completion status of tasks. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `completedCount` | [`Int!`](#int) | Number of completed tasks. | | `count` | [`Int!`](#int) | Number of total tasks. | ### `TerraformState` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `createdAt` | [`Time!`](#time) | Timestamp the Terraform state was created. | | `deletedAt` | [`Time`](#time) | Timestamp the Terraform state was deleted. | | `id` | [`ID!`](#id) | ID of the Terraform state. | | `latestVersion` | [`TerraformStateVersion`](#terraformstateversion) | Latest version of the Terraform state. | | `lockedAt` | [`Time`](#time) | Timestamp the Terraform state was locked. | | `lockedByUser` | [`UserCore`](#usercore) | User currently holding a lock on the Terraform state. | | `name` | [`String!`](#string) | Name of the Terraform state. | | `updatedAt` | [`Time!`](#time) | Timestamp the Terraform state was updated. | ### `TerraformStateVersion` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `createdAt` | [`Time!`](#time) | Timestamp the version was created. | | `createdByUser` | [`UserCore`](#usercore) | User that created this version. | | `downloadPath` | [`String`](#string) | URL for downloading the version's JSON file. | | `id` | [`ID!`](#id) | ID of the Terraform state version. | | `job` | [`CiJob`](#cijob) | Job that created this version. | | `serial` | [`Int`](#int) | Serial number of the version. | | `updatedAt` | [`Time!`](#time) | Timestamp the version was updated. | ### `TerraformStateVersionRegistry` Represents the Geo sync and verification state of a terraform state version. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `createdAt` | [`Time`](#time) | Timestamp when the TerraformStateVersionRegistry was created. | | `id` | [`ID!`](#id) | ID of the TerraformStateVersionRegistry. | | `lastSyncFailure` | [`String`](#string) | Error message during sync of the TerraformStateVersionRegistry. | | `lastSyncedAt` | [`Time`](#time) | Timestamp of the most recent successful sync of the TerraformStateVersionRegistry. | | `retryAt` | [`Time`](#time) | Timestamp after which the TerraformStateVersionRegistry is resynced. | | `retryCount` | [`Int`](#int) | Number of consecutive failed sync attempts of the TerraformStateVersionRegistry. | | `state` | [`RegistryState`](#registrystate) | Sync state of the TerraformStateVersionRegistry. | | `terraformStateVersionId` | [`ID!`](#id) | ID of the terraform state version. | | `verificationRetryAt` | [`Time`](#time) | Timestamp after which the TerraformStateVersionRegistry is reverified. | | `verifiedAt` | [`Time`](#time) | Timestamp of the most recent successful verification of the TerraformStateVersionRegistry. | ### `TestCase` Test case in pipeline test report. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `attachmentUrl` | [`String`](#string) | URL of the test case attachment file. | | `classname` | [`String`](#string) | Classname of the test case. | | `executionTime` | [`Float`](#float) | Test case execution time in seconds. | | `file` | [`String`](#string) | Path to the file of the test case. | | `name` | [`String`](#string) | Name of the test case. | | `recentFailures` | [`RecentFailures`](#recentfailures) | Recent failure history of the test case on the base branch. | | `stackTrace` | [`String`](#string) | Stack trace of the test case. | | `status` | [`TestCaseStatus`](#testcasestatus) | Status of the test case (error, failed, success, skipped). | | `systemOutput` | [`String`](#string) | System output of the test case. | ### `TestReport` Represents a requirement test report. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `author` | [`UserCore`](#usercore) | Author of the test report. | | `createdAt` | [`Time!`](#time) | Timestamp of when the test report was created. | | `id` | [`ID!`](#id) | ID of the test report. | | `state` | [`TestReportState!`](#testreportstate) | State of the test report. | | `usesLegacyIid` | [`Boolean`](#boolean) | Indicates whether the test report was generated with references to legacy requirement IIDs. | ### `TestReportSummary` Test report for a pipeline. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `testSuites` | [`TestSuiteSummaryConnection!`](#testsuitesummaryconnection) | Test suites belonging to a pipeline test report. (see [Connections](#connections)) | | `total` | [`TestReportTotal!`](#testreporttotal) | Total report statistics for a pipeline test report. | ### `TestReportTotal` Total test report statistics. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `count` | [`Int`](#int) | Total number of the test cases. | | `error` | [`Int`](#int) | Total number of test cases that had an error. | | `failed` | [`Int`](#int) | Total number of test cases that failed. | | `skipped` | [`Int`](#int) | Total number of test cases that were skipped. | | `success` | [`Int`](#int) | Total number of test cases that succeeded. | | `suiteError` | [`String`](#string) | Test suite error message. | | `time` | [`Float`](#float) | Total duration of the tests. | ### `TestSuite` Test suite in a pipeline test report. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `errorCount` | [`Int`](#int) | Total number of test cases that had an error. | | `failedCount` | [`Int`](#int) | Total number of test cases that failed in the test suite. | | `name` | [`String`](#string) | Name of the test suite. | | `skippedCount` | [`Int`](#int) | Total number of test cases that were skipped in the test suite. | | `successCount` | [`Int`](#int) | Total number of test cases that succeeded in the test suite. | | `suiteError` | [`String`](#string) | Test suite error message. | | `testCases` | [`TestCaseConnection`](#testcaseconnection) | Test cases in the test suite. (see [Connections](#connections)) | | `totalCount` | [`Int`](#int) | Total number of the test cases in the test suite. | | `totalTime` | [`Float`](#float) | Total duration of the tests in the test suite. | ### `TestSuiteSummary` Test suite summary in a pipeline test report. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `buildIds` | [`[ID!]`](#id) | IDs of the builds used to run the test suite. | | `errorCount` | [`Int`](#int) | Total number of test cases that had an error. | | `failedCount` | [`Int`](#int) | Total number of test cases that failed in the test suite. | | `name` | [`String`](#string) | Name of the test suite. | | `skippedCount` | [`Int`](#int) | Total number of test cases that were skipped in the test suite. | | `successCount` | [`Int`](#int) | Total number of test cases that succeeded in the test suite. | | `suiteError` | [`String`](#string) | Test suite error message. | | `totalCount` | [`Int`](#int) | Total number of the test cases in the test suite. | | `totalTime` | [`Float`](#float) | Total duration of the tests in the test suite. | ### `TimeReportStats` Represents the time report stats for timeboxes. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `complete` | [`TimeboxMetrics`](#timeboxmetrics) | Completed issues metrics. | | `incomplete` | [`TimeboxMetrics`](#timeboxmetrics) | Incomplete issues metrics. | | `total` | [`TimeboxMetrics`](#timeboxmetrics) | Total issues metrics. | ### `TimeTrackingTimelogCategory` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `billable` | [`Boolean`](#boolean) | Whether the category is billable or not. | | `billingRate` | [`Float`](#float) | Billing rate for the category. | | `color` | [`Color`](#color) | Color assigned to the category. | | `createdAt` | [`Time!`](#time) | When the category was created. | | `description` | [`String`](#string) | Description of the category. | | `id` | [`ID!`](#id) | Internal ID of the timelog category. | | `name` | [`String!`](#string) | Name of the category. | | `updatedAt` | [`Time!`](#time) | When the category was last updated. | ### `TimeboxMetrics` Represents measured stats metrics for timeboxes. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `count` | [`Int!`](#int) | Count metric. | | `weight` | [`Int!`](#int) | Weight metric. | ### `TimeboxReport` Represents a historically accurate report about the timebox. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `burnupTimeSeries` | [`[BurnupChartDailyTotals!]`](#burnupchartdailytotals) | Daily scope and completed totals for burnup charts. | | `error` | [`TimeboxReportError`](#timeboxreporterror) | If the report cannot be generated, information about why. | | `stats` | [`TimeReportStats`](#timereportstats) | Represents the time report stats for the timebox. | ### `TimeboxReportError` Explains why we could not generate a timebox report. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `code` | [`TimeboxReportErrorReason`](#timeboxreporterrorreason) | Machine readable code, categorizing the error. | | `message` | [`String`](#string) | Human readable message explaining what happened. | ### `TimelineEventTagType` Describes a tag on an incident management timeline event. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`IncidentManagementTimelineEventTagID!`](#incidentmanagementtimelineeventtagid) | ID of the timeline event tag. | | `name` | [`String!`](#string) | Name of the timeline event tag. | ### `TimelineEventType` Describes an incident management timeline event. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `action` | [`String!`](#string) | Indicates the timeline event icon. | | `author` | [`UserCore`](#usercore) | User that created the timeline event. | | `createdAt` | [`Time!`](#time) | Timestamp when the event created. | | `editable` | [`Boolean!`](#boolean) | Indicates the timeline event is editable. | | `id` | [`IncidentManagementTimelineEventID!`](#incidentmanagementtimelineeventid) | ID of the timeline event. | | `incident` | [`Issue!`](#issue) | Incident of the timeline event. | | `note` | [`String`](#string) | Text note of the timeline event. | | `noteHtml` | [`String`](#string) | HTML note of the timeline event. | | `occurredAt` | [`Time!`](#time) | Timestamp when the event occurred. | | `promotedFromNote` | [`Note`](#note) | Note from which the timeline event was created. | | `timelineEventTags` | [`TimelineEventTagTypeConnection`](#timelineeventtagtypeconnection) | Tags for the incident timeline event. (see [Connections](#connections)) | | `updatedAt` | [`Time!`](#time) | Timestamp when the event updated. | | `updatedByUser` | [`UserCore`](#usercore) | User that updated the timeline event. | ### `Timelog` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`ID!`](#id) | Internal ID of the timelog. | | `issue` | [`Issue`](#issue) | Issue that logged time was added to. | | `mergeRequest` | [`MergeRequest`](#mergerequest) | Merge request that logged time was added to. | | `note` | [`Note`](#note) | Note where the quick action was executed to add the logged time. | | `project` | [`Project!`](#project) | Target project of the timelog merge request or issue. | | `spentAt` | [`Time`](#time) | Timestamp of when the time tracked was spent at. | | `summary` | [`String`](#string) | Summary of how the time was spent. | | `timeSpent` | [`Int!`](#int) | Time spent displayed in seconds. | | `user` | [`UserCore!`](#usercore) | User that logged the time. | | `userPermissions` | [`TimelogPermissions!`](#timelogpermissions) | Permissions for the current user on the resource. | ### `TimelogPermissions` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `adminTimelog` | [`Boolean!`](#boolean) | Indicates the user can perform `admin_timelog` on this resource. | ### `Todo` Representing a to-do entry. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `action` | [`TodoActionEnum!`](#todoactionenum) | Action of the to-do item. | | `author` | [`UserCore!`](#usercore) | Author of this to-do item. | | `body` | [`String!`](#string) | Body of the to-do item. | | `createdAt` | [`Time!`](#time) | Timestamp this to-do item was created. | | `group` | [`Group`](#group) | Group this to-do item is associated with. | | `id` | [`ID!`](#id) | ID of the to-do item. | | `note` | [`Note`](#note) | Note which created this to-do item. | | `project` | [`Project`](#project) | Project this to-do item is associated with. | | `state` | [`TodoStateEnum!`](#todostateenum) | State of the to-do item. | | `target` | [`Todoable!`](#todoable) | Target of the to-do item. | | `targetType` | [`TodoTargetEnum!`](#todotargetenum) | Target type of the to-do item. | ### `Topic` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `avatarUrl` | [`String`](#string) | URL to avatar image file of the topic. | | `description` | [`String`](#string) | Description of the topic. | | `descriptionHtml` | [`String`](#string) | GitLab Flavored Markdown rendering of `description`. | | `id` | [`ID!`](#id) | ID of the topic. | | `name` | [`String!`](#string) | Name of the topic. | | `title` | [`String!`](#string) | Title of the topic. | ### `Tree` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `blobs` | [`BlobConnection!`](#blobconnection) | Blobs of the tree. (see [Connections](#connections)) | | `lastCommit` | [`Commit`](#commit) | Last commit for the tree. | | `submodules` | [`SubmoduleConnection!`](#submoduleconnection) | Sub-modules of the tree. (see [Connections](#connections)) | | `trees` | [`TreeEntryConnection!`](#treeentryconnection) | Trees of the tree. (see [Connections](#connections)) | ### `TreeEntry` Represents a directory. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `flatPath` | [`String!`](#string) | Flat path of the entry. | | `id` | [`ID!`](#id) | ID of the entry. | | `name` | [`String!`](#string) | Name of the entry. | | `path` | [`String!`](#string) | Path of the entry. | | `sha` | [`String!`](#string) | Last commit SHA for the entry. | | `type` | [`EntryType!`](#entrytype) | Type of tree entry. | | `webPath` | [`String`](#string) | Web path for the tree entry (directory). | | `webUrl` | [`String`](#string) | Web URL for the tree entry (directory). | ### `UnprotectAccessLevel` Defines which user roles, users, or groups can unprotect a protected branch. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `accessLevel` | [`Int!`](#int) | GitLab::Access level. | | `accessLevelDescription` | [`String!`](#string) | Human readable representation for this access level. | | `group` | [`AccessLevelGroup`](#accesslevelgroup) | Group associated with this access level. | | `user` | [`AccessLevelUser`](#accessleveluser) | User associated with this access level. | ### `UploadRegistry` Represents the Geo replication and verification state of an upload. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `createdAt` | [`Time`](#time) | Timestamp when the UploadRegistry was created. | | `fileId` | [`ID!`](#id) | ID of the Upload. | | `id` | [`ID!`](#id) | ID of the UploadRegistry. | | `lastSyncFailure` | [`String`](#string) | Error message during sync of the UploadRegistry. | | `lastSyncedAt` | [`Time`](#time) | Timestamp of the most recent successful sync of the UploadRegistry. | | `retryAt` | [`Time`](#time) | Timestamp after which the UploadRegistry is resynced. | | `retryCount` | [`Int`](#int) | Number of consecutive failed sync attempts of the UploadRegistry. | | `state` | [`RegistryState`](#registrystate) | Sync state of the UploadRegistry. | | `verificationRetryAt` | [`Time`](#time) | Timestamp after which the UploadRegistry is reverified. | | `verifiedAt` | [`Time`](#time) | Timestamp of the most recent successful verification of the UploadRegistry. | ### `UsageTrendsMeasurement` Represents a recorded measurement (object count) for the Admins. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `count` | [`Int!`](#int) | Object count. | | `identifier` | [`MeasurementIdentifier!`](#measurementidentifier) | Type of objects being measured. | | `recordedAt` | [`Time`](#time) | Time the measurement was recorded. | ### `UserAchievement` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `achievement` | [`Achievement!`](#achievement) | Achievement awarded. | | `awardedByUser` | [`UserCore!`](#usercore) | Awarded by. | | `createdAt` | [`Time!`](#time) | Timestamp the achievement was created. | | `id` | [`AchievementsUserAchievementID!`](#achievementsuserachievementid) | ID of the user achievement. | | `revokedAt` | [`Time`](#time) | Timestamp the achievement was revoked. | | `revokedByUser` | [`UserCore`](#usercore) | Revoked by. | | `updatedAt` | [`Time!`](#time) | Timestamp the achievement was last updated. | | `user` | [`UserCore!`](#usercore) | Achievement recipient. | ### `UserCallout` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `dismissedAt` | [`Time`](#time) | Date when the callout was dismissed. | | `featureName` | [`UserCalloutFeatureNameEnum`](#usercalloutfeaturenameenum) | Name of the feature that the callout is for. | ### `UserCore` Core represention of a GitLab user. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `avatarUrl` | [`String`](#string) | URL of the user's avatar. | | `bot` | [`Boolean!`](#boolean) | Indicates if the user is a bot. | | `callouts` | [`UserCalloutConnection`](#usercalloutconnection) | User callouts that belong to the user. (see [Connections](#connections)) | | `commitEmail` | [`String`](#string) | User's default commit email. | | `email` **{warning-solid}** | [`String`](#string) | **Deprecated** in 13.7. This was renamed. Use: [`User.publicEmail`](#userpublicemail). | | `emails` | [`EmailConnection`](#emailconnection) | User's email addresses. (see [Connections](#connections)) | | `gitpodEnabled` | [`Boolean`](#boolean) | Whether Gitpod is enabled at the user level. | | `groupCount` | [`Int`](#int) | Group count for the user. | | `groupMemberships` | [`GroupMemberConnection`](#groupmemberconnection) | Group memberships of the user. (see [Connections](#connections)) | | `id` | [`ID!`](#id) | ID of the user. | | `location` | [`String`](#string) | Location of the user. | | `name` | [`String!`](#string) | Human-readable name of the user. Returns `****` if the user is a project bot and the requester does not have permission to view the project. | | `namespace` | [`Namespace`](#namespace) | Personal namespace of the user. | | `namespaceCommitEmails` | [`NamespaceCommitEmailConnection`](#namespacecommitemailconnection) | User's custom namespace commit emails. (see [Connections](#connections)) | | `preferencesGitpodPath` | [`String`](#string) | Web path to the Gitpod section within user preferences. | | `profileEnableGitpodPath` | [`String`](#string) | Web path to enable Gitpod for the user. | | `projectMemberships` | [`ProjectMemberConnection`](#projectmemberconnection) | Project memberships of the user. (see [Connections](#connections)) | | `publicEmail` | [`String`](#string) | User's public email. | | `savedReplies` | [`SavedReplyConnection`](#savedreplyconnection) | Saved replies authored by the user. Will not return saved replies if `saved_replies` feature flag is disabled. (see [Connections](#connections)) | | `state` | [`UserState!`](#userstate) | State of the user. | | `status` | [`UserStatus`](#userstatus) | User status. | | `userAchievements` **{warning-solid}** | [`UserAchievementConnection`](#userachievementconnection) | **Introduced** in 15.10. This feature is an Experiment. It can be changed or removed at any time. Achievements for the user. Only returns for namespaces where the `achievements` feature flag is enabled. | | `userPermissions` | [`UserPermissions!`](#userpermissions) | Permissions for the current user on the resource. | | `username` | [`String!`](#string) | Username of the user. Unique within this instance of GitLab. | | `webPath` | [`String!`](#string) | Web path of the user. | | `webUrl` | [`String!`](#string) | Web URL of the user. | #### Fields with arguments ##### `UserCore.assignedMergeRequests` Merge requests assigned to the user. Returns [`MergeRequestConnection`](#mergerequestconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `approved` | [`Boolean`](#boolean) | Limit results to approved merge requests. Available only when the feature flag `mr_approved_filter` is enabled. | | `authorUsername` | [`String`](#string) | Username of the author. | | `createdAfter` | [`Time`](#time) | Merge requests created after this timestamp. | | `createdBefore` | [`Time`](#time) | Merge requests created before this timestamp. | | `draft` | [`Boolean`](#boolean) | Limit result to draft merge requests. | | `iids` | [`[String!]`](#string) | Array of IIDs of merge requests, for example `[1, 2]`. | | `labels` | [`[String!]`](#string) | Array of label names. All resolved merge requests will have all of these labels. | | `mergedAfter` | [`Time`](#time) | Merge requests merged after this date. | | `mergedBefore` | [`Time`](#time) | Merge requests merged before this date. | | `milestoneTitle` | [`String`](#string) | Title of the milestone. | | `not` | [`MergeRequestsResolverNegatedParams`](#mergerequestsresolvernegatedparams) | List of negated arguments. Warning: this argument is experimental and a subject to change in future. | | `projectId` | [`ProjectID`](#projectid) | The global ID of the project the authored merge requests should be in. Incompatible with projectPath. | | `projectPath` | [`String`](#string) | The full-path of the project the authored merge requests should be in. Incompatible with projectId. | | `reviewerUsername` | [`String`](#string) | Username of the reviewer. | | `sort` | [`MergeRequestSort`](#mergerequestsort) | Sort merge requests by this criteria. | | `sourceBranches` | [`[String!]`](#string) | Array of source branch names. All resolved merge requests will have one of these branches as their source. | | `state` | [`MergeRequestState`](#mergerequeststate) | Merge request state. If provided, all resolved merge requests will have this state. | | `targetBranches` | [`[String!]`](#string) | Array of target branch names. All resolved merge requests will have one of these branches as their target. | | `updatedAfter` | [`Time`](#time) | Merge requests updated after this timestamp. | | `updatedBefore` | [`Time`](#time) | Merge requests updated before this timestamp. | ##### `UserCore.authoredMergeRequests` Merge requests authored by the user. Returns [`MergeRequestConnection`](#mergerequestconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `approved` | [`Boolean`](#boolean) | Limit results to approved merge requests. Available only when the feature flag `mr_approved_filter` is enabled. | | `assigneeUsername` | [`String`](#string) | Username of the assignee. | | `createdAfter` | [`Time`](#time) | Merge requests created after this timestamp. | | `createdBefore` | [`Time`](#time) | Merge requests created before this timestamp. | | `draft` | [`Boolean`](#boolean) | Limit result to draft merge requests. | | `iids` | [`[String!]`](#string) | Array of IIDs of merge requests, for example `[1, 2]`. | | `labels` | [`[String!]`](#string) | Array of label names. All resolved merge requests will have all of these labels. | | `mergedAfter` | [`Time`](#time) | Merge requests merged after this date. | | `mergedBefore` | [`Time`](#time) | Merge requests merged before this date. | | `milestoneTitle` | [`String`](#string) | Title of the milestone. | | `not` | [`MergeRequestsResolverNegatedParams`](#mergerequestsresolvernegatedparams) | List of negated arguments. Warning: this argument is experimental and a subject to change in future. | | `projectId` | [`ProjectID`](#projectid) | The global ID of the project the authored merge requests should be in. Incompatible with projectPath. | | `projectPath` | [`String`](#string) | The full-path of the project the authored merge requests should be in. Incompatible with projectId. | | `reviewerUsername` | [`String`](#string) | Username of the reviewer. | | `sort` | [`MergeRequestSort`](#mergerequestsort) | Sort merge requests by this criteria. | | `sourceBranches` | [`[String!]`](#string) | Array of source branch names. All resolved merge requests will have one of these branches as their source. | | `state` | [`MergeRequestState`](#mergerequeststate) | Merge request state. If provided, all resolved merge requests will have this state. | | `targetBranches` | [`[String!]`](#string) | Array of target branch names. All resolved merge requests will have one of these branches as their target. | | `updatedAfter` | [`Time`](#time) | Merge requests updated after this timestamp. | | `updatedBefore` | [`Time`](#time) | Merge requests updated before this timestamp. | ##### `UserCore.groups` Groups where the user has access. Returns [`GroupConnection`](#groupconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `permissionScope` | [`GroupPermission`](#grouppermission) | Filter by permissions the user has on groups. | | `search` | [`String`](#string) | Search by group name or path. | ##### `UserCore.reviewRequestedMergeRequests` Merge requests assigned to the user for review. Returns [`MergeRequestConnection`](#mergerequestconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `approved` | [`Boolean`](#boolean) | Limit results to approved merge requests. Available only when the feature flag `mr_approved_filter` is enabled. | | `assigneeUsername` | [`String`](#string) | Username of the assignee. | | `authorUsername` | [`String`](#string) | Username of the author. | | `createdAfter` | [`Time`](#time) | Merge requests created after this timestamp. | | `createdBefore` | [`Time`](#time) | Merge requests created before this timestamp. | | `draft` | [`Boolean`](#boolean) | Limit result to draft merge requests. | | `iids` | [`[String!]`](#string) | Array of IIDs of merge requests, for example `[1, 2]`. | | `labels` | [`[String!]`](#string) | Array of label names. All resolved merge requests will have all of these labels. | | `mergedAfter` | [`Time`](#time) | Merge requests merged after this date. | | `mergedBefore` | [`Time`](#time) | Merge requests merged before this date. | | `milestoneTitle` | [`String`](#string) | Title of the milestone. | | `not` | [`MergeRequestsResolverNegatedParams`](#mergerequestsresolvernegatedparams) | List of negated arguments. Warning: this argument is experimental and a subject to change in future. | | `projectId` | [`ProjectID`](#projectid) | The global ID of the project the authored merge requests should be in. Incompatible with projectPath. | | `projectPath` | [`String`](#string) | The full-path of the project the authored merge requests should be in. Incompatible with projectId. | | `sort` | [`MergeRequestSort`](#mergerequestsort) | Sort merge requests by this criteria. | | `sourceBranches` | [`[String!]`](#string) | Array of source branch names. All resolved merge requests will have one of these branches as their source. | | `state` | [`MergeRequestState`](#mergerequeststate) | Merge request state. If provided, all resolved merge requests will have this state. | | `targetBranches` | [`[String!]`](#string) | Array of target branch names. All resolved merge requests will have one of these branches as their target. | | `updatedAfter` | [`Time`](#time) | Merge requests updated after this timestamp. | | `updatedBefore` | [`Time`](#time) | Merge requests updated before this timestamp. | ##### `UserCore.savedReply` Saved reply authored by the user. Will not return saved reply if `saved_replies` feature flag is disabled. Returns [`SavedReply`](#savedreply). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`UsersSavedReplyID!`](#userssavedreplyid) | ID of a saved reply. | ##### `UserCore.snippets` Snippets authored by the user. Returns [`SnippetConnection`](#snippetconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ids` | [`[SnippetID!]`](#snippetid) | Array of global snippet IDs. For example, `gid://gitlab/ProjectSnippet/1`. | | `type` | [`TypeEnum`](#typeenum) | Type of snippet. | | `visibility` | [`VisibilityScopesEnum`](#visibilityscopesenum) | Visibility of the snippet. | ##### `UserCore.starredProjects` Projects starred by the user. Returns [`ProjectConnection`](#projectconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `search` | [`String`](#string) | Search query. | ##### `UserCore.timelogs` Time logged by the user. Returns [`TimelogConnection`](#timelogconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `endDate` | [`Time`](#time) | List timelogs within a date range where the logged date is equal to or before endDate. | | `endTime` | [`Time`](#time) | List timelogs within a time range where the logged time is equal to or before endTime. | | `groupId` | [`GroupID`](#groupid) | List timelogs for a group. | | `projectId` | [`ProjectID`](#projectid) | List timelogs for a project. | | `sort` | [`TimelogSort`](#timelogsort) | List timelogs in a particular order. | | `startDate` | [`Time`](#time) | List timelogs within a date range where the logged date is equal to or after startDate. | | `startTime` | [`Time`](#time) | List timelogs within a time range where the logged time is equal to or after startTime. | | `username` | [`String`](#string) | List timelogs for a user. | ##### `UserCore.todos` To-do items of the user. Returns [`TodoConnection`](#todoconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `action` | [`[TodoActionEnum!]`](#todoactionenum) | Action to be filtered. | | `authorId` | [`[ID!]`](#id) | ID of an author. | | `groupId` | [`[ID!]`](#id) | ID of a group. | | `projectId` | [`[ID!]`](#id) | ID of a project. | | `state` | [`[TodoStateEnum!]`](#todostateenum) | State of the todo. | | `type` | [`[TodoTargetEnum!]`](#todotargetenum) | Type of the todo. | ##### `UserCore.workspaces` Workspaces owned by the current user. Returns [`WorkspaceConnection`](#workspaceconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ids` | [`[RemoteDevelopmentWorkspaceID!]`](#remotedevelopmentworkspaceid) | Array of global workspace IDs. For example, `["gid://gitlab/RemoteDevelopment::Workspace/1"]`. | ### `UserMergeRequestInteraction` Information about a merge request given a specific user. This object has two parts to its state: a `User` and a `MergeRequest`. All fields relate to interactions between the two entities. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `applicableApprovalRules` | [`[ApprovalRule!]`](#approvalrule) | Approval rules that apply to this user for this merge request. | | `approved` | [`Boolean!`](#boolean) | Whether this user has approved this merge request. | | `canMerge` | [`Boolean!`](#boolean) | Whether this user can merge this merge request. | | `canUpdate` | [`Boolean!`](#boolean) | Whether this user can update this merge request. | | `reviewState` | [`MergeRequestReviewState`](#mergerequestreviewstate) | State of the review by this user. | | `reviewed` | [`Boolean!`](#boolean) | Whether this user has provided a review for this merge request. | ### `UserPermissions` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `createSnippet` | [`Boolean!`](#boolean) | Indicates the user can perform `create_snippet` on this resource. | ### `UserPreferences` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `issuesSort` | [`IssueSort`](#issuesort) | Sort order for issue lists. | | `visibilityPipelineIdType` | [`VisibilityPipelineIdType`](#visibilitypipelineidtype) | Determines whether the pipeline list shows ID or IID. | ### `UserStatus` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `availability` | [`AvailabilityEnum!`](#availabilityenum) | User availability status. | | `emoji` | [`String`](#string) | String representation of emoji. | | `message` | [`String`](#string) | User status message. | | `messageHtml` | [`String`](#string) | HTML of the user status message. | ### `ValueStreamAnalyticsMetric` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `identifier` | [`String!`](#string) | Identifier for the metric. | | `links` | [`[ValueStreamMetricLinkType!]!`](#valuestreammetriclinktype) | Optional links for drilling down. | | `title` | [`String!`](#string) | Title for the metric. | | `unit` | [`String`](#string) | Unit of measurement. | | `value` | [`Float`](#float) | Value for the metric. | ### `ValueStreamMetricLinkType` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `docsLink` | [`Boolean`](#boolean) | Link to the metric documentation. | | `label` | [`String!`](#string) | Label for the link. | | `name` | [`String!`](#string) | Name of the link group. | | `url` | [`String!`](#string) | Drill-down URL. | ### `VulnerabilitiesCountByDay` Represents the count of vulnerabilities by severity on a particular day. This data is retained for 365 days. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `critical` | [`Int!`](#int) | Total number of vulnerabilities on a particular day with critical severity. | | `date` | [`ISO8601Date!`](#iso8601date) | Date for the count. | | `high` | [`Int!`](#int) | Total number of vulnerabilities on a particular day with high severity. | | `info` | [`Int!`](#int) | Total number of vulnerabilities on a particular day with info severity. | | `low` | [`Int!`](#int) | Total number of vulnerabilities on a particular day with low severity. | | `medium` | [`Int!`](#int) | Total number of vulnerabilities on a particular day with medium severity. | | `total` | [`Int!`](#int) | Total number of vulnerabilities on a particular day. | | `unknown` | [`Int!`](#int) | Total number of vulnerabilities on a particular day with unknown severity. | ### `Vulnerability` Represents a vulnerability. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `commenters` | [`UserCoreConnection!`](#usercoreconnection) | All commenters on this noteable. (see [Connections](#connections)) | | `confirmedAt` | [`Time`](#time) | Timestamp of when the vulnerability state was changed to confirmed. | | `confirmedBy` | [`UserCore`](#usercore) | User that confirmed the vulnerability. | | `description` | [`String`](#string) | Description of the vulnerability. | | `descriptionHtml` | [`String`](#string) | GitLab Flavored Markdown rendering of `description`. | | `details` | [`[VulnerabilityDetail!]!`](#vulnerabilitydetail) | Details of the vulnerability. | | `detectedAt` | [`Time!`](#time) | Timestamp of when the vulnerability was first detected. | | `discussions` | [`DiscussionConnection!`](#discussionconnection) | All discussions on this noteable. (see [Connections](#connections)) | | `dismissedAt` | [`Time`](#time) | Timestamp of when the vulnerability state was changed to dismissed. | | `dismissedBy` | [`UserCore`](#usercore) | User that dismissed the vulnerability. | | `externalIssueLinks` | [`VulnerabilityExternalIssueLinkConnection!`](#vulnerabilityexternalissuelinkconnection) | List of external issue links related to the vulnerability. (see [Connections](#connections)) | | `falsePositive` | [`Boolean`](#boolean) | Indicates whether the vulnerability is a false positive. | | `hasSolutions` | [`Boolean`](#boolean) | Indicates whether there is a solution available for this vulnerability. | | `id` | [`ID!`](#id) | GraphQL ID of the vulnerability. | | `identifiers` | [`[VulnerabilityIdentifier!]!`](#vulnerabilityidentifier) | Identifiers of the vulnerability. | | `links` | [`[VulnerabilityLink!]!`](#vulnerabilitylink) | List of links associated with the vulnerability. | | `location` | [`VulnerabilityLocation`](#vulnerabilitylocation) | Location metadata for the vulnerability. Its fields depend on the type of security scan that found the vulnerability. | | `mergeRequest` | [`MergeRequest`](#mergerequest) | Merge request that fixes the vulnerability. | | `message` | [`String`](#string) | Short text description of the vulnerability. This may include the finding's specific information. | | `notes` | [`NoteConnection!`](#noteconnection) | All notes on this noteable. (see [Connections](#connections)) | | `primaryIdentifier` | [`VulnerabilityIdentifier`](#vulnerabilityidentifier) | Primary identifier of the vulnerability. | | `project` | [`Project`](#project) | Project on which the vulnerability was found. | | `reportType` | [`VulnerabilityReportType`](#vulnerabilityreporttype) | Type of the security report that found the vulnerability (SAST, DEPENDENCY_SCANNING, CONTAINER_SCANNING, DAST, SECRET_DETECTION, COVERAGE_FUZZING, API_FUZZING, CLUSTER_IMAGE_SCANNING, GENERIC). `Scan Type` in the UI. | | `resolvedAt` | [`Time`](#time) | Timestamp of when the vulnerability state was changed to resolved. | | `resolvedBy` | [`UserCore`](#usercore) | User that resolved the vulnerability. | | `resolvedOnDefaultBranch` | [`Boolean!`](#boolean) | Indicates whether the vulnerability is fixed on the default branch or not. | | `scanner` | [`VulnerabilityScanner`](#vulnerabilityscanner) | Scanner metadata for the vulnerability. | | `severity` | [`VulnerabilitySeverity`](#vulnerabilityseverity) | Severity of the vulnerability (INFO, UNKNOWN, LOW, MEDIUM, HIGH, CRITICAL). | | `state` | [`VulnerabilityState`](#vulnerabilitystate) | State of the vulnerability (DETECTED, CONFIRMED, RESOLVED, DISMISSED). | | `stateComment` | [`String`](#string) | Comment given for the vulnerability state change. | | `stateTransitions` | [`VulnerabilityStateTransitionTypeConnection`](#vulnerabilitystatetransitiontypeconnection) | List of state transitions related to the vulnerability. (see [Connections](#connections)) | | `title` | [`String`](#string) | Title of the vulnerability. | | `updatedAt` | [`Time`](#time) | Timestamp of when the vulnerability was last updated. | | `userNotesCount` | [`Int!`](#int) | Number of user notes attached to the vulnerability. | | `userPermissions` | [`VulnerabilityPermissions!`](#vulnerabilitypermissions) | Permissions for the current user on the resource. | | `vulnerabilityPath` | [`String`](#string) | Path to the vulnerability's details page. | | `webUrl` | [`String`](#string) | URL to the vulnerability's details page. | #### Fields with arguments ##### `Vulnerability.issueLinks` List of issue links related to the vulnerability. Returns [`VulnerabilityIssueLinkConnection!`](#vulnerabilityissuelinkconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `linkType` | [`VulnerabilityIssueLinkType`](#vulnerabilityissuelinktype) | Filter issue links by link type. | ### `VulnerabilityContainerImage` Represents a container image reported on the related vulnerability. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `name` | [`String`](#string) | Name of the container image. | ### `VulnerabilityDetailBase` Represents the vulnerability details base. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `description` | [`String`](#string) | Description of the field. | | `fieldName` | [`String`](#string) | Name of the field. | | `name` | [`String`](#string) | Name of the field. | ### `VulnerabilityDetailBoolean` Represents the vulnerability details boolean value. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `description` | [`String`](#string) | Description of the field. | | `fieldName` | [`String`](#string) | Name of the field. | | `name` | [`String`](#string) | Name of the field. | | `value` | [`Boolean!`](#boolean) | Value of the field. | ### `VulnerabilityDetailCode` Represents the vulnerability details code field. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `description` | [`String`](#string) | Description of the field. | | `fieldName` | [`String`](#string) | Name of the field. | | `lang` | [`String`](#string) | Language of the code. | | `name` | [`String`](#string) | Name of the field. | | `value` | [`String!`](#string) | Source code. | ### `VulnerabilityDetailCommit` Represents the vulnerability details commit field. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `description` | [`String`](#string) | Description of the field. | | `fieldName` | [`String`](#string) | Name of the field. | | `name` | [`String`](#string) | Name of the field. | | `value` | [`String!`](#string) | Commit SHA value. | ### `VulnerabilityDetailDiff` Represents the vulnerability details diff field. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `after` | [`String!`](#string) | Value of the field after the change. | | `before` | [`String!`](#string) | Value of the field before the change. | | `description` | [`String`](#string) | Description of the field. | | `fieldName` | [`String`](#string) | Name of the field. | | `name` | [`String`](#string) | Name of the field. | ### `VulnerabilityDetailFileLocation` Represents the vulnerability details location within a file in the project. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `description` | [`String`](#string) | Description of the field. | | `fieldName` | [`String`](#string) | Name of the field. | | `fileName` | [`String!`](#string) | File name. | | `lineEnd` | [`Int!`](#int) | End line number of the file location. | | `lineStart` | [`Int!`](#int) | Start line number of the file location. | | `name` | [`String`](#string) | Name of the field. | ### `VulnerabilityDetailInt` Represents the vulnerability details integer value. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `description` | [`String`](#string) | Description of the field. | | `fieldName` | [`String`](#string) | Name of the field. | | `name` | [`String`](#string) | Name of the field. | | `value` | [`Int!`](#int) | Value of the field. | ### `VulnerabilityDetailList` Represents the vulnerability details list value. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `description` | [`String`](#string) | Description of the field. | | `fieldName` | [`String`](#string) | Name of the field. | | `items` | [`[VulnerabilityDetail!]!`](#vulnerabilitydetail) | List of details. | | `name` | [`String`](#string) | Name of the field. | ### `VulnerabilityDetailMarkdown` Represents the vulnerability details Markdown field. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `description` | [`String`](#string) | Description of the field. | | `fieldName` | [`String`](#string) | Name of the field. | | `name` | [`String`](#string) | Name of the field. | | `value` | [`String!`](#string) | Value of the Markdown field. | ### `VulnerabilityDetailModuleLocation` Represents the vulnerability details location within a file in the project. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `description` | [`String`](#string) | Description of the field. | | `fieldName` | [`String`](#string) | Name of the field. | | `moduleName` | [`String!`](#string) | Module name. | | `name` | [`String`](#string) | Name of the field. | | `offset` | [`Int!`](#int) | Offset of the module location. | ### `VulnerabilityDetailRow` Represents an individual row in a table. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `description` | [`String`](#string) | Description of the field. | | `fieldName` | [`String`](#string) | Name of the field. | | `name` | [`String`](#string) | Name of the field. | | `row` | [`[VulnerabilityDetail!]!`](#vulnerabilitydetail) | Value of the field. | ### `VulnerabilityDetailTable` Represents the vulnerability details table value. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `description` | [`String`](#string) | Description of the field. | | `fieldName` | [`String`](#string) | Name of the field. | | `headers` | [`[VulnerabilityDetail!]!`](#vulnerabilitydetail) | Table headers. | | `name` | [`String`](#string) | Name of the field. | | `rows` | [`[VulnerabilityDetailRow!]!`](#vulnerabilitydetailrow) | Table rows. | ### `VulnerabilityDetailText` Represents the vulnerability details text field. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `description` | [`String`](#string) | Description of the field. | | `fieldName` | [`String`](#string) | Name of the field. | | `name` | [`String`](#string) | Name of the field. | | `value` | [`String!`](#string) | Value of the text field. | ### `VulnerabilityDetailUrl` Represents the vulnerability details URL field. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `description` | [`String`](#string) | Description of the field. | | `fieldName` | [`String`](#string) | Name of the field. | | `href` | [`String!`](#string) | Href of the URL. | | `name` | [`String`](#string) | Name of the field. | | `text` | [`String`](#string) | Text of the URL. | ### `VulnerabilityEvidence` Represents a Vulnerability Evidence. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `request` | [`VulnerabilityRequest`](#vulnerabilityrequest) | HTTP request of the Vulnerability Evidence. | | `response` | [`VulnerabilityResponse`](#vulnerabilityresponse) | HTTP response of the Vulnerability Evidence. | | `source` | [`VulnerabilityEvidenceSource`](#vulnerabilityevidencesource) | Source of the Vulnerability Evidence. | | `summary` | [`String`](#string) | Summary of the Vulnerability Evidence. | | `supportingMessages` | [`[VulnerabilityEvidenceSupportingMessage!]`](#vulnerabilityevidencesupportingmessage) | Supporting messages of the Vulnerability Evidence. | ### `VulnerabilityEvidenceSource` Represents a vulnerability evidence. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `identifier` | [`String!`](#string) | ID of the Vulnerability Evidence Source. | | `name` | [`String!`](#string) | Name of the Vulnerability Evidence Source. | | `url` | [`String`](#string) | URL of the Vulnerability Evidence Source. | ### `VulnerabilityEvidenceSupportingMessage` Represents a vulnerability evidence supporting message. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `name` | [`String!`](#string) | Name of the vulnerability supporting message. | | `request` | [`VulnerabilityRequest`](#vulnerabilityrequest) | HTTP request of the vulnerability evidence supporting message. | | `response` | [`VulnerabilityResponse`](#vulnerabilityresponse) | HTTP response of the vulnerability evidence supporting message. | ### `VulnerabilityExternalIssueLink` Represents an external issue link of a vulnerability. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `externalIssue` | [`ExternalIssue`](#externalissue) | The external issue attached to the issue link. | | `id` | [`VulnerabilitiesExternalIssueLinkID!`](#vulnerabilitiesexternalissuelinkid) | GraphQL ID of the external issue link. | | `linkType` | [`VulnerabilityExternalIssueLinkType!`](#vulnerabilityexternalissuelinktype) | Type of the external issue link. | ### `VulnerabilityIdentifier` Represents a vulnerability identifier. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `externalId` | [`String`](#string) | External ID of the vulnerability identifier. | | `externalType` | [`String`](#string) | External type of the vulnerability identifier. | | `name` | [`String`](#string) | Name of the vulnerability identifier. | | `url` | [`String`](#string) | URL of the vulnerability identifier. | ### `VulnerabilityIssueLink` Represents an issue link of a vulnerability. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`ID!`](#id) | GraphQL ID of the vulnerability. | | `issue` | [`Issue`](#issue) | Issue attached to issue link. | | `linkType` | [`VulnerabilityIssueLinkType!`](#vulnerabilityissuelinktype) | Type of the issue link. | ### `VulnerabilityLink` Represents a link related to a vulnerability. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `name` | [`String`](#string) | Name of the link. | | `url` | [`String!`](#string) | URL of the link. | ### `VulnerabilityLocationClusterImageScanning` Represents the location of a vulnerability found by a cluster image scan. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `dependency` | [`VulnerableDependency`](#vulnerabledependency) | Dependency containing the vulnerability. | | `image` | [`String`](#string) | Name of the vulnerable container image. | | `kubernetesResource` | [`VulnerableKubernetesResource`](#vulnerablekubernetesresource) | Kubernetes resource which uses the vulnerable container image. | | `operatingSystem` | [`String`](#string) | Operating system that runs on the vulnerable container image. | ### `VulnerabilityLocationContainerScanning` Represents the location of a vulnerability found by a container security scan. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `dependency` | [`VulnerableDependency`](#vulnerabledependency) | Dependency containing the vulnerability. | | `image` | [`String`](#string) | Name of the vulnerable container image. | | `operatingSystem` | [`String`](#string) | Operating system that runs on the vulnerable container image. | ### `VulnerabilityLocationCoverageFuzzing` Represents the location of a vulnerability found by a Coverage Fuzzing scan. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `blobPath` | [`String`](#string) | Blob path to the vulnerable file. | | `crashAddress` | [`String`](#string) | Relative address in memory were the crash occurred. | | `crashType` | [`String`](#string) | Type of the crash. | | `endLine` | [`String`](#string) | Number of the last relevant line in the vulnerable file. | | `file` | [`String`](#string) | Path to the vulnerable file. | | `stacktraceSnippet` | [`String`](#string) | Stack trace recorded during fuzzing resulting the crash. | | `startLine` | [`String`](#string) | Number of the first relevant line in the vulnerable file. | | `vulnerableClass` | [`String`](#string) | Class containing the vulnerability. | | `vulnerableMethod` | [`String`](#string) | Method containing the vulnerability. | ### `VulnerabilityLocationDast` Represents the location of a vulnerability found by a DAST scan. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `hostname` | [`String`](#string) | Domain name of the vulnerable request. | | `param` | [`String`](#string) | Query parameter for the URL on which the vulnerability occurred. | | `path` | [`String`](#string) | URL path and query string of the vulnerable request. | | `requestMethod` | [`String`](#string) | HTTP method of the vulnerable request. | ### `VulnerabilityLocationDependencyScanning` Represents the location of a vulnerability found by a dependency security scan. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `blobPath` | [`String`](#string) | Blob path to the vulnerable file. | | `dependency` | [`VulnerableDependency`](#vulnerabledependency) | Dependency containing the vulnerability. | | `file` | [`String`](#string) | Path to the vulnerable file. | ### `VulnerabilityLocationGeneric` Represents the location of a vulnerability found by a generic scanner. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `description` | [`String`](#string) | Free-form description of where the vulnerability is located. | ### `VulnerabilityLocationSast` Represents the location of a vulnerability found by a SAST scan. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `blobPath` | [`String`](#string) | Blob path to the vulnerable file. | | `endLine` | [`String`](#string) | Number of the last relevant line in the vulnerable file. | | `file` | [`String`](#string) | Path to the vulnerable file. | | `startLine` | [`String`](#string) | Number of the first relevant line in the vulnerable file. | | `vulnerableClass` | [`String`](#string) | Class containing the vulnerability. | | `vulnerableMethod` | [`String`](#string) | Method containing the vulnerability. | ### `VulnerabilityLocationSecretDetection` Represents the location of a vulnerability found by a secret detection scan. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `blobPath` | [`String`](#string) | Blob path to the vulnerable file. | | `endLine` | [`String`](#string) | Number of the last relevant line in the vulnerable file. | | `file` | [`String`](#string) | Path to the vulnerable file. | | `startLine` | [`String`](#string) | Number of the first relevant line in the vulnerable file. | | `vulnerableClass` | [`String`](#string) | Class containing the vulnerability. | | `vulnerableMethod` | [`String`](#string) | Method containing the vulnerability. | ### `VulnerabilityPermissions` Check permissions for the current user on a vulnerability. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `adminVulnerability` | [`Boolean!`](#boolean) | Indicates the user can perform `admin_vulnerability` on this resource. | | `adminVulnerabilityExternalIssueLink` | [`Boolean!`](#boolean) | Indicates the user can perform `admin_vulnerability_external_issue_link` on this resource. | | `adminVulnerabilityIssueLink` | [`Boolean!`](#boolean) | Indicates the user can perform `admin_vulnerability_issue_link` on this resource. | | `createVulnerabilityExport` | [`Boolean!`](#boolean) | Indicates the user can perform `create_vulnerability_export` on this resource. | | `createVulnerabilityFeedback` | [`Boolean!`](#boolean) | Indicates the user can perform `create_vulnerability_feedback` on this resource. | | `destroyVulnerabilityFeedback` | [`Boolean!`](#boolean) | Indicates the user can perform `destroy_vulnerability_feedback` on this resource. | | `readVulnerability` | [`Boolean!`](#boolean) | Indicates the user can perform `read_vulnerability` on this resource. | | `readVulnerabilityFeedback` | [`Boolean!`](#boolean) | Indicates the user can perform `read_vulnerability_feedback` on this resource. | | `updateVulnerabilityFeedback` | [`Boolean!`](#boolean) | Indicates the user can perform `update_vulnerability_feedback` on this resource. | ### `VulnerabilityRemediationType` Represents a vulnerability remediation type. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `diff` | [`String`](#string) | Diff of the remediation. | | `summary` | [`String`](#string) | Summary of the remediation. | ### `VulnerabilityRequest` Represents a Vulnerability Request. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `body` | [`String`](#string) | Body of the Vulnerability Request. | | `headers` | [`[VulnerabilityRequestResponseHeader!]!`](#vulnerabilityrequestresponseheader) | HTTP headers of the Vulnerability Request. | | `method` | [`String`](#string) | Method of the Vulnerability Request. | | `url` | [`String`](#string) | URL of the Vulnerability Request. | ### `VulnerabilityRequestResponseHeader` Represents a Vulnerability Request/Response Header. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `name` | [`String`](#string) | Name of the Vulnerability Request/Response Header. | | `value` | [`String`](#string) | Value of the Vulnerability Request/Response Header. | ### `VulnerabilityResponse` Represents a Vulnerability Response. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `body` | [`String`](#string) | Body of the Vulnerability Response. | | `headers` | [`[VulnerabilityRequestResponseHeader!]!`](#vulnerabilityrequestresponseheader) | HTTP headers of the Vulnerability Response. | | `reasonPhrase` | [`String`](#string) | Reason Phrase of the Vulnerability Response. | | `statusCode` | [`Int`](#int) | Status Code of the Vulnerability Response. | ### `VulnerabilityScanner` Represents a vulnerability scanner. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `externalId` | [`String`](#string) | External ID of the vulnerability scanner. | | `id` | [`ID`](#id) | ID of the scanner. | | `name` | [`String`](#string) | Name of the vulnerability scanner. | | `reportType` | [`VulnerabilityReportType`](#vulnerabilityreporttype) | Type of the vulnerability report. | | `reportTypeHumanized` | [`String`](#string) | Humanized type of the vulnerability report. | | `vendor` | [`String`](#string) | Vendor of the vulnerability scanner. | ### `VulnerabilitySeveritiesCount` Represents vulnerability counts by severity. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `critical` | [`Int`](#int) | Number of vulnerabilities of CRITICAL severity of the project. | | `high` | [`Int`](#int) | Number of vulnerabilities of HIGH severity of the project. | | `info` | [`Int`](#int) | Number of vulnerabilities of INFO severity of the project. | | `low` | [`Int`](#int) | Number of vulnerabilities of LOW severity of the project. | | `medium` | [`Int`](#int) | Number of vulnerabilities of MEDIUM severity of the project. | | `unknown` | [`Int`](#int) | Number of vulnerabilities of UNKNOWN severity of the project. | ### `VulnerabilityStateTransitionType` Represents a state transition of a vulnerability. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `author` | [`UserCore!`](#usercore) | User who changed the state of the vulnerability. | | `comment` | [`String`](#string) | Comment for the state change. | | `createdAt` | [`Time!`](#time) | Time of the state change of the vulnerability. | | `dismissalReason` | [`VulnerabilityDismissalReason`](#vulnerabilitydismissalreason) | Reason for the dismissal. | | `fromState` | [`VulnerabilityState!`](#vulnerabilitystate) | State of the vulnerability before transition. | | `toState` | [`VulnerabilityState!`](#vulnerabilitystate) | State of the vulnerability after transition. | ### `VulnerableDependency` Represents a vulnerable dependency. Used in vulnerability location data. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `package` | [`VulnerablePackage`](#vulnerablepackage) | Package associated with the vulnerable dependency. | | `version` | [`String`](#string) | Version of the vulnerable dependency. | ### `VulnerableKubernetesResource` Represents a vulnerable Kubernetes resource. Used in vulnerability location data. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `agent` | [`ClusterAgent`](#clusteragent) | Kubernetes Agent which performed the scan. | | `clusterId` | [`ClustersClusterID`](#clustersclusterid) | ID of the Cluster integration which was used to perform the scan. | | `containerName` | [`String!`](#string) | Name of the container that had its image scanned. | | `kind` | [`String!`](#string) | Kind of the Kubernetes resource. | | `name` | [`String!`](#string) | Name of the Kubernetes resource. | | `namespace` | [`String!`](#string) | Kubernetes namespace which the resource resides in. | ### `VulnerablePackage` Represents a vulnerable package. Used in vulnerability dependency data. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `name` | [`String`](#string) | Name of the vulnerable package. | ### `VulnerableProjectsByGrade` Represents vulnerability letter grades with associated projects. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `count` | [`Int!`](#int) | Number of projects within this grade. | | `grade` | [`VulnerabilityGrade!`](#vulnerabilitygrade) | Grade based on the highest severity vulnerability present. | | `projects` | [`ProjectConnection!`](#projectconnection) | Projects within this grade. (see [Connections](#connections)) | ### `WorkItem` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `author` **{warning-solid}** | [`UserCore`](#usercore) | **Introduced** in 15.9. This feature is an Experiment. It can be changed or removed at any time. User that created the work item. | | `closedAt` | [`Time`](#time) | Timestamp of when the work item was closed. | | `confidential` | [`Boolean!`](#boolean) | Indicates the work item is confidential. | | `createNoteEmail` | [`String`](#string) | User specific email address for the work item. | | `createdAt` | [`Time!`](#time) | Timestamp of when the work item was created. | | `description` | [`String`](#string) | Description of the work item. | | `descriptionHtml` | [`String`](#string) | GitLab Flavored Markdown rendering of `description`. | | `id` | [`WorkItemID!`](#workitemid) | Global ID of the work item. | | `iid` | [`ID!`](#id) | Internal ID of the work item. | | `lockVersion` | [`Int!`](#int) | Lock version of the work item. Incremented each time the work item is updated. | | `namespace` **{warning-solid}** | [`Namespace`](#namespace) | **Introduced** in 15.10. This feature is an Experiment. It can be changed or removed at any time. Namespace the work item belongs to. | | `project` **{warning-solid}** | [`Project`](#project) | **Introduced** in 15.3. This feature is an Experiment. It can be changed or removed at any time. Project the work item belongs to. | | `state` | [`WorkItemState!`](#workitemstate) | State of the work item. | | `title` | [`String!`](#string) | Title of the work item. | | `titleHtml` | [`String`](#string) | GitLab Flavored Markdown rendering of `title`. | | `updatedAt` | [`Time!`](#time) | Timestamp of when the work item was last updated. | | `userPermissions` | [`WorkItemPermissions!`](#workitempermissions) | Permissions for the current user on the resource. | | `webUrl` | [`String`](#string) | URL of this object. | | `widgets` | [`[WorkItemWidget!]`](#workitemwidget) | Collection of widgets that belong to the work item. | | `workItemType` | [`WorkItemType!`](#workitemtype) | Type assigned to the work item. | #### Fields with arguments ##### `WorkItem.reference` Internal reference of the work item. Returned in shortened format by default. Returns [`String!`](#string). ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `full` | [`Boolean`](#boolean) | Boolean option specifying whether the reference should be returned in full. | ### `WorkItemPermissions` Check permissions for the current user on a work item. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `adminParentLink` | [`Boolean!`](#boolean) | Indicates the user can perform `admin_parent_link` on this resource. | | `adminWorkItem` | [`Boolean!`](#boolean) | Indicates the user can perform `admin_work_item` on this resource. | | `deleteWorkItem` | [`Boolean!`](#boolean) | Indicates the user can perform `delete_work_item` on this resource. | | `readWorkItem` | [`Boolean!`](#boolean) | Indicates the user can perform `read_work_item` on this resource. | | `setWorkItemMetadata` | [`Boolean!`](#boolean) | Indicates the user can perform `set_work_item_metadata` on this resource. | | `updateWorkItem` | [`Boolean!`](#boolean) | Indicates the user can perform `update_work_item` on this resource. | ### `WorkItemType` #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `iconName` | [`String`](#string) | Icon name of the work item type. | | `id` | [`WorkItemsTypeID!`](#workitemstypeid) | Global ID of the work item type. | | `name` | [`String!`](#string) | Name of the work item type. | ### `WorkItemWidgetAssignees` Represents an assignees widget. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `allowsMultipleAssignees` | [`Boolean`](#boolean) | Indicates whether multiple assignees are allowed. | | `assignees` | [`UserCoreConnection`](#usercoreconnection) | Assignees of the work item. (see [Connections](#connections)) | | `canInviteMembers` | [`Boolean!`](#boolean) | Indicates whether the current user can invite members to the work item's project. | | `type` | [`WorkItemWidgetType`](#workitemwidgettype) | Widget type. | ### `WorkItemWidgetAwardEmoji` Represents the award emoji widget. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `awardEmoji` | [`AwardEmojiConnection`](#awardemojiconnection) | Award emoji on the work item. (see [Connections](#connections)) | | `downvotes` | [`Int!`](#int) | Number of downvotes the work item has received. | | `type` | [`WorkItemWidgetType`](#workitemwidgettype) | Widget type. | | `upvotes` | [`Int!`](#int) | Number of upvotes the work item has received. | ### `WorkItemWidgetCurrentUserTodos` Represents a todos widget. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `type` | [`WorkItemWidgetType`](#workitemwidgettype) | Widget type. | #### Fields with arguments ##### `WorkItemWidgetCurrentUserTodos.currentUserTodos` To-do items for the current user. Returns [`TodoConnection!`](#todoconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `state` | [`TodoStateEnum`](#todostateenum) | State of the to-do items. | ### `WorkItemWidgetDescription` Represents a description widget. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `description` | [`String`](#string) | Description of the work item. | | `descriptionHtml` | [`String`](#string) | GitLab Flavored Markdown rendering of `description`. | | `edited` | [`Boolean!`](#boolean) | Whether the description has been edited since the work item was created. | | `lastEditedAt` | [`Time`](#time) | Timestamp of when the work item's description was last edited. | | `lastEditedBy` | [`UserCore`](#usercore) | User that made the last edit to the work item's description. | | `type` | [`WorkItemWidgetType`](#workitemwidgettype) | Widget type. | ### `WorkItemWidgetHealthStatus` Represents a health status widget. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `healthStatus` | [`HealthStatus`](#healthstatus) | Health status of the work item. | | `type` | [`WorkItemWidgetType`](#workitemwidgettype) | Widget type. | ### `WorkItemWidgetHierarchy` Represents a hierarchy widget. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `children` | [`WorkItemConnection`](#workitemconnection) | Child work items. (see [Connections](#connections)) | | `hasChildren` | [`Boolean!`](#boolean) | Indicates if the work item has children. | | `parent` | [`WorkItem`](#workitem) | Parent work item. | | `type` | [`WorkItemWidgetType`](#workitemwidgettype) | Widget type. | ### `WorkItemWidgetIteration` Represents an iteration widget. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `iteration` | [`Iteration`](#iteration) | Iteration of the work item. | | `type` | [`WorkItemWidgetType`](#workitemwidgettype) | Widget type. | ### `WorkItemWidgetLabels` Represents the labels widget. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `allowsScopedLabels` | [`Boolean`](#boolean) | Indicates whether a scoped label is allowed. | | `labels` | [`LabelConnection`](#labelconnection) | Labels assigned to the work item. (see [Connections](#connections)) | | `type` | [`WorkItemWidgetType`](#workitemwidgettype) | Widget type. | ### `WorkItemWidgetMilestone` Represents a milestone widget. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `milestone` | [`Milestone`](#milestone) | Milestone of the work item. | | `type` | [`WorkItemWidgetType`](#workitemwidgettype) | Widget type. | ### `WorkItemWidgetNotes` Represents a notes widget. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `type` | [`WorkItemWidgetType`](#workitemwidgettype) | Widget type. | #### Fields with arguments ##### `WorkItemWidgetNotes.discussions` Notes on this work item. Returns [`DiscussionConnection`](#discussionconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ###### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `filter` | [`NotesFilterType`](#notesfiltertype) | Type of notes collection: ALL_NOTES, ONLY_COMMENTS, ONLY_ACTIVITY. | ### `WorkItemWidgetNotifications` Represents the notifications widget. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `subscribed` | [`Boolean!`](#boolean) | Whether the current user is subscribed to notifications on the work item. | | `type` | [`WorkItemWidgetType`](#workitemwidgettype) | Widget type. | ### `WorkItemWidgetProgress` Represents a progress widget. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `progress` | [`Int`](#int) | Progress of the work item. | | `type` | [`WorkItemWidgetType`](#workitemwidgettype) | Widget type. | ### `WorkItemWidgetRequirementLegacy` Represents a legacy requirement widget. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `legacyIid` **{warning-solid}** | [`Int`](#int) | **Deprecated** in 15.9. Use Work Item IID instead. | | `type` | [`WorkItemWidgetType`](#workitemwidgettype) | Widget type. | ### `WorkItemWidgetStartAndDueDate` Represents a start and due date widget. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `dueDate` | [`Date`](#date) | Due date of the work item. | | `startDate` | [`Date`](#date) | Start date of the work item. | | `type` | [`WorkItemWidgetType`](#workitemwidgettype) | Widget type. | ### `WorkItemWidgetStatus` Represents a status widget. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `status` | [`String`](#string) | Status of the work item. | | `type` | [`WorkItemWidgetType`](#workitemwidgettype) | Widget type. | ### `WorkItemWidgetTestReports` Represents a test reports widget. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `testReports` | [`TestReportConnection`](#testreportconnection) | Test reports of the work item. (see [Connections](#connections)) | | `type` | [`WorkItemWidgetType`](#workitemwidgettype) | Widget type. | ### `WorkItemWidgetWeight` Represents a weight widget. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `type` | [`WorkItemWidgetType`](#workitemwidgettype) | Widget type. | | `weight` | [`Int`](#int) | Weight of the work item. | ### `Workspace` Represents a remote development workspace. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `actualState` | [`String!`](#string) | Actual state of the workspace. | | `clusterAgent` | [`ClusterAgent!`](#clusteragent) | Kubernetes Agent associated with the workspace. | | `createdAt` | [`Time!`](#time) | Timestamp of workspace creation. | | `deploymentResourceVersion` | [`Int`](#int) | ResourceVersion of the Deployment resource for the workspace. | | `desiredState` | [`String!`](#string) | Desired state of the workspace. | | `desiredStateUpdatedAt` | [`Time!`](#time) | Timestamp of last update to desired state. | | `devfile` | [`String!`](#string) | Source YAML of the devfile used to configure the workspace. | | `devfilePath` | [`String!`](#string) | Project repo git path containing the devfile used to configure the workspace. | | `devfileRef` | [`String!`](#string) | Project repo git ref containing the devfile used to configure the workspace. | | `editor` | [`String!`](#string) | Editor used to configure the workspace. Must match a configured template. | | `id` | [`RemoteDevelopmentWorkspaceID!`](#remotedevelopmentworkspaceid) | Global ID of the workspace. | | `maxHoursBeforeTermination` | [`Int!`](#int) | Maximum hours the workspace can exist before it is automatically terminated. | | `name` | [`String!`](#string) | Name of the workspace in Kubernetes. | | `namespace` | [`String!`](#string) | Namespace of the workspace in Kubernetes. | | `processedDevfile` | [`String!`](#string) | Processed YAML of the devfile used to configure the workspace. | | `projectId` | [`ID!`](#id) | ID of the Project providing the Devfile for the workspace. | | `respondedToAgentAt` | [`Time`](#time) | Timestamp of last response sent to GA4K for the workspace. | | `updatedAt` | [`Time!`](#time) | Timestamp of last update to any mutable workspace property. | | `url` | [`String!`](#string) | URL of the workspace. | | `user` | [`UserCore!`](#usercore) | Owner of the workspace. | ### `X509Certificate` Represents an X.509 certificate. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `certificateStatus` | [`String!`](#string) | Indicates if the certificate is good or revoked. | | `createdAt` | [`Time!`](#time) | Timestamp of when the certificate was saved. | | `email` | [`String!`](#string) | Email associated with the cerificate. | | `id` | [`ID!`](#id) | ID of the certificate. | | `serialNumber` | [`String!`](#string) | Serial number of the certificate. | | `subject` | [`String!`](#string) | Subject of the certificate. | | `subjectKeyIdentifier` | [`String!`](#string) | Subject key identifier of the certificate. | | `updatedAt` | [`Time!`](#time) | Timestamp of when the certificate was last updated. | | `x509Issuer` | [`X509Issuer!`](#x509issuer) | Issuer of the certificate. | ### `X509Issuer` Issuer of an X.509 certificate. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `createdAt` | [`Time`](#time) | Timestamp of when the issuer was created. | | `crlUrl` | [`String`](#string) | Certificate revokation list of the issuer. | | `id` | [`ID`](#id) | ID of the issuer. | | `subject` | [`String`](#string) | Subject of the issuer. | | `subjectKeyIdentifier` | [`String`](#string) | Subject key identifier of the issuer. | | `updatedAt` | [`Time`](#time) | Timestamp of when the issuer was last updated. | ### `X509Signature` X.509 signature for a signed commit. #### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `commitSha` | [`String`](#string) | SHA of the associated commit. | | `project` | [`Project`](#project) | Project of the associated commit. | | `user` | [`UserCore`](#usercore) | User associated with the key. | | `verificationStatus` | [`VerificationStatus`](#verificationstatus) | Indicates verification status of the associated key or certificate. | | `x509Certificate` | [`X509Certificate`](#x509certificate) | Certificate used for the signature. | ## Enumeration types Also called _Enums_, enumeration types are a special kind of scalar that is restricted to a particular set of allowed values. For more information, see [Enumeration Types](https://graphql.org/learn/schema/#enumeration-types) on `graphql.org`. ### `AccessLevelEnum` Access level to a resource. | Value | Description | | ----- | ----------- | | `ADMIN` | Admin access. | | `DEVELOPER` | Developer access. | | `GUEST` | Guest access. | | `MAINTAINER` | Maintainer access. | | `MINIMAL_ACCESS` | Minimal access. | | `NO_ACCESS` | No access. | | `OWNER` | Owner access. | | `REPORTER` | Reporter access. | ### `AgentTokenStatus` Agent token statuses. | Value | Description | | ----- | ----------- | | `ACTIVE` | Active agent token. | | `REVOKED` | Revoked agent token. | ### `AlertManagementAlertSort` Values for sorting alerts. | Value | Description | | ----- | ----------- | | `CREATED_ASC` | Created at ascending order. | | `CREATED_DESC` | Created at descending order. | | `CREATED_TIME_ASC` | Created time by ascending order. | | `CREATED_TIME_DESC` | Created time by descending order. | | `ENDED_AT_ASC` | End time by ascending order. | | `ENDED_AT_DESC` | End time by descending order. | | `EVENT_COUNT_ASC` | Events count by ascending order. | | `EVENT_COUNT_DESC` | Events count by descending order. | | `SEVERITY_ASC` | Severity from less critical to more critical. | | `SEVERITY_DESC` | Severity from more critical to less critical. | | `STARTED_AT_ASC` | Start time by ascending order. | | `STARTED_AT_DESC` | Start time by descending order. | | `STATUS_ASC` | Status by order: `Ignored > Resolved > Acknowledged > Triggered`. | | `STATUS_DESC` | Status by order: `Triggered > Acknowledged > Resolved > Ignored`. | | `UPDATED_ASC` | Updated at ascending order. | | `UPDATED_DESC` | Updated at descending order. | | `UPDATED_TIME_ASC` | Created time by ascending order. | | `UPDATED_TIME_DESC` | Created time by descending order. | | `created_asc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `CREATED_ASC`. | | `created_desc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `CREATED_DESC`. | | `updated_asc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `UPDATED_ASC`. | | `updated_desc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `UPDATED_DESC`. | ### `AlertManagementDomainFilter` Filters the alerts based on given domain. | Value | Description | | ----- | ----------- | | `operations` | Alerts for operations domain. | | `threat_monitoring` **{warning-solid}** | **Deprecated** in 15.0. Network policies are deprecated and will be removed in GitLab 16.0. | ### `AlertManagementIntegrationType` Values of types of integrations. | Value | Description | | ----- | ----------- | | `HTTP` | Integration with any monitoring tool. | | `PROMETHEUS` | Prometheus integration. | ### `AlertManagementPayloadAlertFieldName` Values for alert field names used in the custom mapping. | Value | Description | | ----- | ----------- | | `DESCRIPTION` | A high-level summary of the problem. | | `END_TIME` | The resolved time of the incident. | | `FINGERPRINT` | The unique identifier of the alert. This can be used to group occurrences of the same alert. | | `GITLAB_ENVIRONMENT_NAME` | The name of the associated GitLab environment. | | `HOSTS` | One or more hosts, as to where this incident occurred. | | `MONITORING_TOOL` | The name of the associated monitoring tool. | | `SERVICE` | The affected service. | | `SEVERITY` | The severity of the alert. | | `START_TIME` | The time of the incident. | | `TITLE` | The title of the incident. | ### `AlertManagementPayloadAlertFieldType` Values for alert field types used in the custom mapping. | Value | Description | | ----- | ----------- | | `ARRAY` | Array field type. | | `DATETIME` | DateTime field type. | | `STRING` | String field type. | ### `AlertManagementSeverity` Alert severity values. | Value | Description | | ----- | ----------- | | `CRITICAL` | Critical severity. | | `HIGH` | High severity. | | `INFO` | Info severity. | | `LOW` | Low severity. | | `MEDIUM` | Medium severity. | | `UNKNOWN` | Unknown severity. | ### `AlertManagementStatus` Alert status values. | Value | Description | | ----- | ----------- | | `ACKNOWLEDGED` | Someone is actively investigating the problem. | | `IGNORED` | No action will be taken. | | `RESOLVED` | The problem has been addressed. | | `TRIGGERED` | Investigation has not started. | ### `ApiFuzzingScanMode` All possible ways to specify the API surface for an API fuzzing scan. | Value | Description | | ----- | ----------- | | `HAR` | The API surface is specified by a HAR file. | | `OPENAPI` | The API surface is specified by a OPENAPI file. | | `POSTMAN` | The API surface is specified by a POSTMAN file. | ### `ApprovalRuleType` The kind of an approval rule. | Value | Description | | ----- | ----------- | | `ANY_APPROVER` | A `any_approver` approval rule. | | `CODE_OWNER` | A `code_owner` approval rule. | | `REGULAR` | A `regular` approval rule. | | `REPORT_APPROVER` | A `report_approver` approval rule. | ### `AssigneeWildcardId` Assignee ID wildcard values. | Value | Description | | ----- | ----------- | | `ANY` | An assignee is assigned. | | `NONE` | No assignee is assigned. | ### `AvailabilityEnum` User availability status. | Value | Description | | ----- | ----------- | | `BUSY` | Busy. | | `NOT_SET` | Not Set. | ### `AvailableExportFields` Available fields to be exported as CSV. | Value | Description | | ----- | ----------- | | `AUTHOR` | Author name. | | `AUTHOR_USERNAME` | Author username. | | `CREATED_AT` | Date of creation. | | `DESCRIPTION` | Description. | | `ID` | Unique identifier. | | `TITLE` | Title. | | `TYPE` | Type of the work item. | ### `BlobViewersType` Types of blob viewers. | Value | Description | | ----- | ----------- | | `auxiliary` | Auxiliary blob viewers type. | | `rich` | Rich blob viewers type. | | `simple` | Simple blob viewers type. | ### `CiConfigIncludeType` Include type. | Value | Description | | ----- | ----------- | | `component` | Component include. | | `file` | Project file include. | | `local` | Local include. | | `remote` | Remote include. | | `template` | Template include. | ### `CiConfigStatus` Values for YAML processor result. | Value | Description | | ----- | ----------- | | `INVALID` | Configuration file is not valid. | | `VALID` | Configuration file is valid. | ### `CiFreezePeriodStatus` Deploy freeze period status. | Value | Description | | ----- | ----------- | | `ACTIVE` | Freeze period is active. | | `INACTIVE` | Freeze period is inactive. | ### `CiJobKind` | Value | Description | | ----- | ----------- | | `BRIDGE` | Bridge CI job connecting a parent and child pipeline. | | `BUILD` | Standard CI job. | ### `CiJobStatus` | Value | Description | | ----- | ----------- | | `CANCELED` | A job that is canceled. | | `CREATED` | A job that is created. | | `FAILED` | A job that is failed. | | `MANUAL` | A job that is manual. | | `PENDING` | A job that is pending. | | `PREPARING` | A job that is preparing. | | `RUNNING` | A job that is running. | | `SCHEDULED` | A job that is scheduled. | | `SKIPPED` | A job that is skipped. | | `SUCCESS` | A job that is success. | | `WAITING_FOR_RESOURCE` | A job that is waiting for resource. | ### `CiJobTokenScopeDirection` Direction of access. | Value | Description | | ----- | ----------- | | `INBOUND` | Target projects in the inbound allowlist can access the scope project through their job tokens. | | `OUTBOUND` | Job token scope project can access target project in the outbound allowlist. | ### `CiRunnerAccessLevel` | Value | Description | | ----- | ----------- | | `NOT_PROTECTED` | A runner that is not protected. | | `REF_PROTECTED` | A runner that is ref protected. | ### `CiRunnerJobExecutionStatus` | Value | Description | | ----- | ----------- | | `IDLE` **{warning-solid}** | **Introduced** in 15.7. This feature is an Experiment. It can be changed or removed at any time. Runner is idle. | | `RUNNING` **{warning-solid}** | **Introduced** in 15.7. This feature is an Experiment. It can be changed or removed at any time. Runner is executing jobs. | ### `CiRunnerMembershipFilter` Values for filtering runners in namespaces. The previous type name `RunnerMembershipFilter` was deprecated in 15.4. | Value | Description | | ----- | ----------- | | `ALL_AVAILABLE` **{warning-solid}** | **Introduced** in 15.5. This feature is an Experiment. It can be changed or removed at any time. Include all runners. This list includes runners for all projects in the group and subgroups, as well as for the parent groups and instance. | | `DESCENDANTS` | Include runners that have either a direct or inherited relationship. These runners can be specific to a project or a group. | | `DIRECT` | Include runners that have a direct relationship. | ### `CiRunnerSort` Values for sorting runners. | Value | Description | | ----- | ----------- | | `CONTACTED_ASC` | Ordered by contacted_at in ascending order. | | `CONTACTED_DESC` | Ordered by contacted_at in descending order. | | `CREATED_ASC` | Ordered by created_at in ascending order. | | `CREATED_DESC` | Ordered by created_at in descending order. | | `TOKEN_EXPIRES_AT_ASC` | Ordered by token_expires_at in ascending order. | | `TOKEN_EXPIRES_AT_DESC` | Ordered by token_expires_at in descending order. | ### `CiRunnerStatus` | Value | Description | | ----- | ----------- | | `ACTIVE` **{warning-solid}** | **Deprecated** in 14.6. This was renamed. Use: [`CiRunner.paused`](#cirunnerpaused). | | `NEVER_CONTACTED` | Runner that has never contacted this instance. | | `OFFLINE` | Runner that has not contacted this instance within the last 2 hours. Will be considered `STALE` if offline for more than 3 months. | | `ONLINE` | Runner that contacted this instance within the last 2 hours. | | `PAUSED` **{warning-solid}** | **Deprecated** in 14.6. This was renamed. Use: [`CiRunner.paused`](#cirunnerpaused). | | `STALE` | Runner that has not contacted this instance within the last 3 months. | ### `CiRunnerType` | Value | Description | | ----- | ----------- | | `GROUP_TYPE` | A runner that is group type. | | `INSTANCE_TYPE` | A runner that is instance type. | | `PROJECT_TYPE` | A runner that is project type. | ### `CiRunnerUpgradeStatus` | Value | Description | | ----- | ----------- | | `AVAILABLE` | Upgrade is available for the runner. | | `INVALID` | Runner version is not valid. | | `NOT_AVAILABLE` | Upgrade is not available for the runner. | | `RECOMMENDED` | Upgrade is available and recommended for the runner. | ### `CiVariableSort` Values for sorting variables. | Value | Description | | ----- | ----------- | | `KEY_ASC` | Sorted by key in ascending order. | | `KEY_DESC` | Sorted by key in descending order. | ### `CiVariableType` | Value | Description | | ----- | ----------- | | `ENV_VAR` | Env var type. | | `FILE` | File type. | ### `CodeQualityDegradationSeverity` | Value | Description | | ----- | ----------- | | `BLOCKER` | Code Quality degradation has a status of blocker. | | `CRITICAL` | Code Quality degradation has a status of critical. | | `INFO` | Code Quality degradation has a status of info. | | `MAJOR` | Code Quality degradation has a status of major. | | `MINOR` | Code Quality degradation has a status of minor. | | `UNKNOWN` | Code Quality degradation has a status of unknown. | ### `CommitActionMode` Mode of a commit action. | Value | Description | | ----- | ----------- | | `CHMOD` | Chmod command. | | `CREATE` | Create command. | | `DELETE` | Delete command. | | `MOVE` | Move command. | | `UPDATE` | Update command. | ### `CommitEncoding` | Value | Description | | ----- | ----------- | | `BASE64` | Base64 encoding. | | `TEXT` | Text encoding. | ### `ComplianceFrameworkPresenceFilter` ComplianceFramework of a project for filtering. | Value | Description | | ----- | ----------- | | `ANY` | Any compliance framework is assigned. | | `NONE` | No compliance framework is assigned. | ### `ComplianceViolationReason` Reason for the compliance violation. | Value | Description | | ----- | ----------- | | `APPROVED_BY_COMMITTER` | Approved by committer. | | `APPROVED_BY_INSUFFICIENT_USERS` | Approved by insufficient users. | | `APPROVED_BY_MERGE_REQUEST_AUTHOR` | Approved by merge request author. | ### `ComplianceViolationSeverity` Severity of the compliance violation. | Value | Description | | ----- | ----------- | | `CRITICAL` | Critical severity. | | `HIGH` | High severity. | | `INFO` | Info severity. | | `LOW` | Low severity. | | `MEDIUM` | Medium severity. | ### `ComplianceViolationSort` Compliance violation sort values. | Value | Description | | ----- | ----------- | | `MERGED_AT_ASC` | Date merged in ascending order, further sorted by ID in ascending order. | | `MERGED_AT_DESC` | Date merged in descending order, further sorted by ID in descending order. | | `MERGE_REQUEST_TITLE_ASC` | Merge request title in ascending order, further sorted by ID in ascending order. | | `MERGE_REQUEST_TITLE_DESC` | Merge request title in descending order, further sorted by ID in descending order. | | `SEVERITY_LEVEL_ASC` | Severity in ascending order, further sorted by ID in ascending order. | | `SEVERITY_LEVEL_DESC` | Severity in descending order, further sorted by ID in descending order. | | `VIOLATION_REASON_ASC` | Violation reason in ascending order, further sorted by ID in ascending order. | | `VIOLATION_REASON_DESC` | Violation reason in descending order, further sorted by ID in descending order. | ### `ConanMetadatumFileTypeEnum` Conan file types. | Value | Description | | ----- | ----------- | | `PACKAGE_FILE` | A package file type. | | `RECIPE_FILE` | A recipe file type. | ### `ContactSort` Values for sorting contacts. | Value | Description | | ----- | ----------- | | `CREATED_ASC` | Created at ascending order. | | `CREATED_DESC` | Created at descending order. | | `DESCRIPTION_ASC` | Description in ascending order. | | `DESCRIPTION_DESC` | Description in descending order. | | `EMAIL_ASC` | Email in ascending order. | | `EMAIL_DESC` | Email in descending order. | | `FIRST_NAME_ASC` | First name in ascending order. | | `FIRST_NAME_DESC` | First name in descending order. | | `LAST_NAME_ASC` | Last name in ascending order. | | `LAST_NAME_DESC` | Last name in descending order. | | `ORGANIZATION_ASC` | Organization in ascending order. | | `ORGANIZATION_DESC` | Organization in descending order. | | `PHONE_ASC` | Phone in ascending order. | | `PHONE_DESC` | Phone in descending order. | | `UPDATED_ASC` | Updated at ascending order. | | `UPDATED_DESC` | Updated at descending order. | | `created_asc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `CREATED_ASC`. | | `created_desc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `CREATED_DESC`. | | `updated_asc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `UPDATED_ASC`. | | `updated_desc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `UPDATED_DESC`. | ### `ContainerExpirationPolicyCadenceEnum` | Value | Description | | ----- | ----------- | | `EVERY_DAY` | Every day. | | `EVERY_MONTH` | Every month. | | `EVERY_THREE_MONTHS` | Every three months. | | `EVERY_TWO_WEEKS` | Every two weeks. | | `EVERY_WEEK` | Every week. | ### `ContainerExpirationPolicyKeepEnum` | Value | Description | | ----- | ----------- | | `FIFTY_TAGS` | 50 tags per image name. | | `FIVE_TAGS` | 5 tags per image name. | | `ONE_HUNDRED_TAGS` | 100 tags per image name. | | `ONE_TAG` | 1 tag per image name. | | `TEN_TAGS` | 10 tags per image name. | | `TWENTY_FIVE_TAGS` | 25 tags per image name. | ### `ContainerExpirationPolicyOlderThanEnum` | Value | Description | | ----- | ----------- | | `FOURTEEN_DAYS` | 14 days until tags are automatically removed. | | `NINETY_DAYS` | 90 days until tags are automatically removed. | | `SEVEN_DAYS` | 7 days until tags are automatically removed. | | `SIXTY_DAYS` | 60 days until tags are automatically removed. | | `THIRTY_DAYS` | 30 days until tags are automatically removed. | ### `ContainerRepositoryCleanupStatus` Status of the tags cleanup of a container repository. | Value | Description | | ----- | ----------- | | `ONGOING` | Tags cleanup is ongoing. | | `SCHEDULED` | Tags cleanup is scheduled and is going to be executed shortly. | | `UNFINISHED` | Tags cleanup has been partially executed. There are still remaining tags to delete. | | `UNSCHEDULED` | Tags cleanup is not scheduled. This is the default state. | ### `ContainerRepositorySort` Values for sorting container repositories. | Value | Description | | ----- | ----------- | | `CREATED_ASC` | Created at ascending order. | | `CREATED_DESC` | Created at descending order. | | `NAME_ASC` | Name by ascending order. | | `NAME_DESC` | Name by descending order. | | `UPDATED_ASC` | Updated at ascending order. | | `UPDATED_DESC` | Updated at descending order. | | `created_asc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `CREATED_ASC`. | | `created_desc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `CREATED_DESC`. | | `updated_asc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `UPDATED_ASC`. | | `updated_desc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `UPDATED_DESC`. | ### `ContainerRepositoryStatus` Status of a container repository. | Value | Description | | ----- | ----------- | | `DELETE_FAILED` | Delete Failed status. | | `DELETE_ONGOING` | Delete Ongoing status. | | `DELETE_SCHEDULED` | Delete Scheduled status. | ### `ContainerRepositoryTagSort` Values for sorting tags. | Value | Description | | ----- | ----------- | | `NAME_ASC` | Ordered by name in ascending order. | | `NAME_DESC` | Ordered by name in descending order. | ### `CustomerRelationsContactState` | Value | Description | | ----- | ----------- | | `active` | Active contacts. | | `all` | All available contacts. | | `inactive` | Inactive contacts. | ### `CustomerRelationsOrganizationState` | Value | Description | | ----- | ----------- | | `active` | Active organizations. | | `all` | All available organizations. | | `inactive` | Inactive organizations. | ### `DastPreScanVerificationCheckType` Check type of the pre scan verification step. | Value | Description | | ----- | ----------- | | `AUTHENTICATION` | Authentication check. | | `CONNECTION` | Connection check. | | `CRAWLING` | Crawling check. | ### `DastPreScanVerificationStatus` Status of DAST pre scan verification. | Value | Description | | ----- | ----------- | | `COMPLETE` | Pre Scan Verification complete without errors. | | `COMPLETE_WITH_ERRORS` | Pre Scan Verification finished with one or more errors. | | `FAILED` | Pre Scan Validation unable to finish. | | `RUNNING` | Pre Scan Verification in execution. | ### `DastProfileCadenceUnit` Unit for the duration of Dast Profile Cadence. | Value | Description | | ----- | ----------- | | `DAY` | DAST Profile Cadence duration in days. | | `MONTH` | DAST Profile Cadence duration in months. | | `WEEK` | DAST Profile Cadence duration in weeks. | | `YEAR` | DAST Profile Cadence duration in years. | ### `DastScanMethodType` Scan method to be used by the scanner. | Value | Description | | ----- | ----------- | | `GRAPHQL` | GraphQL scan method. | | `HAR` | HAR scan method. | | `OPENAPI` | OpenAPI scan method. | | `POSTMAN_COLLECTION` | Postman scan method. | | `WEBSITE` | Website scan method. | ### `DastScanTypeEnum` | Value | Description | | ----- | ----------- | | `ACTIVE` | Active DAST scan. This scan will make active attacks against the target site. | | `PASSIVE` | Passive DAST scan. This scan will not make active attacks against the target site. | ### `DastSiteProfileValidationStatusEnum` | Value | Description | | ----- | ----------- | | `FAILED_VALIDATION` | Site validation process finished but failed. | | `INPROGRESS_VALIDATION` | Site validation process is in progress. | | `NONE` | No site validation exists. | | `PASSED_VALIDATION` | Site validation process finished successfully. | | `PENDING_VALIDATION` | Site validation process has not started. | ### `DastSiteValidationStatusEnum` | Value | Description | | ----- | ----------- | | `FAILED_VALIDATION` | Site validation process finished but failed. | | `INPROGRESS_VALIDATION` | Site validation process is in progress. | | `PASSED_VALIDATION` | Site validation process finished successfully. | | `PENDING_VALIDATION` | Site validation process has not started. | ### `DastSiteValidationStrategyEnum` | Value | Description | | ----- | ----------- | | `HEADER` | Header validation. | | `META_TAG` | Meta tag validation. | | `TEXT_FILE` | Text file validation. | ### `DastTargetTypeEnum` | Value | Description | | ----- | ----------- | | `API` | API target. | | `WEBSITE` | Website target. | ### `DataVisualizationColorEnum` Color of the data visualization palette. | Value | Description | | ----- | ----------- | | `AQUA` | Aqua color. | | `BLUE` | Blue color. | | `GREEN` | Green color. | | `MAGENTA` | Magenta color. | | `ORANGE` | Orange color. | ### `DataVisualizationWeightEnum` Weight of the data visualization palette. | Value | Description | | ----- | ----------- | | `WEIGHT_100` | 100 weight. | | `WEIGHT_200` | 200 weight. | | `WEIGHT_300` | 300 weight. | | `WEIGHT_400` | 400 weight. | | `WEIGHT_50` | 50 weight. | | `WEIGHT_500` | 500 weight. | | `WEIGHT_600` | 600 weight. | | `WEIGHT_700` | 700 weight. | | `WEIGHT_800` | 800 weight. | | `WEIGHT_900` | 900 weight. | | `WEIGHT_950` | 950 weight. | ### `DependencyProxyManifestStatus` | Value | Description | | ----- | ----------- | | `DEFAULT` | Dependency proxy manifest has a status of default. | | `ERROR` | Dependency proxy manifest has a status of error. | | `PENDING_DESTRUCTION` | Dependency proxy manifest has a status of pending_destruction. | | `PROCESSING` | Dependency proxy manifest has a status of processing. | ### `DependencySort` Values for sorting dependencies. | Value | Description | | ----- | ----------- | | `NAME_ASC` | Name by ascending order. | | `NAME_DESC` | Name by descending order. | | `PACKAGER_ASC` | Packager by ascending order. | | `PACKAGER_DESC` | Packager by descending order. | ### `DeploymentApprovalSummaryStatus` Status of the deployment approval summary. | Value | Description | | ----- | ----------- | | `APPROVED` | Summarized deployment approval status that is approved. | | `PENDING_APPROVAL` | Summarized deployment approval status that is pending approval. | | `REJECTED` | Summarized deployment approval status that is rejected. | ### `DeploymentStatus` All deployment statuses. | Value | Description | | ----- | ----------- | | `BLOCKED` | A deployment that is blocked. | | `CANCELED` | A deployment that is canceled. | | `CREATED` | A deployment that is created. | | `FAILED` | A deployment that is failed. | | `RUNNING` | A deployment that is running. | | `SKIPPED` | A deployment that is skipped. | | `SUCCESS` | A deployment that is success. | ### `DeploymentTier` All environment deployment tiers. | Value | Description | | ----- | ----------- | | `DEVELOPMENT` | Development. | | `OTHER` | Other. | | `PRODUCTION` | Production. | | `STAGING` | Staging. | | `TESTING` | Testing. | ### `DeploymentsApprovalStatus` Status of the deployment approval. | Value | Description | | ----- | ----------- | | `APPROVED` | A deployment approval that is approved. | | `REJECTED` | A deployment approval that is rejected. | ### `DesignCollectionCopyState` Copy state of a DesignCollection. | Value | Description | | ----- | ----------- | | `ERROR` | The DesignCollection encountered an error during a copy. | | `IN_PROGRESS` | The DesignCollection is being copied. | | `READY` | The DesignCollection has no copy in progress. | ### `DesignVersionEvent` Mutation event of a design within a version. | Value | Description | | ----- | ----------- | | `CREATION` | A creation event. | | `DELETION` | A deletion event. | | `MODIFICATION` | A modification event. | | `NONE` | No change. | ### `DetailedMergeStatus` Detailed representation of whether a GitLab merge request can be merged. | Value | Description | | ----- | ----------- | | `BLOCKED_STATUS` | Merge request is blocked by another merge request. | | `BROKEN_STATUS` | Can not merge the source into the target branch, potential conflict. | | `CHECKING` | Currently checking for mergeability. | | `CI_MUST_PASS` | Pipeline must succeed before merging. | | `CI_STILL_RUNNING` | Pipeline is still running. | | `DISCUSSIONS_NOT_RESOLVED` | Discussions must be resolved before merging. | | `DRAFT_STATUS` | Merge request must not be draft before merging. | | `EXTERNAL_STATUS_CHECKS` | Status checks must pass. | | `MERGEABLE` | Branch can be merged. | | `NOT_APPROVED` | Merge request must be approved before merging. | | `NOT_OPEN` | Merge request must be open before merging. | | `POLICIES_DENIED` | There are denied policies for the merge request. | | `PREPARING` | Merge request diff is being created. | | `UNCHECKED` | Merge status has not been checked. | ### `DiffPositionType` Type of file the position refers to. | Value | Description | | ----- | ----------- | | `image` | An image. | | `text` | Text file. | ### `DoraMetricBucketingInterval` All possible ways that DORA metrics can be aggregated. | Value | Description | | ----- | ----------- | | `ALL` | All data points are combined into a single value. | | `DAILY` | Data points are combined into chunks by day. | | `MONTHLY` | Data points are combined into chunks by month. | ### `DoraMetricType` All supported DORA metric types. | Value | Description | | ----- | ----------- | | `CHANGE_FAILURE_RATE` | Change failure rate. | | `DEPLOYMENT_FREQUENCY` | Deployment frequency. | | `LEAD_TIME_FOR_CHANGES` | Lead time for changes. | | `TIME_TO_RESTORE_SERVICE` | Time to restore service. | ### `EntryType` Type of a tree entry. | Value | Description | | ----- | ----------- | | `blob` | File tree type. | | `commit` | Commit tree type. | | `tree` | Directory tree type. | ### `EpicSort` Roadmap sort values. | Value | Description | | ----- | ----------- | | `CREATED_AT_ASC` | Sort by created_at by ascending order. | | `CREATED_AT_DESC` | Sort by created_at by descending order. | | `END_DATE_ASC` | Sort by end date in ascending order. | | `END_DATE_DESC` | Sort by end date in descending order. | | `START_DATE_ASC` | Sort by start date in ascending order. | | `START_DATE_DESC` | Sort by start date in descending order. | | `TITLE_ASC` | Sort by title in ascending order. | | `TITLE_DESC` | Sort by title in descending order. | | `UPDATED_AT_ASC` | Sort by updated_at by ascending order. | | `UPDATED_AT_DESC` | Sort by updated_at by descending order. | | `end_date_asc` **{warning-solid}** | **Deprecated** in 13.11. Use END_DATE_ASC. | | `end_date_desc` **{warning-solid}** | **Deprecated** in 13.11. Use END_DATE_DESC. | | `start_date_asc` **{warning-solid}** | **Deprecated** in 13.11. Use START_DATE_ASC. | | `start_date_desc` **{warning-solid}** | **Deprecated** in 13.11. Use START_DATE_DESC. | ### `EpicState` State of an epic. | Value | Description | | ----- | ----------- | | `all` | All epics. | | `closed` | Closed epics. | | `opened` | Open epics. | ### `EpicStateEvent` State event of an epic. | Value | Description | | ----- | ----------- | | `CLOSE` | Close the epic. | | `REOPEN` | Reopen the epic. | ### `EpicWildcardId` Epic ID wildcard values. | Value | Description | | ----- | ----------- | | `ANY` | Any epic is assigned. | | `NONE` | No epic is assigned. | ### `EscalationRuleStatus` Escalation rule statuses. | Value | Description | | ----- | ----------- | | `ACKNOWLEDGED` | . | | `RESOLVED` | . | ### `EventAction` Event action. | Value | Description | | ----- | ----------- | | `APPROVED` | Approved action. | | `CLOSED` | Closed action. | | `COMMENTED` | Commented action. | | `CREATED` | Created action. | | `DESTROYED` | Destroyed action. | | `EXPIRED` | Expired action. | | `JOINED` | Joined action. | | `LEFT` | Left action. | | `MERGED` | Merged action. | | `PUSHED` | Pushed action. | | `REOPENED` | Reopened action. | | `UPDATED` | Updated action. | ### `GeoRegistryAction` Action to trigger on one or more Geo registries. | Value | Description | | ----- | ----------- | | `RESYNC` | Resync a registry. | | `REVERIFY` | Reverify a registry. | ### `GeoRegistryClass` Geo registry class. | Value | Description | | ----- | ----------- | | `CI_SECURE_FILE_REGISTRY` | Geo::CiSecureFileRegistry registry class. | | `CONTAINER_REPOSITORY_REGISTRY` | Geo::ContainerRepositoryRegistry registry class. | | `DEPENDENCY_PROXY_BLOB_REGISTRY` | Geo::DependencyProxyBlobRegistry registry class. | | `DEPENDENCY_PROXY_MANIFEST_REGISTRY` | Geo::DependencyProxyManifestRegistry registry class. | | `JOB_ARTIFACT_REGISTRY` | Geo::JobArtifactRegistry registry class. | | `LFS_OBJECT_REGISTRY` | Geo::LfsObjectRegistry registry class. | | `MERGE_REQUEST_DIFF_REGISTRY` | Geo::MergeRequestDiffRegistry registry class. | | `PACKAGE_FILE_REGISTRY` | Geo::PackageFileRegistry registry class. | | `PAGES_DEPLOYMENT_REGISTRY` | Geo::PagesDeploymentRegistry registry class. | | `PIPELINE_ARTIFACT_REGISTRY` | Geo::PipelineArtifactRegistry registry class. | | `PROJECT_WIKI_REPOSITORY_REGISTRY` | Geo::ProjectWikiRepositoryRegistry registry class. | | `SNIPPET_REPOSITORY_REGISTRY` | Geo::SnippetRepositoryRegistry registry class. | | `TERRAFORM_STATE_VERSION_REGISTRY` | Geo::TerraformStateVersionRegistry registry class. | | `UPLOAD_REGISTRY` | Geo::UploadRegistry registry class. | ### `GitlabSubscriptionsUserRole` Role of User. | Value | Description | | ----- | ----------- | | `DEVELOPER` | Developer. | | `GUEST` | Guest. | | `MAINTAINER` | Maintainer. | | `OWNER` | Owner. | | `REPORTER` | Reporter. | ### `GroupMemberRelation` Group member relation. | Value | Description | | ----- | ----------- | | `DESCENDANTS` | Members in the group's subgroups. | | `DIRECT` | Members in the group itself. | | `INHERITED` | Members in the group's ancestor groups. | | `SHARED_FROM_GROUPS` | Invited group's members. | ### `GroupPermission` User permission on groups. | Value | Description | | ----- | ----------- | | `CREATE_PROJECTS` | Groups where the user can create projects. | | `IMPORT_PROJECTS` | Groups where the user can import projects to. | | `TRANSFER_PROJECTS` | Groups where the user can transfer projects to. | ### `GroupReleaseSort` Values for sorting releases belonging to a group. | Value | Description | | ----- | ----------- | | `RELEASED_AT_ASC` | Released at by ascending order. | | `RELEASED_AT_DESC` | Released at by descending order. | ### `HealthStatus` Health status of an issue or epic. | Value | Description | | ----- | ----------- | | `atRisk` | At risk. | | `needsAttention` | Needs attention. | | `onTrack` | On track. | ### `HealthStatusFilter` Health status of an issue or epic for filtering. | Value | Description | | ----- | ----------- | | `ANY` | Any health status is assigned. | | `NONE` | No health status is assigned. | | `atRisk` | At risk. | | `needsAttention` | Needs attention. | | `onTrack` | On track. | ### `IssuableResourceLinkType` Issuable resource link type enum. | Value | Description | | ----- | ----------- | | `general` | General link type. | | `pagerduty` | Pagerduty link type. | | `slack` | Slack link type. | | `zoom` | Zoom link type. | ### `IssuableSearchableField` Fields to perform the search in. | Value | Description | | ----- | ----------- | | `DESCRIPTION` | Search in description field. | | `TITLE` | Search in title field. | ### `IssuableSeverity` Incident severity. | Value | Description | | ----- | ----------- | | `CRITICAL` | Critical severity. | | `HIGH` | High severity. | | `LOW` | Low severity. | | `MEDIUM` | Medium severity. | | `UNKNOWN` | Unknown severity. | ### `IssuableState` State of a GitLab issue or merge request. | Value | Description | | ----- | ----------- | | `all` | All available. | | `closed` | In closed state. | | `locked` | Discussion has been locked. | | `opened` | In open state. | ### `IssuableSubscriptionEvent` Values for subscribing and unsubscribing from issuables. | Value | Description | | ----- | ----------- | | `SUBSCRIBE` | Subscribe to an issuable. | | `UNSUBSCRIBE` | Unsubscribe from an issuable. | ### `IssueCreationIterationWildcardId` Iteration ID wildcard values for issue creation. | Value | Description | | ----- | ----------- | | `CURRENT` | Current iteration. | ### `IssueEscalationStatus` Issue escalation status values. | Value | Description | | ----- | ----------- | | `ACKNOWLEDGED` | Someone is actively investigating the problem. | | `IGNORED` | No action will be taken. | | `RESOLVED` | The problem has been addressed. | | `TRIGGERED` | Investigation has not started. | ### `IssueSort` Values for sorting issues. | Value | Description | | ----- | ----------- | | `BLOCKING_ISSUES_ASC` | Blocking issues count by ascending order. | | `BLOCKING_ISSUES_DESC` | Blocking issues count by descending order. | | `CLOSED_AT_ASC` | Closed time by ascending order. | | `CLOSED_AT_DESC` | Closed time by descending order. | | `CREATED_ASC` | Created at ascending order. | | `CREATED_DESC` | Created at descending order. | | `DUE_DATE_ASC` | Due date by ascending order. | | `DUE_DATE_DESC` | Due date by descending order. | | `ESCALATION_STATUS_ASC` | Status from triggered to resolved. | | `ESCALATION_STATUS_DESC` | Status from resolved to triggered. | | `HEALTH_STATUS_ASC` | Issues with healthy issues first. | | `HEALTH_STATUS_DESC` | Issues with unhealthy issues first. | | `LABEL_PRIORITY_ASC` | Label priority by ascending order. | | `LABEL_PRIORITY_DESC` | Label priority by descending order. | | `MILESTONE_DUE_ASC` | Milestone due date by ascending order. | | `MILESTONE_DUE_DESC` | Milestone due date by descending order. | | `POPULARITY_ASC` | Number of upvotes (awarded "thumbs up" emoji) by ascending order. | | `POPULARITY_DESC` | Number of upvotes (awarded "thumbs up" emoji) by descending order. | | `PRIORITY_ASC` | Priority by ascending order. | | `PRIORITY_DESC` | Priority by descending order. | | `PUBLISHED_ASC` | Published issues shown last. | | `PUBLISHED_DESC` | Published issues shown first. | | `RELATIVE_POSITION_ASC` | Relative position by ascending order. | | `SEVERITY_ASC` | Severity from less critical to more critical. | | `SEVERITY_DESC` | Severity from more critical to less critical. | | `SLA_DUE_AT_ASC` | Issues with earliest SLA due time shown first. | | `SLA_DUE_AT_DESC` | Issues with latest SLA due time shown first. | | `TITLE_ASC` | Title by ascending order. | | `TITLE_DESC` | Title by descending order. | | `UPDATED_ASC` | Updated at ascending order. | | `UPDATED_DESC` | Updated at descending order. | | `WEIGHT_ASC` | Weight by ascending order. | | `WEIGHT_DESC` | Weight by descending order. | | `created_asc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `CREATED_ASC`. | | `created_desc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `CREATED_DESC`. | | `updated_asc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `UPDATED_ASC`. | | `updated_desc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `UPDATED_DESC`. | ### `IssueState` State of a GitLab issue. | Value | Description | | ----- | ----------- | | `all` | All available. | | `closed` | In closed state. | | `locked` | Discussion has been locked. | | `opened` | In open state. | ### `IssueStateEvent` Values for issue state events. | Value | Description | | ----- | ----------- | | `CLOSE` | Closes the issue. | | `REOPEN` | Reopens the issue. | ### `IssueType` Issue type. | Value | Description | | ----- | ----------- | | `INCIDENT` | Incident issue type. | | `ISSUE` | Issue issue type. | | `KEY_RESULT` **{warning-solid}** | **Introduced** in 15.7. This feature is an Experiment. It can be changed or removed at any time. Key Result issue type. Available only when feature flag `okrs_mvc` is enabled. | | `OBJECTIVE` **{warning-solid}** | **Introduced** in 15.6. This feature is an Experiment. It can be changed or removed at any time. Objective issue type. Available only when feature flag `okrs_mvc` is enabled. | | `REQUIREMENT` | Requirement issue type. | | `TASK` **{warning-solid}** | **Introduced** in 15.2. This feature is an Experiment. It can be changed or removed at any time. Task issue type. | | `TEST_CASE` | Test Case issue type. | ### `IterationSearchableField` Fields to perform the search in. | Value | Description | | ----- | ----------- | | `CADENCE_TITLE` | Search in cadence_title field. | | `TITLE` | Search in title field. | ### `IterationSort` Iteration sort values. | Value | Description | | ----- | ----------- | | `CADENCE_AND_DUE_DATE_ASC` | Sort by cadence id in ascending and due date in ascending order. | | `CADENCE_AND_DUE_DATE_DESC` | Sort by cadence id in ascending and due date in descending order. | ### `IterationState` State of a GitLab iteration. | Value | Description | | ----- | ----------- | | `all` | Any iteration. | | `closed` | Closed iteration. | | `current` | Current iteration. | | `opened` | Open iteration. | | `upcoming` | Upcoming iteration. | ### `IterationWildcardId` Iteration ID wildcard values. | Value | Description | | ----- | ----------- | | `ANY` | An iteration is assigned. | | `CURRENT` | Current iteration. | | `NONE` | No iteration is assigned. | ### `JobArtifactFileType` | Value | Description | | ----- | ----------- | | `ACCESSIBILITY` | ACCESSIBILITY job artifact file type. | | `API_FUZZING` | API FUZZING job artifact file type. | | `ARCHIVE` | ARCHIVE job artifact file type. | | `BROWSER_PERFORMANCE` | BROWSER PERFORMANCE job artifact file type. | | `CLUSTER_APPLICATIONS` | CLUSTER APPLICATIONS job artifact file type. | | `CLUSTER_IMAGE_SCANNING` | CLUSTER IMAGE SCANNING job artifact file type. | | `COBERTURA` | COBERTURA job artifact file type. | | `CODEQUALITY` | CODE QUALITY job artifact file type. | | `CONTAINER_SCANNING` | CONTAINER SCANNING job artifact file type. | | `COVERAGE_FUZZING` | COVERAGE FUZZING job artifact file type. | | `CYCLONEDX` | CYCLONEDX job artifact file type. | | `DAST` | DAST job artifact file type. | | `DEPENDENCY_SCANNING` | DEPENDENCY SCANNING job artifact file type. | | `DOTENV` | DOTENV job artifact file type. | | `JUNIT` | JUNIT job artifact file type. | | `LICENSE_SCANNING` | LICENSE SCANNING job artifact file type. | | `LOAD_PERFORMANCE` | LOAD PERFORMANCE job artifact file type. | | `LSIF` | LSIF job artifact file type. | | `METADATA` | METADATA job artifact file type. | | `METRICS` | METRICS job artifact file type. | | `METRICS_REFEREE` | METRICS REFEREE job artifact file type. | | `NETWORK_REFEREE` | NETWORK REFEREE job artifact file type. | | `PERFORMANCE` | PERFORMANCE job artifact file type. | | `REQUIREMENTS` | REQUIREMENTS job artifact file type. | | `REQUIREMENTS_V2` | REQUIREMENTS V2 job artifact file type. | | `SAST` | SAST job artifact file type. | | `SECRET_DETECTION` | SECRET DETECTION job artifact file type. | | `TERRAFORM` | TERRAFORM job artifact file type. | | `TRACE` | TRACE job artifact file type. | ### `ListLimitMetric` List limit metric setting. | Value | Description | | ----- | ----------- | | `all_metrics` | Limit list by number and total weight of issues. | | `issue_count` | Limit list by number of issues. | | `issue_weights` | Limit list by total weight of issues. | ### `MarkupFormat` List markup formats. | Value | Description | | ----- | ----------- | | `HTML` | HTML format. | | `MARKDOWN` | Markdown format. | | `RAW` | Raw format. | ### `MeasurementIdentifier` Possible identifier types for a measurement. | Value | Description | | ----- | ----------- | | `GROUPS` | Group count. | | `ISSUES` | Issue count. | | `MERGE_REQUESTS` | Merge request count. | | `PIPELINES` | Pipeline count. | | `PIPELINES_CANCELED` | Pipeline count with canceled status. | | `PIPELINES_FAILED` | Pipeline count with failed status. | | `PIPELINES_SKIPPED` | Pipeline count with skipped status. | | `PIPELINES_SUCCEEDED` | Pipeline count with success status. | | `PROJECTS` | Project count. | | `USERS` | User count. | ### `MemberAccessLevel` Access level of a group or project member. | Value | Description | | ----- | ----------- | | `DEVELOPER` | Developer access. | | `GUEST` | Guest access. | | `MAINTAINER` | Maintainer access. | | `MINIMAL_ACCESS` | Minimal access. | | `OWNER` | Owner access. | | `REPORTER` | Reporter access. | ### `MemberAccessLevelName` Name of access levels of a group or project member. | Value | Description | | ----- | ----------- | | `DEVELOPER` | Developer access. | | `GUEST` | Guest access. | | `MAINTAINER` | Maintainer access. | | `OWNER` | Owner access. | | `REPORTER` | Reporter access. | ### `MemberSort` Values for sorting members. | Value | Description | | ----- | ----------- | | `ACCESS_LEVEL_ASC` | Access level ascending order. | | `ACCESS_LEVEL_DESC` | Access level descending order. | | `CREATED_ASC` | Created at ascending order. | | `CREATED_DESC` | Created at descending order. | | `UPDATED_ASC` | Updated at ascending order. | | `UPDATED_DESC` | Updated at descending order. | | `USER_FULL_NAME_ASC` | User's full name ascending order. | | `USER_FULL_NAME_DESC` | User's full name descending order. | | `created_asc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `CREATED_ASC`. | | `created_desc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `CREATED_DESC`. | | `updated_asc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `UPDATED_ASC`. | | `updated_desc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `UPDATED_DESC`. | ### `MergeRequestNewState` New state to apply to a merge request. | Value | Description | | ----- | ----------- | | `CLOSED` | Close the merge request if it is open. | | `OPEN` | Open the merge request if it is closed. | ### `MergeRequestReviewState` State of a review of a GitLab merge request. | Value | Description | | ----- | ----------- | | `REVIEWED` | The merge request is reviewed. | | `UNREVIEWED` | The merge request is unreviewed. | ### `MergeRequestSort` Values for sorting merge requests. | Value | Description | | ----- | ----------- | | `CLOSED_AT_ASC` | Closed time by ascending order. | | `CLOSED_AT_DESC` | Closed time by descending order. | | `CREATED_ASC` | Created at ascending order. | | `CREATED_DESC` | Created at descending order. | | `LABEL_PRIORITY_ASC` | Label priority by ascending order. | | `LABEL_PRIORITY_DESC` | Label priority by descending order. | | `MERGED_AT_ASC` | Merge time by ascending order. | | `MERGED_AT_DESC` | Merge time by descending order. | | `MILESTONE_DUE_ASC` | Milestone due date by ascending order. | | `MILESTONE_DUE_DESC` | Milestone due date by descending order. | | `PRIORITY_ASC` | Priority by ascending order. | | `PRIORITY_DESC` | Priority by descending order. | | `TITLE_ASC` | Title by ascending order. | | `TITLE_DESC` | Title by descending order. | | `UPDATED_ASC` | Updated at ascending order. | | `UPDATED_DESC` | Updated at descending order. | | `created_asc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `CREATED_ASC`. | | `created_desc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `CREATED_DESC`. | | `updated_asc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `UPDATED_ASC`. | | `updated_desc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `UPDATED_DESC`. | ### `MergeRequestState` State of a GitLab merge request. | Value | Description | | ----- | ----------- | | `all` | All available. | | `closed` | In closed state. | | `locked` | Discussion has been locked. | | `merged` | Merge request has been merged. | | `opened` | In open state. | ### `MergeStatus` Representation of whether a GitLab merge request can be merged. | Value | Description | | ----- | ----------- | | `CANNOT_BE_MERGED` | There are conflicts between the source and target branches. | | `CANNOT_BE_MERGED_RECHECK` | Currently unchecked. The previous state was `CANNOT_BE_MERGED`. | | `CAN_BE_MERGED` | There are no conflicts between the source and target branches. | | `CHECKING` | Currently checking for mergeability. | | `UNCHECKED` | Merge status has not been checked. | ### `MergeStrategyEnum` | Value | Description | | ----- | ----------- | | `ADD_TO_MERGE_TRAIN_WHEN_PIPELINE_SUCCEEDS` | Use the add_to_merge_train_when_pipeline_succeeds merge strategy. | | `MERGE_TRAIN` | Use the merge_train merge strategy. | | `MERGE_WHEN_PIPELINE_SUCCEEDS` | Use the merge_when_pipeline_succeeds merge strategy. | ### `MilestoneSort` Values for sorting milestones. | Value | Description | | ----- | ----------- | | `CREATED_ASC` | Created at ascending order. | | `CREATED_DESC` | Created at descending order. | | `DUE_DATE_ASC` | Milestone due date by ascending order. | | `DUE_DATE_DESC` | Milestone due date by descending order. | | `EXPIRED_LAST_DUE_DATE_ASC` | Group milestones in this order: non-expired milestones with due dates, non-expired milestones without due dates and expired milestones then sort by due date in ascending order. | | `EXPIRED_LAST_DUE_DATE_DESC` | Group milestones in this order: non-expired milestones with due dates, non-expired milestones without due dates and expired milestones then sort by due date in descending order. | | `UPDATED_ASC` | Updated at ascending order. | | `UPDATED_DESC` | Updated at descending order. | | `created_asc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `CREATED_ASC`. | | `created_desc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `CREATED_DESC`. | | `updated_asc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `UPDATED_ASC`. | | `updated_desc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `UPDATED_DESC`. | ### `MilestoneStateEnum` Current state of milestone. | Value | Description | | ----- | ----------- | | `active` | Milestone is currently active. | | `closed` | Milestone is closed. | ### `MilestoneWildcardId` Milestone ID wildcard values. | Value | Description | | ----- | ----------- | | `ANY` | Milestone is assigned. | | `NONE` | No milestone is assigned. | | `STARTED` | Milestone assigned is open and started (start date <= today). | | `UPCOMING` | Milestone assigned is due in the future (due date > today). | ### `MoveType` The position to which the adjacent object should be moved. | Value | Description | | ----- | ----------- | | `after` | Adjacent object is moved after the object that is being moved. | | `before` | Adjacent object is moved before the object that is being moved. | ### `MutationOperationMode` Different toggles for changing mutator behavior. | Value | Description | | ----- | ----------- | | `APPEND` | Performs an append operation. | | `REMOVE` | Performs a removal operation. | | `REPLACE` | Performs a replace operation. | ### `NamespaceProjectSort` Values for sorting projects. | Value | Description | | ----- | ----------- | | `ACTIVITY_DESC` | Sort by latest activity, descending order. | | `SIMILARITY` | Most similar to the search query. | | `STORAGE` | Sort by excess repository storage size, descending order. | | `STORAGE_SIZE_ASC` | Sort by total storage size, ascending order. | | `STORAGE_SIZE_DESC` | Sort by total storage size, descending order. | ### `NegatedIterationWildcardId` Negated Iteration ID wildcard values. | Value | Description | | ----- | ----------- | | `CURRENT` | Current iteration. | ### `NegatedMilestoneWildcardId` Negated Milestone ID wildcard values. | Value | Description | | ----- | ----------- | | `STARTED` | Milestone assigned is open and yet to be started (start date > today). | | `UPCOMING` | Milestone assigned is open but due in the past (due date <= today). | ### `NetworkPolicyKind` Kind of the network policy. | Value | Description | | ----- | ----------- | | `CiliumNetworkPolicy` | Policy kind of Cilium Network Policy. | | `NetworkPolicy` | Policy kind of Network Policy. | ### `NotesFilterType` Work item notes collection type. | Value | Description | | ----- | ----------- | | `ALL_NOTES` | Show all activity. | | `ONLY_ACTIVITY` | Show history only. | | `ONLY_COMMENTS` | Show comments only. | ### `OncallRotationUnitEnum` Rotation length unit of an on-call rotation. | Value | Description | | ----- | ----------- | | `DAYS` | Days. | | `HOURS` | Hours. | | `WEEKS` | Weeks. | ### `OrganizationSort` Values for sorting organizations. | Value | Description | | ----- | ----------- | | `CREATED_ASC` | Created at ascending order. | | `CREATED_DESC` | Created at descending order. | | `DEFAULT_RATE_ASC` | Default Rate in ascending order. | | `DEFAULT_RATE_DESC` | Default Rate in descending order. | | `DESCRIPTION_ASC` | Description in ascending order. | | `DESCRIPTION_DESC` | Description in descending order. | | `NAME_ASC` | Name in ascending order. | | `NAME_DESC` | Name in descending order. | | `UPDATED_ASC` | Updated at ascending order. | | `UPDATED_DESC` | Updated at descending order. | | `created_asc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `CREATED_ASC`. | | `created_desc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `CREATED_DESC`. | | `updated_asc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `UPDATED_ASC`. | | `updated_desc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `UPDATED_DESC`. | ### `PackageDependencyType` | Value | Description | | ----- | ----------- | | `BUNDLE_DEPENDENCIES` | bundleDependencies dependency type. | | `DEPENDENCIES` | dependencies dependency type. | | `DEV_DEPENDENCIES` | devDependencies dependency type. | | `PEER_DEPENDENCIES` | peerDependencies dependency type. | ### `PackageGroupSort` Values for sorting group packages. | Value | Description | | ----- | ----------- | | `CREATED_ASC` | Ordered by created_at in ascending order. | | `CREATED_DESC` | Ordered by created_at in descending order. | | `NAME_ASC` | Ordered by name in ascending order. | | `NAME_DESC` | Ordered by name in descending order. | | `PROJECT_PATH_ASC` | Ordered by project path in ascending order. | | `PROJECT_PATH_DESC` | Ordered by project path in descending order. | | `TYPE_ASC` | Ordered by type in ascending order. | | `TYPE_DESC` | Ordered by type in descending order. | | `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. | Value | Description | | ----- | ----------- | | `CREATED_ASC` | Ordered by created_at in ascending order. | | `CREATED_DESC` | Ordered by created_at in descending order. | | `NAME_ASC` | Ordered by name in ascending order. | | `NAME_DESC` | Ordered by name in descending order. | | `TYPE_ASC` | Ordered by type in ascending order. | | `TYPE_DESC` | Ordered by type in descending order. | | `VERSION_ASC` | Ordered by version in ascending order. | | `VERSION_DESC` | Ordered by version in descending order. | ### `PackageStatus` | Value | Description | | ----- | ----------- | | `DEFAULT` | Packages with a default status. | | `ERROR` | Packages with a error status. | | `HIDDEN` | Packages with a hidden status. | | `PENDING_DESTRUCTION` | Packages with a pending_destruction status. | | `PROCESSING` | Packages with a processing status. | ### `PackageTypeEnum` | Value | Description | | ----- | ----------- | | `COMPOSER` | Packages from the Composer package manager. | | `CONAN` | Packages from the Conan package manager. | | `DEBIAN` | Packages from the Debian package manager. | | `GENERIC` | Packages from the Generic package manager. | | `GOLANG` | Packages from the Golang package manager. | | `HELM` | Packages from the Helm package manager. | | `MAVEN` | Packages from the Maven package manager. | | `NPM` | Packages from the npm package manager. | | `NUGET` | Packages from the Nuget package manager. | | `PYPI` | Packages from the PyPI package manager. | | `RPM` | Packages from the Rpm package manager. | | `RUBYGEMS` | Packages from the Rubygems package manager. | | `TERRAFORM_MODULE` | Packages from the Terraform Module package manager. | ### `PackagesCleanupKeepDuplicatedPackageFilesEnum` | Value | Description | | ----- | ----------- | | `ALL_PACKAGE_FILES` | Value to keep all package files. | | `FIFTY_PACKAGE_FILES` | Value to keep 50 package files. | | `FORTY_PACKAGE_FILES` | Value to keep 40 package files. | | `ONE_PACKAGE_FILE` | Value to keep 1 package files. | | `TEN_PACKAGE_FILES` | Value to keep 10 package files. | | `THIRTY_PACKAGE_FILES` | Value to keep 30 package files. | | `TWENTY_PACKAGE_FILES` | Value to keep 20 package files. | ### `PipelineConfigSourceEnum` | Value | Description | | ----- | ----------- | | `AUTO_DEVOPS_SOURCE` | Auto DevOps source. | | `BRIDGE_SOURCE` | Bridge source. | | `COMPLIANCE_SOURCE` | Compliance source. | | `EXTERNAL_PROJECT_SOURCE` | External project source. | | `PARAMETER_SOURCE` | Parameter source. | | `REMOTE_SOURCE` | Remote source. | | `REPOSITORY_SOURCE` | Repository source. | | `UNKNOWN_SOURCE` | Unknown source. | | `WEBIDE_SOURCE` | Webide source. | ### `PipelineMergeRequestEventType` Event type of the pipeline associated with a merge request. | Value | Description | | ----- | ----------- | | `DETACHED` | Pipeline run on the changes in the merge request source branch. | | `MERGED_RESULT` | Pipeline run on the changes from the source branch combined with the target branch. | | `MERGE_TRAIN` | Pipeline ran as part of a merge train. | ### `PipelineScheduleStatus` | Value | Description | | ----- | ----------- | | `ACTIVE` | Active pipeline schedules. | | `INACTIVE` | Inactive pipeline schedules. | ### `PipelineScopeEnum` | Value | Description | | ----- | ----------- | | `BRANCHES` | Branches. | | `FINISHED` | Pipeline has completed. | | `PENDING` | Pipeline has not started running yet. | | `RUNNING` | Pipeline is running. | | `TAGS` | Tags. | ### `PipelineStatusEnum` | Value | Description | | ----- | ----------- | | `CANCELED` | Pipeline was canceled before completion. | | `CREATED` | Pipeline has been created. | | `FAILED` | At least one stage of the pipeline failed. | | `MANUAL` | Pipeline needs to be manually started. | | `PENDING` | Pipeline has not started running yet. | | `PREPARING` | Pipeline is preparing to run. | | `RUNNING` | Pipeline is running. | | `SCHEDULED` | Pipeline is scheduled to run. | | `SKIPPED` | Pipeline was skipped. | | `SUCCESS` | Pipeline completed successfully. | | `WAITING_FOR_RESOURCE` | A resource (for example, a runner) that the pipeline requires to run is unavailable. | ### `ProductAnalyticsState` Current state of the product analytics stack. | Value | Description | | ----- | ----------- | | `COMPLETE` | Stack has been initialized and has data. | | `CREATE_INSTANCE` | Stack has not been created yet. | | `LOADING_INSTANCE` | Stack is currently initializing. | | `WAITING_FOR_EVENTS` | Stack is waiting for events from users. | ### `ProjectMemberRelation` Project member relation. | Value | Description | | ----- | ----------- | | `DESCENDANTS` | Descendants members. | | `DIRECT` | Direct members. | | `INHERITED` | Inherited members. | | `INVITED_GROUPS` | Invited Groups members. | | `SHARED_INTO_ANCESTORS` | Shared Into Ancestors members. | ### `RegistryState` State of a Geo registry. | Value | Description | | ----- | ----------- | | `FAILED` | Registry that failed to sync. | | `PENDING` | Registry waiting to be synced. | | `STARTED` | Registry currently syncing. | | `SYNCED` | Registry that is synced. | ### `RelativePositionType` The position to which the object should be moved. | Value | Description | | ----- | ----------- | | `AFTER` | Object is moved after an adjacent object. | | `BEFORE` | Object is moved before an adjacent object. | ### `ReleaseAssetLinkType` Type of the link: `other`, `runbook`, `image`, `package`. | Value | Description | | ----- | ----------- | | `IMAGE` | Image link type. | | `OTHER` | Other link type. | | `PACKAGE` | Package link type. | | `RUNBOOK` | Runbook link type. | ### `ReleaseSort` Values for sorting releases. | Value | Description | | ----- | ----------- | | `CREATED_ASC` | Created at ascending order. | | `CREATED_DESC` | Created at descending order. | | `RELEASED_AT_ASC` | Released at by ascending order. | | `RELEASED_AT_DESC` | Released at by descending order. | ### `ReleaseTagWildcardId` Release tag ID wildcard values. | Value | Description | | ----- | ----------- | | `ANY` | Release tag is assigned. | | `NONE` | No release tag is assigned. | ### `ReplicationStateEnum` | Value | Description | | ----- | ----------- | | `FAILED` | Replication process finished but failed. | | `PENDING` | Replication process has not started. | | `STARTED` | Replication process is in progress. | | `SYNCED` | Replication process finished successfully. | ### `RequirementState` State of a requirement. | Value | Description | | ----- | ----------- | | `ARCHIVED` | Archived requirement. | | `OPENED` | Open requirement. | ### `RequirementStatusFilter` Status of a requirement based on last test report. | Value | Description | | ----- | ----------- | | `FAILED` | Failed test report. | | `MISSING` | Requirements without any test report. | | `PASSED` | Passed test report. | ### `SastUiComponentSize` Size of UI component in SAST configuration page. | Value | Description | | ----- | ----------- | | `LARGE` | Size of UI component in SAST configuration page is large. | | `MEDIUM` | Size of UI component in SAST configuration page is medium. | | `SMALL` | Size of UI component in SAST configuration page is small. | ### `ScanStatus` The status of the security scan. | Value | Description | | ----- | ----------- | | `CREATED` | The scan has been created. | | `JOB_FAILED` | The related CI build failed. | | `PREPARATION_FAILED` | Report couldn't be prepared. | | `PREPARING` | Preparing the report for the scan. | | `PURGED` | Report for the scan has been removed from the database. | | `REPORT_ERROR` | The report artifact provided by the CI build couldn't be parsed. | | `SUCCEEDED` | The report has been successfully prepared. | ### `SecurityPolicyRelationType` | Value | Description | | ----- | ----------- | | `DIRECT` | Policies defined for the project/group only. | | `INHERITED` | Policies defined for the project/group and ancestor groups. | | `INHERITED_ONLY` | Policies defined for the project/group's ancestor groups only. | ### `SecurityReportTypeEnum` | Value | Description | | ----- | ----------- | | `API_FUZZING` | API FUZZING scan report. | | `BREACH_AND_ATTACK_SIMULATION` | BREACH AND ATTACK SIMULATION scan report. | | `CLUSTER_IMAGE_SCANNING` | CLUSTER IMAGE SCANNING scan report. | | `CONTAINER_SCANNING` | CONTAINER SCANNING scan report. | | `COVERAGE_FUZZING` | COVERAGE FUZZING scan report. | | `DAST` | DAST scan report. | | `DEPENDENCY_SCANNING` | DEPENDENCY SCANNING scan report. | | `SAST` | SAST scan report. | | `SAST_IAC` | SAST IAC scan report. | | `SECRET_DETECTION` | SECRET DETECTION scan report. | ### `SecurityScannerType` The type of the security scanner. | Value | Description | | ----- | ----------- | | `API_FUZZING` | API Fuzzing scanner. | | `BREACH_AND_ATTACK_SIMULATION` | Breach And Attack Simulation scanner. | | `CLUSTER_IMAGE_SCANNING` | Cluster Image Scanning scanner. | | `CONTAINER_SCANNING` | Container Scanning scanner. | | `COVERAGE_FUZZING` | Coverage Fuzzing scanner. | | `DAST` | DAST scanner. | | `DEPENDENCY_SCANNING` | Dependency Scanning scanner. | | `SAST` | SAST scanner. | | `SAST_IAC` | Sast Iac scanner. | | `SECRET_DETECTION` | Secret Detection scanner. | ### `SentryErrorStatus` State of a Sentry error. | Value | Description | | ----- | ----------- | | `IGNORED` | Error has been ignored. | | `RESOLVED` | Error has been resolved. | | `RESOLVED_IN_NEXT_RELEASE` | Error has been ignored until next release. | | `UNRESOLVED` | Error is unresolved. | ### `ServiceType` | Value | Description | | ----- | ----------- | | `APPLE_APP_STORE_SERVICE` | AppleAppStoreService type. | | `ASANA_SERVICE` | AsanaService type. | | `ASSEMBLA_SERVICE` | AssemblaService type. | | `BAMBOO_SERVICE` | BambooService type. | | `BUGZILLA_SERVICE` | BugzillaService type. | | `BUILDKITE_SERVICE` | BuildkiteService type. | | `CAMPFIRE_SERVICE` | CampfireService type. | | `CONFLUENCE_SERVICE` | ConfluenceService type. | | `CUSTOM_ISSUE_TRACKER_SERVICE` | CustomIssueTrackerService type. | | `DATADOG_SERVICE` | DatadogService type. | | `DISCORD_SERVICE` | DiscordService type. | | `DRONE_CI_SERVICE` | DroneCiService type. | | `EMAILS_ON_PUSH_SERVICE` | EmailsOnPushService type. | | `EWM_SERVICE` | EwmService type. | | `EXTERNAL_WIKI_SERVICE` | ExternalWikiService type. | | `GITHUB_SERVICE` | GithubService type. | | `GITLAB_SLACK_APPLICATION_SERVICE` | GitlabSlackApplicationService type (Gitlab.com only). | | `GOOGLE_PLAY_SERVICE` | GooglePlayService type. | | `HANGOUTS_CHAT_SERVICE` | HangoutsChatService type. | | `HARBOR_SERVICE` | HarborService type. | | `IRKER_SERVICE` | IrkerService type. | | `JENKINS_SERVICE` | JenkinsService type. | | `JIRA_SERVICE` | JiraService type. | | `MATTERMOST_SERVICE` | MattermostService type. | | `MATTERMOST_SLASH_COMMANDS_SERVICE` | MattermostSlashCommandsService type. | | `MICROSOFT_TEAMS_SERVICE` | MicrosoftTeamsService type. | | `PACKAGIST_SERVICE` | PackagistService type. | | `PIPELINES_EMAIL_SERVICE` | PipelinesEmailService type. | | `PIVOTALTRACKER_SERVICE` | PivotaltrackerService type. | | `PROMETHEUS_SERVICE` | PrometheusService type. | | `PUMBLE_SERVICE` | PumbleService type. | | `PUSHOVER_SERVICE` | PushoverService type. | | `REDMINE_SERVICE` | RedmineService type. | | `SHIMO_SERVICE` | ShimoService type. | | `SLACK_SERVICE` | SlackService type. | | `SLACK_SLASH_COMMANDS_SERVICE` | SlackSlashCommandsService type. | | `SQUASH_TM_SERVICE` | SquashTmService type. | | `TEAMCITY_SERVICE` | TeamcityService type. | | `UNIFY_CIRCUIT_SERVICE` | UnifyCircuitService type. | | `WEBEX_TEAMS_SERVICE` | WebexTeamsService type. | | `YOUTRACK_SERVICE` | YoutrackService type. | | `ZENTAO_SERVICE` | ZentaoService type. | ### `ShaFormat` How to format SHA strings. | Value | Description | | ----- | ----------- | | `LONG` | Unabbreviated format. | | `SHORT` | Abbreviated format. Short SHAs are typically eight characters long. | ### `SharedRunnersSetting` | Value | Description | | ----- | ----------- | | `DISABLED_AND_OVERRIDABLE` | Sharing of runners is disabled and overridable. | | `DISABLED_AND_UNOVERRIDABLE` | Sharing of runners is disabled and unoverridable. | | `DISABLED_WITH_OVERRIDE` **{warning-solid}** | **Deprecated** in 17.0. This was renamed. Use: `disabled_and_overridable`. | | `ENABLED` | Sharing of runners is enabled. | ### `SnippetBlobActionEnum` Type of a snippet blob input action. | Value | Description | | ----- | ----------- | | `create` | Create a snippet blob. | | `delete` | Delete a snippet blob. | | `move` | Move a snippet blob. | | `update` | Update a snippet blob. | ### `Sort` Common sort values. | Value | Description | | ----- | ----------- | | `CREATED_ASC` | Created at ascending order. | | `CREATED_DESC` | Created at descending order. | | `UPDATED_ASC` | Updated at ascending order. | | `UPDATED_DESC` | Updated at descending order. | | `created_asc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `CREATED_ASC`. | | `created_desc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `CREATED_DESC`. | | `updated_asc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `UPDATED_ASC`. | | `updated_desc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `UPDATED_DESC`. | ### `SortDirectionEnum` Values for sort direction. | Value | Description | | ----- | ----------- | | `ASC` | Ascending order. | | `DESC` | Descending order. | ### `TestCaseStatus` | Value | Description | | ----- | ----------- | | `error` | Test case that has a status of error. | | `failed` | Test case that has a status of failed. | | `skipped` | Test case that has a status of skipped. | | `success` | Test case that has a status of success. | ### `TestReportState` State of a test report. | Value | Description | | ----- | ----------- | | `FAILED` | Failed test report. | | `PASSED` | Passed test report. | ### `TimeboxReportErrorReason` Category of error. | Value | Description | | ----- | ----------- | | `CREATED_ASC` | Created at ascending order. | | `CREATED_DESC` | Created at descending order. | | `LABEL_PRIORITY_ASC` | Label priority by ascending order. | | `LABEL_PRIORITY_DESC` | Label priority by descending order. | | `MILESTONE_DUE_ASC` | Milestone due date by ascending order. | | `MILESTONE_DUE_DESC` | Milestone due date by descending order. | | `MISSING_DATES` | One or both of start_date and due_date is missing. | | `PRIORITY_ASC` | Priority by ascending order. | | `PRIORITY_DESC` | Priority by descending order. | | `TOO_MANY_EVENTS` | There are too many events. | | `UNSUPPORTED` | This type does not support timebox reports. | | `UPDATED_ASC` | Updated at ascending order. | | `UPDATED_DESC` | Updated at descending order. | | `created_asc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `CREATED_ASC`. | | `created_desc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `CREATED_DESC`. | | `updated_asc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `UPDATED_ASC`. | | `updated_desc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `UPDATED_DESC`. | ### `TimelogSort` Values for sorting timelogs. | Value | Description | | ----- | ----------- | | `CREATED_ASC` | Created at ascending order. | | `CREATED_DESC` | Created at descending order. | | `SPENT_AT_ASC` | Spent at by ascending order. | | `SPENT_AT_DESC` | Spent at by descending order. | | `TIME_SPENT_ASC` | Time spent by ascending order. | | `TIME_SPENT_DESC` | Time spent by descending order. | | `UPDATED_ASC` | Updated at ascending order. | | `UPDATED_DESC` | Updated at descending order. | | `created_asc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `CREATED_ASC`. | | `created_desc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `CREATED_DESC`. | | `updated_asc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `UPDATED_ASC`. | | `updated_desc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `UPDATED_DESC`. | ### `TodoActionEnum` | Value | Description | | ----- | ----------- | | `approval_required` | User was set as an approver. | | `assigned` | User was assigned. | | `build_failed` | Build triggered by the user failed. | | `directly_addressed` | User was directly addressed. | | `marked` | User added a to-do item. | | `member_access_requested` | Group or project access requested from the user. | | `mentioned` | User was mentioned. | | `merge_train_removed` | Merge request authored by the user was removed from the merge train. | | `review_requested` | Review was requested from the user. | | `unmergeable` | Merge request authored by the user could not be merged. | ### `TodoStateEnum` | Value | Description | | ----- | ----------- | | `done` | State of the todo is done. | | `pending` | State of the todo is pending. | ### `TodoTargetEnum` | Value | Description | | ----- | ----------- | | `ALERT` | Alert. | | `COMMIT` | Commit. | | `DESIGN` | Design. | | `EPIC` | An Epic. | | `ISSUE` | Issue. | | `MERGEREQUEST` | Merge request. | | `WORKITEM` | Work item. | ### `TrainingUrlRequestStatus` Status of the request to the training provider. The URL of a TrainingUrl is calculated asynchronously. When PENDING, the URL of the TrainingUrl will be null. When COMPLETED, the URL of the TrainingUrl will be available. | Value | Description | | ----- | ----------- | | `COMPLETED` | Completed request. | | `PENDING` | Pending request. | ### `TypeEnum` | Value | Description | | ----- | ----------- | | `personal` | Snippet created independent of any project. | | `project` | Snippet related to a specific project. | ### `UserCalloutFeatureNameEnum` Name of the feature that the callout is for. | Value | Description | | ----- | ----------- | | `ACTIVE_USER_COUNT_THRESHOLD` | Callout feature name for active_user_count_threshold. | | `ARTIFACTS_MANAGEMENT_PAGE_FEEDBACK_BANNER` | Callout feature name for artifacts_management_page_feedback_banner. | | `BRANCH_RULES_INFO_CALLOUT` | Callout feature name for branch_rules_info_callout. | | `BUY_PIPELINE_MINUTES_NOTIFICATION_DOT` | Callout feature name for buy_pipeline_minutes_notification_dot. | | `CANARY_DEPLOYMENT` | Callout feature name for canary_deployment. | | `CI_DEPRECATION_WARNING_FOR_TYPES_KEYWORD` | Callout feature name for ci_deprecation_warning_for_types_keyword. | | `CLOUD_LICENSING_SUBSCRIPTION_ACTIVATION_BANNER` | Callout feature name for cloud_licensing_subscription_activation_banner. | | `CLUSTER_SECURITY_WARNING` | Callout feature name for cluster_security_warning. | | `CREATE_RUNNER_WORKFLOW_BANNER` | Callout feature name for create_runner_workflow_banner. | | `EOA_BRONZE_PLAN_BANNER` | Callout feature name for eoa_bronze_plan_banner. | | `FEATURE_FLAGS_NEW_VERSION` | Callout feature name for feature_flags_new_version. | | `GCP_SIGNUP_OFFER` | Callout feature name for gcp_signup_offer. | | `GEO_ENABLE_HASHED_STORAGE` | Callout feature name for geo_enable_hashed_storage. | | `GEO_MIGRATE_HASHED_STORAGE` | Callout feature name for geo_migrate_hashed_storage. | | `GKE_CLUSTER_INTEGRATION` | Callout feature name for gke_cluster_integration. | | `GOLD_TRIAL_BILLINGS` | Callout feature name for gold_trial_billings. | | `MERGE_REQUEST_SETTINGS_MOVED_CALLOUT` | Callout feature name for merge_request_settings_moved_callout. | | `MR_EXPERIENCE_SURVEY` | Callout feature name for mr_experience_survey. | | `NAMESPACE_STORAGE_LIMIT_BANNER_ALERT_THRESHOLD` | Callout feature name for namespace_storage_limit_banner_alert_threshold. | | `NAMESPACE_STORAGE_LIMIT_BANNER_ERROR_THRESHOLD` | Callout feature name for namespace_storage_limit_banner_error_threshold. | | `NAMESPACE_STORAGE_LIMIT_BANNER_INFO_THRESHOLD` | Callout feature name for namespace_storage_limit_banner_info_threshold. | | `NAMESPACE_STORAGE_LIMIT_BANNER_WARNING_THRESHOLD` | Callout feature name for namespace_storage_limit_banner_warning_threshold. | | `NAMESPACE_STORAGE_PRE_ENFORCEMENT_BANNER` | Callout feature name for namespace_storage_pre_enforcement_banner. | | `NEW_TOP_LEVEL_GROUP_ALERT` | Callout feature name for new_top_level_group_alert. | | `NEW_USER_SIGNUPS_CAP_REACHED` | Callout feature name for new_user_signups_cap_reached. | | `PERSONAL_ACCESS_TOKEN_EXPIRY` | Callout feature name for personal_access_token_expiry. | | `PERSONAL_PROJECT_LIMITATIONS_BANNER` | Callout feature name for personal_project_limitations_banner. | | `PIPELINE_NEEDS_BANNER` | Callout feature name for pipeline_needs_banner. | | `PIPELINE_NEEDS_HOVER_TIP` | Callout feature name for pipeline_needs_hover_tip. | | `PREVIEW_USER_OVER_LIMIT_FREE_PLAN_ALERT` | Callout feature name for preview_user_over_limit_free_plan_alert. | | `PROFILE_PERSONAL_ACCESS_TOKEN_EXPIRY` | Callout feature name for profile_personal_access_token_expiry. | | `PROJECT_QUALITY_SUMMARY_FEEDBACK` | Callout feature name for project_quality_summary_feedback. | | `REGISTRATION_ENABLED_CALLOUT` | Callout feature name for registration_enabled_callout. | | `REPOSITORY_STORAGE_LIMIT_BANNER_ALERT_THRESHOLD` | Callout feature name for repository_storage_limit_banner_alert_threshold. | | `REPOSITORY_STORAGE_LIMIT_BANNER_ERROR_THRESHOLD` | Callout feature name for repository_storage_limit_banner_error_threshold. | | `REPOSITORY_STORAGE_LIMIT_BANNER_INFO_THRESHOLD` | Callout feature name for repository_storage_limit_banner_info_threshold. | | `REPOSITORY_STORAGE_LIMIT_BANNER_WARNING_THRESHOLD` | Callout feature name for repository_storage_limit_banner_warning_threshold. | | `SECURITY_CONFIGURATION_DEVOPS_ALERT` | Callout feature name for security_configuration_devops_alert. | | `SECURITY_CONFIGURATION_UPGRADE_BANNER` | Callout feature name for security_configuration_upgrade_banner. | | `SECURITY_NEWSLETTER_CALLOUT` | Callout feature name for security_newsletter_callout. | | `SECURITY_TRAINING_FEATURE_PROMOTION` | Callout feature name for security_training_feature_promotion. | | `SUBMIT_LICENSE_USAGE_DATA_BANNER` | Callout feature name for submit_license_usage_data_banner. | | `SUGGEST_PIPELINE` | Callout feature name for suggest_pipeline. | | `SUGGEST_POPOVER_DISMISSED` | Callout feature name for suggest_popover_dismissed. | | `TABS_POSITION_HIGHLIGHT` | Callout feature name for tabs_position_highlight. | | `TERRAFORM_NOTIFICATION_DISMISSED` | Callout feature name for terraform_notification_dismissed. | | `THREAT_MONITORING_INFO` | Callout feature name for threat_monitoring_info. | | `TRIAL_STATUS_REMINDER_D14` | Callout feature name for trial_status_reminder_d14. | | `TRIAL_STATUS_REMINDER_D3` | Callout feature name for trial_status_reminder_d3. | | `TWO_FACTOR_AUTH_RECOVERY_SETTINGS_CHECK` | Callout feature name for two_factor_auth_recovery_settings_check. | | `ULTIMATE_TRIAL` | Callout feature name for ultimate_trial. | | `UNFINISHED_TAG_CLEANUP_CALLOUT` | Callout feature name for unfinished_tag_cleanup_callout. | | `USER_REACHED_LIMIT_FREE_PLAN_ALERT` | Callout feature name for user_reached_limit_free_plan_alert. | | `VERIFICATION_REMINDER` | Callout feature name for verification_reminder. | | `WEB_IDE_ALERT_DISMISSED` | Callout feature name for web_ide_alert_dismissed. | | `WEB_IDE_CI_ENVIRONMENTS_GUIDANCE` | Callout feature name for web_ide_ci_environments_guidance. | ### `UserState` Possible states of a user. | Value | Description | | ----- | ----------- | | `active` | User is active and is able to use the system. | | `blocked` | User has been blocked and is prevented from using the system. | | `deactivated` | User is no longer active and is unable to use the system. | ### `VerificationStateEnum` | Value | Description | | ----- | ----------- | | `DISABLED` | Verification process is disabled. | | `FAILED` | Verification process finished but failed. | | `PENDING` | Verification process has not started. | | `STARTED` | Verification process is in progress. | | `SUCCEEDED` | Verification process finished successfully. | ### `VerificationStatus` Verification status of a GPG or X.509 signature for a commit. | Value | Description | | ----- | ----------- | | `MULTIPLE_SIGNATURES` | multiple_signatures verification status. | | `OTHER_USER` | other_user verification status. | | `REVOKED_KEY` | revoked_key verification status. | | `SAME_USER_DIFFERENT_EMAIL` | same_user_different_email verification status. | | `UNKNOWN_KEY` | unknown_key verification status. | | `UNVERIFIED` | unverified verification status. | | `UNVERIFIED_KEY` | unverified_key verification status. | | `VERIFIED` | verified verification status. | ### `VisibilityLevelsEnum` | Value | Description | | ----- | ----------- | | `internal` | Internal visibility level. | | `private` | Private visibility level. | | `public` | Public visibility level. | ### `VisibilityPipelineIdType` Determines whether the pipeline list shows ID or IID. | Value | Description | | ----- | ----------- | | `ID` | Display pipeline ID. | | `IID` | Display pipeline IID. | ### `VisibilityScopesEnum` | Value | Description | | ----- | ----------- | | `internal` | Snippet is visible for any logged in user except external users. | | `private` | Snippet is visible only to the snippet creator. | | `public` | Snippet can be accessed without any authentication. | ### `VulnerabilityConfidence` Confidence that a given vulnerability is present in the codebase. | Value | Description | | ----- | ----------- | | `CONFIRMED` | Confirmed confidence. | | `EXPERIMENTAL` | Experimental confidence. | | `HIGH` | High confidence. | | `IGNORE` | Ignore confidence. | | `LOW` | Low confidence. | | `MEDIUM` | Medium confidence. | | `UNKNOWN` | Unknown confidence. | ### `VulnerabilityDismissalReason` The dismissal reason of the Vulnerability. | Value | Description | | ----- | ----------- | | `ACCEPTABLE_RISK` | The vulnerability is known, and has not been remediated or mitigated, but is considered to be an acceptable business risk. | | `FALSE_POSITIVE` | An error in reporting in which a test result incorrectly indicates the presence of a vulnerability in a system when the vulnerability is not present. | | `MITIGATING_CONTROL` | A management, operational, or technical control (that is, safeguard or countermeasure) employed by an organization that provides equivalent or comparable protection for an information system. | | `NOT_APPLICABLE` | The vulnerability is known, and has not been remediated or mitigated, but is considered to be in a part of the application that will not be updated. | | `USED_IN_TESTS` | The finding is not a vulnerability because it is part of a test or is test data. | ### `VulnerabilityExternalIssueLinkExternalTracker` The external tracker of the external issue link related to a vulnerability. | Value | Description | | ----- | ----------- | | `JIRA` | Jira external tracker. | ### `VulnerabilityExternalIssueLinkType` The type of the external issue link related to a vulnerability. | Value | Description | | ----- | ----------- | | `CREATED` | Created link type. | ### `VulnerabilityGrade` The grade of the vulnerable project. | Value | Description | | ----- | ----------- | | `A` | A grade. | | `B` | B grade. | | `C` | C grade. | | `D` | D grade. | | `F` | F grade. | ### `VulnerabilityIssueLinkType` The type of the issue link related to a vulnerability. | Value | Description | | ----- | ----------- | | `CREATED` | Issue is created for the vulnerability. | | `RELATED` | Has a related issue. | ### `VulnerabilityReportType` The type of the security scan that found the vulnerability. | Value | Description | | ----- | ----------- | | `API_FUZZING` | API Fuzzing report. | | `CLUSTER_IMAGE_SCANNING` | Cluster Image Scanning report. | | `CONTAINER_SCANNING` | Container Scanning report. | | `COVERAGE_FUZZING` | Coverage Fuzzing report. | | `DAST` | DAST report. | | `DEPENDENCY_SCANNING` | Dependency Scanning report. | | `GENERIC` | Generic report. | | `SAST` | SAST report. | | `SECRET_DETECTION` | Secret Detection report. | ### `VulnerabilitySeverity` The severity of the vulnerability. | Value | Description | | ----- | ----------- | | `CRITICAL` | Critical severity. | | `HIGH` | High severity. | | `INFO` | Info severity. | | `LOW` | Low severity. | | `MEDIUM` | Medium severity. | | `UNKNOWN` | Unknown severity. | ### `VulnerabilitySort` Vulnerability sort values. | Value | Description | | ----- | ----------- | | `detected_asc` | Detection timestamp in ascending order. | | `detected_desc` | Detection timestamp in descending order. | | `severity_asc` | Severity in ascending order. | | `severity_desc` | Severity in descending order. | ### `VulnerabilityState` The state of the vulnerability. | Value | Description | | ----- | ----------- | | `CONFIRMED` | For details, see [vulnerability status values](https://docs.gitlab.com/ee/user/application_security/vulnerabilities/index.html#vulnerability-status-values). | | `DETECTED` | For details, see [vulnerability status values](https://docs.gitlab.com/ee/user/application_security/vulnerabilities/index.html#vulnerability-status-values). | | `DISMISSED` | For details, see [vulnerability status values](https://docs.gitlab.com/ee/user/application_security/vulnerabilities/index.html#vulnerability-status-values). | | `RESOLVED` | For details, see [vulnerability status values](https://docs.gitlab.com/ee/user/application_security/vulnerabilities/index.html#vulnerability-status-values). | ### `WeightWildcardId` Weight ID wildcard values. | Value | Description | | ----- | ----------- | | `ANY` | Weight is assigned. | | `NONE` | No weight is assigned. | ### `WorkItemAwardEmojiUpdateAction` Values for work item award emoji update enum. | Value | Description | | ----- | ----------- | | `ADD` | Adds the emoji. | | `REMOVE` | Removes the emoji. | ### `WorkItemSort` Values for sorting work items. | Value | Description | | ----- | ----------- | | `CREATED_ASC` | Created at ascending order. | | `CREATED_DESC` | Created at descending order. | | `TITLE_ASC` | Title by ascending order. | | `TITLE_DESC` | Title by descending order. | | `UPDATED_ASC` | Updated at ascending order. | | `UPDATED_DESC` | Updated at descending order. | | `created_asc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `CREATED_ASC`. | | `created_desc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `CREATED_DESC`. | | `updated_asc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `UPDATED_ASC`. | | `updated_desc` **{warning-solid}** | **Deprecated** in 13.5. This was renamed. Use: `UPDATED_DESC`. | ### `WorkItemState` State of a GitLab work item. | Value | Description | | ----- | ----------- | | `CLOSED` | In closed state. | | `OPEN` | In open state. | ### `WorkItemStateEvent` Values for work item state events. | Value | Description | | ----- | ----------- | | `CLOSE` | Closes the work item. | | `REOPEN` | Reopens the work item. | ### `WorkItemTodoUpdateAction` Values for work item to-do update enum. | Value | Description | | ----- | ----------- | | `ADD` | Adds the to-do. | | `MARK_AS_DONE` | Marks the to-do as done. | ### `WorkItemWidgetType` Type of a work item widget. | Value | Description | | ----- | ----------- | | `ASSIGNEES` | Assignees widget. | | `AWARD_EMOJI` | Award Emoji widget. | | `CURRENT_USER_TODOS` | Current User Todos widget. | | `DESCRIPTION` | Description widget. | | `HEALTH_STATUS` | Health Status widget. | | `HIERARCHY` | Hierarchy widget. | | `ITERATION` | Iteration widget. | | `LABELS` | Labels widget. | | `MILESTONE` | Milestone widget. | | `NOTES` | Notes widget. | | `NOTIFICATIONS` | Notifications widget. | | `PROGRESS` | Progress widget. | | `REQUIREMENT_LEGACY` | Requirement Legacy widget. | | `START_AND_DUE_DATE` | Start And Due Date widget. | | `STATUS` | Status widget. | | `TEST_REPORTS` | Test Reports widget. | | `WEIGHT` | Weight widget. | ## Scalar types Scalar values are atomic values, and do not have fields of their own. Basic scalars include strings, boolean values, and numbers. This schema also defines various custom scalar values, such as types for times and dates. This schema includes custom scalar types for identifiers, with a specific type for each kind of object. For more information, read about [Scalar Types](https://graphql.org/learn/schema/#scalar-types) on `graphql.org`. ### `AchievementsAchievementID` A `AchievementsAchievementID` is a global ID. It is encoded as a string. An example `AchievementsAchievementID` is: `"gid://gitlab/Achievements::Achievement/1"`. ### `AchievementsUserAchievementID` A `AchievementsUserAchievementID` is a global ID. It is encoded as a string. An example `AchievementsUserAchievementID` is: `"gid://gitlab/Achievements::UserAchievement/1"`. ### `AiModelID` A `AiModelID` is a global ID. It is encoded as a string. An example `AiModelID` is: `"gid://gitlab/Ai::Model/1"`. ### `AlertManagementAlertID` A `AlertManagementAlertID` is a global ID. It is encoded as a string. An example `AlertManagementAlertID` is: `"gid://gitlab/AlertManagement::Alert/1"`. ### `AlertManagementHttpIntegrationID` A `AlertManagementHttpIntegrationID` is a global ID. It is encoded as a string. An example `AlertManagementHttpIntegrationID` is: `"gid://gitlab/AlertManagement::HttpIntegration/1"`. ### `AnalyticsDevopsAdoptionEnabledNamespaceID` A `AnalyticsDevopsAdoptionEnabledNamespaceID` is a global ID. It is encoded as a string. An example `AnalyticsDevopsAdoptionEnabledNamespaceID` is: `"gid://gitlab/Analytics::DevopsAdoption::EnabledNamespace/1"`. ### `AppSecFuzzingCoverageCorpusID` A `AppSecFuzzingCoverageCorpusID` is a global ID. It is encoded as a string. An example `AppSecFuzzingCoverageCorpusID` is: `"gid://gitlab/AppSec::Fuzzing::Coverage::Corpus/1"`. ### `AuditEventsExternalAuditEventDestinationID` A `AuditEventsExternalAuditEventDestinationID` is a global ID. It is encoded as a string. An example `AuditEventsExternalAuditEventDestinationID` is: `"gid://gitlab/AuditEvents::ExternalAuditEventDestination/1"`. ### `AuditEventsInstanceExternalAuditEventDestinationID` A `AuditEventsInstanceExternalAuditEventDestinationID` is a global ID. It is encoded as a string. An example `AuditEventsInstanceExternalAuditEventDestinationID` is: `"gid://gitlab/AuditEvents::InstanceExternalAuditEventDestination/1"`. ### `AuditEventsStreamingHeaderID` A `AuditEventsStreamingHeaderID` is a global ID. It is encoded as a string. An example `AuditEventsStreamingHeaderID` is: `"gid://gitlab/AuditEvents::Streaming::Header/1"`. ### `AwardableID` A `AwardableID` is a global ID. It is encoded as a string. An example `AwardableID` is: `"gid://gitlab/Awardable/1"`. ### `BigInt` Represents non-fractional signed whole numeric values. Since the value may exceed the size of a 32-bit integer, it's encoded as a string. ### `BoardID` A `BoardID` is a global ID. It is encoded as a string. An example `BoardID` is: `"gid://gitlab/Board/1"`. ### `BoardsEpicBoardID` A `BoardsEpicBoardID` is a global ID. It is encoded as a string. An example `BoardsEpicBoardID` is: `"gid://gitlab/Boards::EpicBoard/1"`. ### `BoardsEpicListID` A `BoardsEpicListID` is a global ID. It is encoded as a string. An example `BoardsEpicListID` is: `"gid://gitlab/Boards::EpicList/1"`. ### `Boolean` Represents `true` or `false` values. ### `CiBuildID` A `CiBuildID` is a global ID. It is encoded as a string. An example `CiBuildID` is: `"gid://gitlab/Ci::Build/1"`. ### `CiJobArtifactID` A `CiJobArtifactID` is a global ID. It is encoded as a string. An example `CiJobArtifactID` is: `"gid://gitlab/Ci::JobArtifact/1"`. ### `CiPipelineID` A `CiPipelineID` is a global ID. It is encoded as a string. An example `CiPipelineID` is: `"gid://gitlab/Ci::Pipeline/1"`. ### `CiPipelineScheduleID` A `CiPipelineScheduleID` is a global ID. It is encoded as a string. An example `CiPipelineScheduleID` is: `"gid://gitlab/Ci::PipelineSchedule/1"`. ### `CiRunnerID` A `CiRunnerID` is a global ID. It is encoded as a string. An example `CiRunnerID` is: `"gid://gitlab/Ci::Runner/1"`. ### `CiRunnerManagerID` A `CiRunnerManagerID` is a global ID. It is encoded as a string. An example `CiRunnerManagerID` is: `"gid://gitlab/Ci::RunnerManager/1"`. ### `CiStageID` A `CiStageID` is a global ID. It is encoded as a string. An example `CiStageID` is: `"gid://gitlab/Ci::Stage/1"`. ### `ClustersAgentID` A `ClustersAgentID` is a global ID. It is encoded as a string. An example `ClustersAgentID` is: `"gid://gitlab/Clusters::Agent/1"`. ### `ClustersAgentTokenID` A `ClustersAgentTokenID` is a global ID. It is encoded as a string. An example `ClustersAgentTokenID` is: `"gid://gitlab/Clusters::AgentToken/1"`. ### `ClustersClusterID` A `ClustersClusterID` is a global ID. It is encoded as a string. An example `ClustersClusterID` is: `"gid://gitlab/Clusters::Cluster/1"`. ### `Color` Color represented as a hex code or named color. For example: "#fefefe". ### `ComplianceManagementFrameworkID` A `ComplianceManagementFrameworkID` is a global ID. It is encoded as a string. An example `ComplianceManagementFrameworkID` is: `"gid://gitlab/ComplianceManagement::Framework/1"`. ### `ContainerRepositoryID` A `ContainerRepositoryID` is a global ID. It is encoded as a string. An example `ContainerRepositoryID` is: `"gid://gitlab/ContainerRepository/1"`. ### `CustomEmojiID` A `CustomEmojiID` is a global ID. It is encoded as a string. An example `CustomEmojiID` is: `"gid://gitlab/CustomEmoji/1"`. ### `CustomerRelationsContactID` A `CustomerRelationsContactID` is a global ID. It is encoded as a string. An example `CustomerRelationsContactID` is: `"gid://gitlab/CustomerRelations::Contact/1"`. ### `CustomerRelationsOrganizationID` A `CustomerRelationsOrganizationID` is a global ID. It is encoded as a string. An example `CustomerRelationsOrganizationID` is: `"gid://gitlab/CustomerRelations::Organization/1"`. ### `DastProfileID` A `DastProfileID` is a global ID. It is encoded as a string. An example `DastProfileID` is: `"gid://gitlab/Dast::Profile/1"`. ### `DastProfileScheduleID` A `DastProfileScheduleID` is a global ID. It is encoded as a string. An example `DastProfileScheduleID` is: `"gid://gitlab/Dast::ProfileSchedule/1"`. ### `DastScannerProfileID` A `DastScannerProfileID` is a global ID. It is encoded as a string. An example `DastScannerProfileID` is: `"gid://gitlab/DastScannerProfile/1"`. ### `DastSiteProfileID` A `DastSiteProfileID` is a global ID. It is encoded as a string. An example `DastSiteProfileID` is: `"gid://gitlab/DastSiteProfile/1"`. ### `DastSiteTokenID` A `DastSiteTokenID` is a global ID. It is encoded as a string. An example `DastSiteTokenID` is: `"gid://gitlab/DastSiteToken/1"`. ### `DastSiteValidationID` A `DastSiteValidationID` is a global ID. It is encoded as a string. An example `DastSiteValidationID` is: `"gid://gitlab/DastSiteValidation/1"`. ### `Date` Date represented in ISO 8601. ### `DependencyProxyManifestID` A `DependencyProxyManifestID` is a global ID. It is encoded as a string. An example `DependencyProxyManifestID` is: `"gid://gitlab/DependencyProxy::Manifest/1"`. ### `DeploymentID` A `DeploymentID` is a global ID. It is encoded as a string. An example `DeploymentID` is: `"gid://gitlab/Deployment/1"`. ### `DescriptionVersionID` A `DescriptionVersionID` is a global ID. It is encoded as a string. An example `DescriptionVersionID` is: `"gid://gitlab/DescriptionVersion/1"`. ### `DesignManagementDesignAtVersionID` A `DesignManagementDesignAtVersionID` is a global ID. It is encoded as a string. An example `DesignManagementDesignAtVersionID` is: `"gid://gitlab/DesignManagement::DesignAtVersion/1"`. ### `DesignManagementDesignID` A `DesignManagementDesignID` is a global ID. It is encoded as a string. An example `DesignManagementDesignID` is: `"gid://gitlab/DesignManagement::Design/1"`. ### `DesignManagementVersionID` A `DesignManagementVersionID` is a global ID. It is encoded as a string. An example `DesignManagementVersionID` is: `"gid://gitlab/DesignManagement::Version/1"`. ### `DiffNoteID` A `DiffNoteID` is a global ID. It is encoded as a string. An example `DiffNoteID` is: `"gid://gitlab/DiffNote/1"`. ### `DiscussionID` A `DiscussionID` is a global ID. It is encoded as a string. An example `DiscussionID` is: `"gid://gitlab/Discussion/1"`. ### `Duration` Duration between two instants, represented as a fractional number of seconds. For example: 12.3334. ### `EnvironmentID` A `EnvironmentID` is a global ID. It is encoded as a string. An example `EnvironmentID` is: `"gid://gitlab/Environment/1"`. ### `EpicID` A `EpicID` is a global ID. It is encoded as a string. An example `EpicID` is: `"gid://gitlab/Epic/1"`. ### `EpicTreeSortingID` A `EpicTreeSortingID` is a global ID. It is encoded as a string. An example `EpicTreeSortingID` is: `"gid://gitlab/EpicTreeSorting/1"`. ### `Float` Represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point). ### `GeoBaseRegistryID` A `GeoBaseRegistryID` is a global ID. It is encoded as a string. An example `GeoBaseRegistryID` is: `"gid://gitlab/Geo::BaseRegistry/1"`. ### `GitlabErrorTrackingDetailedErrorID` A `GitlabErrorTrackingDetailedErrorID` is a global ID. It is encoded as a string. An example `GitlabErrorTrackingDetailedErrorID` is: `"gid://gitlab/Gitlab::ErrorTracking::DetailedError/1"`. ### `GlobalID` A global identifier. A global identifier represents an object uniquely across the application. An example of such an identifier is `"gid://gitlab/User/1"`. Global identifiers are encoded as strings. ### `GroupID` A `GroupID` is a global ID. It is encoded as a string. An example `GroupID` is: `"gid://gitlab/Group/1"`. ### `ID` Represents a unique identifier that is Base64 obfuscated. It is often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `"VXNlci0xMA=="`) or integer (such as `4`) input value will be accepted as an ID. ### `ISO8601Date` An ISO 8601-encoded date. ### `IncidentManagementEscalationPolicyID` A `IncidentManagementEscalationPolicyID` is a global ID. It is encoded as a string. An example `IncidentManagementEscalationPolicyID` is: `"gid://gitlab/IncidentManagement::EscalationPolicy/1"`. ### `IncidentManagementEscalationRuleID` A `IncidentManagementEscalationRuleID` is a global ID. It is encoded as a string. An example `IncidentManagementEscalationRuleID` is: `"gid://gitlab/IncidentManagement::EscalationRule/1"`. ### `IncidentManagementIssuableResourceLinkID` A `IncidentManagementIssuableResourceLinkID` is a global ID. It is encoded as a string. An example `IncidentManagementIssuableResourceLinkID` is: `"gid://gitlab/IncidentManagement::IssuableResourceLink/1"`. ### `IncidentManagementOncallParticipantID` A `IncidentManagementOncallParticipantID` is a global ID. It is encoded as a string. An example `IncidentManagementOncallParticipantID` is: `"gid://gitlab/IncidentManagement::OncallParticipant/1"`. ### `IncidentManagementOncallRotationID` A `IncidentManagementOncallRotationID` is a global ID. It is encoded as a string. An example `IncidentManagementOncallRotationID` is: `"gid://gitlab/IncidentManagement::OncallRotation/1"`. ### `IncidentManagementTimelineEventID` A `IncidentManagementTimelineEventID` is a global ID. It is encoded as a string. An example `IncidentManagementTimelineEventID` is: `"gid://gitlab/IncidentManagement::TimelineEvent/1"`. ### `IncidentManagementTimelineEventTagID` A `IncidentManagementTimelineEventTagID` is a global ID. It is encoded as a string. An example `IncidentManagementTimelineEventTagID` is: `"gid://gitlab/IncidentManagement::TimelineEventTag/1"`. ### `Int` Represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1. ### `IntegrationsPrometheusID` A `IntegrationsPrometheusID` is a global ID. It is encoded as a string. An example `IntegrationsPrometheusID` is: `"gid://gitlab/Integrations::Prometheus/1"`. The older format `"gid://gitlab/PrometheusService/1"` was deprecated in 14.1. ### `IssuableID` A `IssuableID` is a global ID. It is encoded as a string. An example `IssuableID` is: `"gid://gitlab/Issuable/1"`. ### `IssueID` A `IssueID` is a global ID. It is encoded as a string. An example `IssueID` is: `"gid://gitlab/Issue/1"`. ### `IssueParentID` A `IssueParentID` is a global ID. It is encoded as a string. An example `IssueParentID` is: `"gid://gitlab/IssueParent/1"`. ### `IterationID` A `IterationID` is a global ID. It is encoded as a string. An example `IterationID` is: `"gid://gitlab/Iteration/1"`. The older format `"gid://gitlab/EEIteration/1"` was deprecated in 13.3. ### `IterationsCadenceID` A `IterationsCadenceID` is a global ID. It is encoded as a string. An example `IterationsCadenceID` is: `"gid://gitlab/Iterations::Cadence/1"`. ### `JSON` Represents untyped JSON. ### `JobID` A `CommitStatusID` is a global ID. It is encoded as a string. An example `CommitStatusID` is: `"gid://gitlab/CommitStatus/1"`. ### `JsonString` JSON object as raw string. ### `LabelID` A `LabelID` is a global ID. It is encoded as a string. An example `LabelID` is: `"gid://gitlab/Label/1"`. ### `ListID` A `ListID` is a global ID. It is encoded as a string. An example `ListID` is: `"gid://gitlab/List/1"`. ### `MergeRequestID` A `MergeRequestID` is a global ID. It is encoded as a string. An example `MergeRequestID` is: `"gid://gitlab/MergeRequest/1"`. ### `MetricsDashboardAnnotationID` A `MetricsDashboardAnnotationID` is a global ID. It is encoded as a string. An example `MetricsDashboardAnnotationID` is: `"gid://gitlab/Metrics::Dashboard::Annotation/1"`. ### `MilestoneID` A `MilestoneID` is a global ID. It is encoded as a string. An example `MilestoneID` is: `"gid://gitlab/Milestone/1"`. ### `NamespaceID` A `NamespaceID` is a global ID. It is encoded as a string. An example `NamespaceID` is: `"gid://gitlab/Namespace/1"`. ### `NamespacesNamespaceBanID` A `NamespacesNamespaceBanID` is a global ID. It is encoded as a string. An example `NamespacesNamespaceBanID` is: `"gid://gitlab/Namespaces::NamespaceBan/1"`. ### `NoteID` A `NoteID` is a global ID. It is encoded as a string. An example `NoteID` is: `"gid://gitlab/Note/1"`. ### `NoteableID` A `NoteableID` is a global ID. It is encoded as a string. An example `NoteableID` is: `"gid://gitlab/Noteable/1"`. ### `PackagesConanFileMetadatumID` A `PackagesConanFileMetadatumID` is a global ID. It is encoded as a string. An example `PackagesConanFileMetadatumID` is: `"gid://gitlab/Packages::Conan::FileMetadatum/1"`. ### `PackagesConanMetadatumID` A `PackagesConanMetadatumID` is a global ID. It is encoded as a string. An example `PackagesConanMetadatumID` is: `"gid://gitlab/Packages::Conan::Metadatum/1"`. ### `PackagesDependencyID` A `PackagesDependencyID` is a global ID. It is encoded as a string. An example `PackagesDependencyID` is: `"gid://gitlab/Packages::Dependency/1"`. ### `PackagesDependencyLinkID` A `PackagesDependencyLinkID` is a global ID. It is encoded as a string. An example `PackagesDependencyLinkID` is: `"gid://gitlab/Packages::DependencyLink/1"`. ### `PackagesMavenMetadatumID` A `PackagesMavenMetadatumID` is a global ID. It is encoded as a string. An example `PackagesMavenMetadatumID` is: `"gid://gitlab/Packages::Maven::Metadatum/1"`. ### `PackagesNugetDependencyLinkMetadatumID` A `PackagesNugetDependencyLinkMetadatumID` is a global ID. It is encoded as a string. An example `PackagesNugetDependencyLinkMetadatumID` is: `"gid://gitlab/Packages::Nuget::DependencyLinkMetadatum/1"`. ### `PackagesNugetMetadatumID` A `PackagesNugetMetadatumID` is a global ID. It is encoded as a string. An example `PackagesNugetMetadatumID` is: `"gid://gitlab/Packages::Nuget::Metadatum/1"`. ### `PackagesPackageFileID` A `PackagesPackageFileID` is a global ID. It is encoded as a string. An example `PackagesPackageFileID` is: `"gid://gitlab/Packages::PackageFile/1"`. ### `PackagesPackageID` A `PackagesPackageID` is a global ID. It is encoded as a string. An example `PackagesPackageID` is: `"gid://gitlab/Packages::Package/1"`. ### `PackagesPypiMetadatumID` A `PackagesPypiMetadatumID` is a global ID. It is encoded as a string. An example `PackagesPypiMetadatumID` is: `"gid://gitlab/Packages::Pypi::Metadatum/1"`. ### `PathLockID` A `PathLockID` is a global ID. It is encoded as a string. An example `PathLockID` is: `"gid://gitlab/PathLock/1"`. ### `PayloadAlertFieldPathSegment` String or integer. ### `ProjectID` A `ProjectID` is a global ID. It is encoded as a string. An example `ProjectID` is: `"gid://gitlab/Project/1"`. ### `ReleaseID` A `ReleaseID` is a global ID. It is encoded as a string. An example `ReleaseID` is: `"gid://gitlab/Release/1"`. ### `ReleasesLinkID` A `ReleasesLinkID` is a global ID. It is encoded as a string. An example `ReleasesLinkID` is: `"gid://gitlab/Releases::Link/1"`. ### `RemoteDevelopmentWorkspaceID` A `RemoteDevelopmentWorkspaceID` is a global ID. It is encoded as a string. An example `RemoteDevelopmentWorkspaceID` is: `"gid://gitlab/RemoteDevelopment::Workspace/1"`. ### `SecurityTrainingProviderID` A `SecurityTrainingProviderID` is a global ID. It is encoded as a string. An example `SecurityTrainingProviderID` is: `"gid://gitlab/Security::TrainingProvider/1"`. ### `SnippetID` A `SnippetID` is a global ID. It is encoded as a string. An example `SnippetID` is: `"gid://gitlab/Snippet/1"`. ### `String` Represents textual data as UTF-8 character sequences. This type is most often used by GraphQL to represent free-form human-readable text. ### `SystemNoteMetadataID` A `SystemNoteMetadataID` is a global ID. It is encoded as a string. An example `SystemNoteMetadataID` is: `"gid://gitlab/SystemNoteMetadata/1"`. ### `TerraformStateID` A `TerraformStateID` is a global ID. It is encoded as a string. An example `TerraformStateID` is: `"gid://gitlab/Terraform::State/1"`. ### `Time` Time represented in ISO 8601. For example: "2021-03-09T14:58:50+00:00". See `https://www.iso.org/iso-8601-date-and-time-format.html`. ### `TimelogID` A `TimelogID` is a global ID. It is encoded as a string. An example `TimelogID` is: `"gid://gitlab/Timelog/1"`. ### `TodoID` A `TodoID` is a global ID. It is encoded as a string. An example `TodoID` is: `"gid://gitlab/Todo/1"`. ### `TodoableID` A `TodoableID` is a global ID. It is encoded as a string. An example `TodoableID` is: `"gid://gitlab/Todoable/1"`. ### `UntrustedRegexp` A regexp containing patterns sourced from user input. ### `Upload` ### `UploadID` A `UploadID` is a global ID. It is encoded as a string. An example `UploadID` is: `"gid://gitlab/Upload/1"`. ### `UserID` A `UserID` is a global ID. It is encoded as a string. An example `UserID` is: `"gid://gitlab/User/1"`. ### `UsersSavedReplyID` A `UsersSavedReplyID` is a global ID. It is encoded as a string. An example `UsersSavedReplyID` is: `"gid://gitlab/Users::SavedReply/1"`. ### `VulnerabilitiesExternalIssueLinkID` A `VulnerabilitiesExternalIssueLinkID` is a global ID. It is encoded as a string. An example `VulnerabilitiesExternalIssueLinkID` is: `"gid://gitlab/Vulnerabilities::ExternalIssueLink/1"`. ### `VulnerabilitiesScannerID` A `VulnerabilitiesScannerID` is a global ID. It is encoded as a string. An example `VulnerabilitiesScannerID` is: `"gid://gitlab/Vulnerabilities::Scanner/1"`. ### `VulnerabilityID` A `VulnerabilityID` is a global ID. It is encoded as a string. An example `VulnerabilityID` is: `"gid://gitlab/Vulnerability/1"`. ### `WorkItemID` A `WorkItemID` is a global ID. It is encoded as a string. An example `WorkItemID` is: `"gid://gitlab/WorkItem/1"`. While we transition from Issues into Work Items this type will temporarily support `IssueID` like: `"gid://gitlab/Issue/1"`. This behavior will be removed without notice in the future. ### `WorkItemsTypeID` A `WorkItemsTypeID` is a global ID. It is encoded as a string. An example `WorkItemsTypeID` is: `"gid://gitlab/WorkItems::Type/1"`. ## Abstract types Abstract types (unions and interfaces) are ways the schema can represent values that may be one of several concrete types. - A [`Union`](https://graphql.org/learn/schema/#union-types) is a set of possible types. The types might not have any fields in common. - An [`Interface`](https://graphql.org/learn/schema/#interfaces) is a defined set of fields. Types may `implement` an interface, which guarantees that they have all the fields in the set. A type may implement more than one interface. See the [GraphQL documentation](https://graphql.org/learn/) for more information on using abstract types. ### Unions #### `DependencyLinkMetadata` Represents metadata associated with a dependency link. One of: - [`NugetDependencyLinkMetadata`](#nugetdependencylinkmetadata) #### `Issuable` Represents an issuable. One of: - [`Epic`](#epic) - [`Issue`](#issue) - [`MergeRequest`](#mergerequest) - [`WorkItem`](#workitem) #### `JobNeedUnion` One of: - [`CiBuildNeed`](#cibuildneed) - [`CiJob`](#cijob) #### `NoteableType` Represents an object that supports notes. One of: - [`Design`](#design) - [`Issue`](#issue) - [`MergeRequest`](#mergerequest) #### `PackageMetadata` Represents metadata associated with a Package. One of: - [`ComposerMetadata`](#composermetadata) - [`ConanMetadata`](#conanmetadata) - [`MavenMetadata`](#mavenmetadata) - [`NugetMetadata`](#nugetmetadata) - [`PypiMetadata`](#pypimetadata) #### `Registrable` One of: - [`CiSecureFileRegistry`](#cisecurefileregistry) - [`ContainerRepositoryRegistry`](#containerrepositoryregistry) - [`DependencyProxyBlobRegistry`](#dependencyproxyblobregistry) - [`DependencyProxyManifestRegistry`](#dependencyproxymanifestregistry) - [`JobArtifactRegistry`](#jobartifactregistry) - [`LfsObjectRegistry`](#lfsobjectregistry) - [`MergeRequestDiffRegistry`](#mergerequestdiffregistry) - [`PackageFileRegistry`](#packagefileregistry) - [`PagesDeploymentRegistry`](#pagesdeploymentregistry) - [`PipelineArtifactRegistry`](#pipelineartifactregistry) - [`ProjectWikiRepositoryRegistry`](#projectwikirepositoryregistry) - [`SnippetRepositoryRegistry`](#snippetrepositoryregistry) - [`TerraformStateVersionRegistry`](#terraformstateversionregistry) - [`UploadRegistry`](#uploadregistry) #### `SecurityPolicySource` Represents a policy source. Its fields depend on the source type. One of: - [`GroupSecurityPolicySource`](#groupsecuritypolicysource) - [`ProjectSecurityPolicySource`](#projectsecuritypolicysource) #### `VulnerabilityDetail` Represents a vulnerability detail field. The fields with data will depend on the vulnerability detail type. One of: - [`VulnerabilityDetailBase`](#vulnerabilitydetailbase) - [`VulnerabilityDetailBoolean`](#vulnerabilitydetailboolean) - [`VulnerabilityDetailCode`](#vulnerabilitydetailcode) - [`VulnerabilityDetailCommit`](#vulnerabilitydetailcommit) - [`VulnerabilityDetailDiff`](#vulnerabilitydetaildiff) - [`VulnerabilityDetailFileLocation`](#vulnerabilitydetailfilelocation) - [`VulnerabilityDetailInt`](#vulnerabilitydetailint) - [`VulnerabilityDetailList`](#vulnerabilitydetaillist) - [`VulnerabilityDetailMarkdown`](#vulnerabilitydetailmarkdown) - [`VulnerabilityDetailModuleLocation`](#vulnerabilitydetailmodulelocation) - [`VulnerabilityDetailTable`](#vulnerabilitydetailtable) - [`VulnerabilityDetailText`](#vulnerabilitydetailtext) - [`VulnerabilityDetailUrl`](#vulnerabilitydetailurl) #### `VulnerabilityLocation` Represents a vulnerability location. The fields with data will depend on the vulnerability report type. One of: - [`VulnerabilityLocationClusterImageScanning`](#vulnerabilitylocationclusterimagescanning) - [`VulnerabilityLocationContainerScanning`](#vulnerabilitylocationcontainerscanning) - [`VulnerabilityLocationCoverageFuzzing`](#vulnerabilitylocationcoveragefuzzing) - [`VulnerabilityLocationDast`](#vulnerabilitylocationdast) - [`VulnerabilityLocationDependencyScanning`](#vulnerabilitylocationdependencyscanning) - [`VulnerabilityLocationGeneric`](#vulnerabilitylocationgeneric) - [`VulnerabilityLocationSast`](#vulnerabilitylocationsast) - [`VulnerabilityLocationSecretDetection`](#vulnerabilitylocationsecretdetection) ### Interfaces #### `AlertManagementIntegration` Implementations: - [`AlertManagementHttpIntegration`](#alertmanagementhttpintegration) - [`AlertManagementPrometheusIntegration`](#alertmanagementprometheusintegration) ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `active` | [`Boolean`](#boolean) | Whether the endpoint is currently accepting alerts. | | `apiUrl` | [`String`](#string) | URL at which Prometheus metrics can be queried to populate the metrics dashboard. | | `id` | [`ID!`](#id) | ID of the integration. | | `name` | [`String`](#string) | Name of the integration. | | `token` | [`String`](#string) | Token used to authenticate alert notification requests. | | `type` | [`AlertManagementIntegrationType!`](#alertmanagementintegrationtype) | Type of integration. | | `url` | [`String`](#string) | Endpoint which accepts alert notifications. | #### `CiVariable` Implementations: - [`CiGroupVariable`](#cigroupvariable) - [`CiInstanceVariable`](#ciinstancevariable) - [`CiManualVariable`](#cimanualvariable) - [`CiProjectVariable`](#ciprojectvariable) - [`PipelineScheduleVariable`](#pipelineschedulevariable) ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`ID!`](#id) | ID of the variable. | | `key` | [`String`](#string) | Name of the variable. | | `raw` | [`Boolean`](#boolean) | Indicates whether the variable is raw. | | `value` | [`String`](#string) | Value of the variable. | | `variableType` | [`CiVariableType`](#civariabletype) | Type of the variable. | #### `CommitSignature` Represents signing information for a commit. Implementations: - [`GpgSignature`](#gpgsignature) - [`SshSignature`](#sshsignature) - [`X509Signature`](#x509signature) ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `commitSha` | [`String`](#string) | SHA of the associated commit. | | `project` | [`Project`](#project) | Project of the associated commit. | | `verificationStatus` | [`VerificationStatus`](#verificationstatus) | Indicates verification status of the associated key or certificate. | #### `CurrentUserTodos` Implementations: - [`BoardEpic`](#boardepic) - [`Design`](#design) - [`Epic`](#epic) - [`EpicIssue`](#epicissue) - [`Issue`](#issue) - [`MergeRequest`](#mergerequest) - [`WorkItemWidgetCurrentUserTodos`](#workitemwidgetcurrentusertodos) ##### Fields with arguments ###### `CurrentUserTodos.currentUserTodos` To-do items for the current user. Returns [`TodoConnection!`](#todoconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ####### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `state` | [`TodoStateEnum`](#todostateenum) | State of the to-do items. | #### `DesignFields` Implementations: - [`Design`](#design) - [`DesignAtVersion`](#designatversion) ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `diffRefs` | [`DiffRefs!`](#diffrefs) | Diff refs for this design. | | `event` | [`DesignVersionEvent!`](#designversionevent) | How this design was changed in the current version. | | `filename` | [`String!`](#string) | Filename of the design. | | `fullPath` | [`String!`](#string) | Full path to the design file. | | `id` | [`ID!`](#id) | ID of this design. | | `image` | [`String!`](#string) | URL of the full-sized image. | | `imageV432x230` | [`String`](#string) | The URL of the design resized to fit within the bounds of 432x230. This will be `null` if the image has not been generated. | | `issue` | [`Issue!`](#issue) | Issue the design belongs to. | | `notesCount` | [`Int!`](#int) | Total count of user-created notes for this design. | | `project` | [`Project!`](#project) | Project the design belongs to. | #### `Entry` Implementations: - [`Blob`](#blob) - [`Submodule`](#submodule) - [`TreeEntry`](#treeentry) ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `flatPath` | [`String!`](#string) | Flat path of the entry. | | `id` | [`ID!`](#id) | ID of the entry. | | `name` | [`String!`](#string) | Name of the entry. | | `path` | [`String!`](#string) | Path of the entry. | | `sha` | [`String!`](#string) | Last commit SHA for the entry. | | `type` | [`EntryType!`](#entrytype) | Type of tree entry. | #### `Eventable` Implementations: - [`BoardEpic`](#boardepic) - [`Epic`](#epic) ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `events` | [`EventConnection`](#eventconnection) | List of events associated with the object. (see [Connections](#connections)) | #### `ExternalAuditEventDestinationInterface` Implementations: - [`ExternalAuditEventDestination`](#externalauditeventdestination) - [`InstanceExternalAuditEventDestination`](#instanceexternalauditeventdestination) ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `destinationUrl` | [`String!`](#string) | External destination to send audit events to. | | `id` | [`ID!`](#id) | ID of the destination. | | `verificationToken` | [`String!`](#string) | Verification token to validate source of event. | #### `MemberInterface` Implementations: - [`GroupMember`](#groupmember) - [`ProjectMember`](#projectmember) ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `accessLevel` | [`AccessLevel`](#accesslevel) | GitLab::Access level. | | `createdAt` | [`Time`](#time) | Date and time the membership was created. | | `createdBy` | [`UserCore`](#usercore) | User that authorized membership. | | `expiresAt` | [`Time`](#time) | Date and time the membership expires. | | `id` | [`ID!`](#id) | ID of the member. | | `updatedAt` | [`Time`](#time) | Date and time the membership was last updated. | | `user` | [`UserCore`](#usercore) | User that is associated with the member object. | ##### Fields with arguments ###### `MemberInterface.mergeRequestInteraction` Find a merge request. Returns [`UserMergeRequestInteraction`](#usermergerequestinteraction). ####### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`MergeRequestID!`](#mergerequestid) | Global ID of the merge request. | #### `NoteableInterface` Implementations: - [`AlertManagementAlert`](#alertmanagementalert) - [`BoardEpic`](#boardepic) - [`Design`](#design) - [`Epic`](#epic) - [`EpicIssue`](#epicissue) - [`Issue`](#issue) - [`MergeRequest`](#mergerequest) - [`Snippet`](#snippet) - [`Vulnerability`](#vulnerability) ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `commenters` | [`UserCoreConnection!`](#usercoreconnection) | All commenters on this noteable. (see [Connections](#connections)) | | `discussions` | [`DiscussionConnection!`](#discussionconnection) | All discussions on this noteable. (see [Connections](#connections)) | | `notes` | [`NoteConnection!`](#noteconnection) | All notes on this noteable. (see [Connections](#connections)) | #### `OrchestrationPolicy` Implementations: - [`ScanExecutionPolicy`](#scanexecutionpolicy) - [`ScanResultPolicy`](#scanresultpolicy) ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `description` | [`String!`](#string) | Description of the policy. | | `enabled` | [`Boolean!`](#boolean) | Indicates whether this policy is enabled. | | `name` | [`String!`](#string) | Name of the policy. | | `updatedAt` | [`Time!`](#time) | Timestamp of when the policy YAML was last updated. | | `yaml` | [`String!`](#string) | YAML definition of the policy. | #### `PackageFileMetadata` Represents metadata associated with a Package file. Implementations: - [`ConanFileMetadata`](#conanfilemetadata) - [`HelmFileMetadata`](#helmfilemetadata) ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `createdAt` | [`Time!`](#time) | Date of creation. | | `updatedAt` | [`Time!`](#time) | Date of most recent update. | #### `ResolvableInterface` Implementations: - [`Discussion`](#discussion) - [`Note`](#note) ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `resolvable` | [`Boolean!`](#boolean) | Indicates if the object can be resolved. | | `resolved` | [`Boolean!`](#boolean) | Indicates if the object is resolved. | | `resolvedAt` | [`Time`](#time) | Timestamp of when the object was resolved. | | `resolvedBy` | [`UserCore`](#usercore) | User who resolved the object. | #### `Service` Implementations: - [`BaseService`](#baseservice) - [`JiraService`](#jiraservice) ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `active` | [`Boolean`](#boolean) | Indicates if the service is active. | | `serviceType` | [`ServiceType`](#servicetype) | Type of the service. | | `type` | [`String`](#string) | Class name of the service. | #### `TimeboxReportInterface` Implementations: - [`Iteration`](#iteration) - [`Milestone`](#milestone) ##### Fields with arguments ###### `TimeboxReportInterface.report` Historically accurate report about the timebox. Returns [`TimeboxReport`](#timeboxreport). ####### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `fullPath` | [`String`](#string) | Full path of the project or group used as a scope for report. For example, `gitlab-org` or `gitlab-org/gitlab`. | #### `Todoable` Implementations: - [`AlertManagementAlert`](#alertmanagementalert) - [`BoardEpic`](#boardepic) - [`Commit`](#commit) - [`Design`](#design) - [`Epic`](#epic) - [`EpicIssue`](#epicissue) - [`Issue`](#issue) - [`MergeRequest`](#mergerequest) - [`WorkItem`](#workitem) ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `webUrl` | [`String`](#string) | URL of this object. | #### `User` Representation of a GitLab user. Implementations: - [`MergeRequestAssignee`](#mergerequestassignee) - [`MergeRequestAuthor`](#mergerequestauthor) - [`MergeRequestParticipant`](#mergerequestparticipant) - [`MergeRequestReviewer`](#mergerequestreviewer) - [`UserCore`](#usercore) ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `avatarUrl` | [`String`](#string) | URL of the user's avatar. | | `bot` | [`Boolean!`](#boolean) | Indicates if the user is a bot. | | `callouts` | [`UserCalloutConnection`](#usercalloutconnection) | User callouts that belong to the user. (see [Connections](#connections)) | | `commitEmail` | [`String`](#string) | User's default commit email. | | `email` **{warning-solid}** | [`String`](#string) | **Deprecated** in 13.7. This was renamed. Use: [`User.publicEmail`](#userpublicemail). | | `emails` | [`EmailConnection`](#emailconnection) | User's email addresses. (see [Connections](#connections)) | | `gitpodEnabled` | [`Boolean`](#boolean) | Whether Gitpod is enabled at the user level. | | `groupCount` | [`Int`](#int) | Group count for the user. | | `groupMemberships` | [`GroupMemberConnection`](#groupmemberconnection) | Group memberships of the user. (see [Connections](#connections)) | | `id` | [`ID!`](#id) | ID of the user. | | `location` | [`String`](#string) | Location of the user. | | `name` | [`String!`](#string) | Human-readable name of the user. Returns `****` if the user is a project bot and the requester does not have permission to view the project. | | `namespace` | [`Namespace`](#namespace) | Personal namespace of the user. | | `namespaceCommitEmails` | [`NamespaceCommitEmailConnection`](#namespacecommitemailconnection) | User's custom namespace commit emails. (see [Connections](#connections)) | | `preferencesGitpodPath` | [`String`](#string) | Web path to the Gitpod section within user preferences. | | `profileEnableGitpodPath` | [`String`](#string) | Web path to enable Gitpod for the user. | | `projectMemberships` | [`ProjectMemberConnection`](#projectmemberconnection) | Project memberships of the user. (see [Connections](#connections)) | | `publicEmail` | [`String`](#string) | User's public email. | | `savedReplies` | [`SavedReplyConnection`](#savedreplyconnection) | Saved replies authored by the user. Will not return saved replies if `saved_replies` feature flag is disabled. (see [Connections](#connections)) | | `state` | [`UserState!`](#userstate) | State of the user. | | `status` | [`UserStatus`](#userstatus) | User status. | | `userAchievements` **{warning-solid}** | [`UserAchievementConnection`](#userachievementconnection) | **Introduced** in 15.10. This feature is an Experiment. It can be changed or removed at any time. Achievements for the user. Only returns for namespaces where the `achievements` feature flag is enabled. | | `userPermissions` | [`UserPermissions!`](#userpermissions) | Permissions for the current user on the resource. | | `username` | [`String!`](#string) | Username of the user. Unique within this instance of GitLab. | | `webPath` | [`String!`](#string) | Web path of the user. | | `webUrl` | [`String!`](#string) | Web URL of the user. | ##### Fields with arguments ###### `User.assignedMergeRequests` Merge requests assigned to the user. Returns [`MergeRequestConnection`](#mergerequestconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ####### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `approved` | [`Boolean`](#boolean) | Limit results to approved merge requests. Available only when the feature flag `mr_approved_filter` is enabled. | | `authorUsername` | [`String`](#string) | Username of the author. | | `createdAfter` | [`Time`](#time) | Merge requests created after this timestamp. | | `createdBefore` | [`Time`](#time) | Merge requests created before this timestamp. | | `draft` | [`Boolean`](#boolean) | Limit result to draft merge requests. | | `iids` | [`[String!]`](#string) | Array of IIDs of merge requests, for example `[1, 2]`. | | `labels` | [`[String!]`](#string) | Array of label names. All resolved merge requests will have all of these labels. | | `mergedAfter` | [`Time`](#time) | Merge requests merged after this date. | | `mergedBefore` | [`Time`](#time) | Merge requests merged before this date. | | `milestoneTitle` | [`String`](#string) | Title of the milestone. | | `not` | [`MergeRequestsResolverNegatedParams`](#mergerequestsresolvernegatedparams) | List of negated arguments. Warning: this argument is experimental and a subject to change in future. | | `projectId` | [`ProjectID`](#projectid) | The global ID of the project the authored merge requests should be in. Incompatible with projectPath. | | `projectPath` | [`String`](#string) | The full-path of the project the authored merge requests should be in. Incompatible with projectId. | | `reviewerUsername` | [`String`](#string) | Username of the reviewer. | | `sort` | [`MergeRequestSort`](#mergerequestsort) | Sort merge requests by this criteria. | | `sourceBranches` | [`[String!]`](#string) | Array of source branch names. All resolved merge requests will have one of these branches as their source. | | `state` | [`MergeRequestState`](#mergerequeststate) | Merge request state. If provided, all resolved merge requests will have this state. | | `targetBranches` | [`[String!]`](#string) | Array of target branch names. All resolved merge requests will have one of these branches as their target. | | `updatedAfter` | [`Time`](#time) | Merge requests updated after this timestamp. | | `updatedBefore` | [`Time`](#time) | Merge requests updated before this timestamp. | ###### `User.authoredMergeRequests` Merge requests authored by the user. Returns [`MergeRequestConnection`](#mergerequestconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ####### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `approved` | [`Boolean`](#boolean) | Limit results to approved merge requests. Available only when the feature flag `mr_approved_filter` is enabled. | | `assigneeUsername` | [`String`](#string) | Username of the assignee. | | `createdAfter` | [`Time`](#time) | Merge requests created after this timestamp. | | `createdBefore` | [`Time`](#time) | Merge requests created before this timestamp. | | `draft` | [`Boolean`](#boolean) | Limit result to draft merge requests. | | `iids` | [`[String!]`](#string) | Array of IIDs of merge requests, for example `[1, 2]`. | | `labels` | [`[String!]`](#string) | Array of label names. All resolved merge requests will have all of these labels. | | `mergedAfter` | [`Time`](#time) | Merge requests merged after this date. | | `mergedBefore` | [`Time`](#time) | Merge requests merged before this date. | | `milestoneTitle` | [`String`](#string) | Title of the milestone. | | `not` | [`MergeRequestsResolverNegatedParams`](#mergerequestsresolvernegatedparams) | List of negated arguments. Warning: this argument is experimental and a subject to change in future. | | `projectId` | [`ProjectID`](#projectid) | The global ID of the project the authored merge requests should be in. Incompatible with projectPath. | | `projectPath` | [`String`](#string) | The full-path of the project the authored merge requests should be in. Incompatible with projectId. | | `reviewerUsername` | [`String`](#string) | Username of the reviewer. | | `sort` | [`MergeRequestSort`](#mergerequestsort) | Sort merge requests by this criteria. | | `sourceBranches` | [`[String!]`](#string) | Array of source branch names. All resolved merge requests will have one of these branches as their source. | | `state` | [`MergeRequestState`](#mergerequeststate) | Merge request state. If provided, all resolved merge requests will have this state. | | `targetBranches` | [`[String!]`](#string) | Array of target branch names. All resolved merge requests will have one of these branches as their target. | | `updatedAfter` | [`Time`](#time) | Merge requests updated after this timestamp. | | `updatedBefore` | [`Time`](#time) | Merge requests updated before this timestamp. | ###### `User.groups` Groups where the user has access. Returns [`GroupConnection`](#groupconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ####### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `permissionScope` | [`GroupPermission`](#grouppermission) | Filter by permissions the user has on groups. | | `search` | [`String`](#string) | Search by group name or path. | ###### `User.reviewRequestedMergeRequests` Merge requests assigned to the user for review. Returns [`MergeRequestConnection`](#mergerequestconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ####### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `approved` | [`Boolean`](#boolean) | Limit results to approved merge requests. Available only when the feature flag `mr_approved_filter` is enabled. | | `assigneeUsername` | [`String`](#string) | Username of the assignee. | | `authorUsername` | [`String`](#string) | Username of the author. | | `createdAfter` | [`Time`](#time) | Merge requests created after this timestamp. | | `createdBefore` | [`Time`](#time) | Merge requests created before this timestamp. | | `draft` | [`Boolean`](#boolean) | Limit result to draft merge requests. | | `iids` | [`[String!]`](#string) | Array of IIDs of merge requests, for example `[1, 2]`. | | `labels` | [`[String!]`](#string) | Array of label names. All resolved merge requests will have all of these labels. | | `mergedAfter` | [`Time`](#time) | Merge requests merged after this date. | | `mergedBefore` | [`Time`](#time) | Merge requests merged before this date. | | `milestoneTitle` | [`String`](#string) | Title of the milestone. | | `not` | [`MergeRequestsResolverNegatedParams`](#mergerequestsresolvernegatedparams) | List of negated arguments. Warning: this argument is experimental and a subject to change in future. | | `projectId` | [`ProjectID`](#projectid) | The global ID of the project the authored merge requests should be in. Incompatible with projectPath. | | `projectPath` | [`String`](#string) | The full-path of the project the authored merge requests should be in. Incompatible with projectId. | | `sort` | [`MergeRequestSort`](#mergerequestsort) | Sort merge requests by this criteria. | | `sourceBranches` | [`[String!]`](#string) | Array of source branch names. All resolved merge requests will have one of these branches as their source. | | `state` | [`MergeRequestState`](#mergerequeststate) | Merge request state. If provided, all resolved merge requests will have this state. | | `targetBranches` | [`[String!]`](#string) | Array of target branch names. All resolved merge requests will have one of these branches as their target. | | `updatedAfter` | [`Time`](#time) | Merge requests updated after this timestamp. | | `updatedBefore` | [`Time`](#time) | Merge requests updated before this timestamp. | ###### `User.savedReply` Saved reply authored by the user. Will not return saved reply if `saved_replies` feature flag is disabled. Returns [`SavedReply`](#savedreply). ####### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`UsersSavedReplyID!`](#userssavedreplyid) | ID of a saved reply. | ###### `User.snippets` Snippets authored by the user. Returns [`SnippetConnection`](#snippetconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ####### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ids` | [`[SnippetID!]`](#snippetid) | Array of global snippet IDs. For example, `gid://gitlab/ProjectSnippet/1`. | | `type` | [`TypeEnum`](#typeenum) | Type of snippet. | | `visibility` | [`VisibilityScopesEnum`](#visibilityscopesenum) | Visibility of the snippet. | ###### `User.starredProjects` Projects starred by the user. Returns [`ProjectConnection`](#projectconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ####### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `search` | [`String`](#string) | Search query. | ###### `User.timelogs` Time logged by the user. Returns [`TimelogConnection`](#timelogconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ####### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `endDate` | [`Time`](#time) | List timelogs within a date range where the logged date is equal to or before endDate. | | `endTime` | [`Time`](#time) | List timelogs within a time range where the logged time is equal to or before endTime. | | `groupId` | [`GroupID`](#groupid) | List timelogs for a group. | | `projectId` | [`ProjectID`](#projectid) | List timelogs for a project. | | `sort` | [`TimelogSort`](#timelogsort) | List timelogs in a particular order. | | `startDate` | [`Time`](#time) | List timelogs within a date range where the logged date is equal to or after startDate. | | `startTime` | [`Time`](#time) | List timelogs within a time range where the logged time is equal to or after startTime. | | `username` | [`String`](#string) | List timelogs for a user. | ###### `User.todos` To-do items of the user. Returns [`TodoConnection`](#todoconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ####### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `action` | [`[TodoActionEnum!]`](#todoactionenum) | Action to be filtered. | | `authorId` | [`[ID!]`](#id) | ID of an author. | | `groupId` | [`[ID!]`](#id) | ID of a group. | | `projectId` | [`[ID!]`](#id) | ID of a project. | | `state` | [`[TodoStateEnum!]`](#todostateenum) | State of the todo. | | `type` | [`[TodoTargetEnum!]`](#todotargetenum) | Type of the todo. | ###### `User.workspaces` Workspaces owned by the current user. Returns [`WorkspaceConnection`](#workspaceconnection). This field returns a [connection](#connections). It accepts the four standard [pagination arguments](#connection-pagination-arguments): `before: String`, `after: String`, `first: Int`, `last: Int`. ####### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `ids` | [`[RemoteDevelopmentWorkspaceID!]`](#remotedevelopmentworkspaceid) | Array of global workspace IDs. For example, `["gid://gitlab/RemoteDevelopment::Workspace/1"]`. | #### `WorkItemWidget` Implementations: - [`WorkItemWidgetAssignees`](#workitemwidgetassignees) - [`WorkItemWidgetAwardEmoji`](#workitemwidgetawardemoji) - [`WorkItemWidgetCurrentUserTodos`](#workitemwidgetcurrentusertodos) - [`WorkItemWidgetDescription`](#workitemwidgetdescription) - [`WorkItemWidgetHealthStatus`](#workitemwidgethealthstatus) - [`WorkItemWidgetHierarchy`](#workitemwidgethierarchy) - [`WorkItemWidgetIteration`](#workitemwidgetiteration) - [`WorkItemWidgetLabels`](#workitemwidgetlabels) - [`WorkItemWidgetMilestone`](#workitemwidgetmilestone) - [`WorkItemWidgetNotes`](#workitemwidgetnotes) - [`WorkItemWidgetNotifications`](#workitemwidgetnotifications) - [`WorkItemWidgetProgress`](#workitemwidgetprogress) - [`WorkItemWidgetRequirementLegacy`](#workitemwidgetrequirementlegacy) - [`WorkItemWidgetStartAndDueDate`](#workitemwidgetstartandduedate) - [`WorkItemWidgetStatus`](#workitemwidgetstatus) - [`WorkItemWidgetTestReports`](#workitemwidgettestreports) - [`WorkItemWidgetWeight`](#workitemwidgetweight) ##### Fields | Name | Type | Description | | ---- | ---- | ----------- | | `type` | [`WorkItemWidgetType`](#workitemwidgettype) | Widget type. | ## Input types Types that may be used as arguments (all scalar types may also be used as arguments). Only general use input types are listed here. For mutation input types, see the associated mutation type above. ### `AiExplainCodeInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `messages` | [`[AiExplainCodeMessageInput!]!`](#aiexplaincodemessageinput) | Code messages that is passed to be explained by AI. | | `resourceId` | [`AiModelID!`](#aimodelid) | Global ID of the resource to mutate. | ### `AiExplainCodeMessageInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `content` | [`String!`](#string) | Content of the message. | | `role` | [`String!`](#string) | Role of the message (system, user, assistant). | ### `AiExplainVulnerabilityInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `resourceId` | [`AiModelID!`](#aimodelid) | Global ID of the resource to mutate. | ### `AiGenerateDescriptionInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `content` | [`String!`](#string) | Content of the message. | | `descriptionTemplateName` | [`String`](#string) | Name of the description template to use to generate message off of. | | `resourceId` | [`AiModelID!`](#aimodelid) | Global ID of the resource to mutate. | ### `AiSummarizeCommentsInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `resourceId` | [`AiModelID!`](#aimodelid) | Global ID of the resource to mutate. | ### `AiTanukiBotInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `question` | [`String!`](#string) | GitLab documentation question for AI to answer. | | `resourceId` | [`AiModelID!`](#aimodelid) | Global ID of the resource to mutate. | ### `AlertManagementPayloadAlertFieldInput` Field that are available while modifying the custom mapping attributes for an HTTP integration. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `fieldName` | [`AlertManagementPayloadAlertFieldName!`](#alertmanagementpayloadalertfieldname) | GitLab alert field name. | | `label` | [`String`](#string) | Human-readable label of the payload path. | | `path` | [`[PayloadAlertFieldPathSegment!]!`](#payloadalertfieldpathsegment) | Path to value inside payload JSON. | | `type` | [`AlertManagementPayloadAlertFieldType!`](#alertmanagementpayloadalertfieldtype) | Type of the parsed value. | ### `BoardIssueInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `assigneeUsername` | [`[String]`](#string) | Filter by assignee username. | | `assigneeWildcardId` | [`AssigneeWildcardId`](#assigneewildcardid) | Filter by assignee wildcard. Incompatible with assigneeUsername. | | `authorUsername` | [`String`](#string) | Filter by author username. | | `confidential` | [`Boolean`](#boolean) | Filter by confidentiality. | | `epicId` | [`EpicID`](#epicid) | Filter by epic ID. Incompatible with epicWildcardId. | | `epicWildcardId` | [`EpicWildcardId`](#epicwildcardid) | Filter by epic ID wildcard. Incompatible with epicId. | | `healthStatusFilter` | [`HealthStatusFilter`](#healthstatusfilter) | Health status of the issue, "none" and "any" values are supported. | | `iids` | [`[String!]`](#string) | List of IIDs of issues. For example `["1", "2"]`. | | `iterationCadenceId` | [`[IterationsCadenceID!]`](#iterationscadenceid) | Filter by a list of iteration cadence IDs. | | `iterationId` | [`[IterationID!]`](#iterationid) | Filter by a list of iteration IDs. Incompatible with iterationWildcardId. | | `iterationTitle` | [`String`](#string) | Filter by iteration title. | | `iterationWildcardId` | [`IterationWildcardId`](#iterationwildcardid) | Filter by iteration ID wildcard. | | `labelName` | [`[String]`](#string) | Filter by label name. | | `milestoneTitle` | [`String`](#string) | Filter by milestone title. | | `milestoneWildcardId` | [`MilestoneWildcardId`](#milestonewildcardid) | Filter by milestone ID wildcard. | | `myReactionEmoji` | [`String`](#string) | Filter by reaction emoji applied by the current user. Wildcard values "NONE" and "ANY" are supported. | | `not` | [`NegatedBoardIssueInput`](#negatedboardissueinput) | List of negated arguments. | | `or` | [`UnionedIssueFilterInput`](#unionedissuefilterinput) | List of arguments with inclusive OR. | | `releaseTag` | [`String`](#string) | Filter by release tag. | | `search` | [`String`](#string) | Search query for issue title or description. | | `types` | [`[IssueType!]`](#issuetype) | Filter by the given issue types. | | `weight` | [`String`](#string) | Filter by weight. | | `weightWildcardId` | [`WeightWildcardId`](#weightwildcardid) | Filter by weight ID wildcard. Incompatible with weight. | ### `CiVariableInput` Attributes for defining a CI/CD variable. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `key` | [`String!`](#string) | Name of the variable. | | `value` | [`String!`](#string) | Value of the variable. | ### `CommitAction` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `action` | [`CommitActionMode!`](#commitactionmode) | Action to perform: create, delete, move, update, or chmod. | | `content` | [`String`](#string) | Content of the file. | | `encoding` | [`CommitEncoding`](#commitencoding) | Encoding of the file. Default is text. | | `executeFilemode` | [`Boolean`](#boolean) | Enables/disables the execute flag on the file. | | `filePath` | [`String!`](#string) | Full path to the file. | | `lastCommitId` | [`String`](#string) | Last known file commit ID. | | `previousPath` | [`String`](#string) | Original full path to the file being moved. | ### `ComplianceFrameworkFilters` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`ComplianceManagementFrameworkID`](#compliancemanagementframeworkid) | ID of the compliance framework. | | `not` | [`NegatedComplianceFrameworkFilters`](#negatedcomplianceframeworkfilters) | Negated compliance framework filter input. | | `presenceFilter` | [`ComplianceFrameworkPresenceFilter`](#complianceframeworkpresencefilter) | Checks presence of compliance framework of the project, "none" and "any" values are supported. | ### `ComplianceFrameworkInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `color` | [`String`](#string) | New color representation of the compliance framework in hex format. e.g. #FCA121. | | `default` | [`Boolean`](#boolean) | Set this compliance framework as the default framework for the group. | | `description` | [`String`](#string) | New description for the compliance framework. | | `name` | [`String`](#string) | New name for the compliance framework. | | `pipelineConfigurationFullPath` | [`String`](#string) | Full path of the compliance pipeline configuration stored in a project repository, such as `.gitlab/.compliance-gitlab-ci.yml@compliance/hipaa` **(ULTIMATE)**. | ### `ComplianceViolationInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `mergedAfter` | [`Date`](#date) | Merge requests merged after this date (inclusive). | | `mergedBefore` | [`Date`](#date) | Merge requests merged before this date (inclusive). | | `projectIds` | [`[ProjectID!]`](#projectid) | Filter compliance violations by project. | | `targetBranch` | [`String`](#string) | Filter compliance violations by target branch. | ### `DastProfileCadenceInput` Represents DAST Profile Cadence. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `duration` | [`Int`](#int) | Duration of the DAST Profile Cadence. | | `unit` | [`DastProfileCadenceUnit`](#dastprofilecadenceunit) | Unit for the duration of DAST Profile Cadence. | ### `DastProfileScheduleInput` Input type for DAST Profile Schedules. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `active` | [`Boolean`](#boolean) | Status of a Dast Profile Schedule. | | `cadence` | [`DastProfileCadenceInput`](#dastprofilecadenceinput) | Cadence of a Dast Profile Schedule. | | `startsAt` | [`Time`](#time) | Start time of a Dast Profile Schedule. | | `timezone` | [`String`](#string) | Time Zone for the Start time of a Dast Profile Schedule. | ### `DastSiteProfileAuthInput` Input type for DastSiteProfile authentication. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `enabled` | [`Boolean`](#boolean) | Indicates whether authentication is enabled. | | `password` | [`String`](#string) | Password to authenticate with on the target. | | `passwordField` | [`String`](#string) | Name of password field at the sign-in HTML form. | | `submitField` | [`String`](#string) | Name or ID of sign-in submit button at the sign-in HTML form. | | `url` | [`String`](#string) | The URL of the page containing the sign-in HTML form on the target website. | | `username` | [`String`](#string) | Username to authenticate with on the target. | | `usernameField` | [`String`](#string) | Name of username field at the sign-in HTML form. | ### `DeploymentsOrderByInput` Values for ordering deployments by a specific field. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `createdAt` | [`SortDirectionEnum`](#sortdirectionenum) | Order by Created time. | | `finishedAt` | [`SortDirectionEnum`](#sortdirectionenum) | Order by Finished time. | ### `DiffImagePositionInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `baseSha` | [`String`](#string) | Merge base of the branch the comment was made on. | | `headSha` | [`String!`](#string) | SHA of the HEAD at the time the comment was made. | | `height` | [`Int!`](#int) | Total height of the image. | | `paths` | [`DiffPathsInput!`](#diffpathsinput) | The paths of the file that was changed. Both of the properties of this input are optional, but at least one of them is required. | | `startSha` | [`String!`](#string) | SHA of the branch being compared against. | | `width` | [`Int!`](#int) | Total width of the image. | | `x` | [`Int!`](#int) | X position of the note. | | `y` | [`Int!`](#int) | Y position of the note. | ### `DiffPathsInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `newPath` | [`String`](#string) | Path of the file on the HEAD SHA. | | `oldPath` | [`String`](#string) | Path of the file on the start SHA. | ### `DiffPositionInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `baseSha` | [`String`](#string) | Merge base of the branch the comment was made on. | | `headSha` | [`String!`](#string) | SHA of the HEAD at the time the comment was made. | | `newLine` | [`Int`](#int) | Line on HEAD SHA that was changed. Please see the [REST API Documentation](https://docs.gitlab.com/ee/api/discussions.html#create-a-new-thread-in-the-merge-request-diff) for more information on how to use this field. | | `oldLine` | [`Int`](#int) | Line on start SHA that was changed. Please see the [REST API Documentation](https://docs.gitlab.com/ee/api/discussions.html#create-a-new-thread-in-the-merge-request-diff) for more information on how to use this field. | | `paths` | [`DiffPathsInput!`](#diffpathsinput) | The paths of the file that was changed. Both of the properties of this input are optional, but at least one of them is required. | | `startSha` | [`String!`](#string) | SHA of the branch being compared against. | ### `EpicFilters` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `authorUsername` | [`String`](#string) | Filter by author username. | | `confidential` | [`Boolean`](#boolean) | Filter by confidentiality. | | `labelName` | [`[String]`](#string) | Filter by label name. | | `myReactionEmoji` | [`String`](#string) | Filter by reaction emoji applied by the current user. Wildcard values "NONE" and "ANY" are supported. | | `not` | [`NegatedEpicBoardIssueInput`](#negatedepicboardissueinput) | Negated epic arguments. | | `or` | [`UnionedEpicFilterInput`](#unionedepicfilterinput) | List of arguments with inclusive OR. Ignored unless `or_issuable_queries` flag is enabled. | | `search` | [`String`](#string) | Search query for epic title or description. | ### `EpicTreeNodeFieldsInputType` A node of an epic tree. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `adjacentReferenceId` | [`EpicTreeSortingID`](#epictreesortingid) | ID of the epic issue or issue the epic or issue is switched with. | | `id` | [`EpicTreeSortingID!`](#epictreesortingid) | ID of the epic issue or epic that is being moved. | | `newParentId` | [`EpicID`](#epicid) | ID of the new parent epic. | | `relativePosition` | [`MoveType`](#movetype) | Type of switch. Valid values are `after` or `before`. | ### `EscalationRuleInput` Represents an escalation rule. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `elapsedTimeSeconds` | [`Int!`](#int) | Time in seconds before the rule is activated. | | `oncallScheduleIid` | [`ID`](#id) | On-call schedule to notify. | | `status` | [`EscalationRuleStatus!`](#escalationrulestatus) | Status required to prevent the rule from activating. | | `username` | [`String`](#string) | Username of the user to notify. | ### `GenerateTestFileInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `filePath` | [`String!`](#string) | File path to generate test files for. | | `resourceId` | [`AiModelID!`](#aimodelid) | Global ID of the resource to mutate. | ### `JiraUsersMappingInputType` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `gitlabId` | [`Int`](#int) | ID of the GitLab user. | | `jiraAccountId` | [`String!`](#string) | Jira account ID of the user. | ### `MergeRequestsResolverNegatedParams` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `labels` | [`[String!]`](#string) | Array of label names. All resolved merge requests will not have these labels. | | `milestoneTitle` | [`String`](#string) | Title of the milestone. | ### `NegatedBoardIssueInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `assigneeUsername` | [`[String]`](#string) | Filter by assignee username. | | `authorUsername` | [`String`](#string) | Filter by author username. | | `epicId` | [`EpicID`](#epicid) | Filter by epic ID. Incompatible with epicWildcardId. | | `healthStatusFilter` | [`HealthStatus`](#healthstatus) | Health status not applied to the issue. Includes issues where health status is not set. | | `iids` | [`[String!]`](#string) | List of IIDs of issues. For example `["1", "2"]`. | | `iterationId` | [`[IterationID!]`](#iterationid) | Filter by a list of iteration IDs. Incompatible with iterationWildcardId. | | `iterationTitle` | [`String`](#string) | Filter by iteration title. | | `iterationWildcardId` | [`NegatedIterationWildcardId`](#negatediterationwildcardid) | Filter by iteration ID wildcard. | | `labelName` | [`[String]`](#string) | Filter by label name. | | `milestoneTitle` | [`String`](#string) | Filter by milestone title. | | `milestoneWildcardId` | [`MilestoneWildcardId`](#milestonewildcardid) | Filter by milestone ID wildcard. | | `myReactionEmoji` | [`String`](#string) | Filter by reaction emoji applied by the current user. Wildcard values "NONE" and "ANY" are supported. | | `releaseTag` | [`String`](#string) | Filter by release tag. | | `types` | [`[IssueType!]`](#issuetype) | Filter by the given issue types. | | `weight` | [`String`](#string) | Filter by weight. | ### `NegatedComplianceFrameworkFilters` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`ComplianceManagementFrameworkID`](#compliancemanagementframeworkid) | ID of the compliance framework. | ### `NegatedEpicBoardIssueInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `authorUsername` | [`String`](#string) | Filter by author username. | | `labelName` | [`[String]`](#string) | Filter by label name. | | `myReactionEmoji` | [`String`](#string) | Filter by reaction emoji applied by the current user. Wildcard values "NONE" and "ANY" are supported. | ### `NegatedEpicFilterInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `authorUsername` | [`String`](#string) | Filter by author username. | | `labelName` | [`[String]`](#string) | Filter by label name. | | `myReactionEmoji` | [`String`](#string) | Filter by reaction emoji applied by the current user. | ### `NegatedIssueFilterInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `assigneeId` | [`String`](#string) | ID of a user not assigned to the issues. | | `assigneeUsernames` | [`[String!]`](#string) | Usernames of users not assigned to the issue. | | `authorUsername` | [`String`](#string) | Username of a user who didn't author the issue. | | `epicId` | [`String`](#string) | ID of an epic not associated with the issues. | | `healthStatusFilter` | [`HealthStatus`](#healthstatus) | Health status not applied to the issue. Includes issues where health status is not set. | | `iids` | [`[String!]`](#string) | List of IIDs of issues to exclude. For example, `[1, 2]`. | | `iterationId` | [`[ID!]`](#id) | List of iteration Global IDs not applied to the issue. | | `iterationWildcardId` | [`IterationWildcardId`](#iterationwildcardid) | Filter by negated iteration ID wildcard. | | `labelName` | [`[String!]`](#string) | Labels not applied to this issue. | | `milestoneTitle` | [`[String!]`](#string) | Milestone not applied to this issue. | | `milestoneWildcardId` | [`NegatedMilestoneWildcardId`](#negatedmilestonewildcardid) | Filter by negated milestone wildcard values. | | `myReactionEmoji` | [`String`](#string) | Filter by reaction emoji applied by the current user. | | `releaseTag` | [`[String!]`](#string) | Release tag not associated with the issue's milestone. Ignored when parent is a group. | | `types` | [`[IssueType!]`](#issuetype) | Filters out issues by the given issue types. | | `weight` | [`String`](#string) | Weight not applied to the issue. | ### `OncallRotationActivePeriodInputType` Active period time range for on-call rotation. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `endTime` | [`String!`](#string) | End of the rotation active period in 24 hour format. For example, "18:30". | | `startTime` | [`String!`](#string) | Start of the rotation active period in 24 hour format. For example, "18:30". | ### `OncallRotationDateInputType` Date input type for on-call rotation. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `date` | [`String!`](#string) | Date component of the date in YYYY-MM-DD format. | | `time` | [`String!`](#string) | Time component of the date in 24hr HH:MM format. | ### `OncallRotationLengthInputType` The rotation length of the on-call rotation. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `length` | [`Int!`](#int) | Rotation length of the on-call rotation. | | `unit` | [`OncallRotationUnitEnum!`](#oncallrotationunitenum) | Unit of the rotation length of the on-call rotation. | ### `OncallUserInputType` The rotation user and color palette. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `colorPalette` | [`DataVisualizationColorEnum`](#datavisualizationcolorenum) | Value of DataVisualizationColorEnum. The color from the palette to assign to the on-call user. | | `colorWeight` | [`DataVisualizationWeightEnum`](#datavisualizationweightenum) | Color weight to assign to for the on-call user. To view on-call schedules in GitLab, do not provide a value below 500. A value between 500 and 950 ensures sufficient contrast. | | `username` | [`String!`](#string) | Username of the user to participate in the on-call rotation. For example, `"user_one"`. | ### `PipelineScheduleVariableInput` Attributes for the pipeline schedule variable. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `key` | [`String!`](#string) | Name of the variable. | | `value` | [`String!`](#string) | Value of the variable. | | `variableType` | [`CiVariableType!`](#civariabletype) | Type of the variable. | ### `ReleaseAssetLinkInput` Fields that are available when modifying a release asset link. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `directAssetPath` | [`String`](#string) | Relative path for a direct asset link. | | `linkType` | [`ReleaseAssetLinkType`](#releaseassetlinktype) | Type of the asset link. | | `name` | [`String!`](#string) | Name of the asset link. | | `url` | [`String!`](#string) | URL of the asset link. | ### `ReleaseAssetsInput` Fields that are available when modifying release assets. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `links` | [`[ReleaseAssetLinkInput!]`](#releaseassetlinkinput) | List of asset links to associate to the release. | ### `RequirementLegacyFilterInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `legacyIids` | [`[String!]!`](#string) | List of legacy requirement IIDs of work items. or example `["1", "2"]`. | ### `SastCiConfigurationAnalyzersEntityInput` Represents the analyzers entity in SAST CI configuration. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `enabled` | [`Boolean!`](#boolean) | State of the analyzer. | | `name` | [`String!`](#string) | Name of analyzer. | | `variables` | [`[SastCiConfigurationEntityInput!]`](#sastciconfigurationentityinput) | List of variables for the analyzer. | ### `SastCiConfigurationEntityInput` Represents an entity in SAST CI configuration. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `defaultValue` | [`String!`](#string) | Default value that is used if value is empty. | | `field` | [`String!`](#string) | CI keyword of entity. | | `value` | [`String!`](#string) | Current value of the entity. | ### `SastCiConfigurationInput` Represents a CI configuration of SAST. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `analyzers` | [`[SastCiConfigurationAnalyzersEntityInput!]`](#sastciconfigurationanalyzersentityinput) | List of analyzers and related variables for the SAST configuration. | | `global` | [`[SastCiConfigurationEntityInput!]`](#sastciconfigurationentityinput) | List of global entities related to SAST configuration. | | `pipeline` | [`[SastCiConfigurationEntityInput!]`](#sastciconfigurationentityinput) | List of pipeline entities related to SAST configuration. | ### `SnippetBlobActionInputType` Represents an action to perform over a snippet file. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `action` | [`SnippetBlobActionEnum!`](#snippetblobactionenum) | Type of input action. | | `content` | [`String`](#string) | Snippet file content. | | `filePath` | [`String!`](#string) | Path of the snippet file. | | `previousPath` | [`String`](#string) | Previous path of the snippet file. | ### `StatusFilterInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `status` | [`RequirementStatusFilter!`](#requirementstatusfilter) | Status of the work item. | ### `StatusInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `status` | [`TestReportState!`](#testreportstate) | Status to assign to the work item. | ### `Timeframe` A time-frame defined as a closed inclusive range of two dates. #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `end` | [`Date!`](#date) | End of the range. | | `start` | [`Date!`](#date) | Start of the range. | ### `UnionedEpicFilterInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `authorUsername` | [`[String!]`](#string) | Filters epics that are authored by one of the given users. | | `labelName` | [`[String!]`](#string) | Filters epics that have at least one of the given labels. | ### `UnionedIssueFilterInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `assigneeUsernames` | [`[String!]`](#string) | Filters issues that are assigned to at least one of the given users. | | `authorUsernames` | [`[String!]`](#string) | Filters issues that are authored by one of the given users. | | `labelNames` | [`[String!]`](#string) | Filters issues that have at least one of the given labels. | ### `UpdateDiffImagePositionInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `height` | [`Int`](#int) | Total height of the image. | | `width` | [`Int`](#int) | Total width of the image. | | `x` | [`Int`](#int) | X position of the note. | | `y` | [`Int`](#int) | Y position of the note. | ### `VulnerabilityIdentifierInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `externalId` | [`String`](#string) | External ID of the vulnerability identifier. | | `externalType` | [`String`](#string) | External type of the vulnerability identifier. | | `name` | [`String!`](#string) | Name of the vulnerability identifier. | | `url` | [`String!`](#string) | URL of the vulnerability identifier. | ### `VulnerabilityScannerInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`String!`](#string) | Unique ID that identifies the scanner. | | `name` | [`String!`](#string) | Human readable value that identifies the analyzer, not required to be unique. | | `url` | [`String!`](#string) | Link to more information about the analyzer. | | `vendor` | [`VulnerabilityScannerVendorInput`](#vulnerabilityscannervendorinput) | Information about vendor/maintainer of the scanner. | | `version` | [`String!`](#string) | Version of the scanner. | ### `VulnerabilityScannerVendorInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `name` | [`String!`](#string) | Name of the vendor/maintainer. | ### `WorkItemConvertTaskInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `lineNumberEnd` | [`Int!`](#int) | Last line in the Markdown source that defines the list item task. | | `lineNumberStart` | [`Int!`](#int) | First line in the Markdown source that defines the list item task. | | `lockVersion` | [`Int!`](#int) | Current lock version of the work item containing the task in the description. | | `title` | [`String!`](#string) | Full string of the task to be replaced. New title for the created work item. | | `workItemTypeId` | [`WorkItemsTypeID!`](#workitemstypeid) | Global ID of the work item type used to create the new work item. | ### `WorkItemDeletedTaskInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `id` | [`WorkItemID!`](#workitemid) | Global ID of the task referenced in the work item's description. | | `lineNumberEnd` | [`Int!`](#int) | Last line in the Markdown source that defines the list item task. | | `lineNumberStart` | [`Int!`](#int) | First line in the Markdown source that defines the list item task. | ### `WorkItemUpdatedTaskInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `assigneesWidget` | [`WorkItemWidgetAssigneesInput`](#workitemwidgetassigneesinput) | Input for assignees widget. | | `awardEmojiWidget` | [`WorkItemWidgetAwardEmojiUpdateInput`](#workitemwidgetawardemojiupdateinput) | Input for award emoji widget. | | `confidential` | [`Boolean`](#boolean) | Sets the work item confidentiality. | | `currentUserTodosWidget` | [`WorkItemWidgetCurrentUserTodosInput`](#workitemwidgetcurrentusertodosinput) | Input for to-dos widget. | | `descriptionWidget` | [`WorkItemWidgetDescriptionInput`](#workitemwidgetdescriptioninput) | Input for description widget. | | `hierarchyWidget` | [`WorkItemWidgetHierarchyUpdateInput`](#workitemwidgethierarchyupdateinput) | Input for hierarchy widget. | | `id` | [`WorkItemID!`](#workitemid) | Global ID of the work item. | | `labelsWidget` | [`WorkItemWidgetLabelsUpdateInput`](#workitemwidgetlabelsupdateinput) | Input for labels widget. | | `milestoneWidget` | [`WorkItemWidgetMilestoneInput`](#workitemwidgetmilestoneinput) | Input for milestone widget. | | `notificationsWidget` | [`WorkItemWidgetNotificationsUpdateInput`](#workitemwidgetnotificationsupdateinput) | Input for notifications widget. | | `startAndDueDateWidget` | [`WorkItemWidgetStartAndDueDateUpdateInput`](#workitemwidgetstartandduedateupdateinput) | Input for start and due date widget. | | `stateEvent` | [`WorkItemStateEvent`](#workitemstateevent) | Close or reopen a work item. | | `title` | [`String`](#string) | Title of the work item. | ### `WorkItemWidgetAssigneesInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `assigneeIds` | [`[UserID!]!`](#userid) | Global IDs of assignees. | ### `WorkItemWidgetAwardEmojiUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `action` | [`WorkItemAwardEmojiUpdateAction!`](#workitemawardemojiupdateaction) | Action for the update. | | `name` | [`String!`](#string) | Emoji name. | ### `WorkItemWidgetCurrentUserTodosInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `action` | [`WorkItemTodoUpdateAction!`](#workitemtodoupdateaction) | Action for the update. | | `todoId` | [`TodoID`](#todoid) | Global ID of the to-do. If not present, all to-dos of the work item will be updated. | ### `WorkItemWidgetDescriptionInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `description` | [`String!`](#string) | Description of the work item. | ### `WorkItemWidgetHealthStatusInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `healthStatus` | [`HealthStatus`](#healthstatus) | Health status to be assigned to the work item. | ### `WorkItemWidgetHierarchyCreateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `parentId` | [`WorkItemID`](#workitemid) | Global ID of the parent work item. | ### `WorkItemWidgetHierarchyUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `adjacentWorkItemId` | [`WorkItemID`](#workitemid) | ID of the work item to be switched with. | | `childrenIds` | [`[WorkItemID!]`](#workitemid) | Global IDs of children work items. | | `parentId` | [`WorkItemID`](#workitemid) | Global ID of the parent work item. Use `null` to remove the association. | | `relativePosition` | [`RelativePositionType`](#relativepositiontype) | Type of switch. Valid values are `BEFORE` or `AFTER`. | ### `WorkItemWidgetIterationInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `iterationId` | [`IterationID`](#iterationid) | Iteration to assign to the work item. | ### `WorkItemWidgetLabelsUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `addLabelIds` | [`[LabelID!]`](#labelid) | Global IDs of labels to be added to the work item. | | `removeLabelIds` | [`[LabelID!]`](#labelid) | Global IDs of labels to be removed from the work item. | ### `WorkItemWidgetMilestoneInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `milestoneId` | [`MilestoneID`](#milestoneid) | Milestone to assign to the work item. | ### `WorkItemWidgetNotificationsUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `subscribed` | [`Boolean!`](#boolean) | Desired state of the subscription. | ### `WorkItemWidgetProgressInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `progress` | [`Int!`](#int) | Progress of the work item. | ### `WorkItemWidgetStartAndDueDateUpdateInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `dueDate` | [`Date`](#date) | Due date for the work item. | | `startDate` | [`Date`](#date) | Start date for the work item. | ### `WorkItemWidgetWeightInput` #### Arguments | Name | Type | Description | | ---- | ---- | ----------- | | `weight` | [`Int`](#int) | Weight of the work item. |