index.md 381 KB
Newer Older
1 2 3 4 5 6
---
stage: Plan
group: Project Management
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#designated-technical-writers
---

Felipe Artur's avatar
Felipe Artur committed
7 8 9 10 11 12 13 14 15 16 17
<!---
  This documentation is auto generated by a script.

  Please do not edit this file directly, check compile_docs task on lib/tasks/gitlab/graphql.rake.
--->

# 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).
18

19 20
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.
Felipe Artur's avatar
Felipe Artur committed
21

22
WARNING:
23
Fields that are deprecated are marked with **{warning-solid}**.
24
Items (fields, enums, etc) that have been removed according to our [deprecation process](../index.md#deprecation-and-removal-process) can be found
25
in [Removed Items](../removed_items.md).
26

27 28
<!-- vale gitlab.Spelling = NO -->

29
## `Query` type
30

31
The `Query` type contains the API's top-level entry points for all executable queries.
32

33
### `ciApplicationSettings`
34 35 36

CI related settings that apply to the entire instance.

37 38
Returns [`CiApplicationSettings`](#ciapplicationsettings).

39
### `ciConfig`
40 41 42

Get linted and processed contents of a CI config. Should not be requested more than once per request.

43 44
Returns [`CiConfig`](#ciconfig).

45
#### Arguments
46

47 48
| Name | Type | Description |
| ---- | ---- | ----------- |
49 50 51
| `content` | [`String!`](#string) | Contents of `.gitlab-ci.yml`. |
| `dryRun` | [`Boolean`](#boolean) | Run pipeline creation simulation, or only do static check. |
| `projectPath` | [`ID!`](#id) | The project of the CI config. |
52

53
### `containerRepository`
54 55 56

Find a container repository.

57 58
Returns [`ContainerRepositoryDetails`](#containerrepositorydetails).

59
#### Arguments
60

61 62
| Name | Type | Description |
| ---- | ---- | ----------- |
63
| `id` | [`ContainerRepositoryID!`](#containerrepositoryid) | The global ID of the container repository. |
64

65
### `currentUser`
66 67 68

Get information about current user.

69 70
Returns [`User`](#user).

71
### `designManagement`
72 73 74

Fields related to design management.

75 76
Returns [`DesignManagement!`](#designmanagement).

77
### `devopsAdoptionSegments`
78 79 80

Get configured DevOps adoption segments on the instance.

81 82
Returns [`DevopsAdoptionSegmentConnection`](#devopsadoptionsegmentconnection).

83 84 85 86
#### Arguments

| Name | Type | Description |
| ---- | ---- | ----------- |
87 88
| `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. |
89
| `directDescendantsOnly` | [`Boolean`](#boolean) | Limits segments to direct descendants of specified parent. |
90 91
| `first` | [`Int`](#int) | Returns the first _n_ elements from the list. |
| `last` | [`Int`](#int) | Returns the last _n_ elements from the list. |
92
| `parentNamespaceId` | [`NamespaceID`](#namespaceid) | Filter by ancestor namespace. |
93

94
### `echo`
95 96 97

Text to echo back.

98 99
Returns [`String!`](#string).

100 101 102 103
#### Arguments

| Name | Type | Description |
| ---- | ---- | ----------- |
104
| `text` | [`String!`](#string) | Text to echo back. |
105

106
### `geoNode`
107 108 109

Find a Geo node.

110 111
Returns [`GeoNode`](#geonode).

112
#### Arguments
113

114 115
| Name | Type | Description |
| ---- | ---- | ----------- |
116
| `name` | [`String`](#string) | The name of the Geo node. Defaults to the current Geo node name. |
117

118
### `group`
119 120 121

Find a group.

122 123
Returns [`Group`](#group).

124 125 126 127
#### Arguments

| Name | Type | Description |
| ---- | ---- | ----------- |
128
| `fullPath` | [`ID!`](#id) | The full path of the project, group or namespace, e.g., `gitlab-org/gitlab-foss`. |
129

130
### `instanceSecurityDashboard`
131 132 133

Fields related to Instance Security Dashboard.

134 135
Returns [`InstanceSecurityDashboard`](#instancesecuritydashboard).

136
### `instanceStatisticsMeasurements`
137

138
Get statistics on the instance. Deprecated in 13.10: This field was renamed. Use the `usageTrendsMeasurements` field instead.
139

140 141
Returns [`UsageTrendsMeasurementConnection`](#usagetrendsmeasurementconnection).

142 143 144 145
#### Arguments

| Name | Type | Description |
| ---- | ---- | ----------- |
146 147 148 149 150 151 152
| `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. |
| `identifier` | [`MeasurementIdentifier!`](#measurementidentifier) | The type of measurement/statistics to retrieve. |
| `last` | [`Int`](#int) | Returns the last _n_ elements from the list. |
| `recordedAfter` | [`Time`](#time) | Measurement recorded after this date. |
| `recordedBefore` | [`Time`](#time) | Measurement recorded before this date. |
153

154
### `issue`
155 156 157

Find an Issue.

158 159
Returns [`Issue`](#issue).

160 161 162 163
#### Arguments

| Name | Type | Description |
| ---- | ---- | ----------- |
164
| `id` | [`IssueID!`](#issueid) | The global ID of the Issue. |
165

166
### `iteration`
167 168 169

Find an iteration.

170 171
Returns [`Iteration`](#iteration).

172 173 174 175
#### Arguments

| Name | Type | Description |
| ---- | ---- | ----------- |
176
| `id` | [`IterationID!`](#iterationid) | Find an iteration by its ID. |
177

178
### `metadata`
179 180 181

Metadata about GitLab.

182 183
Returns [`Metadata`](#metadata).

184
### `milestone`
185 186 187

Find a milestone.

188 189
Returns [`Milestone`](#milestone).

190
#### Arguments
191

192 193
| Name | Type | Description |
| ---- | ---- | ----------- |
194
| `id` | [`MilestoneID!`](#milestoneid) | Find a milestone by its ID. |
195

196
### `namespace`
197 198 199

Find a namespace.

200 201
Returns [`Namespace`](#namespace).

202 203 204 205
#### Arguments

| Name | Type | Description |
| ---- | ---- | ----------- |
206
| `fullPath` | [`ID!`](#id) | The full path of the project, group or namespace, e.g., `gitlab-org/gitlab-foss`. |
207

208
### `package`
209 210 211

Find a package.

212 213
Returns [`Package`](#package).

214 215 216 217
#### Arguments

| Name | Type | Description |
| ---- | ---- | ----------- |
218
| `id` | [`PackagesPackageID!`](#packagespackageid) | The global ID of the package. |
219

220
### `project`
221 222 223

Find a project.

224 225
Returns [`Project`](#project).

226
#### Arguments
227

228 229
| Name | Type | Description |
| ---- | ---- | ----------- |
230
| `fullPath` | [`ID!`](#id) | The full path of the project, group or namespace, e.g., `gitlab-org/gitlab-foss`. |
231

232
### `projects`
233 234 235

Find projects visible to the current user.

236 237
Returns [`ProjectConnection`](#projectconnection).

238 239 240 241
#### Arguments

| Name | Type | Description |
| ---- | ---- | ----------- |
242 243 244 245 246 247 248 249 250
| `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. |
| `ids` | [`[ID!]`](#id) | Filter projects by IDs. |
| `last` | [`Int`](#int) | Returns the last _n_ elements from the list. |
| `membership` | [`Boolean`](#boolean) | Limit projects that the current user is a member of. |
| `search` | [`String`](#string) | Search query for project name, path, or description. |
| `searchNamespaces` | [`Boolean`](#boolean) | Include namespace in project search. |
| `sort` | [`String`](#string) | Sort order of results. |
251

252
### `runnerPlatforms`
253 254 255

Supported runner platforms.

256 257
Returns [`RunnerPlatformConnection`](#runnerplatformconnection).

258 259 260 261
#### Arguments

| Name | Type | Description |
| ---- | ---- | ----------- |
262 263 264 265
| `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. |
266

267
### `runnerSetup`
268 269 270

Get runner setup instructions.

271 272
Returns [`RunnerSetup`](#runnersetup).

273
#### Arguments
274

275 276
| Name | Type | Description |
| ---- | ---- | ----------- |
277 278 279 280
| `architecture` | [`String!`](#string) | Architecture to generate the instructions for. |
| `groupId` | [`GroupID`](#groupid) | Group to register the runner for. |
| `platform` | [`String!`](#string) | Platform to generate the instructions for. |
| `projectId` | [`ProjectID`](#projectid) | Project to register the runner for. |
281

282
### `snippets`
283 284 285

Find Snippets visible to the current user.

286 287
Returns [`SnippetConnection`](#snippetconnection).

288 289 290 291
#### Arguments

| Name | Type | Description |
| ---- | ---- | ----------- |
292 293 294 295 296 297 298 299 300 301
| `after` | [`String`](#string) | Returns the elements in the list that come after the specified cursor. |
| `authorId` | [`UserID`](#userid) | The ID of an author. |
| `before` | [`String`](#string) | Returns the elements in the list that come before the specified cursor. |
| `explore` | [`Boolean`](#boolean) | Explore personal snippets. |
| `first` | [`Int`](#int) | Returns the first _n_ elements from the list. |
| `ids` | [`[SnippetID!]`](#snippetid) | Array of global snippet IDs. For example, `gid://gitlab/ProjectSnippet/1`. |
| `last` | [`Int`](#int) | Returns the last _n_ elements from the list. |
| `projectId` | [`ProjectID`](#projectid) | The ID of a project. |
| `type` | [`TypeEnum`](#typeenum) | The type of snippet. |
| `visibility` | [`VisibilityScopesEnum`](#visibilityscopesenum) | The visibility of the snippet. |
302

303
### `usageTrendsMeasurements`
Sean Arnold's avatar
Sean Arnold committed
304 305 306

Get statistics on the instance.

307 308
Returns [`UsageTrendsMeasurementConnection`](#usagetrendsmeasurementconnection).

309 310 311 312
#### Arguments

| Name | Type | Description |
| ---- | ---- | ----------- |
313 314 315 316 317 318 319
| `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. |
| `identifier` | [`MeasurementIdentifier!`](#measurementidentifier) | The type of measurement/statistics to retrieve. |
| `last` | [`Int`](#int) | Returns the last _n_ elements from the list. |
| `recordedAfter` | [`Time`](#time) | Measurement recorded after this date. |
| `recordedBefore` | [`Time`](#time) | Measurement recorded before this date. |
Sean Arnold's avatar
Sean Arnold committed
320

321
### `user`
322 323 324

Find a user.

325 326
Returns [`User`](#user).

327 328 329 330
#### Arguments

| Name | Type | Description |
| ---- | ---- | ----------- |
331 332
| `id` | [`UserID`](#userid) | ID of the User. |
| `username` | [`String`](#string) | Username of the User. |
333

334
### `users`
335 336 337

Find users.

338 339
Returns [`UserConnection`](#userconnection).

340 341 342 343
#### Arguments

| Name | Type | Description |
| ---- | ---- | ----------- |
344 345 346 347 348 349 350 351 352
| `admins` | [`Boolean`](#boolean) | Return only admin users. |
| `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. |
| `ids` | [`[ID!]`](#id) | List of user Global IDs. |
| `last` | [`Int`](#int) | Returns the last _n_ elements from the list. |
| `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. |
353

354
### `vulnerabilities`
355 356 357

Vulnerabilities reported on projects on the current user's instance security dashboard.

358 359
Returns [`VulnerabilityConnection`](#vulnerabilityconnection).

360 361 362 363
#### Arguments

| Name | Type | Description |
| ---- | ---- | ----------- |
364 365 366 367 368 369 370 371 372 373 374 375
| `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. |
| `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. |
| `last` | [`Int`](#int) | Returns the last _n_ elements from the list. |
| `projectId` | [`[ID!]`](#id) | Filter vulnerabilities by project. |
| `reportType` | [`[VulnerabilityReportType!]`](#vulnerabilityreporttype) | Filter vulnerabilities by report type. |
| `scanner` | [`[String!]`](#string) | Filter vulnerabilities by VulnerabilityScanner.externalId. |
| `severity` | [`[VulnerabilitySeverity!]`](#vulnerabilityseverity) | Filter vulnerabilities by severity. |
| `sort` | [`VulnerabilitySort`](#vulnerabilitysort) | List vulnerabilities by sort order. |
| `state` | [`[VulnerabilityState!]`](#vulnerabilitystate) | Filter vulnerabilities by state. |
376

377
### `vulnerabilitiesCountByDay`
378 379 380

Number of vulnerabilities per day for the projects on the current user's instance security dashboard.

381 382
Returns [`VulnerabilitiesCountByDayConnection`](#vulnerabilitiescountbydayconnection).

383 384 385 386
#### Arguments

| Name | Type | Description |
| ---- | ---- | ----------- |
387 388 389 390 391 392
| `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. |
| `endDate` | [`ISO8601Date!`](#iso8601date) | Last day for which to fetch vulnerability history. |
| `first` | [`Int`](#int) | Returns the first _n_ elements from the list. |
| `last` | [`Int`](#int) | Returns the last _n_ elements from the list. |
| `startDate` | [`ISO8601Date!`](#iso8601date) | First day for which to fetch vulnerability history. |
393

394
### `vulnerabilitiesCountByDayAndSeverity`
395 396 397

Number of vulnerabilities per severity level, per day, for the projects on the current user's instance security dashboard. Deprecated in 13.3: Use `vulnerabilitiesCountByDay`.

398 399
Returns [`VulnerabilitiesCountByDayAndSeverityConnection`](#vulnerabilitiescountbydayandseverityconnection).

400
#### Arguments
401

402 403
| Name | Type | Description |
| ---- | ---- | ----------- |
404 405 406 407 408 409
| `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. |
| `endDate` | [`ISO8601Date!`](#iso8601date) | Last day for which to fetch vulnerability history. |
| `first` | [`Int`](#int) | Returns the first _n_ elements from the list. |
| `last` | [`Int`](#int) | Returns the last _n_ elements from the list. |
| `startDate` | [`ISO8601Date!`](#iso8601date) | First day for which to fetch vulnerability history. |
410

411
### `vulnerability`
412 413 414

Find a vulnerability.

415 416
Returns [`Vulnerability`](#vulnerability).

417 418 419 420
#### Arguments

| Name | Type | Description |
| ---- | ---- | ----------- |
421
| `id` | [`VulnerabilityID!`](#vulnerabilityid) | The Global ID of the Vulnerability. |
422

423 424
## Object types

425
Object types represent the resources that the GitLab GraphQL API can return.
426 427 428 429 430 431 432 433
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.

For more information, see
[Object Types and Fields](https://graphql.org/learn/schema/#object-types-and-fields)
on `graphql.org`.

434
### `AccessLevel`
435

436
Represents the access level of a relationship between a User and object that it is related to.
437

438 439
| Field | Type | Description |
| ----- | ---- | ----------- |
440 441
| `integerValue` | [`Int`](#int) | Integer representation of access level. |
| `stringValue` | [`AccessLevelEnum`](#accesslevelenum) | String representation of access level. |
442

443
### `AddAwardEmojiPayload`
Felipe Artur's avatar
Felipe Artur committed
444

445
Autogenerated return type of AddAwardEmoji.
Felipe Artur's avatar
Felipe Artur committed
446

447 448
| Field | Type | Description |
| ----- | ---- | ----------- |
449 450 451
| `awardEmoji` | [`AwardEmoji`](#awardemoji) | The 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. |
Felipe Artur's avatar
Felipe Artur committed
452

453
### `AddProjectToSecurityDashboardPayload`
454

455
Autogenerated return type of AddProjectToSecurityDashboard.
456

457 458
| Field | Type | Description |
| ----- | ---- | ----------- |
459 460 461
| `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. |
462

463
### `AdminSidekiqQueuesDeleteJobsPayload`
464

465
Autogenerated return type of AdminSidekiqQueuesDeleteJobs.
466

467 468
| Field | Type | Description |
| ----- | ---- | ----------- |
469 470 471
| `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. |
472

473
### `AlertManagementAlert`
474

475
Describes an alert from the project's Alert Management.
476

477 478
| Field | Type | Description |
| ----- | ---- | ----------- |
479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522
| `assignees` | [`UserConnection`](#userconnection) | Assignees of the alert. |
| `createdAt` | [`Time`](#time) | Timestamp the alert was created. |
| `description` | [`String`](#string) | Description of the alert. |
| `details` | [`JSON`](#json) | Alert details. |
| `detailsUrl` | [`String!`](#string) | The URL of the alert detail page. |
| `discussions` | [`DiscussionConnection!`](#discussionconnection) | All discussions on this noteable. |
| `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. |
| `iid` | [`ID!`](#id) | Internal ID of the alert. |
| `issue` | [`Issue`](#issue) | Issue attached to the alert. |
| `issueIid` **{warning-solid}** | [`ID`](#id) | **Deprecated:** Use issue field. Deprecated in 13.10. |
| `metricsDashboardUrl` | [`String`](#string) | URL for metrics embed for the alert. |
| `monitoringTool` | [`String`](#string) | Monitoring tool the alert came from. |
| `notes` | [`NoteConnection!`](#noteconnection) | All notes on this noteable. |
| `prometheusAlert` | [`PrometheusAlert`](#prometheusalert) | The 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. |
| `todos` | [`TodoConnection`](#todoconnection) | To-do items of the current user for the alert. |
| `updatedAt` | [`Time`](#time) | Timestamp the alert was last updated. |

### `AlertManagementAlertConnection`

The connection type for AlertManagementAlert.

| Field | 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`

An edge in a connection.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`AlertManagementAlert`](#alertmanagementalert) | The item at the end of the edge. |
523

524
### `AlertManagementAlertStatusCountsType`
525

526
Represents total number of alerts for the represented categories.
527

528 529
| Field | Type | Description |
| ----- | ---- | ----------- |
530 531 532 533 534 535
| `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 |
536

537
### `AlertManagementHttpIntegration`
Sarah Yasonik's avatar
Sarah Yasonik committed
538 539 540 541 542

An endpoint and credentials used to accept alerts for a project.

| Field | Type | Description |
| ----- | ---- | ----------- |
543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590
| `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) | The 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. |

### `AlertManagementHttpIntegrationConnection`

The connection type for AlertManagementHttpIntegration.

| Field | 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`

An edge in a connection.

| Field | 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.

| Field | 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`

An edge in a connection.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`AlertManagementIntegration`](#alertmanagementintegration) | The item at the end of the edge. |
Sarah Yasonik's avatar
Sarah Yasonik committed
591

592
### `AlertManagementPayloadAlertField`
593 594 595 596 597

Parsed field from an alert used for custom mappings.

| Field | Type | Description |
| ----- | ---- | ----------- |
598 599 600
| `label` | [`String`](#string) | Human-readable label of the payload path. |
| `path` | [`[String!]`](#string) | Path to value inside payload JSON. |
| `type` | [`AlertManagementPayloadAlertFieldType`](#alertmanagementpayloadalertfieldtype) | Type of the parsed value. |
601

602
### `AlertManagementPayloadAlertMappingField`
603 604 605 606 607

Parsed field (with its name) from an alert used for custom mappings.

| Field | Type | Description |
| ----- | ---- | ----------- |
608 609 610 611
| `fieldName` | [`AlertManagementPayloadAlertFieldName`](#alertmanagementpayloadalertfieldname) | A GitLab alert field name. |
| `label` | [`String`](#string) | Human-readable label of the payload path. |
| `path` | [`[String!]`](#string) | Path to value inside payload JSON. |
| `type` | [`AlertManagementPayloadAlertFieldType`](#alertmanagementpayloadalertfieldtype) | Type of the parsed value. |
612

613
### `AlertManagementPrometheusIntegration`
Sarah Yasonik's avatar
Sarah Yasonik committed
614 615 616 617 618

An endpoint and credentials used to accept Prometheus alerts for a project.

| Field | Type | Description |
| ----- | ---- | ----------- |
619 620 621 622 623 624 625
| `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. |
Sarah Yasonik's avatar
Sarah Yasonik committed
626

627
### `AlertSetAssigneesPayload`
628

629
Autogenerated return type of AlertSetAssignees.
630

631 632
| Field | Type | Description |
| ----- | ---- | ----------- |
633 634 635 636 637
| `alert` | [`AlertManagementAlert`](#alertmanagementalert) | The 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) | The issue created after mutation. |
| `todo` | [`Todo`](#todo) | The to-do item after mutation. |
Allison Browne's avatar
Allison Browne committed
638

639
### `AlertTodoCreatePayload`
Allison Browne's avatar
Allison Browne committed
640

641
Autogenerated return type of AlertTodoCreate.
Allison Browne's avatar
Allison Browne committed
642

643 644
| Field | Type | Description |
| ----- | ---- | ----------- |
645 646 647 648 649
| `alert` | [`AlertManagementAlert`](#alertmanagementalert) | The 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) | The issue created after mutation. |
| `todo` | [`Todo`](#todo) | The to-do item after mutation. |
650

651
### `ApiFuzzingCiConfiguration`
652 653 654 655 656

Data associated with configuring API fuzzing scans in GitLab CI.

| Field | Type | Description |
| ----- | ---- | ----------- |
657 658
| `scanModes` | [`[ApiFuzzingScanMode!]`](#apifuzzingscanmode) | All available scan modes. |
| `scanProfiles` | [`[ApiFuzzingScanProfile!]`](#apifuzzingscanprofile) | All default scan profiles. |
659

660
### `ApiFuzzingCiConfigurationCreatePayload`
661 662 663 664 665

Autogenerated return type of ApiFuzzingCiConfigurationCreate.

| Field | Type | Description |
| ----- | ---- | ----------- |
666 667 668 669
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `configurationYaml` | [`String`](#string) | A YAML snippet that can be inserted into the project's `.gitlab-ci.yml` to set up API fuzzing scans. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
| `gitlabCiYamlEditPath` | [`String`](#string) | The location at which the project's `.gitlab-ci.yml` file can be edited in the browser. |
670

671
### `ApiFuzzingScanProfile`
672

673
An API Fuzzing scan profile.
674 675 676

| Field | Type | Description |
| ----- | ---- | ----------- |
677 678 679
| `description` | [`String`](#string) | A short description of the profile. |
| `name` | [`String`](#string) | The unique name of the profile. |
| `yaml` | [`String`](#string) | A syntax highlit HTML representation of the YAML. |
680

681
### `AwardEmoji`
682 683

An emoji awarded by a user.
Felipe Artur's avatar
Felipe Artur committed
684

685 686
| Field | Type | Description |
| ----- | ---- | ----------- |
687 688 689 690 691 692
| `description` | [`String!`](#string) | The emoji description. |
| `emoji` | [`String!`](#string) | The emoji as an icon. |
| `name` | [`String!`](#string) | The emoji name. |
| `unicode` | [`String!`](#string) | The emoji in Unicode. |
| `unicodeVersion` | [`String!`](#string) | The Unicode version for this emoji. |
| `user` | [`User!`](#user) | The user who awarded the emoji. |
Felipe Artur's avatar
Felipe Artur committed
693

694
### `AwardEmojiAddPayload`
695

696
Autogenerated return type of AwardEmojiAdd.
697

698 699
| Field | Type | Description |
| ----- | ---- | ----------- |
700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721
| `awardEmoji` | [`AwardEmoji`](#awardemoji) | The 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. |

### `AwardEmojiConnection`

The connection type for AwardEmoji.

| Field | 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`

An edge in a connection.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`AwardEmoji`](#awardemoji) | The item at the end of the edge. |
722

723
### `AwardEmojiRemovePayload`
724

725
Autogenerated return type of AwardEmojiRemove.
726

727 728
| Field | Type | Description |
| ----- | ---- | ----------- |
729 730 731
| `awardEmoji` | [`AwardEmoji`](#awardemoji) | The 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. |
732

733
### `AwardEmojiTogglePayload`
734

735
Autogenerated return type of AwardEmojiToggle.
736

737 738
| Field | Type | Description |
| ----- | ---- | ----------- |
739 740 741 742
| `awardEmoji` | [`AwardEmoji`](#awardemoji) | The 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. |
743

744
### `BaseService`
745

746 747
| Field | Type | Description |
| ----- | ---- | ----------- |
748 749
| `active` | [`Boolean`](#boolean) | Indicates if the service is active. |
| `type` | [`String`](#string) | Class name of the service. |
750

751
### `Blob`
Felipe Artur's avatar
Felipe Artur committed
752

753 754
| Field | Type | Description |
| ----- | ---- | ----------- |
755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783
| `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. |

### `BlobConnection`

The connection type for Blob.

| Field | 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`

An edge in a connection.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`Blob`](#blob) | The item at the end of the edge. |
Felipe Artur's avatar
Felipe Artur committed
784

785
### `Board`
786

787
Represents a project or group issue board.
788

789 790
| Field | Type | Description |
| ----- | ---- | ----------- |
791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822
| `assignee` | [`User`](#user) | The board assignee. |
| `epics` | [`BoardEpicConnection`](#boardepicconnection) | Epics associated with board issues. |
| `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) | The board iteration. |
| `labels` | [`LabelConnection`](#labelconnection) | Labels of the board. |
| `lists` | [`BoardListConnection`](#boardlistconnection) | Lists of the board. |
| `milestone` | [`Milestone`](#milestone) | The board milestone. |
| `name` | [`String`](#string) | Name of the board. |
| `webPath` | [`String!`](#string) | Web path of the board. |
| `webUrl` | [`String!`](#string) | Web URL of the board. |
| `weight` | [`Int`](#int) | Weight of the board. |

### `BoardConnection`

The connection type for Board.

| Field | 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`

An edge in a connection.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`Board`](#board) | The item at the end of the edge. |
823

824
### `BoardEpic`
825 826 827 828 829

Represents an epic on an issue board.

| Field | Type | Description |
| ----- | ---- | ----------- |
830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895
| `author` | [`User!`](#user) | Author of the epic. |
| `awardEmoji` | [`AwardEmojiConnection`](#awardemojiconnection) | A list of award emojis associated with the epic. |
| `children` | [`EpicConnection`](#epicconnection) | Children (sub-epics) of the epic. |
| `closedAt` | [`Time`](#time) | Timestamp of when the epic was closed. |
| `confidential` | [`Boolean`](#boolean) | Indicates if the epic is confidential. |
| `createdAt` | [`Time`](#time) | Timestamp of when the epic was created. |
| `currentUserTodos` | [`TodoConnection!`](#todoconnection) | To-do items for the current user. |
| `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. |
| `discussions` | [`DiscussionConnection!`](#discussionconnection) | All discussions on this noteable. |
| `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. |
| `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) | A list of events associated with the object. |
| `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. |
| `labels` | [`LabelConnection`](#labelconnection) | Labels assigned to the epic. |
| `notes` | [`NoteConnection!`](#noteconnection) | All notes on this noteable. |
| `parent` | [`Epic`](#epic) | Parent epic of the epic. |
| `participants` | [`UserConnection`](#userconnection) | List of participants for the epic. |
| `reference` | [`String!`](#string) | Internal reference of the epic. Returned in shortened format by default. |
| `relationPath` | [`String`](#string) | URI path of the epic-issue relationship. |
| `relativePosition` | [`Int`](#int) | The 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. |
| `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. |
| `title` | [`String`](#string) | Title of the epic. |
| `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. |

### `BoardEpicConnection`

The connection type for BoardEpic.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `edges` | [`[BoardEpicEdge]`](#boardepicedge) | A list of edges. |
| `nodes` | [`[BoardEpic]`](#boardepic) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |

### `BoardEpicEdge`

An edge in a connection.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`BoardEpic`](#boardepic) | The item at the end of the edge. |
896

897
### `BoardEpicUserPreferences`
898 899 900 901 902

Represents user preferences for a board epic.

| Field | Type | Description |
| ----- | ---- | ----------- |
903
| `collapsed` | [`Boolean!`](#boolean) | Indicates epic should be displayed as collapsed. |
904

905
### `BoardList`
906

907
Represents a list for an issue board.
908

909 910
| Field | Type | Description |
| ----- | ---- | ----------- |
911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935
| `assignee` | [`User`](#user) | 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. |
| `issues` | [`IssueConnection`](#issueconnection) | Board issues. |
| `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) | The 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. |

### `BoardListConnection`

The connection type for BoardList.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `edges` | [`[BoardListEdge]`](#boardlistedge) | A list of edges. |
| `nodes` | [`[BoardList]`](#boardlist) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
936

937
### `BoardListCreatePayload`
938

939
Autogenerated return type of BoardListCreate.
940

941 942
| Field | Type | Description |
| ----- | ---- | ----------- |
943 944 945 946 947 948 949 950 951 952 953 954
| `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. |

### `BoardListEdge`

An edge in a connection.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`BoardList`](#boardlist) | The item at the end of the edge. |
955

956
### `BoardListUpdateLimitMetricsPayload`
957

958
Autogenerated return type of BoardListUpdateLimitMetrics.
959

960 961
| Field | Type | Description |
| ----- | ---- | ----------- |
962 963 964
| `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) | The updated list. |
965

966
### `Branch`
967

968 969
| Field | Type | Description |
| ----- | ---- | ----------- |
970 971
| `commit` | [`Commit`](#commit) | Commit for the branch. |
| `name` | [`String!`](#string) | Name of the branch. |
972

973
### `BulkFindOrCreateDevopsAdoptionSegmentsPayload`
974 975 976 977 978

Autogenerated return type of BulkFindOrCreateDevopsAdoptionSegments.

| Field | Type | Description |
| ----- | ---- | ----------- |
979 980 981
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
| `segments` | [`[DevopsAdoptionSegment!]`](#devopsadoptionsegment) | Created segments after mutation. |
982

983
### `BurnupChartDailyTotals`
984 985 986

Represents the total number of issues and their weights for a particular day.

987 988
| Field | Type | Description |
| ----- | ---- | ----------- |
989 990 991 992 993
| `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. |
994

995
### `CiApplicationSettings`
996 997 998

| Field | Type | Description |
| ----- | ---- | ----------- |
999
| `keepLatestArtifact` | [`Boolean`](#boolean) | Whether to keep the latest jobs artifacts. |
1000

1001
### `CiBuildNeed`
1002 1003 1004

| Field | Type | Description |
| ----- | ---- | ----------- |
1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024
| `name` | [`String`](#string) | Name of the job we need to complete. |

### `CiBuildNeedConnection`

The connection type for CiBuildNeed.

| Field | 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`

An edge in a connection.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`CiBuildNeed`](#cibuildneed) | The item at the end of the edge. |
1025

1026
### `CiCdSettingsUpdatePayload`
1027 1028 1029 1030 1031

Autogenerated return type of CiCdSettingsUpdate.

| Field | Type | Description |
| ----- | ---- | ----------- |
1032 1033
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
1034

1035
### `CiConfig`
lauraMon's avatar
lauraMon committed
1036 1037 1038

| Field | Type | Description |
| ----- | ---- | ----------- |
1039 1040 1041 1042
| `errors` | [`[String!]`](#string) | Linting errors. |
| `mergedYaml` | [`String`](#string) | Merged CI configuration YAML. |
| `stages` | [`CiConfigStageConnection`](#ciconfigstageconnection) | Stages of the pipeline. |
| `status` | [`CiConfigStatus`](#ciconfigstatus) | Status of linting, can be either valid or invalid. |
lauraMon's avatar
lauraMon committed
1043

1044
### `CiConfigGroup`
lauraMon's avatar
lauraMon committed
1045 1046 1047

| Field | Type | Description |
| ----- | ---- | ----------- |
1048 1049 1050
| `jobs` | [`CiConfigJobConnection`](#ciconfigjobconnection) | Jobs in group. |
| `name` | [`String`](#string) | Name of the job group. |
| `size` | [`Int`](#int) | Size of the job group. |
lauraMon's avatar
lauraMon committed
1051

1052 1053 1054
### `CiConfigGroupConnection`

The connection type for CiConfigGroup.
lauraMon's avatar
lauraMon committed
1055 1056 1057

| Field | Type | Description |
| ----- | ---- | ----------- |
1058 1059 1060
| `edges` | [`[CiConfigGroupEdge]`](#ciconfiggroupedge) | A list of edges. |
| `nodes` | [`[CiConfigGroup]`](#ciconfiggroup) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
1061

1062 1063 1064
### `CiConfigGroupEdge`

An edge in a connection.
1065 1066 1067

| Field | Type | Description |
| ----- | ---- | ----------- |
1068 1069
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`CiConfigGroup`](#ciconfiggroup) | The item at the end of the edge. |
lauraMon's avatar
lauraMon committed
1070

1071
### `CiConfigJob`
lauraMon's avatar
lauraMon committed
1072 1073 1074

| Field | Type | Description |
| ----- | ---- | ----------- |
1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087
| `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. |
| `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. |
lauraMon's avatar
lauraMon committed
1088

1089 1090 1091
### `CiConfigJobConnection`

The connection type for CiConfigJob.
lauraMon's avatar
lauraMon committed
1092 1093 1094

| Field | Type | Description |
| ----- | ---- | ----------- |
1095 1096 1097
| `edges` | [`[CiConfigJobEdge]`](#ciconfigjobedge) | A list of edges. |
| `nodes` | [`[CiConfigJob]`](#ciconfigjob) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
lauraMon's avatar
lauraMon committed
1098

1099 1100 1101
### `CiConfigJobEdge`

An edge in a connection.
Laura Montemayor's avatar
Laura Montemayor committed
1102

1103 1104
| Field | Type | Description |
| ----- | ---- | ----------- |
1105 1106
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`CiConfigJob`](#ciconfigjob) | The item at the end of the edge. |
Laura Montemayor's avatar
Laura Montemayor committed
1107

1108
### `CiConfigJobRestriction`
Laura Montemayor's avatar
Laura Montemayor committed
1109

1110 1111
| Field | Type | Description |
| ----- | ---- | ----------- |
1112
| `refs` | [`[String!]`](#string) | The Git refs the job restriction applies to. |
Laura Montemayor's avatar
Laura Montemayor committed
1113

1114
### `CiConfigNeed`
1115 1116 1117

| Field | Type | Description |
| ----- | ---- | ----------- |
1118
| `name` | [`String`](#string) | Name of the need. |
1119

1120 1121 1122
### `CiConfigNeedConnection`

The connection type for CiConfigNeed.
Laura Montemayor's avatar
Laura Montemayor committed
1123

1124 1125
| Field | Type | Description |
| ----- | ---- | ----------- |
1126 1127 1128
| `edges` | [`[CiConfigNeedEdge]`](#ciconfigneededge) | A list of edges. |
| `nodes` | [`[CiConfigNeed]`](#ciconfigneed) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
Laura Montemayor's avatar
Laura Montemayor committed
1129

1130 1131 1132
### `CiConfigNeedEdge`

An edge in a connection.
1133

1134 1135
| Field | Type | Description |
| ----- | ---- | ----------- |
1136 1137
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`CiConfigNeed`](#ciconfigneed) | The item at the end of the edge. |
1138

1139
### `CiConfigStage`
1140

1141 1142
| Field | Type | Description |
| ----- | ---- | ----------- |
1143 1144
| `groups` | [`CiConfigGroupConnection`](#ciconfiggroupconnection) | Groups of jobs for the stage. |
| `name` | [`String`](#string) | Name of the stage. |
1145

1146 1147 1148
### `CiConfigStageConnection`

The connection type for CiConfigStage.
1149

1150 1151
| Field | Type | Description |
| ----- | ---- | ----------- |
1152 1153 1154
| `edges` | [`[CiConfigStageEdge]`](#ciconfigstageedge) | A list of edges. |
| `nodes` | [`[CiConfigStage]`](#ciconfigstage) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
1155

1156
### `CiConfigStageEdge`
1157

1158
An edge in a connection.
1159

1160 1161
| Field | Type | Description |
| ----- | ---- | ----------- |
1162 1163
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`CiConfigStage`](#ciconfigstage) | The item at the end of the edge. |
1164

1165
### `CiGroup`
1166

1167 1168
| Field | Type | Description |
| ----- | ---- | ----------- |
1169 1170 1171 1172
| `detailedStatus` | [`DetailedStatus`](#detailedstatus) | Detailed status of the group. |
| `jobs` | [`CiJobConnection`](#cijobconnection) | Jobs in group. |
| `name` | [`String`](#string) | Name of the job group. |
| `size` | [`Int`](#int) | Size of the group. |
1173

1174
### `CiGroupConnection`
1175

1176
The connection type for CiGroup.
1177 1178 1179

| Field | Type | Description |
| ----- | ---- | ----------- |
1180 1181 1182
| `edges` | [`[CiGroupEdge]`](#cigroupedge) | A list of edges. |
| `nodes` | [`[CiGroup]`](#cigroup) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
1183

1184
### `CiGroupEdge`
1185

1186
An edge in a connection.
1187 1188 1189

| Field | Type | Description |
| ----- | ---- | ----------- |
1190 1191
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`CiGroup`](#cigroup) | The item at the end of the edge. |
1192

1193
### `CiJob`
Felipe Artur's avatar
Felipe Artur committed
1194

1195 1196
| Field | Type | Description |
| ----- | ---- | ----------- |
1197 1198 1199 1200 1201 1202 1203 1204
| `artifacts` | [`CiJobArtifactConnection`](#cijobartifactconnection) | Artifacts generated by the job. |
| `detailedStatus` | [`DetailedStatus`](#detailedstatus) | Detailed status of the job. |
| `duration` | [`Int`](#int) | Duration of the job in seconds. |
| `finishedAt` | [`Time`](#time) | When a job has finished running. |
| `name` | [`String`](#string) | Name of the job. |
| `needs` | [`CiBuildNeedConnection`](#cibuildneedconnection) | References to builds that must complete before the jobs run. |
| `pipeline` | [`Pipeline`](#pipeline) | Pipeline the job belongs to. |
| `scheduledAt` | [`Time`](#time) | Schedule for the build. |
1205

1206
### `CiJobArtifact`
1207

1208 1209
| Field | Type | Description |
| ----- | ---- | ----------- |
1210 1211
| `downloadPath` | [`String`](#string) | URL for downloading the artifact's file. |
| `fileType` | [`JobArtifactFileType`](#jobartifactfiletype) | File type of the artifact. |
1212

1213
### `CiJobArtifactConnection`
1214

1215
The connection type for CiJobArtifact.
1216

1217 1218
| Field | Type | Description |
| ----- | ---- | ----------- |
1219 1220 1221
| `edges` | [`[CiJobArtifactEdge]`](#cijobartifactedge) | A list of edges. |
| `nodes` | [`[CiJobArtifact]`](#cijobartifact) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
1222

1223
### `CiJobArtifactEdge`
1224

1225
An edge in a connection.
1226 1227 1228

| Field | Type | Description |
| ----- | ---- | ----------- |
1229 1230
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`CiJobArtifact`](#cijobartifact) | The item at the end of the edge. |
1231

1232
### `CiJobConnection`
1233

1234
The connection type for CiJob.
1235

1236 1237
| Field | Type | Description |
| ----- | ---- | ----------- |
1238 1239 1240
| `edges` | [`[CiJobEdge]`](#cijobedge) | A list of edges. |
| `nodes` | [`[CiJob]`](#cijob) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
1241

1242
### `CiJobEdge`
1243

1244
An edge in a connection.
1245

1246 1247
| Field | Type | Description |
| ----- | ---- | ----------- |
1248 1249
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`CiJob`](#cijob) | The item at the end of the edge. |
1250

1251
### `CiStage`
1252 1253 1254

| Field | Type | Description |
| ----- | ---- | ----------- |
1255 1256 1257
| `detailedStatus` | [`DetailedStatus`](#detailedstatus) | Detailed status of the stage. |
| `groups` | [`CiGroupConnection`](#cigroupconnection) | Group of jobs for the stage. |
| `name` | [`String`](#string) | Name of the stage. |
1258

1259
### `CiStageConnection`
1260

1261
The connection type for CiStage.
1262 1263 1264

| Field | Type | Description |
| ----- | ---- | ----------- |
1265 1266 1267
| `edges` | [`[CiStageEdge]`](#cistageedge) | A list of edges. |
| `nodes` | [`[CiStage]`](#cistage) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
1268

1269
### `CiStageEdge`
1270

1271
An edge in a connection.
1272 1273 1274

| Field | Type | Description |
| ----- | ---- | ----------- |
1275 1276
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`CiStage`](#cistage) | The item at the end of the edge. |
1277

1278
### `ClusterAgent`
1279

1280 1281
| Field | Type | Description |
| ----- | ---- | ----------- |
1282 1283 1284 1285 1286 1287 1288 1289
| `createdAt` | [`Time`](#time) | Timestamp the cluster agent was created. |
| `createdByUser` | [`User`](#user) | 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) | The project this cluster agent is associated with. |
| `tokens` | [`ClusterAgentTokenConnection`](#clusteragenttokenconnection) | Tokens associated with the cluster agent. |
| `updatedAt` | [`Time`](#time) | Timestamp the cluster agent was updated. |
| `webPath` | [`String`](#string) | Web path of the cluster agent. |
1290

1291
### `ClusterAgentConnection`
1292

1293
The connection type for ClusterAgent.
1294

1295 1296
| Field | Type | Description |
| ----- | ---- | ----------- |
1297 1298 1299 1300
| `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. |
1301

1302
### `ClusterAgentDeletePayload`
1303

1304
Autogenerated return type of ClusterAgentDelete.
1305 1306 1307

| Field | Type | Description |
| ----- | ---- | ----------- |
1308 1309
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
1310

1311
### `ClusterAgentEdge`
1312

1313
An edge in a connection.
1314

1315 1316
| Field | Type | Description |
| ----- | ---- | ----------- |
1317 1318
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`ClusterAgent`](#clusteragent) | The item at the end of the edge. |
1319

1320
### `ClusterAgentToken`
1321

1322 1323
| Field | Type | Description |
| ----- | ---- | ----------- |
1324 1325 1326 1327 1328 1329
| `clusterAgent` | [`ClusterAgent`](#clusteragent) | Cluster agent this token is associated with. |
| `createdAt` | [`Time`](#time) | Timestamp the token was created. |
| `createdByUser` | [`User`](#user) | The user who created the token. |
| `description` | [`String`](#string) | Description of the token. |
| `id` | [`ClustersAgentTokenID!`](#clustersagenttokenid) | Global ID of the token. |
| `name` | [`String`](#string) | Name given to the token. |
1330

1331
### `ClusterAgentTokenConnection`
1332

1333
The connection type for ClusterAgentToken.
1334 1335 1336

| Field | Type | Description |
| ----- | ---- | ----------- |
1337 1338 1339 1340
| `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. |
1341

1342
### `ClusterAgentTokenCreatePayload`
1343

1344
Autogenerated return type of ClusterAgentTokenCreate.
1345 1346 1347

| Field | Type | Description |
| ----- | ---- | ----------- |
1348 1349 1350 1351
| `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. |
1352

1353
### `ClusterAgentTokenDeletePayload`
1354

1355
Autogenerated return type of ClusterAgentTokenDelete.
1356 1357 1358

| Field | Type | Description |
| ----- | ---- | ----------- |
1359 1360
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
1361

1362
### `ClusterAgentTokenEdge`
1363

1364
An edge in a connection.
1365

1366 1367
| Field | Type | Description |
| ----- | ---- | ----------- |
1368 1369
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`ClusterAgentToken`](#clusteragenttoken) | The item at the end of the edge. |
1370

1371
### `CodeCoverageActivity`
1372

1373
Represents the code coverage activity for a group.
1374

1375 1376
| Field | Type | Description |
| ----- | ---- | ----------- |
1377 1378 1379 1380
| `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. |
1381

1382
### `CodeCoverageActivityConnection`
1383

1384
The connection type for CodeCoverageActivity.
1385

1386 1387
| Field | Type | Description |
| ----- | ---- | ----------- |
1388 1389 1390
| `edges` | [`[CodeCoverageActivityEdge]`](#codecoverageactivityedge) | A list of edges. |
| `nodes` | [`[CodeCoverageActivity]`](#codecoverageactivity) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
1391

1392
### `CodeCoverageActivityEdge`
1393

1394
An edge in a connection.
1395 1396 1397

| Field | Type | Description |
| ----- | ---- | ----------- |
1398 1399
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`CodeCoverageActivity`](#codecoverageactivity) | The item at the end of the edge. |
1400

1401
### `CodeCoverageSummary`
1402

1403
Represents the code coverage summary for a project.
1404

1405 1406
| Field | Type | Description |
| ----- | ---- | ----------- |
1407 1408 1409
| `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. |
1410

1411
### `Commit`
1412

1413 1414
| Field | Type | Description |
| ----- | ---- | ----------- |
1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430
| `author` | [`User`](#user) | Author of the commit. |
| `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) | The GitLab Flavored Markdown rendering of `description` |
| `id` | [`ID!`](#id) | ID (global ID) of the commit. |
| `message` | [`String`](#string) | Raw commit message. |
| `pipelines` | [`PipelineConnection`](#pipelineconnection) | Pipelines of the commit ordered latest first. |
| `sha` | [`String!`](#string) | SHA1 ID of the commit. |
| `shortId` | [`String!`](#string) | Short SHA1 ID of the commit. |
| `signatureHtml` | [`String`](#string) | Rendered HTML of the commit signature. |
| `title` | [`String`](#string) | Title of the commit message. |
| `titleHtml` | [`String`](#string) | The GitLab Flavored Markdown rendering of `title` |
| `webPath` | [`String!`](#string) | Web path of the commit. |
| `webUrl` | [`String!`](#string) | Web URL of the commit. |
1431

1432
### `CommitConnection`
Jan Provaznik's avatar
Jan Provaznik committed
1433

1434
The connection type for Commit.
Jan Provaznik's avatar
Jan Provaznik committed
1435

1436 1437
| Field | Type | Description |
| ----- | ---- | ----------- |
1438 1439 1440
| `edges` | [`[CommitEdge]`](#commitedge) | A list of edges. |
| `nodes` | [`[Commit]`](#commit) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
Jan Provaznik's avatar
Jan Provaznik committed
1441

1442
### `CommitCreatePayload`
1443

1444
Autogenerated return type of CommitCreate.
1445

1446 1447
| Field | Type | Description |
| ----- | ---- | ----------- |
1448 1449 1450
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `commit` | [`Commit`](#commit) | The commit after mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
1451

1452
### `CommitEdge`
1453

1454
An edge in a connection.
1455 1456 1457

| Field | Type | Description |
| ----- | ---- | ----------- |
1458 1459
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`Commit`](#commit) | The item at the end of the edge. |
1460

1461
### `ComplianceFramework`
1462

1463
Represents a ComplianceFramework associated with a Project.
1464 1465 1466

| Field | Type | Description |
| ----- | ---- | ----------- |
1467 1468 1469 1470 1471
| `color` | [`String!`](#string) | Hexadecimal representation of compliance framework's label color. |
| `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)**. |
1472

1473
### `ComplianceFrameworkConnection`
1474

1475
The connection type for ComplianceFramework.
1476

1477 1478
| Field | Type | Description |
| ----- | ---- | ----------- |
1479 1480 1481
| `edges` | [`[ComplianceFrameworkEdge]`](#complianceframeworkedge) | A list of edges. |
| `nodes` | [`[ComplianceFramework]`](#complianceframework) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
1482

1483
### `ComplianceFrameworkEdge`
1484

1485
An edge in a connection.
1486 1487 1488

| Field | Type | Description |
| ----- | ---- | ----------- |
1489 1490
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`ComplianceFramework`](#complianceframework) | The item at the end of the edge. |
1491

1492
### `ComposerMetadata`
1493

1494
Composer metadata.
1495 1496 1497

| Field | Type | Description |
| ----- | ---- | ----------- |
1498 1499
| `composerJson` | [`PackageComposerJsonType!`](#packagecomposerjsontype) | Data of the Composer JSON file. |
| `targetSha` | [`String!`](#string) | Target SHA of the package. |
1500

1501
### `ConfigureSastPayload`
1502

1503
Autogenerated return type of ConfigureSast.
1504 1505 1506

| Field | Type | Description |
| ----- | ---- | ----------- |
1507 1508 1509 1510
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
| `status` | [`String!`](#string) | Status of creating the commit for the supplied SAST CI configuration. |
| `successPath` | [`String`](#string) | Redirect path to use when the response is successful. |
1511

1512
### `ContainerExpirationPolicy`
1513

1514
A tag expiration policy designed to keep only the images that matter most.
1515 1516 1517

| Field | Type | Description |
| ----- | ---- | ----------- |
1518 1519 1520 1521 1522 1523 1524 1525 1526
| `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. |
1527

1528
### `ContainerRepository`
1529

1530
A container repository.
1531 1532 1533

| Field | Type | Description |
| ----- | ---- | ----------- |
1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545
| `canDelete` | [`Boolean!`](#boolean) | Can the current user delete the container repository. |
| `createdAt` | [`Time!`](#time) | Timestamp when the container repository was created. |
| `expirationPolicyCleanupStatus` | [`ContainerRepositoryCleanupStatus`](#containerrepositorycleanupstatus) | The 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. |
| `location` | [`String!`](#string) | URL 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. |
1546

1547
### `ContainerRepositoryConnection`
1548

1549
The connection type for ContainerRepository.
1550 1551 1552

| Field | Type | Description |
| ----- | ---- | ----------- |
1553 1554 1555
| `edges` | [`[ContainerRepositoryEdge]`](#containerrepositoryedge) | A list of edges. |
| `nodes` | [`[ContainerRepository]`](#containerrepository) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
1556

1557
### `ContainerRepositoryDetails`
1558

1559
Details of a container repository.
1560

1561 1562
| Field | Type | Description |
| ----- | ---- | ----------- |
1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575
| `canDelete` | [`Boolean!`](#boolean) | Can the current user delete the container repository. |
| `createdAt` | [`Time!`](#time) | Timestamp when the container repository was created. |
| `expirationPolicyCleanupStatus` | [`ContainerRepositoryCleanupStatus`](#containerrepositorycleanupstatus) | The 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. |
| `location` | [`String!`](#string) | URL 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. |
| `tags` | [`ContainerRepositoryTagConnection`](#containerrepositorytagconnection) | Tags of the container repository. |
| `tagsCount` | [`Int!`](#int) | Number of tags associated with this image. |
| `updatedAt` | [`Time!`](#time) | Timestamp when the container repository was updated. |
1576

1577
### `ContainerRepositoryEdge`
1578

1579
An edge in a connection.
1580

1581 1582
| Field | Type | Description |
| ----- | ---- | ----------- |
1583 1584
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`ContainerRepository`](#containerrepository) | The item at the end of the edge. |
1585

1586
### `ContainerRepositoryTag`
1587

1588
A tag from a container repository.
1589

1590 1591
| Field | Type | Description |
| ----- | ---- | ----------- |
1592 1593 1594 1595 1596 1597 1598 1599 1600
| `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) | The size of the tag. |
1601

1602
### `ContainerRepositoryTagConnection`
1603

1604
The connection type for ContainerRepositoryTag.
1605

1606 1607
| Field | Type | Description |
| ----- | ---- | ----------- |
1608 1609 1610
| `edges` | [`[ContainerRepositoryTagEdge]`](#containerrepositorytagedge) | A list of edges. |
| `nodes` | [`[ContainerRepositoryTag]`](#containerrepositorytag) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
1611

1612
### `ContainerRepositoryTagEdge`
1613

1614
An edge in a connection.
1615

1616 1617
| Field | Type | Description |
| ----- | ---- | ----------- |
1618 1619
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`ContainerRepositoryTag`](#containerrepositorytag) | The item at the end of the edge. |
1620

1621
### `CreateAlertIssuePayload`
1622

1623
Autogenerated return type of CreateAlertIssue.
1624

1625 1626
| Field | Type | Description |
| ----- | ---- | ----------- |
1627 1628 1629 1630 1631
| `alert` | [`AlertManagementAlert`](#alertmanagementalert) | The 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) | The issue created after mutation. |
| `todo` | [`Todo`](#todo) | The to-do item after mutation. |
1632

1633
### `CreateAnnotationPayload`
1634

1635
Autogenerated return type of CreateAnnotation.
1636

1637 1638
| Field | Type | Description |
| ----- | ---- | ----------- |
1639 1640 1641
| `annotation` | [`MetricsDashboardAnnotation`](#metricsdashboardannotation) | The created annotation. |
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
1642

1643
### `CreateBoardPayload`
1644

1645
Autogenerated return type of CreateBoard.
1646

1647 1648
| Field | Type | Description |
| ----- | ---- | ----------- |
1649 1650 1651
| `board` | [`Board`](#board) | The 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. |
1652

1653
### `CreateBranchPayload`
1654

1655
Autogenerated return type of CreateBranch.
1656

1657 1658
| Field | Type | Description |
| ----- | ---- | ----------- |
1659 1660 1661
| `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. |
1662

1663
### `CreateClusterAgentPayload`
1664

1665
Autogenerated return type of CreateClusterAgent.
1666 1667 1668

| Field | Type | Description |
| ----- | ---- | ----------- |
1669 1670 1671
| `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. |
1672

1673
### `CreateComplianceFrameworkPayload`
1674

1675
Autogenerated return type of CreateComplianceFramework.
1676 1677 1678

| Field | Type | Description |
| ----- | ---- | ----------- |
1679 1680 1681
| `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) | The created compliance framework. |
1682

1683
### `CreateCustomEmojiPayload`
1684

1685
Autogenerated return type of CreateCustomEmoji.
1686 1687 1688

| Field | Type | Description |
| ----- | ---- | ----------- |
1689 1690 1691
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `customEmoji` | [`CustomEmoji`](#customemoji) | The new custom emoji. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
1692

1693
### `CreateDevopsAdoptionSegmentPayload`
1694

1695
Autogenerated return type of CreateDevopsAdoptionSegment.
1696 1697 1698

| Field | Type | Description |
| ----- | ---- | ----------- |
1699 1700 1701
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
| `segment` | [`DevopsAdoptionSegment`](#devopsadoptionsegment) | The segment after mutation. |
1702

1703
### `CreateDiffNotePayload`
1704

1705
Autogenerated return type of CreateDiffNote.
1706

1707 1708
| Field | Type | Description |
| ----- | ---- | ----------- |
1709 1710 1711
| `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) | The note after mutation. |
1712

1713
### `CreateEpicPayload`
1714

1715
Autogenerated return type of CreateEpic.
1716 1717 1718

| Field | Type | Description |
| ----- | ---- | ----------- |
1719 1720 1721
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `epic` | [`Epic`](#epic) | The created epic. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
1722

1723
### `CreateImageDiffNotePayload`
1724

1725
Autogenerated return type of CreateImageDiffNote.
1726

1727 1728
| Field | Type | Description |
| ----- | ---- | ----------- |
1729 1730 1731
| `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) | The note after mutation. |
1732

1733
### `CreateIssuePayload`
1734

1735
Autogenerated return type of CreateIssue.
1736

1737 1738
| Field | Type | Description |
| ----- | ---- | ----------- |
1739 1740 1741
| `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) | The issue after mutation. |
1742

1743
### `CreateIterationPayload`
1744

1745
Autogenerated return type of CreateIteration.
1746

1747 1748
| Field | Type | Description |
| ----- | ---- | ----------- |
1749 1750 1751
| `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) | The created iteration. |
1752

1753
### `CreateNotePayload`
1754

1755
Autogenerated return type of CreateNote.
1756

1757 1758
| Field | Type | Description |
| ----- | ---- | ----------- |
1759 1760 1761
| `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) | The note after mutation. |
1762

1763 1764 1765
### `CreateRequirementPayload`

Autogenerated return type of CreateRequirement.
1766

1767 1768
| Field | Type | Description |
| ----- | ---- | ----------- |
1769 1770 1771
| `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. |
1772

1773
### `CreateSnippetPayload`
1774

1775
Autogenerated return type of CreateSnippet.
1776

1777 1778
| Field | Type | Description |
| ----- | ---- | ----------- |
1779 1780 1781 1782 1783 1784 1785
| `captchaSiteKey` | [`String`](#string) | The CAPTCHA site key which must be used to render a challenge for the user to solve to obtain a valid captchaResponse value. Included only when an operation was not completed because "NeedsCaptchaResponse" is true. |
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
| `needsCaptchaResponse` | [`Boolean`](#boolean) | Indicates whether the operation was detected as possible spam and not completed. If CAPTCHA is enabled, the request must be resubmitted with a valid CAPTCHA response and spam_log_id included for the operation to be completed. Included only when an operation was not completed because "NeedsCaptchaResponse" is true. |
| `snippet` | [`Snippet`](#snippet) | The snippet after mutation. |
| `spam` | [`Boolean`](#boolean) | Indicates whether the operation was detected as definite spam. There is no option to resubmit the request with a CAPTCHA response. |
| `spamLogId` | [`Int`](#int) | The spam log ID which must be passed along with a valid CAPTCHA response for an operation to be completed. Included only when an operation was not completed because "NeedsCaptchaResponse" is true. |
1786

1787
### `CreateTestCasePayload`
1788

1789
Autogenerated return type of CreateTestCase.
1790

1791 1792
| Field | Type | Description |
| ----- | ---- | ----------- |
1793 1794 1795
| `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) | The test case created. |
1796

1797
### `CustomEmoji`
1798

1799
A custom emoji uploaded by user.
1800

1801 1802
| Field | Type | Description |
| ----- | ---- | ----------- |
1803 1804 1805 1806
| `external` | [`Boolean!`](#boolean) | Whether the emoji is an external link. |
| `id` | [`CustomEmojiID!`](#customemojiid) | The ID of the emoji. |
| `name` | [`String!`](#string) | The name of the emoji. |
| `url` | [`String!`](#string) | The link to file of the emoji. |
1807

1808
### `CustomEmojiConnection`
1809

1810
The connection type for CustomEmoji.
1811

1812 1813
| Field | Type | Description |
| ----- | ---- | ----------- |
1814 1815 1816
| `edges` | [`[CustomEmojiEdge]`](#customemojiedge) | A list of edges. |
| `nodes` | [`[CustomEmoji]`](#customemoji) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
1817

1818
### `CustomEmojiEdge`
1819

1820
An edge in a connection.
1821 1822 1823

| Field | Type | Description |
| ----- | ---- | ----------- |
1824 1825
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`CustomEmoji`](#customemoji) | The item at the end of the edge. |
1826

1827
### `DastOnDemandScanCreatePayload`
1828

1829
Autogenerated return type of DastOnDemandScanCreate.
1830 1831 1832

| Field | Type | Description |
| ----- | ---- | ----------- |
1833 1834 1835
| `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. |
1836

1837
### `DastProfile`
1838

1839
Represents a DAST Profile.
1840 1841 1842

| Field | Type | Description |
| ----- | ---- | ----------- |
1843 1844 1845 1846 1847 1848 1849
| `branch` | [`DastProfileBranch`](#dastprofilebranch) | The associated branch. Will always return `null` if `dast_branch_selection` feature flag is disabled. |
| `dastScannerProfile` | [`DastScannerProfile`](#dastscannerprofile) | The associated scanner profile. |
| `dastSiteProfile` | [`DastSiteProfile`](#dastsiteprofile) | The associated site profile. |
| `description` | [`String`](#string) | The 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) | The name of the profile. |
1850

1851
### `DastProfileBranch`
1852

1853
Represents a DAST Profile Branch.
1854 1855 1856

| Field | Type | Description |
| ----- | ---- | ----------- |
1857 1858
| `exists` | [`Boolean`](#boolean) | Indicates whether or not the branch exists. |
| `name` | [`String`](#string) | The name of the branch. |
1859

1860
### `DastProfileConnection`
1861

1862
The connection type for DastProfile.
1863 1864 1865

| Field | Type | Description |
| ----- | ---- | ----------- |
1866 1867 1868
| `edges` | [`[DastProfileEdge]`](#dastprofileedge) | A list of edges. |
| `nodes` | [`[DastProfile]`](#dastprofile) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
1869

1870
### `DastProfileCreatePayload`
1871

1872
Autogenerated return type of DastProfileCreate.
1873

1874 1875
| Field | Type | Description |
| ----- | ---- | ----------- |
1876 1877 1878 1879
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `dastProfile` | [`DastProfile`](#dastprofile) | The created profile. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
| `pipelineUrl` | [`String`](#string) | The URL of the pipeline that was created. Requires `runAfterCreate` to be set to `true`. |
1880

1881
### `DastProfileDeletePayload`
1882

1883
Autogenerated return type of DastProfileDelete.
1884

1885 1886
| Field | Type | Description |
| ----- | ---- | ----------- |
1887 1888
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
1889

1890 1891 1892
### `DastProfileEdge`

An edge in a connection.
Felipe Artur's avatar
Felipe Artur committed
1893

1894 1895
| Field | Type | Description |
| ----- | ---- | ----------- |
1896 1897
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`DastProfile`](#dastprofile) | The item at the end of the edge. |
Felipe Artur's avatar
Felipe Artur committed
1898

1899
### `DastProfileRunPayload`
1900

1901
Autogenerated return type of DastProfileRun.
1902 1903 1904

| Field | Type | Description |
| ----- | ---- | ----------- |
1905 1906 1907
| `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. |
1908

1909
### `DastProfileUpdatePayload`
1910

1911
Autogenerated return type of DastProfileUpdate.
1912 1913 1914

| Field | Type | Description |
| ----- | ---- | ----------- |
1915 1916 1917 1918
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `dastProfile` | [`DastProfile`](#dastprofile) | The 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. |
1919

1920 1921 1922
### `DastScannerProfile`

Represents a DAST scanner profile.
Felipe Artur's avatar
Felipe Artur committed
1923

1924 1925
| Field | Type | Description |
| ----- | ---- | ----------- |
1926 1927 1928 1929 1930 1931 1932 1933 1934 1935
| `editPath` | [`String`](#string) | Relative web path to the edit page of a scanner profile. |
| `globalId` **{warning-solid}** | [`DastScannerProfileID!`](#dastscannerprofileid) | **Deprecated:** Use `id`. Deprecated in 13.6. |
| `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) | The maximum number of minutes allowed for the spider to traverse the site. |
| `targetTimeout` | [`Int`](#int) | The 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. |
Felipe Artur's avatar
Felipe Artur committed
1936

1937 1938 1939
### `DastScannerProfileConnection`

The connection type for DastScannerProfile.
1940

1941 1942
| Field | Type | Description |
| ----- | ---- | ----------- |
1943 1944 1945
| `edges` | [`[DastScannerProfileEdge]`](#dastscannerprofileedge) | A list of edges. |
| `nodes` | [`[DastScannerProfile]`](#dastscannerprofile) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
1946

1947
### `DastScannerProfileCreatePayload`
1948

1949
Autogenerated return type of DastScannerProfileCreate.
1950

1951 1952
| Field | Type | Description |
| ----- | ---- | ----------- |
1953 1954 1955 1956
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
| `globalId` **{warning-solid}** | [`DastScannerProfileID`](#dastscannerprofileid) | **Deprecated:** Use `id`. Deprecated in 13.6. |
| `id` | [`DastScannerProfileID`](#dastscannerprofileid) | ID of the scanner profile. |
1957

1958
### `DastScannerProfileDeletePayload`
1959

1960
Autogenerated return type of DastScannerProfileDelete.
1961

1962 1963
| Field | Type | Description |
| ----- | ---- | ----------- |
1964 1965
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
1966

1967 1968 1969
### `DastScannerProfileEdge`

An edge in a connection.
Felipe Artur's avatar
Felipe Artur committed
1970

1971 1972
| Field | Type | Description |
| ----- | ---- | ----------- |
1973 1974
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`DastScannerProfile`](#dastscannerprofile) | The item at the end of the edge. |
1975

1976
### `DastScannerProfileUpdatePayload`
1977

1978
Autogenerated return type of DastScannerProfileUpdate.
1979

1980 1981
| Field | Type | Description |
| ----- | ---- | ----------- |
1982 1983 1984
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
| `id` | [`DastScannerProfileID`](#dastscannerprofileid) | ID of the scanner profile. |
Felipe Artur's avatar
Felipe Artur committed
1985

1986
### `DastSiteProfile`
1987

1988
Represents a DAST Site Profile.
1989

1990 1991
| Field | Type | Description |
| ----- | ---- | ----------- |
1992
| `auth` | [`DastSiteProfileAuth`](#dastsiteprofileauth) | Target authentication details. Will always return `null` if `security_dast_site_profiles_additional_fields` feature flag is disabled. |
1993
| `editPath` | [`String`](#string) | Relative web path to the edit page of a site profile. |
1994
| `excludedUrls` | [`[String!]`](#string) | The URLs to skip during an authenticated scan. Will always return `null` if `security_dast_site_profiles_additional_fields` feature flag is disabled. |
1995 1996 1997 1998
| `id` | [`DastSiteProfileID!`](#dastsiteprofileid) | ID of the site profile. |
| `normalizedTargetUrl` | [`String`](#string) | Normalized URL of the target to be scanned. |
| `profileName` | [`String`](#string) | The name of the site profile. |
| `referencedInSecurityPolicies` | [`[String!]`](#string) | List of security policy names that are referencing given project. |
1999
| `requestHeaders` | [`String`](#string) | Comma-separated list of request header names and values to be added to every request made by DAST. Will always return `null` if `security_dast_site_profiles_additional_fields` feature flag is disabled. |
2000 2001 2002
| `targetUrl` | [`String`](#string) | The URL of the target to be scanned. |
| `userPermissions` | [`DastSiteProfilePermissions!`](#dastsiteprofilepermissions) | Permissions for the current user on the resource |
| `validationStatus` | [`DastSiteProfileValidationStatusEnum`](#dastsiteprofilevalidationstatusenum) | The current validation status of the site profile. |
2003

2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016
### `DastSiteProfileAuth`

Input type for DastSiteProfile authentication.

| Field | 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) | The name of password field 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) | The username to authenticate with on the target website. |
| `usernameField` | [`String`](#string) | The name of username field at the sign-in HTML form. |

2017
### `DastSiteProfileConnection`
2018

2019
The connection type for DastSiteProfile.
2020

2021 2022
| Field | Type | Description |
| ----- | ---- | ----------- |
2023 2024 2025
| `edges` | [`[DastSiteProfileEdge]`](#dastsiteprofileedge) | A list of edges. |
| `nodes` | [`[DastSiteProfile]`](#dastsiteprofile) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
2026

2027
### `DastSiteProfileCreatePayload`
2028

2029
Autogenerated return type of DastSiteProfileCreate.
2030 2031 2032

| Field | Type | Description |
| ----- | ---- | ----------- |
2033 2034 2035
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
| `id` | [`DastSiteProfileID`](#dastsiteprofileid) | ID of the site profile. |
2036

2037
### `DastSiteProfileDeletePayload`
2038

2039
Autogenerated return type of DastSiteProfileDelete.
2040

2041 2042
| Field | Type | Description |
| ----- | ---- | ----------- |
2043 2044
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
2045

2046
### `DastSiteProfileEdge`
2047

2048
An edge in a connection.
2049

2050 2051
| Field | Type | Description |
| ----- | ---- | ----------- |
2052 2053
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`DastSiteProfile`](#dastsiteprofile) | The item at the end of the edge. |
2054

2055
### `DastSiteProfilePermissions`
2056

2057
Check permissions for the current user on site profile.
2058 2059 2060

| Field | Type | Description |
| ----- | ---- | ----------- |
2061
| `createOnDemandDastScan` | [`Boolean!`](#boolean) | Indicates the user can perform `create_on_demand_dast_scan` on this resource |
2062

2063
### `DastSiteProfileUpdatePayload`
charlie ablett's avatar
charlie ablett committed
2064

2065
Autogenerated return type of DastSiteProfileUpdate.
charlie ablett's avatar
charlie ablett committed
2066 2067 2068

| Field | Type | Description |
| ----- | ---- | ----------- |
2069 2070 2071
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
| `id` | [`DastSiteProfileID`](#dastsiteprofileid) | ID of the site profile. |
charlie ablett's avatar
charlie ablett committed
2072

2073
### `DastSiteTokenCreatePayload`
2074

2075
Autogenerated return type of DastSiteTokenCreate.
2076 2077 2078

| Field | Type | Description |
| ----- | ---- | ----------- |
2079 2080 2081 2082 2083
| `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) | The current validation status of the target. |
| `token` | [`String`](#string) | Token string. |
2084

2085
### `DastSiteValidation`
2086

2087
Represents a DAST Site Validation.
2088 2089 2090

| Field | Type | Description |
| ----- | ---- | ----------- |
2091 2092 2093
| `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. |
2094

2095
### `DastSiteValidationConnection`
2096

2097
The connection type for DastSiteValidation.
2098

2099 2100
| Field | Type | Description |
| ----- | ---- | ----------- |
2101 2102 2103
| `edges` | [`[DastSiteValidationEdge]`](#dastsitevalidationedge) | A list of edges. |
| `nodes` | [`[DastSiteValidation]`](#dastsitevalidation) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
2104

2105
### `DastSiteValidationCreatePayload`
2106

2107
Autogenerated return type of DastSiteValidationCreate.
2108

2109 2110
| Field | Type | Description |
| ----- | ---- | ----------- |
2111 2112 2113 2114
| `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) | The current validation status. |
2115

2116
### `DastSiteValidationEdge`
2117

2118
An edge in a connection.
2119

2120 2121
| Field | Type | Description |
| ----- | ---- | ----------- |
2122 2123
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`DastSiteValidation`](#dastsitevalidation) | The item at the end of the edge. |
2124

2125
### `DastSiteValidationRevokePayload`
2126

2127
Autogenerated return type of DastSiteValidationRevoke.
2128

2129 2130
| Field | Type | Description |
| ----- | ---- | ----------- |
2131 2132
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
2133

2134
### `DeleteAnnotationPayload`
Jan Provaznik's avatar
Jan Provaznik committed
2135

2136
Autogenerated return type of DeleteAnnotation.
Jan Provaznik's avatar
Jan Provaznik committed
2137 2138 2139

| Field | Type | Description |
| ----- | ---- | ----------- |
2140 2141
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
Jan Provaznik's avatar
Jan Provaznik committed
2142

2143
### `DeleteDevopsAdoptionSegmentPayload`
2144

2145
Autogenerated return type of DeleteDevopsAdoptionSegment.
2146 2147 2148

| Field | Type | Description |
| ----- | ---- | ----------- |
2149 2150
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
2151

2152
### `DeleteJobsResponse`
2153

2154
The response from the AdminSidekiqQueuesDeleteJobs mutation.
2155

2156 2157
| Field | Type | Description |
| ----- | ---- | ----------- |
2158 2159 2160
| `completed` | [`Boolean`](#boolean) | Whether or not the entire queue was processed in time; if not, retrying the same request is safe. |
| `deletedJobs` | [`Int`](#int) | The number of matching jobs deleted. |
| `queueSize` | [`Int`](#int) | The queue size after processing. |
2161

2162
### `Design`
2163

2164
A single design.
2165

2166 2167
| Field | Type | Description |
| ----- | ---- | ----------- |
2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181
| `currentUserTodos` | [`TodoConnection!`](#todoconnection) | To-do items for the current user. |
| `diffRefs` | [`DiffRefs!`](#diffrefs) | The diff refs for this design. |
| `discussions` | [`DiscussionConnection!`](#discussionconnection) | All discussions on this noteable. |
| `event` | [`DesignVersionEvent!`](#designversionevent) | How this design was changed in the current version. |
| `filename` | [`String!`](#string) | The filename of the design. |
| `fullPath` | [`String!`](#string) | The full path to the design file. |
| `id` | [`ID!`](#id) | The ID of this design. |
| `image` | [`String!`](#string) | The 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) | The issue the design belongs to. |
| `notes` | [`NoteConnection!`](#noteconnection) | All notes on this noteable. |
| `notesCount` | [`Int!`](#int) | The total count of user-created notes for this design. |
| `project` | [`Project!`](#project) | The project the design belongs to. |
| `versions` | [`DesignVersionConnection!`](#designversionconnection) | All versions related to this design ordered newest first. |
2182

2183
### `DesignAtVersion`
2184

2185
A design pinned to a specific version. The image field reflects the design as of the associated version.
2186

2187 2188
| Field | Type | Description |
| ----- | ---- | ----------- |
2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200
| `design` | [`Design!`](#design) | The underlying design. |
| `diffRefs` | [`DiffRefs!`](#diffrefs) | The diff refs for this design. |
| `event` | [`DesignVersionEvent!`](#designversionevent) | How this design was changed in the current version. |
| `filename` | [`String!`](#string) | The filename of the design. |
| `fullPath` | [`String!`](#string) | The full path to the design file. |
| `id` | [`ID!`](#id) | The ID of this design. |
| `image` | [`String!`](#string) | The 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) | The issue the design belongs to. |
| `notesCount` | [`Int!`](#int) | The total count of user-created notes for this design. |
| `project` | [`Project!`](#project) | The project the design belongs to. |
| `version` | [`DesignVersion!`](#designversion) | The version this design-at-versions is pinned to. |
2201

2202
### `DesignAtVersionConnection`
2203

2204
The connection type for DesignAtVersion.
2205 2206 2207

| Field | Type | Description |
| ----- | ---- | ----------- |
2208 2209 2210
| `edges` | [`[DesignAtVersionEdge]`](#designatversionedge) | A list of edges. |
| `nodes` | [`[DesignAtVersion]`](#designatversion) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
2211

2212
### `DesignAtVersionEdge`
2213

2214
An edge in a connection.
2215 2216 2217

| Field | Type | Description |
| ----- | ---- | ----------- |
2218 2219
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`DesignAtVersion`](#designatversion) | The item at the end of the edge. |
2220

2221
### `DesignCollection`
2222

2223
A collection of designs.
2224 2225 2226

| Field | Type | Description |
| ----- | ---- | ----------- |
2227 2228 2229 2230 2231 2232 2233 2234
| `copyState` | [`DesignCollectionCopyState`](#designcollectioncopystate) | Copy state of the design collection. |
| `design` | [`Design`](#design) | Find a specific design. |
| `designAtVersion` | [`DesignAtVersion`](#designatversion) | Find a design as of a version. |
| `designs` | [`DesignConnection!`](#designconnection) | All designs for the design collection. |
| `issue` | [`Issue!`](#issue) | Issue associated with the design collection. |
| `project` | [`Project!`](#project) | Project associated with the design collection. |
| `version` | [`DesignVersion`](#designversion) | A specific version. |
| `versions` | [`DesignVersionConnection!`](#designversionconnection) | All versions related to all designs, ordered newest first. |
2235

2236 2237 2238
### `DesignConnection`

The connection type for Design.
2239

2240 2241
| Field | Type | Description |
| ----- | ---- | ----------- |
2242 2243 2244
| `edges` | [`[DesignEdge]`](#designedge) | A list of edges. |
| `nodes` | [`[Design]`](#design) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
2245

2246
### `DesignEdge`
2247

2248
An edge in a connection.
2249 2250 2251

| Field | Type | Description |
| ----- | ---- | ----------- |
2252 2253
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`Design`](#design) | The item at the end of the edge. |
2254

2255
### `DesignManagement`
2256

2257 2258
| Field | Type | Description |
| ----- | ---- | ----------- |
2259 2260
| `designAtVersion` | [`DesignAtVersion`](#designatversion) | Find a design as of a version. |
| `version` | [`DesignVersion`](#designversion) | Find a version. |
2261

2262 2263 2264
### `DesignManagementDeletePayload`

Autogenerated return type of DesignManagementDelete.
Felipe Artur's avatar
Felipe Artur committed
2265

2266 2267
| Field | Type | Description |
| ----- | ---- | ----------- |
2268 2269 2270
| `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) | The new version in which the designs are deleted. |
Felipe Artur's avatar
Felipe Artur committed
2271

2272
### `DesignManagementMovePayload`
2273

2274
Autogenerated return type of DesignManagementMove.
2275

2276 2277
| Field | Type | Description |
| ----- | ---- | ----------- |
2278 2279 2280
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `designCollection` | [`DesignCollection`](#designcollection) | The current state of the collection. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
2281

2282 2283 2284
### `DesignManagementUploadPayload`

Autogenerated return type of DesignManagementUpload.
Felipe Artur's avatar
Felipe Artur committed
2285

2286 2287
| Field | Type | Description |
| ----- | ---- | ----------- |
2288 2289 2290 2291
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `designs` | [`[Design!]!`](#design) | The 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 |
Felipe Artur's avatar
Felipe Artur committed
2292

2293
### `DesignVersion`
2294

2295
A specific version in which designs were added, modified or deleted.
2296 2297 2298

| Field | Type | Description |
| ----- | ---- | ----------- |
2299 2300 2301 2302 2303
| `designAtVersion` | [`DesignAtVersion!`](#designatversion) | A particular design as of this version, provided it is visible at this version. |
| `designs` | [`DesignConnection!`](#designconnection) | All designs that were changed in the version. |
| `designsAtVersion` | [`DesignAtVersionConnection!`](#designatversionconnection) | All designs that are visible at this version, as of this version. |
| `id` | [`ID!`](#id) | ID of the design version. |
| `sha` | [`ID!`](#id) | SHA of the design version. |
2304

2305
### `DesignVersionConnection`
2306

2307
The connection type for DesignVersion.
2308 2309 2310

| Field | Type | Description |
| ----- | ---- | ----------- |
2311 2312 2313
| `edges` | [`[DesignVersionEdge]`](#designversionedge) | A list of edges. |
| `nodes` | [`[DesignVersion]`](#designversion) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
2314

2315
### `DesignVersionEdge`
2316

2317
An edge in a connection.
2318 2319 2320

| Field | Type | Description |
| ----- | ---- | ----------- |
2321 2322
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`DesignVersion`](#designversion) | The item at the end of the edge. |
2323

2324
### `DestroyBoardListPayload`
2325

2326
Autogenerated return type of DestroyBoardList.
2327 2328 2329

| Field | Type | Description |
| ----- | ---- | ----------- |
2330 2331 2332
| `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) | The list after mutation. |
2333

2334
### `DestroyBoardPayload`
2335

2336
Autogenerated return type of DestroyBoard.
2337 2338 2339

| Field | Type | Description |
| ----- | ---- | ----------- |
2340 2341 2342
| `board` | [`Board`](#board) | The 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. |
2343

2344
### `DestroyComplianceFrameworkPayload`
2345

2346
Autogenerated return type of DestroyComplianceFramework.
2347 2348 2349

| Field | Type | Description |
| ----- | ---- | ----------- |
2350 2351
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
2352

2353
### `DestroyContainerRepositoryPayload`
2354

2355
Autogenerated return type of DestroyContainerRepository.
2356 2357 2358

| Field | Type | Description |
| ----- | ---- | ----------- |
2359 2360 2361
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `containerRepository` | [`ContainerRepository!`](#containerrepository) | The container repository policy after scheduling the deletion. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
2362

2363
### `DestroyContainerRepositoryTagsPayload`
2364

2365
Autogenerated return type of DestroyContainerRepositoryTags.
2366 2367 2368

| Field | Type | Description |
| ----- | ---- | ----------- |
2369 2370 2371
| `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. |
2372

2373
### `DestroyNotePayload`
2374

2375
Autogenerated return type of DestroyNote.
2376 2377 2378

| Field | Type | Description |
| ----- | ---- | ----------- |
2379 2380 2381
| `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) | The note after mutation. |
2382

2383
### `DestroySnippetPayload`
2384

2385
Autogenerated return type of DestroySnippet.
2386 2387 2388

| Field | Type | Description |
| ----- | ---- | ----------- |
2389 2390 2391
| `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) | The snippet after mutation. |
2392

2393
### `DetailedStatus`
2394

2395 2396
| Field | Type | Description |
| ----- | ---- | ----------- |
2397 2398 2399 2400 2401 2402 2403 2404 2405
| `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. |
| `label` | [`String`](#string) | Label of the status. |
| `text` | [`String`](#string) | Text of the status. |
| `tooltip` | [`String`](#string) | Tooltip associated with the status. |
2406

2407 2408 2409
### `DevopsAdoptionSegment`

Segment.
Felipe Artur's avatar
Felipe Artur committed
2410

2411 2412
| Field | Type | Description |
| ----- | ---- | ----------- |
2413 2414 2415
| `id` | [`ID!`](#id) | ID of the segment. |
| `latestSnapshot` | [`DevopsAdoptionSnapshot`](#devopsadoptionsnapshot) | The latest adoption metrics for the segment. |
| `namespace` | [`Namespace`](#namespace) | Segment namespace. |
Felipe Artur's avatar
Felipe Artur committed
2416

2417
### `DevopsAdoptionSegmentConnection`
2418

2419
The connection type for DevopsAdoptionSegment.
2420

2421 2422
| Field | Type | Description |
| ----- | ---- | ----------- |
2423 2424 2425
| `edges` | [`[DevopsAdoptionSegmentEdge]`](#devopsadoptionsegmentedge) | A list of edges. |
| `nodes` | [`[DevopsAdoptionSegment]`](#devopsadoptionsegment) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
2426

2427
### `DevopsAdoptionSegmentEdge`
Felipe Artur's avatar
Felipe Artur committed
2428

2429
An edge in a connection.
Felipe Artur's avatar
Felipe Artur committed
2430 2431 2432

| Field | Type | Description |
| ----- | ---- | ----------- |
2433 2434
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`DevopsAdoptionSegment`](#devopsadoptionsegment) | The item at the end of the edge. |
2435

2436
### `DevopsAdoptionSnapshot`
2437

2438
Snapshot.
Felipe Artur's avatar
Felipe Artur committed
2439

2440 2441
| Field | Type | Description |
| ----- | ---- | ----------- |
2442 2443 2444 2445 2446 2447 2448 2449 2450 2451
| `deploySucceeded` | [`Boolean!`](#boolean) | At least one deployment succeeded. |
| `endTime` | [`Time!`](#time) | The 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) | The time the snapshot was recorded. |
| `runnerConfigured` | [`Boolean!`](#boolean) | At least one runner was used. |
| `securityScanSucceeded` | [`Boolean!`](#boolean) | At least one security scan succeeded. |
| `startTime` | [`Time!`](#time) | The start time for the snapshot where the data points were collected. |
2452

2453
### `DiffPosition`
2454

2455 2456
| Field | Type | Description |
| ----- | ---- | ----------- |
2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467
| `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. |
2468

2469
### `DiffRefs`
2470

2471 2472
| Field | Type | Description |
| ----- | ---- | ----------- |
2473 2474 2475
| `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. |
2476

2477
### `DiffStats`
2478

2479
Changes to a single file.
2480

2481 2482
| Field | Type | Description |
| ----- | ---- | ----------- |
2483 2484 2485
| `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. |
2486

2487
### `DiffStatsSummary`
2488

2489
Aggregated summary of changes.
2490

2491 2492
| Field | Type | Description |
| ----- | ---- | ----------- |
2493 2494 2495 2496
| `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. |
2497

2498
### `Discussion`
2499

2500 2501
| Field | Type | Description |
| ----- | ---- | ----------- |
2502 2503 2504 2505 2506 2507 2508 2509
| `createdAt` | [`Time!`](#time) | Timestamp of the discussion's creation. |
| `id` | [`DiscussionID!`](#discussionid) | ID of this discussion. |
| `notes` | [`NoteConnection!`](#noteconnection) | All notes in the discussion. |
| `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` | [`User`](#user) | User who resolved the object. |
2510

2511
### `DiscussionConnection`
2512

2513
The connection type for Discussion.
2514

2515 2516
| Field | Type | Description |
| ----- | ---- | ----------- |
2517 2518 2519
| `edges` | [`[DiscussionEdge]`](#discussionedge) | A list of edges. |
| `nodes` | [`[Discussion]`](#discussion) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
2520

2521
### `DiscussionEdge`
2522

2523
An edge in a connection.
2524

2525 2526
| Field | Type | Description |
| ----- | ---- | ----------- |
2527 2528
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`Discussion`](#discussion) | The item at the end of the edge. |
2529

2530
### `DiscussionToggleResolvePayload`
2531

2532
Autogenerated return type of DiscussionToggleResolve.
2533

2534 2535
| Field | Type | Description |
| ----- | ---- | ----------- |
2536 2537 2538
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `discussion` | [`Discussion`](#discussion) | The discussion after mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
2539

2540
### `DismissVulnerabilityPayload`
2541

2542
Autogenerated return type of DismissVulnerability.
2543

2544 2545
| Field | Type | Description |
| ----- | ---- | ----------- |
2546 2547 2548
| `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) | The vulnerability after dismissal. |
2549

2550
### `Environment`
Sean Arnold's avatar
Sean Arnold committed
2551

2552
Describes where code is deployed for a project.
Sean Arnold's avatar
Sean Arnold committed
2553

2554 2555
| Field | Type | Description |
| ----- | ---- | ----------- |
2556 2557 2558 2559 2560 2561
| `id` | [`ID!`](#id) | ID of the environment. |
| `latestOpenedMostSevereAlert` | [`AlertManagementAlert`](#alertmanagementalert) | The most severe open alert for the environment. If multiple alerts have equal severity, the most recent is returned. |
| `metricsDashboard` | [`MetricsDashboard`](#metricsdashboard) | Metrics dashboard schema for the environment. |
| `name` | [`String!`](#string) | Human-readable name of the environment. |
| `path` | [`String!`](#string) | The path to the environment. |
| `state` | [`String!`](#string) | State of the environment, for example: available/stopped. |
Sean Arnold's avatar
Sean Arnold committed
2562

2563
### `EnvironmentConnection`
2564

2565
The connection type for Environment.
2566

2567 2568
| Field | Type | Description |
| ----- | ---- | ----------- |
2569 2570 2571
| `edges` | [`[EnvironmentEdge]`](#environmentedge) | A list of edges. |
| `nodes` | [`[Environment]`](#environment) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
2572

2573
### `EnvironmentEdge`
2574

2575
An edge in a connection.
2576 2577 2578

| Field | Type | Description |
| ----- | ---- | ----------- |
2579 2580
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`Environment`](#environment) | The item at the end of the edge. |
2581

2582
### `EnvironmentsCanaryIngressUpdatePayload`
2583

2584
Autogenerated return type of EnvironmentsCanaryIngressUpdate.
2585 2586 2587

| Field | Type | Description |
| ----- | ---- | ----------- |
2588 2589
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
2590

2591 2592 2593
### `Epic`

Represents an epic.
2594

2595 2596
| Field | Type | Description |
| ----- | ---- | ----------- |
2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642
| `author` | [`User!`](#user) | Author of the epic. |
| `awardEmoji` | [`AwardEmojiConnection`](#awardemojiconnection) | A list of award emojis associated with the epic. |
| `children` | [`EpicConnection`](#epicconnection) | Children (sub-epics) of the epic. |
| `closedAt` | [`Time`](#time) | Timestamp of when the epic was closed. |
| `confidential` | [`Boolean`](#boolean) | Indicates if the epic is confidential. |
| `createdAt` | [`Time`](#time) | Timestamp of when the epic was created. |
| `currentUserTodos` | [`TodoConnection!`](#todoconnection) | To-do items for the current user. |
| `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. |
| `discussions` | [`DiscussionConnection!`](#discussionconnection) | All discussions on this noteable. |
| `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. |
| `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) | A list of events associated with the object. |
| `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. |
| `labels` | [`LabelConnection`](#labelconnection) | Labels assigned to the epic. |
| `notes` | [`NoteConnection!`](#noteconnection) | All notes on this noteable. |
| `parent` | [`Epic`](#epic) | Parent epic of the epic. |
| `participants` | [`UserConnection`](#userconnection) | List of participants for the epic. |
| `reference` | [`String!`](#string) | Internal reference of the epic. Returned in shortened format by default. |
| `relationPath` | [`String`](#string) | URI path of the epic-issue relationship. |
| `relativePosition` | [`Int`](#int) | The 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. |
| `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. |
| `title` | [`String`](#string) | Title of the epic. |
| `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. |
2643

2644
### `EpicAddIssuePayload`
2645

2646
Autogenerated return type of EpicAddIssue.
2647

2648 2649
| Field | Type | Description |
| ----- | ---- | ----------- |
2650 2651 2652 2653
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `epic` | [`Epic`](#epic) | The epic after mutation. |
| `epicIssue` | [`EpicIssue`](#epicissue) | The epic-issue relation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
2654

2655
### `EpicBoard`
2656

2657
Represents an epic board.
2658

2659 2660
| Field | Type | Description |
| ----- | ---- | ----------- |
2661 2662 2663 2664 2665 2666 2667 2668
| `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. |
| `lists` | [`EpicListConnection`](#epiclistconnection) | Epic board lists. |
| `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. |
2669

2670
### `EpicBoardConnection`
2671

2672
The connection type for EpicBoard.
2673

2674 2675
| Field | Type | Description |
| ----- | ---- | ----------- |
2676 2677 2678
| `edges` | [`[EpicBoardEdge]`](#epicboardedge) | A list of edges. |
| `nodes` | [`[EpicBoard]`](#epicboard) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
2679

2680
### `EpicBoardCreatePayload`
2681

2682
Autogenerated return type of EpicBoardCreate.
Felipe Artur's avatar
Felipe Artur committed
2683

2684 2685
| Field | Type | Description |
| ----- | ---- | ----------- |
2686 2687 2688
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `epicBoard` | [`EpicBoard`](#epicboard) | The created epic board. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
Felipe Artur's avatar
Felipe Artur committed
2689

2690
### `EpicBoardEdge`
2691

2692
An edge in a connection.
2693 2694 2695

| Field | Type | Description |
| ----- | ---- | ----------- |
2696 2697
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`EpicBoard`](#epicboard) | The item at the end of the edge. |
2698

2699
### `EpicBoardListCreatePayload`
2700

2701
Autogenerated return type of EpicBoardListCreate.
2702

2703 2704
| Field | Type | Description |
| ----- | ---- | ----------- |
2705 2706 2707
| `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. |
2708

2709 2710 2711
### `EpicBoardUpdatePayload`

Autogenerated return type of EpicBoardUpdate.
Felipe Artur's avatar
Felipe Artur committed
2712

2713 2714
| Field | Type | Description |
| ----- | ---- | ----------- |
2715 2716 2717
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `epicBoard` | [`EpicBoard`](#epicboard) | The updated epic board. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
Felipe Artur's avatar
Felipe Artur committed
2718

2719
### `EpicConnection`
2720

2721
The connection type for Epic.
2722 2723 2724

| Field | Type | Description |
| ----- | ---- | ----------- |
2725 2726 2727
| `edges` | [`[EpicEdge]`](#epicedge) | A list of edges. |
| `nodes` | [`[Epic]`](#epic) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
2728

2729
### `EpicDescendantCount`
2730

2731
Counts of descendent epics.
2732

2733 2734
| Field | Type | Description |
| ----- | ---- | ----------- |
2735 2736 2737 2738
| `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. |
2739

2740
### `EpicDescendantWeights`
2741

2742
Total weight of open and closed descendant issues.
2743 2744 2745

| Field | Type | Description |
| ----- | ---- | ----------- |
2746 2747
| `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. |
2748

2749
### `EpicEdge`
2750

2751
An edge in a connection.
Felipe Artur's avatar
Felipe Artur committed
2752

2753 2754
| Field | Type | Description |
| ----- | ---- | ----------- |
2755 2756
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`Epic`](#epic) | The item at the end of the edge. |
Felipe Artur's avatar
Felipe Artur committed
2757

2758
### `EpicHealthStatus`
2759

2760
Health status of child issues.
2761 2762 2763

| Field | Type | Description |
| ----- | ---- | ----------- |
2764 2765 2766
| `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. |
2767

2768
### `EpicIssue`
2769

2770
Relationship between an epic and an issue.
2771

2772 2773
| Field | Type | Description |
| ----- | ---- | ----------- |
2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851
| `alertManagementAlert` | [`AlertManagementAlert`](#alertmanagementalert) | Alert associated to this issue. |
| `assignees` | [`UserConnection`](#userconnection) | Assignees of the issue. |
| `author` | [`User!`](#user) | 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. |
| `closedAt` | [`Time`](#time) | Timestamp of when the issue was closed. |
| `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. |
| `currentUserTodos` | [`TodoConnection!`](#todoconnection) | To-do items for the current user. |
| `description` | [`String`](#string) | Description of the issue. |
| `descriptionHtml` | [`String`](#string) | The 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. |
| `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. |
| `healthStatus` | [`HealthStatus`](#healthstatus) | Current health status. |
| `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. |
| `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. |
| `participants` | [`UserConnection`](#userconnection) | List of participants in the issue. |
| `reference` | [`String!`](#string) | Internal reference of the issue. Returned in shortened format by default. |
| `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. |
| `title` | [`String!`](#string) | Title of the issue. |
| `titleHtml` | [`String`](#string) | The 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` | [`User`](#user) | 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. |

### `EpicIssueConnection`

The connection type for EpicIssue.

| Field | 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`

An edge in a connection.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`EpicIssue`](#epicissue) | The item at the end of the edge. |
2852

2853
### `EpicList`
2854

2855
Represents an epic board list.
Mario de la Ossa's avatar
Mario de la Ossa committed
2856

2857 2858
| Field | Type | Description |
| ----- | ---- | ----------- |
2859 2860 2861 2862 2863 2864 2865 2866
| `collapsed` | [`Boolean`](#boolean) | Indicates if this list is collapsed for this user. |
| `epics` | [`EpicConnection`](#epicconnection) | List epics. |
| `epicsCount` | [`Int`](#int) | Count of epics in the list. |
| `id` | [`BoardsEpicListID!`](#boardsepiclistid) | Global ID of the board list. |
| `label` | [`Label`](#label) | Label of the list. |
| `listType` | [`String!`](#string) | Type of the list. |
| `position` | [`Int`](#int) | Position of the list within the board. |
| `title` | [`String!`](#string) | Title of the list. |
Mario de la Ossa's avatar
Mario de la Ossa committed
2867

2868
### `EpicListConnection`
2869

2870
The connection type for EpicList.
Mario de la Ossa's avatar
Mario de la Ossa committed
2871

2872 2873
| Field | Type | Description |
| ----- | ---- | ----------- |
2874 2875 2876
| `edges` | [`[EpicListEdge]`](#epiclistedge) | A list of edges. |
| `nodes` | [`[EpicList]`](#epiclist) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
Mario de la Ossa's avatar
Mario de la Ossa committed
2877

2878
### `EpicListEdge`
2879

2880
An edge in a connection.
2881

2882 2883
| Field | Type | Description |
| ----- | ---- | ----------- |
2884 2885
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`EpicList`](#epiclist) | The item at the end of the edge. |
Mario de la Ossa's avatar
Mario de la Ossa committed
2886

2887
### `EpicMoveListPayload`
2888

2889
Autogenerated return type of EpicMoveList.
Mario de la Ossa's avatar
Mario de la Ossa committed
2890

2891 2892
| Field | Type | Description |
| ----- | ---- | ----------- |
2893 2894
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
2895

2896
### `EpicPermissions`
2897

2898
Check permissions for the current user on an epic.
Felipe Artur's avatar
Felipe Artur committed
2899

2900 2901
| Field | Type | Description |
| ----- | ---- | ----------- |
2902 2903 2904 2905 2906 2907 2908 2909
| `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 |
Felipe Artur's avatar
Felipe Artur committed
2910

2911
### `EpicSetSubscriptionPayload`
2912

2913
Autogenerated return type of EpicSetSubscription.
2914

2915 2916
| Field | Type | Description |
| ----- | ---- | ----------- |
2917 2918 2919
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `epic` | [`Epic`](#epic) | The epic after mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
Felipe Artur's avatar
Felipe Artur committed
2920

2921 2922 2923
### `EpicTreeReorderPayload`

Autogenerated return type of EpicTreeReorder.
Felipe Artur's avatar
Felipe Artur committed
2924

2925 2926
| Field | Type | Description |
| ----- | ---- | ----------- |
2927 2928
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
Felipe Artur's avatar
Felipe Artur committed
2929

2930
### `Event`
2931

2932
Representing an event.
2933 2934 2935

| Field | Type | Description |
| ----- | ---- | ----------- |
2936 2937 2938 2939 2940
| `action` | [`EventAction!`](#eventaction) | Action of the event. |
| `author` | [`User!`](#user) | 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. |
2941

2942 2943 2944
### `EventConnection`

The connection type for Event.
2945

2946 2947
| Field | Type | Description |
| ----- | ---- | ----------- |
2948 2949 2950
| `edges` | [`[EventEdge]`](#eventedge) | A list of edges. |
| `nodes` | [`[Event]`](#event) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
2951

2952 2953 2954
### `EventEdge`

An edge in a connection.
2955

2956 2957
| Field | Type | Description |
| ----- | ---- | ----------- |
2958 2959
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`Event`](#event) | The item at the end of the edge. |
2960

2961
### `ExportRequirementsPayload`
Felipe Artur's avatar
Felipe Artur committed
2962

2963
Autogenerated return type of ExportRequirements.
2964

2965 2966
| Field | Type | Description |
| ----- | ---- | ----------- |
2967 2968
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
Felipe Artur's avatar
Felipe Artur committed
2969

2970
### `ExternalIssue`
2971

2972
Represents an external issue.
2973

2974 2975
| Field | Type | Description |
| ----- | ---- | ----------- |
2976 2977 2978 2979 2980 2981 2982
| `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. |
2983

2984
### `GeoNode`
Felipe Artur's avatar
Felipe Artur committed
2985

2986 2987
| Field | Type | Description |
| ----- | ---- | ----------- |
2988 2989 2990
| `containerRepositoriesMaxCapacity` | [`Int`](#int) | The maximum concurrency of container repository sync for this secondary node. |
| `enabled` | [`Boolean`](#boolean) | Indicates whether this Geo node is enabled. |
| `filesMaxCapacity` | [`Int`](#int) | The maximum concurrency of LFS/attachment backfill for this secondary node. |
2991
| `groupWikiRepositoryRegistries` | [`GroupWikiRepositoryRegistryConnection`](#groupwikirepositoryregistryconnection) | Find group wiki repository registries on this Geo node. |
2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007
| `id` | [`ID!`](#id) | ID of this GeoNode. |
| `internalUrl` | [`String`](#string) | The URL defined on the primary node that secondary nodes should use to contact it. |
| `mergeRequestDiffRegistries` | [`MergeRequestDiffRegistryConnection`](#mergerequestdiffregistryconnection) | Find merge request diff registries on this Geo node. |
| `minimumReverificationInterval` | [`Int`](#int) | The interval (in days) in which the repository verification is valid. Once expired, it will be reverified. |
| `name` | [`String`](#string) | The unique identifier for this Geo node. |
| `packageFileRegistries` | [`PackageFileRegistryConnection`](#packagefileregistryconnection) | Package file registries of the GeoNode. |
| `primary` | [`Boolean`](#boolean) | Indicates whether this Geo node is the primary. |
| `reposMaxCapacity` | [`Int`](#int) | The maximum concurrency of repository backfill for this secondary node. |
| `selectiveSyncNamespaces` | [`NamespaceConnection`](#namespaceconnection) | The namespaces that should be synced, if `selective_sync_type` == `namespaces`. |
| `selectiveSyncShards` | [`[String!]`](#string) | The 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. |
| `snippetRepositoryRegistries` | [`SnippetRepositoryRegistryConnection`](#snippetrepositoryregistryconnection) | Find snippet repository registries on this Geo node. |
| `syncObjectStorage` | [`Boolean`](#boolean) | Indicates if this secondary node will replicate blobs in Object Storage. |
| `terraformStateVersionRegistries` | [`TerraformStateVersionRegistryConnection`](#terraformstateversionregistryconnection) | Find terraform state version registries on this Geo node. |
| `url` | [`String`](#string) | The user-facing URL for this Geo node. |
| `verificationMaxCapacity` | [`Int`](#int) | The maximum concurrency of repository verification for this secondary node. |
Felipe Artur's avatar
Felipe Artur committed
3008

3009
### `GitlabSubscriptionActivatePayload`
3010

3011
Autogenerated return type of GitlabSubscriptionActivate.
3012

3013 3014
| Field | Type | Description |
| ----- | ---- | ----------- |
3015 3016
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
3017

3018
### `GrafanaIntegration`
Felipe Artur's avatar
Felipe Artur committed
3019

3020 3021
| Field | Type | Description |
| ----- | ---- | ----------- |
3022 3023 3024 3025 3026
| `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. |
Felipe Artur's avatar
Felipe Artur committed
3027

3028
### `Group`
Felipe Artur's avatar
Felipe Artur committed
3029

3030 3031
| Field | Type | Description |
| ----- | ---- | ----------- |
3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058
| `actualRepositorySizeLimit` | [`Float`](#float) | Size limit for repositories in the namespace in bytes. |
| `additionalPurchasedStorageSize` | [`Float`](#float) | Additional storage purchased for the root namespace in bytes. |
| `autoDevopsEnabled` | [`Boolean`](#boolean) | Indicates whether Auto DevOps is enabled for all projects within this group. |
| `avatarUrl` | [`String`](#string) | Avatar URL of the group. |
| `board` | [`Board`](#board) | A single board of the group. |
| `boards` | [`BoardConnection`](#boardconnection) | Boards of the group. |
| `codeCoverageActivities` | [`CodeCoverageActivityConnection`](#codecoverageactivityconnection) | Represents the code coverage activity for this group. |
| `complianceFrameworks` | [`ComplianceFrameworkConnection`](#complianceframeworkconnection) | Compliance frameworks available to projects in this namespace. Available only when feature flag `ff_custom_compliance_frameworks` is enabled. |
| `containerRepositories` | [`ContainerRepositoryConnection`](#containerrepositoryconnection) | Container repositories 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. |
| `customEmoji` | [`CustomEmojiConnection`](#customemojiconnection) | Custom emoji within this namespace. Available only when feature flag `custom_emoji` is enabled. |
| `description` | [`String`](#string) | Description of the namespace. |
| `descriptionHtml` | [`String`](#string) | The GitLab Flavored Markdown rendering of `description` |
| `emailsDisabled` | [`Boolean`](#boolean) | Indicates if a group has email notifications disabled. |
| `epic` | [`Epic`](#epic) | Find a single epic. |
| `epicBoard` | [`EpicBoard`](#epicboard) | Find a single epic board. |
| `epicBoards` | [`EpicBoardConnection`](#epicboardconnection) | Find epic boards. |
| `epics` | [`EpicConnection`](#epicconnection) | Find epics. |
| `epicsEnabled` | [`Boolean`](#boolean) | Indicates if Epics are enabled for namespace |
| `fullName` | [`String!`](#string) | Full name of the namespace. |
| `fullPath` | [`ID!`](#id) | Full path of the namespace. |
| `groupMembers` | [`GroupMemberConnection`](#groupmemberconnection) | A membership of a user within this group. |
| `groupTimelogsEnabled` | [`Boolean`](#boolean) | Indicates if Group timelogs are enabled for namespace |
| `id` | [`ID!`](#id) | ID of the namespace. |
| `isTemporaryStorageIncreaseEnabled` | [`Boolean!`](#boolean) | Status of the temporary storage increase. |
| `issues` | [`IssueConnection`](#issueconnection) | Issues for projects in this group. |
3059
| `iterationCadences` | [`IterationCadenceConnection`](#iterationcadenceconnection) | Find iteration cadences. |
3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095
| `iterations` | [`IterationConnection`](#iterationconnection) | Find iterations. |
| `label` | [`Label`](#label) | A label available on this group. |
| `labels` | [`LabelConnection`](#labelconnection) | Labels available on this group. |
| `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. |
| `mergeRequests` | [`MergeRequestConnection`](#mergerequestconnection) | Merge requests for projects in this group. |
| `milestones` | [`MilestoneConnection`](#milestoneconnection) | Milestones of the group. |
| `name` | [`String!`](#string) | Name of the namespace. |
| `packageSettings` | [`PackageSettings`](#packagesettings) | The package settings for the namespace. |
| `packages` | [`PackageConnection`](#packageconnection) | Packages of the group. |
| `parent` | [`Group`](#group) | Parent group. |
| `path` | [`String!`](#string) | Path of the namespace. |
| `projectCreationLevel` | [`String`](#string) | The permission level required to create projects in the group. |
| `projects` | [`ProjectConnection!`](#projectconnection) | Projects within this 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. |
| `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. |
| `stats` | [`GroupStats`](#groupstats) | Group statistics. |
| `storageSizeLimit` | [`Float`](#float) | Total storage limit of the root namespace in bytes. |
| `subgroupCreationLevel` | [`String`](#string) | The permission level required to create subgroups within the group. |
| `temporaryStorageIncreaseEndsOn` | [`Time`](#time) | Date until the temporary storage increase is active. |
| `timelogs` | [`TimelogConnection!`](#timelogconnection) | Time logged in issues by group members. |
| `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. |
| `vulnerabilities` | [`VulnerabilityConnection`](#vulnerabilityconnection) | Vulnerabilities reported on the projects in the group and its subgroups. |
| `vulnerabilitiesCountByDay` | [`VulnerabilitiesCountByDayConnection`](#vulnerabilitiescountbydayconnection) | Number of vulnerabilities per day for the projects in the group and its subgroups. |
| `vulnerabilitiesCountByDayAndSeverity` **{warning-solid}** | [`VulnerabilitiesCountByDayAndSeverityConnection`](#vulnerabilitiescountbydayandseverityconnection) | **Deprecated:** Use `vulnerabilitiesCountByDay`. Deprecated in 13.3. |
| `vulnerabilityGrades` | [`[VulnerableProjectsByGrade!]!`](#vulnerableprojectsbygrade) | Represents vulnerable project counts for each grade. |
| `vulnerabilityScanners` | [`VulnerabilityScannerConnection`](#vulnerabilityscannerconnection) | Vulnerability scanners reported on the project vulnerabilities of the group and its subgroups. |
| `vulnerabilitySeveritiesCount` | [`VulnerabilitySeveritiesCount`](#vulnerabilityseveritiescount) | Counts for each vulnerability severity in the group and its subgroups. |
| `webUrl` | [`String!`](#string) | Web URL of the group. |
Felipe Artur's avatar
Felipe Artur committed
3096

3097
### `GroupMember`
3098

3099
Represents a Group Membership.
3100 3101 3102

| Field | Type | Description |
| ----- | ---- | ----------- |
3103 3104 3105 3106 3107 3108 3109 3110 3111
| `accessLevel` | [`AccessLevel`](#accesslevel) | GitLab::Access level. |
| `createdAt` | [`Time`](#time) | Date and time the membership was created. |
| `createdBy` | [`User`](#user) | 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. |
| `updatedAt` | [`Time`](#time) | Date and time the membership was last updated. |
| `user` | [`User!`](#user) | User that is associated with the member object. |
| `userPermissions` | [`GroupPermissions!`](#grouppermissions) | Permissions for the current user on the resource |
3112

3113
### `GroupMemberConnection`
3114

3115
The connection type for GroupMember.
3116 3117 3118

| Field | Type | Description |
| ----- | ---- | ----------- |
3119 3120 3121
| `edges` | [`[GroupMemberEdge]`](#groupmemberedge) | A list of edges. |
| `nodes` | [`[GroupMember]`](#groupmember) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
3122

3123
### `GroupMemberEdge`
3124

3125
An edge in a connection.
3126 3127 3128

| Field | Type | Description |
| ----- | ---- | ----------- |
3129 3130
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`GroupMember`](#groupmember) | The item at the end of the edge. |
Sean Arnold's avatar
Sean Arnold committed
3131

3132
### `GroupPermissions`
Sean Arnold's avatar
Sean Arnold committed
3133 3134 3135

| Field | Type | Description |
| ----- | ---- | ----------- |
3136
| `readGroup` | [`Boolean!`](#boolean) | Indicates the user can perform `read_group` on this resource |
Sean Arnold's avatar
Sean Arnold committed
3137

3138
### `GroupReleaseStats`
3139

3140
Contains release-related statistics about a group.
3141 3142 3143

| Field | Type | Description |
| ----- | ---- | ----------- |
3144 3145
| `releasesCount` | [`Int`](#int) | Total number of releases in all descendant projects of the group. Will always return `null` if `group_level_release_statistics` feature flag is disabled |
| `releasesPercentage` | [`Int`](#int) | Percentage of the group's descendant projects that have at least one release. Will always return `null` if `group_level_release_statistics` feature flag is disabled |
3146

3147
### `GroupStats`
3148

3149
Contains statistics about a group.
3150 3151 3152

| Field | Type | Description |
| ----- | ---- | ----------- |
3153
| `releaseStats` | [`GroupReleaseStats`](#groupreleasestats) | Statistics related to releases within the group. |
3154

3155
### `GroupWikiRepositoryRegistry`
3156

3157
Represents the Geo sync and verification state of a group wiki repository.
3158 3159 3160

| Field | Type | Description |
| ----- | ---- | ----------- |
3161 3162 3163 3164 3165 3166 3167 3168
| `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 should be resynced |
| `retryCount` | [`Int`](#int) | Number of consecutive failed sync attempts of the GroupWikiRepositoryRegistry |
| `state` | [`RegistryState`](#registrystate) | Sync state of the GroupWikiRepositoryRegistry |
3169

3170
### `GroupWikiRepositoryRegistryConnection`
3171

3172
The connection type for GroupWikiRepositoryRegistry.
3173

3174 3175
| Field | Type | Description |
| ----- | ---- | ----------- |
3176 3177 3178
| `edges` | [`[GroupWikiRepositoryRegistryEdge]`](#groupwikirepositoryregistryedge) | A list of edges. |
| `nodes` | [`[GroupWikiRepositoryRegistry]`](#groupwikirepositoryregistry) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
3179

3180
### `GroupWikiRepositoryRegistryEdge`
3181

3182
An edge in a connection.
3183 3184 3185

| Field | Type | Description |
| ----- | ---- | ----------- |
3186 3187
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`GroupWikiRepositoryRegistry`](#groupwikirepositoryregistry) | The item at the end of the edge. |
3188

3189
### `HttpIntegrationCreatePayload`
3190

3191
Autogenerated return type of HttpIntegrationCreate.
3192

3193 3194
| Field | Type | Description |
| ----- | ---- | ----------- |
3195 3196 3197
| `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) | The HTTP integration. |
3198

3199
### `HttpIntegrationDestroyPayload`
3200

3201
Autogenerated return type of HttpIntegrationDestroy.
3202 3203 3204

| Field | Type | Description |
| ----- | ---- | ----------- |
3205 3206 3207
| `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) | The HTTP integration. |
3208

3209
### `HttpIntegrationResetTokenPayload`
3210

3211
Autogenerated return type of HttpIntegrationResetToken.
3212 3213 3214

| Field | Type | Description |
| ----- | ---- | ----------- |
3215 3216 3217
| `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) | The HTTP integration. |
3218

3219
### `HttpIntegrationUpdatePayload`
3220

3221
Autogenerated return type of HttpIntegrationUpdate.
3222 3223 3224

| Field | Type | Description |
| ----- | ---- | ----------- |
3225 3226 3227
| `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) | The HTTP integration. |
3228

3229
### `IncidentManagementOncallRotation`
3230

3231
Describes an incident management on-call rotation.
Felipe Artur's avatar
Felipe Artur committed
3232

3233 3234
| Field | Type | Description |
| ----- | ---- | ----------- |
3235 3236 3237 3238 3239 3240 3241 3242 3243
| `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. |
| `shifts` | [`IncidentManagementOncallShiftConnection`](#incidentmanagementoncallshiftconnection) | Blocks of time for which a participant is on-call within a given time frame. Time frame cannot exceed one month. |
| `startsAt` | [`Time`](#time) | Start date of the on-call rotation. |
Felipe Artur's avatar
Felipe Artur committed
3244

3245
### `IncidentManagementOncallRotationConnection`
Felipe Artur's avatar
Felipe Artur committed
3246

3247
The connection type for IncidentManagementOncallRotation.
3248 3249 3250

| Field | Type | Description |
| ----- | ---- | ----------- |
3251 3252 3253
| `edges` | [`[IncidentManagementOncallRotationEdge]`](#incidentmanagementoncallrotationedge) | A list of edges. |
| `nodes` | [`[IncidentManagementOncallRotation]`](#incidentmanagementoncallrotation) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
3254

3255
### `IncidentManagementOncallRotationEdge`
lauraMon's avatar
lauraMon committed
3256

3257
An edge in a connection.
lauraMon's avatar
lauraMon committed
3258

3259 3260
| Field | Type | Description |
| ----- | ---- | ----------- |
3261 3262
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`IncidentManagementOncallRotation`](#incidentmanagementoncallrotation) | The item at the end of the edge. |
lauraMon's avatar
lauraMon committed
3263

3264
### `IncidentManagementOncallSchedule`
lauraMon's avatar
lauraMon committed
3265

3266
Describes an incident management on-call schedule.
lauraMon's avatar
lauraMon committed
3267

3268 3269
| Field | Type | Description |
| ----- | ---- | ----------- |
3270 3271 3272 3273 3274
| `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. |
| `rotations` | [`IncidentManagementOncallRotationConnection!`](#incidentmanagementoncallrotationconnection) | On-call rotations for the on-call schedule. |
| `timezone` | [`String!`](#string) | Time zone of the on-call schedule. |
lauraMon's avatar
lauraMon committed
3275

3276 3277 3278
### `IncidentManagementOncallScheduleConnection`

The connection type for IncidentManagementOncallSchedule.
Felipe Artur's avatar
Felipe Artur committed
3279

3280 3281
| Field | Type | Description |
| ----- | ---- | ----------- |
3282 3283 3284
| `edges` | [`[IncidentManagementOncallScheduleEdge]`](#incidentmanagementoncallscheduleedge) | A list of edges. |
| `nodes` | [`[IncidentManagementOncallSchedule]`](#incidentmanagementoncallschedule) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
Felipe Artur's avatar
Felipe Artur committed
3285

3286
### `IncidentManagementOncallScheduleEdge`
lauraMon's avatar
lauraMon committed
3287

3288
An edge in a connection.
lauraMon's avatar
lauraMon committed
3289

3290 3291
| Field | Type | Description |
| ----- | ---- | ----------- |
3292 3293
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`IncidentManagementOncallSchedule`](#incidentmanagementoncallschedule) | The item at the end of the edge. |
lauraMon's avatar
lauraMon committed
3294

3295
### `IncidentManagementOncallShift`
3296

3297
A block of time for which a participant is on-call.
3298 3299 3300

| Field | Type | Description |
| ----- | ---- | ----------- |
3301 3302 3303
| `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. |
3304

3305
### `IncidentManagementOncallShiftConnection`
Felipe Artur's avatar
Felipe Artur committed
3306

3307
The connection type for IncidentManagementOncallShift.
3308 3309 3310

| Field | Type | Description |
| ----- | ---- | ----------- |
3311 3312 3313
| `edges` | [`[IncidentManagementOncallShiftEdge]`](#incidentmanagementoncallshiftedge) | A list of edges. |
| `nodes` | [`[IncidentManagementOncallShift]`](#incidentmanagementoncallshift) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
3314

3315
### `IncidentManagementOncallShiftEdge`
3316

3317
An edge in a connection.
3318

3319 3320
| Field | Type | Description |
| ----- | ---- | ----------- |
3321 3322
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`IncidentManagementOncallShift`](#incidentmanagementoncallshift) | The item at the end of the edge. |
3323

3324
### `InstanceSecurityDashboard`
Felipe Artur's avatar
Felipe Artur committed
3325

3326 3327
| Field | Type | Description |
| ----- | ---- | ----------- |
3328 3329 3330 3331
| `projects` | [`ProjectConnection!`](#projectconnection) | Projects selected in Instance Security Dashboard. |
| `vulnerabilityGrades` | [`[VulnerableProjectsByGrade!]!`](#vulnerableprojectsbygrade) | Represents vulnerable project counts for each grade. |
| `vulnerabilityScanners` | [`VulnerabilityScannerConnection`](#vulnerabilityscannerconnection) | Vulnerability scanners reported on the vulnerabilities from projects selected in Instance Security Dashboard. |
| `vulnerabilitySeveritiesCount` | [`VulnerabilitySeveritiesCount`](#vulnerabilityseveritiescount) | Counts for each vulnerability severity from projects selected in Instance Security Dashboard. |
Felipe Artur's avatar
Felipe Artur committed
3332

3333
### `Issue`
Felipe Artur's avatar
Felipe Artur committed
3334

3335 3336
| Field | Type | Description |
| ----- | ---- | ----------- |
3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412
| `alertManagementAlert` | [`AlertManagementAlert`](#alertmanagementalert) | Alert associated to this issue. |
| `assignees` | [`UserConnection`](#userconnection) | Assignees of the issue. |
| `author` | [`User!`](#user) | 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. |
| `closedAt` | [`Time`](#time) | Timestamp of when the issue was closed. |
| `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. |
| `currentUserTodos` | [`TodoConnection!`](#todoconnection) | To-do items for the current user. |
| `description` | [`String`](#string) | Description of the issue. |
| `descriptionHtml` | [`String`](#string) | The 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. |
| `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. |
| `healthStatus` | [`HealthStatus`](#healthstatus) | Current health status. |
| `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. |
| `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. |
| `participants` | [`UserConnection`](#userconnection) | List of participants in the issue. |
| `reference` | [`String!`](#string) | Internal reference of the issue. Returned in shortened format by default. |
| `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. |
| `title` | [`String!`](#string) | Title of the issue. |
| `titleHtml` | [`String`](#string) | The 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` | [`User`](#user) | 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. |

### `IssueConnection`

The connection type for Issue.

| Field | 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`

An edge in a connection.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`Issue`](#issue) | The item at the end of the edge. |
Felipe Artur's avatar
Felipe Artur committed
3413

3414
### `IssueMoveListPayload`
3415

3416
Autogenerated return type of IssueMoveList.
3417

3418 3419
| Field | Type | Description |
| ----- | ---- | ----------- |
3420 3421 3422
| `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) | The issue after mutation. |
3423

3424
### `IssueMovePayload`
3425

3426
Autogenerated return type of IssueMove.
3427 3428 3429

| Field | Type | Description |
| ----- | ---- | ----------- |
3430 3431 3432
| `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) | The issue after mutation. |
3433

3434
### `IssuePermissions`
3435

3436
Check permissions for the current user on a issue.
3437 3438 3439

| Field | Type | Description |
| ----- | ---- | ----------- |
3440 3441 3442 3443 3444 3445 3446 3447
| `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 |
| `updateIssue` | [`Boolean!`](#boolean) | Indicates the user can perform `update_issue` on this resource |
3448

3449
### `IssueSetAssigneesPayload`
3450

3451
Autogenerated return type of IssueSetAssignees.
3452 3453 3454

| Field | Type | Description |
| ----- | ---- | ----------- |
3455 3456 3457
| `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) | The issue after mutation. |
3458

3459
### `IssueSetConfidentialPayload`
3460

3461
Autogenerated return type of IssueSetConfidential.
3462 3463 3464

| Field | Type | Description |
| ----- | ---- | ----------- |
3465 3466 3467
| `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) | The issue after mutation. |
3468

3469
### `IssueSetDueDatePayload`
3470

3471
Autogenerated return type of IssueSetDueDate.
3472 3473 3474

| Field | Type | Description |
| ----- | ---- | ----------- |
3475 3476 3477
| `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) | The issue after mutation. |
3478

3479
### `IssueSetEpicPayload`
3480

3481
Autogenerated return type of IssueSetEpic.
3482

3483 3484
| Field | Type | Description |
| ----- | ---- | ----------- |
3485 3486 3487
| `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) | The issue after mutation. |
3488

3489
### `IssueSetIterationPayload`
3490

3491
Autogenerated return type of IssueSetIteration.
3492

3493 3494
| Field | Type | Description |
| ----- | ---- | ----------- |
3495 3496 3497
| `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) | The issue after mutation. |
3498

3499
### `IssueSetLockedPayload`
3500

3501
Autogenerated return type of IssueSetLocked.
3502 3503 3504

| Field | Type | Description |
| ----- | ---- | ----------- |
3505 3506 3507
| `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) | The issue after mutation. |
3508

3509
### `IssueSetSeverityPayload`
3510

3511
Autogenerated return type of IssueSetSeverity.
3512

3513 3514
| Field | Type | Description |
| ----- | ---- | ----------- |
3515 3516 3517
| `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) | The issue after mutation. |
3518

3519
### `IssueSetSubscriptionPayload`
3520

3521
Autogenerated return type of IssueSetSubscription.
3522 3523 3524

| Field | Type | Description |
| ----- | ---- | ----------- |
3525 3526 3527
| `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) | The issue after mutation. |
3528

3529
### `IssueSetWeightPayload`
3530

3531
Autogenerated return type of IssueSetWeight.
3532 3533 3534

| Field | Type | Description |
| ----- | ---- | ----------- |
3535 3536 3537
| `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) | The issue after mutation. |
3538

3539
### `IssueStatusCountsType`
3540

3541
Represents total number of issues for the represented statuses.
3542

3543 3544
| Field | Type | Description |
| ----- | ---- | ----------- |
3545 3546 3547
| `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 |
3548

3549
### `Iteration`
3550

3551
Represents an iteration object.
3552

3553 3554
| Field | Type | Description |
| ----- | ---- | ----------- |
3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569
| `createdAt` | [`Time!`](#time) | Timestamp of iteration creation. |
| `description` | [`String`](#string) | Description of the iteration. |
| `descriptionHtml` | [`String`](#string) | The 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. |
| `report` | [`TimeboxReport`](#timeboxreport) | Historically accurate report about the timebox. |
| `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. |
| `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. |
3570

3571
### `IterationCadence`
3572

3573
Represents an iteration cadence.
3574 3575 3576

| Field | Type | Description |
| ----- | ---- | ----------- |
3577 3578
| `active` | [`Boolean`](#boolean) | Whether the iteration cadence is active. |
| `automatic` | [`Boolean`](#boolean) | Whether the iteration cadence should automatically generate future iterations. |
3579
| `durationInWeeks` | [`Int`](#int) | Duration in weeks of the iterations within this cadence. |
3580
| `id` | [`IterationsCadenceID!`](#iterationscadenceid) | Global ID of the iteration cadence. |
3581
| `iterationsInAdvance` | [`Int`](#int) | Future iterations to be created when iteration cadence is set to automatic. |
3582 3583
| `startDate` | [`Time`](#time) | Timestamp of the iteration cadence start date. |
| `title` | [`String!`](#string) | Title of the iteration cadence. |
3584

3585 3586 3587 3588 3589 3590 3591 3592 3593 3594
### `IterationCadenceConnection`

The connection type for IterationCadence.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `edges` | [`[IterationCadenceEdge]`](#iterationcadenceedge) | A list of edges. |
| `nodes` | [`[IterationCadence]`](#iterationcadence) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |

3595
### `IterationCadenceCreatePayload`
3596

3597
Autogenerated return type of IterationCadenceCreate.
Felipe Artur's avatar
Felipe Artur committed
3598

3599 3600
| Field | Type | Description |
| ----- | ---- | ----------- |
3601 3602 3603
| `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) | The created iteration cadence. |
Felipe Artur's avatar
Felipe Artur committed
3604

3605 3606 3607 3608 3609 3610 3611 3612 3613
### `IterationCadenceEdge`

An edge in a connection.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`IterationCadence`](#iterationcadence) | The item at the end of the edge. |

3614 3615 3616 3617 3618 3619 3620 3621 3622 3623
### `IterationCadenceUpdatePayload`

Autogenerated return type of IterationCadenceUpdate.

| Field | 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) | The updated iteration cadence. |

3624
### `IterationConnection`
3625

3626
The connection type for Iteration.
3627

3628 3629
| Field | Type | Description |
| ----- | ---- | ----------- |
3630 3631 3632
| `edges` | [`[IterationEdge]`](#iterationedge) | A list of edges. |
| `nodes` | [`[Iteration]`](#iteration) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
Felipe Artur's avatar
Felipe Artur committed
3633

3634
### `IterationEdge`
3635

3636
An edge in a connection.
3637 3638 3639

| Field | Type | Description |
| ----- | ---- | ----------- |
3640 3641
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`Iteration`](#iteration) | The item at the end of the edge. |
3642

3643
### `JiraImport`
Felipe Artur's avatar
Felipe Artur committed
3644

3645 3646
| Field | Type | Description |
| ----- | ---- | ----------- |
3647 3648 3649 3650 3651 3652 3653
| `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` | [`User`](#user) | User that started the Jira import. |
| `totalIssueCount` | [`Int!`](#int) | Total count of issues that were attempted to import. |
Felipe Artur's avatar
Felipe Artur committed
3654

3655
### `JiraImportConnection`
Jan Provaznik's avatar
Jan Provaznik committed
3656

3657
The connection type for JiraImport.
Jan Provaznik's avatar
Jan Provaznik committed
3658

3659 3660
| Field | Type | Description |
| ----- | ---- | ----------- |
3661 3662 3663
| `edges` | [`[JiraImportEdge]`](#jiraimportedge) | A list of edges. |
| `nodes` | [`[JiraImport]`](#jiraimport) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
Jan Provaznik's avatar
Jan Provaznik committed
3664

3665
### `JiraImportEdge`
Jan Provaznik's avatar
Jan Provaznik committed
3666

3667
An edge in a connection.
Jan Provaznik's avatar
Jan Provaznik committed
3668

3669 3670
| Field | Type | Description |
| ----- | ---- | ----------- |
3671 3672
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`JiraImport`](#jiraimport) | The item at the end of the edge. |
Jan Provaznik's avatar
Jan Provaznik committed
3673

3674
### `JiraImportStartPayload`
3675

3676
Autogenerated return type of JiraImportStart.
3677

3678 3679
| Field | Type | Description |
| ----- | ---- | ----------- |
3680 3681 3682
| `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) | The Jira import data after mutation. |
3683

3684
### `JiraImportUsersPayload`
3685

3686
Autogenerated return type of JiraImportUsers.
3687 3688 3689

| Field | Type | Description |
| ----- | ---- | ----------- |
3690 3691 3692
| `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. |
3693

3694
### `JiraProject`
3695

3696 3697
| Field | Type | Description |
| ----- | ---- | ----------- |
3698 3699 3700
| `key` | [`String!`](#string) | Key of the Jira project. |
| `name` | [`String`](#string) | Name of the Jira project. |
| `projectId` | [`Int!`](#int) | ID of the Jira project. |
3701

3702
### `JiraProjectConnection`
3703

3704
The connection type for JiraProject.
3705

3706 3707
| Field | Type | Description |
| ----- | ---- | ----------- |
3708 3709 3710
| `edges` | [`[JiraProjectEdge]`](#jiraprojectedge) | A list of edges. |
| `nodes` | [`[JiraProject]`](#jiraproject) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
3711

3712 3713 3714
### `JiraProjectEdge`

An edge in a connection.
3715 3716 3717

| Field | Type | Description |
| ----- | ---- | ----------- |
3718 3719
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`JiraProject`](#jiraproject) | The item at the end of the edge. |
3720

3721
### `JiraService`
3722 3723 3724

| Field | Type | Description |
| ----- | ---- | ----------- |
3725 3726 3727
| `active` | [`Boolean`](#boolean) | Indicates if the service is active. |
| `projects` | [`JiraProjectConnection`](#jiraprojectconnection) | List of all Jira projects fetched through Jira REST API. |
| `type` | [`String`](#string) | Class name of the service. |
3728

3729
### `JiraUser`
3730 3731 3732

| Field | Type | Description |
| ----- | ---- | ----------- |
3733 3734 3735 3736 3737 3738
| `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. |
3739

3740
### `Label`
3741 3742 3743

| Field | Type | Description |
| ----- | ---- | ----------- |
3744 3745 3746 3747 3748 3749 3750 3751
| `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) | The 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. |
3752

3753
### `LabelConnection`
3754

3755
The connection type for Label.
3756

3757 3758
| Field | Type | Description |
| ----- | ---- | ----------- |
3759 3760 3761 3762
| `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. |
3763

3764
### `LabelCreatePayload`
3765

3766
Autogenerated return type of LabelCreate.
3767

3768 3769
| Field | Type | Description |
| ----- | ---- | ----------- |
3770 3771 3772
| `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) | The label after mutation. |
3773

3774
### `LabelEdge`
3775

3776
An edge in a connection.
3777

3778 3779
| Field | Type | Description |
| ----- | ---- | ----------- |
3780 3781
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`Label`](#label) | The item at the end of the edge. |
3782

3783
### `MarkAsSpamSnippetPayload`
3784

3785
Autogenerated return type of MarkAsSpamSnippet.
3786

3787 3788
| Field | Type | Description |
| ----- | ---- | ----------- |
3789 3790 3791
| `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) | The snippet after mutation. |
3792

3793
### `MemberInterfaceConnection`
3794

3795
The connection type for MemberInterface.
3796

3797 3798
| Field | Type | Description |
| ----- | ---- | ----------- |
3799 3800 3801
| `edges` | [`[MemberInterfaceEdge]`](#memberinterfaceedge) | A list of edges. |
| `nodes` | [`[MemberInterface]`](#memberinterface) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
3802

3803
### `MemberInterfaceEdge`
3804

3805
An edge in a connection.
3806

3807 3808
| Field | Type | Description |
| ----- | ---- | ----------- |
3809 3810
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`MemberInterface`](#memberinterface) | The item at the end of the edge. |
3811

3812
### `MergeRequest`
3813

3814 3815
| Field | Type | Description |
| ----- | ---- | ----------- |
3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900
| `allowCollaboration` | [`Boolean`](#boolean) | Indicates if members of the target project can push to the fork. |
| `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` | [`UserConnection`](#userconnection) | Users who approved the merge request. |
| `assignees` | [`UserConnection`](#userconnection) | Assignees of the merge request. |
| `author` | [`User`](#user) | 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. |
| `commitCount` | [`Int`](#int) | Number of commits in the merge request. |
| `commitsWithoutMergeCommits` | [`CommitConnection`](#commitconnection) | Merge request commits excluding merge commits. |
| `conflicts` | [`Boolean!`](#boolean) | Indicates if the merge request has conflicts. |
| `createdAt` | [`Time!`](#time) | Timestamp of when the merge request was created. |
| `currentUserTodos` | [`TodoConnection!`](#todoconnection) | To-do items for the current user. |
| `defaultMergeCommitMessage` | [`String`](#string) | Default merge commit message of the merge request. |
| `defaultMergeCommitMessageWithDescription` | [`String`](#string) | Default merge commit message of the merge request with description. |
| `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) | The GitLab Flavored Markdown rendering of `description` |
| `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. |
| `diffStats` | [`[DiffStats!]`](#diffstats) | Details about which files were changed in 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. |
| `divergedFromTargetBranch` | [`Boolean!`](#boolean) | Indicates if the source branch is behind the target branch. |
| `downvotes` | [`Int!`](#int) | Number of downvotes for the merge request. |
| `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) | The pipeline running on the branch HEAD of 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. |
| `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` | [`String`](#string) | Status of the merge request. |
| `mergeTrainsCount` | [`Int`](#int) | Number of merge requests in the merge train. |
| `mergeUser` | [`User`](#user) | User who merged this merge request. |
| `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) | The milestone of the merge request. |
| `notes` | [`NoteConnection!`](#noteconnection) | All notes on this noteable. |
| `participants` | [`UserConnection`](#userconnection) | Participants in the merge request. This includes the author, assignees, reviewers, and users mentioned in notes. |
| `pipelines` | [`PipelineConnection`](#pipelineconnection) | Pipelines for the merge request. Note: for performance reasons, no more than the most recent 500 pipelines will be returned. |
| `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. |
| `reference` | [`String!`](#string) | Internal reference of the merge request. Returned in shortened format by default. |
| `reviewers` | [`UserConnection`](#userconnection) | Users from whom a review has been requested. |
| `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 squash on merge is enabled. |
| `squashOnMerge` | [`Boolean!`](#boolean) | Indicates if squash on merge is enabled. |
| `state` | [`MergeRequestState!`](#mergerequeststate) | State of the merge request. |
| `subscribed` | [`Boolean!`](#boolean) | Indicates if the currently logged in user is subscribed to this merge request. |
| `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. |
| `title` | [`String!`](#string) | Title of the merge request. |
| `titleHtml` | [`String`](#string) | The 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. |
| `workInProgress` | [`Boolean!`](#boolean) | Indicates if the merge request is a draft. |
3901

3902
### `MergeRequestAcceptPayload`
3903

3904
Autogenerated return type of MergeRequestAccept.
Sean Arnold's avatar
Sean Arnold committed
3905

3906 3907
| Field | Type | Description |
| ----- | ---- | ----------- |
3908 3909 3910
| `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) | The merge request after mutation. |
3911

3912
### `MergeRequestConnection`
Sean Arnold's avatar
Sean Arnold committed
3913

3914
The connection type for MergeRequest.
Sean Arnold's avatar
Sean Arnold committed
3915

3916 3917
| Field | Type | Description |
| ----- | ---- | ----------- |
3918 3919 3920 3921 3922
| `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. |
Sean Arnold's avatar
Sean Arnold committed
3923

3924
### `MergeRequestCreatePayload`
Sean Arnold's avatar
Sean Arnold committed
3925

3926
Autogenerated return type of MergeRequestCreate.
Sean Arnold's avatar
Sean Arnold committed
3927

3928 3929
| Field | Type | Description |
| ----- | ---- | ----------- |
3930 3931 3932
| `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) | The merge request after mutation. |
Sean Arnold's avatar
Sean Arnold committed
3933

3934 3935 3936
### `MergeRequestDiffRegistry`

Represents the Geo sync and verification state of a Merge Request diff.
3937

3938 3939
| Field | Type | Description |
| ----- | ---- | ----------- |
3940 3941 3942 3943 3944 3945 3946 3947
| `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 should be resynced |
| `retryCount` | [`Int`](#int) | Number of consecutive failed sync attempts of the MergeRequestDiffRegistry |
| `state` | [`RegistryState`](#registrystate) | Sync state of the MergeRequestDiffRegistry |
3948

3949
### `MergeRequestDiffRegistryConnection`
Sean Arnold's avatar
Sean Arnold committed
3950

3951
The connection type for MergeRequestDiffRegistry.
Sean Arnold's avatar
Sean Arnold committed
3952

3953 3954
| Field | Type | Description |
| ----- | ---- | ----------- |
3955 3956 3957
| `edges` | [`[MergeRequestDiffRegistryEdge]`](#mergerequestdiffregistryedge) | A list of edges. |
| `nodes` | [`[MergeRequestDiffRegistry]`](#mergerequestdiffregistry) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
Sean Arnold's avatar
Sean Arnold committed
3958

3959
### `MergeRequestDiffRegistryEdge`
Sean Arnold's avatar
Sean Arnold committed
3960

3961
An edge in a connection.
Sean Arnold's avatar
Sean Arnold committed
3962

3963 3964
| Field | Type | Description |
| ----- | ---- | ----------- |
3965 3966
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`MergeRequestDiffRegistry`](#mergerequestdiffregistry) | The item at the end of the edge. |
Sean Arnold's avatar
Sean Arnold committed
3967

3968
### `MergeRequestEdge`
Sean Arnold's avatar
Sean Arnold committed
3969

3970
An edge in a connection.
Sean Arnold's avatar
Sean Arnold committed
3971

3972 3973
| Field | Type | Description |
| ----- | ---- | ----------- |
3974 3975
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`MergeRequest`](#mergerequest) | The item at the end of the edge. |
Sean Arnold's avatar
Sean Arnold committed
3976

3977
### `MergeRequestPermissions`
3978

3979
Check permissions for the current user on a merge request.
3980

3981 3982
| Field | Type | Description |
| ----- | ---- | ----------- |
3983 3984 3985 3986 3987 3988 3989 3990 3991
| `adminMergeRequest` | [`Boolean!`](#boolean) | Indicates the user can perform `admin_merge_request` 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 |
3992

3993
### `MergeRequestReviewerRereviewPayload`
3994

3995
Autogenerated return type of MergeRequestReviewerRereview.
3996

3997 3998
| Field | Type | Description |
| ----- | ---- | ----------- |
3999 4000 4001
| `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) | The merge request after mutation. |
4002

4003
### `MergeRequestSetAssigneesPayload`
4004

4005
Autogenerated return type of MergeRequestSetAssignees.
4006

4007 4008
| Field | Type | Description |
| ----- | ---- | ----------- |
4009 4010 4011
| `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) | The merge request after mutation. |
4012

4013
### `MergeRequestSetLabelsPayload`
4014

4015
Autogenerated return type of MergeRequestSetLabels.
4016

4017 4018
| Field | Type | Description |
| ----- | ---- | ----------- |
4019 4020 4021
| `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) | The merge request after mutation. |
4022

4023 4024 4025
### `MergeRequestSetLockedPayload`

Autogenerated return type of MergeRequestSetLocked.
4026

4027 4028
| Field | Type | Description |
| ----- | ---- | ----------- |
4029 4030 4031
| `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) | The merge request after mutation. |
4032

4033
### `MergeRequestSetMilestonePayload`
4034

4035
Autogenerated return type of MergeRequestSetMilestone.
4036 4037 4038

| Field | Type | Description |
| ----- | ---- | ----------- |
4039 4040 4041
| `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) | The merge request after mutation. |
4042

4043 4044 4045
### `MergeRequestSetSubscriptionPayload`

Autogenerated return type of MergeRequestSetSubscription.
4046 4047 4048

| Field | Type | Description |
| ----- | ---- | ----------- |
4049 4050 4051
| `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) | The merge request after mutation. |
4052

4053 4054 4055
### `MergeRequestSetWipPayload`

Autogenerated return type of MergeRequestSetWip.
Felipe Artur's avatar
Felipe Artur committed
4056

4057 4058
| Field | Type | Description |
| ----- | ---- | ----------- |
4059 4060 4061
| `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) | The merge request after mutation. |
Felipe Artur's avatar
Felipe Artur committed
4062

4063
### `MergeRequestUpdatePayload`
4064

4065
Autogenerated return type of MergeRequestUpdate.
Felipe Artur's avatar
Felipe Artur committed
4066

4067 4068
| Field | Type | Description |
| ----- | ---- | ----------- |
4069 4070 4071
| `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) | The merge request after mutation. |
Felipe Artur's avatar
Felipe Artur committed
4072

4073
### `Metadata`
4074 4075 4076

| Field | Type | Description |
| ----- | ---- | ----------- |
4077 4078
| `revision` | [`String!`](#string) | Revision. |
| `version` | [`String!`](#string) | Version. |
4079

4080
### `MetricImage`
4081

4082
Represents a metric image upload.
4083 4084 4085

| Field | Type | Description |
| ----- | ---- | ----------- |
4086 4087 4088 4089 4090
| `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. |
4091

4092
### `MetricsDashboard`
4093 4094 4095

| Field | Type | Description |
| ----- | ---- | ----------- |
4096 4097 4098
| `annotations` | [`MetricsDashboardAnnotationConnection`](#metricsdashboardannotationconnection) | Annotations added to the dashboard. |
| `path` | [`String`](#string) | Path to a file with the dashboard definition. |
| `schemaValidationWarnings` | [`[String!]`](#string) | Dashboard schema validation warnings. |
4099

4100
### `MetricsDashboardAnnotation`
4101 4102 4103

| Field | Type | Description |
| ----- | ---- | ----------- |
4104 4105 4106 4107 4108
| `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. |
4109

4110 4111 4112
### `MetricsDashboardAnnotationConnection`

The connection type for MetricsDashboardAnnotation.
4113 4114 4115

| Field | Type | Description |
| ----- | ---- | ----------- |
4116 4117 4118
| `edges` | [`[MetricsDashboardAnnotationEdge]`](#metricsdashboardannotationedge) | A list of edges. |
| `nodes` | [`[MetricsDashboardAnnotation]`](#metricsdashboardannotation) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
4119

4120
### `MetricsDashboardAnnotationEdge`
4121

4122
An edge in a connection.
4123 4124 4125

| Field | Type | Description |
| ----- | ---- | ----------- |
4126 4127
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`MetricsDashboardAnnotation`](#metricsdashboardannotation) | The item at the end of the edge. |
4128

4129
### `Milestone`
4130

4131
Represents a milestone.
4132

4133 4134
| Field | Type | Description |
| ----- | ---- | ----------- |
4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148
| `createdAt` | [`Time!`](#time) | Timestamp of milestone creation. |
| `description` | [`String`](#string) | Description of the milestone. |
| `dueDate` | [`Time`](#time) | Timestamp of the milestone due date. |
| `groupMilestone` | [`Boolean!`](#boolean) | Indicates if milestone is at group level. |
| `id` | [`ID!`](#id) | ID of the milestone. |
| `projectMilestone` | [`Boolean!`](#boolean) | Indicates if milestone is at project level. |
| `report` | [`TimeboxReport`](#timeboxreport) | Historically accurate report about the timebox. |
| `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. |
4149

4150
### `MilestoneConnection`
4151

4152
The connection type for Milestone.
4153 4154 4155

| Field | Type | Description |
| ----- | ---- | ----------- |
4156 4157 4158
| `edges` | [`[MilestoneEdge]`](#milestoneedge) | A list of edges. |
| `nodes` | [`[Milestone]`](#milestone) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
4159

4160
### `MilestoneEdge`
4161

4162
An edge in a connection.
4163 4164 4165

| Field | Type | Description |
| ----- | ---- | ----------- |
4166 4167
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`Milestone`](#milestone) | The item at the end of the edge. |
4168

4169
### `MilestoneStats`
4170

4171
Contains statistics about a milestone.
4172 4173 4174

| Field | Type | Description |
| ----- | ---- | ----------- |
4175 4176
| `closedIssuesCount` | [`Int`](#int) | Number of closed issues associated with the milestone. |
| `totalIssuesCount` | [`Int`](#int) | Total number of issues associated with the milestone. |
4177

4178
### `Namespace`
4179

4180 4181
| Field | Type | Description |
| ----- | ---- | ----------- |
4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204
| `actualRepositorySizeLimit` | [`Float`](#float) | Size limit for repositories in the namespace in bytes. |
| `additionalPurchasedStorageSize` | [`Float`](#float) | Additional storage purchased for the root namespace in bytes. |
| `complianceFrameworks` | [`ComplianceFrameworkConnection`](#complianceframeworkconnection) | Compliance frameworks available to projects in this namespace. Available only when feature flag `ff_custom_compliance_frameworks` is enabled. |
| `containsLockedProjects` | [`Boolean!`](#boolean) | Includes at least one project where the repository size exceeds the limit. |
| `description` | [`String`](#string) | Description of the namespace. |
| `descriptionHtml` | [`String`](#string) | The 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) | The package settings for the namespace. |
| `path` | [`String!`](#string) | Path of the namespace. |
| `projects` | [`ProjectConnection!`](#projectconnection) | Projects within this 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. |
| `storageSizeLimit` | [`Float`](#float) | Total storage limit of the root namespace in bytes. |
| `temporaryStorageIncreaseEndsOn` | [`Time`](#time) | Date until the temporary storage increase is active. |
| `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. |
4205

4206
### `NamespaceConnection`
4207

4208
The connection type for Namespace.
4209

4210 4211
| Field | Type | Description |
| ----- | ---- | ----------- |
4212 4213 4214
| `edges` | [`[NamespaceEdge]`](#namespaceedge) | A list of edges. |
| `nodes` | [`[Namespace]`](#namespace) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
4215

4216
### `NamespaceEdge`
4217

4218
An edge in a connection.
4219 4220 4221

| Field | Type | Description |
| ----- | ---- | ----------- |
4222 4223
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`Namespace`](#namespace) | The item at the end of the edge. |
4224

4225
### `NamespaceIncreaseStorageTemporarilyPayload`
4226

4227
Autogenerated return type of NamespaceIncreaseStorageTemporarily.
4228

4229 4230
| Field | Type | Description |
| ----- | ---- | ----------- |
4231 4232 4233
| `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) | The namespace after mutation. |
4234

4235
### `Note`
4236

4237 4238
| Field | Type | Description |
| ----- | ---- | ----------- |
4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256
| `author` | [`User!`](#user) | User who wrote this note. |
| `body` | [`String!`](#string) | Content of the note. |
| `bodyHtml` | [`String`](#string) | The GitLab Flavored Markdown rendering of `note` |
| `confidential` | [`Boolean`](#boolean) | Indicates if this note is confidential. |
| `createdAt` | [`Time!`](#time) | Timestamp of the note creation. |
| `discussion` | [`Discussion`](#discussion) | The discussion this note is a part of. |
| `id` | [`NoteID!`](#noteid) | ID of the note. |
| `position` | [`DiffPosition`](#diffposition) | The 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` | [`User`](#user) | 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. |
| `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 |
4257

4258
### `NoteConnection`
4259

4260
The connection type for Note.
4261

4262 4263
| Field | Type | Description |
| ----- | ---- | ----------- |
4264 4265 4266
| `edges` | [`[NoteEdge]`](#noteedge) | A list of edges. |
| `nodes` | [`[Note]`](#note) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
4267

4268
### `NoteEdge`
4269

4270
An edge in a connection.
4271

4272 4273
| Field | Type | Description |
| ----- | ---- | ----------- |
4274 4275
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`Note`](#note) | The item at the end of the edge. |
4276

4277
### `NotePermissions`
Felipe Artur's avatar
Felipe Artur committed
4278

4279 4280
| Field | Type | Description |
| ----- | ---- | ----------- |
4281 4282 4283 4284 4285 4286
| `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 |
Felipe Artur's avatar
Felipe Artur committed
4287

4288 4289 4290
### `OncallParticipantType`

The rotation participant and color palette.
Felipe Artur's avatar
Felipe Artur committed
4291

4292 4293
| Field | Type | Description |
| ----- | ---- | ----------- |
4294 4295 4296 4297
| `colorPalette` | [`String`](#string) | The color palette to assign to the on-call user. For example "blue". |
| `colorWeight` | [`String`](#string) | The 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` | [`User!`](#user) | The user who is participating. |
Felipe Artur's avatar
Felipe Artur committed
4298

4299
### `OncallParticipantTypeConnection`
4300

4301
The connection type for OncallParticipantType.
Felipe Artur's avatar
Felipe Artur committed
4302

4303 4304
| Field | Type | Description |
| ----- | ---- | ----------- |
4305 4306 4307
| `edges` | [`[OncallParticipantTypeEdge]`](#oncallparticipanttypeedge) | A list of edges. |
| `nodes` | [`[OncallParticipantType]`](#oncallparticipanttype) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
Felipe Artur's avatar
Felipe Artur committed
4308

4309
### `OncallParticipantTypeEdge`
Sean Arnold's avatar
Sean Arnold committed
4310

4311
An edge in a connection.
Sean Arnold's avatar
Sean Arnold committed
4312

4313 4314
| Field | Type | Description |
| ----- | ---- | ----------- |
4315 4316
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`OncallParticipantType`](#oncallparticipanttype) | The item at the end of the edge. |
Sean Arnold's avatar
Sean Arnold committed
4317

4318
### `OncallRotationActivePeriodType`
4319

4320
Active period time range for on-call rotation.
4321 4322 4323

| Field | Type | Description |
| ----- | ---- | ----------- |
4324 4325
| `endTime` | [`String`](#string) | The end of the rotation active period. |
| `startTime` | [`String`](#string) | The start of the rotation active period. |
4326

4327
### `OncallRotationCreatePayload`
4328

4329
Autogenerated return type of OncallRotationCreate.
4330

4331 4332
| Field | Type | Description |
| ----- | ---- | ----------- |
4333 4334 4335
| `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) | The on-call rotation. |
4336

4337
### `OncallRotationDestroyPayload`
4338

4339
Autogenerated return type of OncallRotationDestroy.
4340

4341 4342
| Field | Type | Description |
| ----- | ---- | ----------- |
4343 4344 4345
| `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) | The on-call rotation. |
4346

4347 4348 4349 4350 4351 4352 4353 4354 4355 4356
### `OncallRotationUpdatePayload`

Autogenerated return type of OncallRotationUpdate.

| Field | 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) | The on-call rotation. |

4357
### `OncallScheduleCreatePayload`
4358

4359
Autogenerated return type of OncallScheduleCreate.
4360 4361 4362

| Field | Type | Description |
| ----- | ---- | ----------- |
4363 4364 4365
| `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) | The on-call schedule. |
4366

4367
### `OncallScheduleDestroyPayload`
4368

4369
Autogenerated return type of OncallScheduleDestroy.
4370

4371 4372
| Field | Type | Description |
| ----- | ---- | ----------- |
4373 4374 4375
| `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) | The on-call schedule. |
4376

4377
### `OncallScheduleUpdatePayload`
4378

4379
Autogenerated return type of OncallScheduleUpdate.
4380

4381 4382
| Field | Type | Description |
| ----- | ---- | ----------- |
4383 4384 4385
| `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) | The on-call schedule. |
4386

4387
### `Package`
4388

4389
Represents a package in the Package Registry.
4390

4391 4392
| Field | Type | Description |
| ----- | ---- | ----------- |
4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403
| `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. |
| `project` | [`Project!`](#project) | Project where the package is stored. |
| `tags` | [`PackageTagConnection`](#packagetagconnection) | Package tags. |
| `updatedAt` | [`Time!`](#time) | Date of most recent update. |
| `version` | [`String`](#string) | Version string. |
| `versions` | [`PackageWithoutVersionsConnection`](#packagewithoutversionsconnection) | The other versions of the package. |
4404

4405
### `PackageComposerJsonType`
4406

4407
Represents a composer JSON file.
4408

4409 4410
| Field | Type | Description |
| ----- | ---- | ----------- |
4411 4412 4413 4414
| `license` | [`String`](#string) | The license set in the Composer JSON file. |
| `name` | [`String`](#string) | The name set in the Composer JSON file. |
| `type` | [`String`](#string) | The type set in the Composer JSON file. |
| `version` | [`String`](#string) | The version set in the Composer JSON file. |
4415

4416
### `PackageConnection`
4417

4418
The connection type for Package.
4419

4420 4421
| Field | Type | Description |
| ----- | ---- | ----------- |
4422 4423 4424
| `edges` | [`[PackageEdge]`](#packageedge) | A list of edges. |
| `nodes` | [`[Package]`](#package) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
4425

4426
### `PackageEdge`
4427

4428
An edge in a connection.
4429 4430 4431

| Field | Type | Description |
| ----- | ---- | ----------- |
4432 4433
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`Package`](#package) | The item at the end of the edge. |
4434

4435
### `PackageFileRegistry`
4436

4437
Represents the Geo sync and verification state of a package file.
4438

4439 4440
| Field | Type | Description |
| ----- | ---- | ----------- |
4441 4442 4443 4444 4445 4446 4447 4448
| `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 should be resynced |
| `retryCount` | [`Int`](#int) | Number of consecutive failed sync attempts of the PackageFileRegistry |
| `state` | [`RegistryState`](#registrystate) | Sync state of the PackageFileRegistry |
4449

4450
### `PackageFileRegistryConnection`
4451

4452
The connection type for PackageFileRegistry.
4453

4454 4455
| Field | Type | Description |
| ----- | ---- | ----------- |
4456 4457 4458
| `edges` | [`[PackageFileRegistryEdge]`](#packagefileregistryedge) | A list of edges. |
| `nodes` | [`[PackageFileRegistry]`](#packagefileregistry) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
4459

4460
### `PackageFileRegistryEdge`
4461

4462
An edge in a connection.
4463

4464 4465
| Field | Type | Description |
| ----- | ---- | ----------- |
4466 4467
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`PackageFileRegistry`](#packagefileregistry) | The item at the end of the edge. |
4468

4469
### `PackageSettings`
4470

4471
Namespace-level Package Registry settings.
4472 4473 4474

| Field | Type | Description |
| ----- | ---- | ----------- |
4475 4476
| `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. |
4477

4478 4479 4480
### `PackageTag`

Represents a package tag.
Felipe Artur's avatar
Felipe Artur committed
4481

4482 4483
| Field | Type | Description |
| ----- | ---- | ----------- |
4484 4485 4486 4487
| `createdAt` | [`Time!`](#time) | The created date. |
| `id` | [`ID!`](#id) | The ID of the tag. |
| `name` | [`String!`](#string) | The name of the tag. |
| `updatedAt` | [`Time!`](#time) | The updated date. |
4488

4489 4490 4491
### `PackageTagConnection`

The connection type for PackageTag.
4492 4493 4494

| Field | Type | Description |
| ----- | ---- | ----------- |
4495 4496 4497
| `edges` | [`[PackageTagEdge]`](#packagetagedge) | A list of edges. |
| `nodes` | [`[PackageTag]`](#packagetag) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
4498

4499
### `PackageTagEdge`
4500

4501
An edge in a connection.
4502 4503 4504

| Field | Type | Description |
| ----- | ---- | ----------- |
4505 4506
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`PackageTag`](#packagetag) | The item at the end of the edge. |
4507

4508 4509 4510
### `PackageWithoutVersions`

Represents a version of a package in the Package Registry.
4511

4512 4513
| Field | Type | Description |
| ----- | ---- | ----------- |
4514 4515 4516 4517 4518 4519 4520 4521 4522 4523
| `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. |
| `project` | [`Project!`](#project) | Project where the package is stored. |
| `tags` | [`PackageTagConnection`](#packagetagconnection) | Package tags. |
| `updatedAt` | [`Time!`](#time) | Date of most recent update. |
| `version` | [`String`](#string) | Version string. |
4524

4525 4526 4527
### `PackageWithoutVersionsConnection`

The connection type for PackageWithoutVersions.
lauraMon's avatar
lauraMon committed
4528

4529 4530
| Field | Type | Description |
| ----- | ---- | ----------- |
4531 4532 4533
| `edges` | [`[PackageWithoutVersionsEdge]`](#packagewithoutversionsedge) | A list of edges. |
| `nodes` | [`[PackageWithoutVersions]`](#packagewithoutversions) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
lauraMon's avatar
lauraMon committed
4534

4535
### `PackageWithoutVersionsEdge`
4536

4537
An edge in a connection.
4538

4539 4540
| Field | Type | Description |
| ----- | ---- | ----------- |
4541 4542
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`PackageWithoutVersions`](#packagewithoutversions) | The item at the end of the edge. |
4543

4544
### `PageInfo`
4545

4546
Information about pagination in a connection.
4547

4548 4549
| Field | Type | Description |
| ----- | ---- | ----------- |
4550 4551 4552 4553
| `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. |
4554

4555
### `Pipeline`
4556

4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590
| Field | 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. |
| `commitPath` | [`String`](#string) | Path to the commit that triggered the pipeline. |
| `committedAt` | [`Time`](#time) | Timestamp of the pipeline's commit. |
| `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. |
| `detailedStatus` | [`DetailedStatus!`](#detailedstatus) | Detailed status of the pipeline. |
| `downstream` | [`PipelineConnection`](#pipelineconnection) | Pipelines this pipeline will trigger. |
| `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. |
| `jobs` | [`CiJobConnection`](#cijobconnection) | Jobs belonging to the pipeline. |
| `path` | [`String`](#string) | Relative path to the pipeline's page. |
| `project` | [`Project`](#project) | Project the pipeline belongs to. |
| `retryable` | [`Boolean!`](#boolean) | Specifies if a pipeline can be retried. |
| `securityReportFindings` | [`PipelineSecurityReportFindingConnection`](#pipelinesecurityreportfindingconnection) | Vulnerability findings reported on the pipeline. |
| `securityReportSummary` | [`SecurityReportSummary`](#securityreportsummary) | Vulnerability and scanned resource counts for each security scanner of the pipeline. |
| `sha` | [`String!`](#string) | SHA of the pipeline's commit. |
| `sourceJob` | [`CiJob`](#cijob) | Job where pipeline was triggered from. |
| `stages` | [`CiStageConnection`](#cistageconnection) | Stages of the pipeline. |
| `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) |
| `updatedAt` | [`Time!`](#time) | Timestamp of the pipeline's last activity. |
| `upstream` | [`Pipeline`](#pipeline) | Pipeline that triggered the pipeline. |
| `user` | [`User`](#user) | Pipeline user. |
| `userPermissions` | [`PipelinePermissions!`](#pipelinepermissions) | Permissions for the current user on the resource |
| `warnings` | [`Boolean!`](#boolean) | Indicates if a pipeline has warnings. |

### `PipelineAnalytics`
4591

4592 4593
| Field | Type | Description |
| ----- | ---- | ----------- |
4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604
| `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. |
Avielle Wolfe's avatar
Avielle Wolfe committed
4605

4606
### `PipelineCancelPayload`
4607

4608
Autogenerated return type of PipelineCancel.
4609 4610 4611

| Field | Type | Description |
| ----- | ---- | ----------- |
4612 4613
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
4614

4615
### `PipelineConnection`
4616

4617
The connection type for Pipeline.
4618 4619 4620

| Field | Type | Description |
| ----- | ---- | ----------- |
4621 4622 4623 4624
| `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. |
4625

4626
### `PipelineDestroyPayload`
4627

4628
Autogenerated return type of PipelineDestroy.
4629 4630 4631

| Field | Type | Description |
| ----- | ---- | ----------- |
4632 4633
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
4634

4635
### `PipelineEdge`
4636

4637
An edge in a connection.
4638 4639 4640

| Field | Type | Description |
| ----- | ---- | ----------- |
4641 4642
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`Pipeline`](#pipeline) | The item at the end of the edge. |
4643

4644
### `PipelinePermissions`
4645 4646 4647

| Field | Type | Description |
| ----- | ---- | ----------- |
4648 4649 4650
| `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 |
4651

4652
### `PipelineRetryPayload`
4653

4654
Autogenerated return type of PipelineRetry.
4655 4656 4657

| Field | Type | Description |
| ----- | ---- | ----------- |
4658 4659 4660
| `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) | The pipeline after mutation. |
4661

4662
### `PipelineSecurityReportFinding`
4663

4664
Represents vulnerability finding of a security report on the pipeline.
4665 4666 4667

| Field | Type | Description |
| ----- | ---- | ----------- |
4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679
| `confidence` | [`String`](#string) | Type of the security report that found the vulnerability. |
| `description` | [`String`](#string) | Description of the vulnerability finding. |
| `identifiers` | [`[VulnerabilityIdentifier!]!`](#vulnerabilityidentifier) | Identifiers of the vulnerabilit finding. |
| `location` | [`VulnerabilityLocation`](#vulnerabilitylocation) | Location metadata for the vulnerability. Its fields depend on the type of security scan that found the vulnerability. |
| `name` | [`String`](#string) | Name of the vulnerability finding. |
| `project` | [`Project`](#project) | The project on which the vulnerability finding was found. |
| `projectFingerprint` | [`String`](#string) | Name of the vulnerability 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) | URL to the vulnerability's details page. |
| `uuid` | [`String`](#string) | Name of the vulnerability finding. |
4680

4681
### `PipelineSecurityReportFindingConnection`
4682

4683
The connection type for PipelineSecurityReportFinding.
4684 4685 4686

| Field | Type | Description |
| ----- | ---- | ----------- |
4687 4688 4689
| `edges` | [`[PipelineSecurityReportFindingEdge]`](#pipelinesecurityreportfindingedge) | A list of edges. |
| `nodes` | [`[PipelineSecurityReportFinding]`](#pipelinesecurityreportfinding) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
4690

4691
### `PipelineSecurityReportFindingEdge`
4692

4693
An edge in a connection.
4694 4695 4696

| Field | Type | Description |
| ----- | ---- | ----------- |
4697 4698
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`PipelineSecurityReportFinding`](#pipelinesecurityreportfinding) | The item at the end of the edge. |
4699

4700
### `Project`
4701

4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727
| Field | Type | Description |
| ----- | ---- | ----------- |
| `actualRepositorySizeLimit` | [`Float`](#float) | Size limit for the repository in bytes. |
| `alertManagementAlert` | [`AlertManagementAlert`](#alertmanagementalert) | A single Alert Management alert of the project. |
| `alertManagementAlertStatusCounts` | [`AlertManagementAlertStatusCountsType`](#alertmanagementalertstatuscountstype) | Counts of alerts by status for the project. |
| `alertManagementAlerts` | [`AlertManagementAlertConnection`](#alertmanagementalertconnection) | Alert Management alerts of the project. |
| `alertManagementHttpIntegrations` | [`AlertManagementHttpIntegrationConnection`](#alertmanagementhttpintegrationconnection) | HTTP Integrations which can receive alerts for the project. |
| `alertManagementIntegrations` | [`AlertManagementIntegrationConnection`](#alertmanagementintegrationconnection) | Integrations which can receive alerts for the project. |
| `alertManagementPayloadFields` | [`[AlertManagementPayloadAlertField!]`](#alertmanagementpayloadalertfield) | Extract alert fields from payload for custom mapping. |
| `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. Available only when feature flag `api_fuzzing_configuration_ui` is enabled. |
| `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. |
| `board` | [`Board`](#board) | A single board of the project. |
| `boards` | [`BoardConnection`](#boardconnection) | Boards of the project. |
| `ciCdSettings` | [`ProjectCiCdSetting`](#projectcicdsetting) | CI/CD settings for the project. |
| `clusterAgent` | [`ClusterAgent`](#clusteragent) | Find a single cluster agent by name. |
| `clusterAgents` | [`ClusterAgentConnection`](#clusteragentconnection) | Cluster agents associated with the project. |
| `codeCoverageSummary` | [`CodeCoverageSummary`](#codecoveragesummary) | Code coverage summary associated with the project. |
| `complianceFrameworks` | [`ComplianceFrameworkConnection`](#complianceframeworkconnection) | Compliance frameworks associated with the project. |
| `containerExpirationPolicy` | [`ContainerExpirationPolicy`](#containerexpirationpolicy) | The container expiration policy of the project. |
| `containerRegistryEnabled` | [`Boolean`](#boolean) | Indicates if the project stores Docker container images in a container registry. |
| `containerRepositories` | [`ContainerRepositoryConnection`](#containerrepositoryconnection) | Container repositories of the project. |
| `containerRepositoriesCount` | [`Int!`](#int) | Number of container repositories in the project. |
| `createdAt` | [`Time`](#time) | Timestamp of the project creation. |
4728
| `dastProfiles` | [`DastProfileConnection`](#dastprofileconnection) | DAST Profiles associated with the project. |
4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748
| `dastScannerProfiles` | [`DastScannerProfileConnection`](#dastscannerprofileconnection) | The DAST scanner profiles associated with the project. |
| `dastSiteProfile` | [`DastSiteProfile`](#dastsiteprofile) | DAST Site Profile associated with the project. |
| `dastSiteProfiles` | [`DastSiteProfileConnection`](#dastsiteprofileconnection) | DAST Site Profiles associated with the project. |
| `dastSiteValidations` | [`DastSiteValidationConnection`](#dastsitevalidationconnection) | DAST Site Validations associated with the project. |
| `description` | [`String`](#string) | Short description of the project. |
| `descriptionHtml` | [`String`](#string) | The GitLab Flavored Markdown rendering of `description` |
| `environment` | [`Environment`](#environment) | A single environment of the project. |
| `environments` | [`EnvironmentConnection`](#environmentconnection) | Environments of the project. |
| `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. |
| `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. |
| `incidentManagementOncallSchedules` | [`IncidentManagementOncallScheduleConnection`](#incidentmanagementoncallscheduleconnection) | Incident Management On-call schedules of the project. |
| `issue` | [`Issue`](#issue) | A single issue of the project. |
| `issueStatusCounts` | [`IssueStatusCountsType`](#issuestatuscountstype) | Counts of issues by status for the project. |
| `issues` | [`IssueConnection`](#issueconnection) | Issues of the project. |
| `issuesEnabled` | [`Boolean`](#boolean) | Indicates if Issues are enabled for the current user |
4749
| `iterationCadences` | [`IterationCadenceConnection`](#iterationcadenceconnection) | Find iteration cadences. |
4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815
| `iterations` | [`IterationConnection`](#iterationconnection) | Find iterations. |
| `jiraImportStatus` | [`String`](#string) | Status of Jira import background job of the project. |
| `jiraImports` | [`JiraImportConnection`](#jiraimportconnection) | Jira imports into the project. |
| `jobsEnabled` | [`Boolean`](#boolean) | Indicates if CI/CD pipeline jobs are enabled for the current user. |
| `label` | [`Label`](#label) | A label available on this project. |
| `labels` | [`LabelConnection`](#labelconnection) | Labels available on this project. |
| `lastActivityAt` | [`Time`](#time) | Timestamp of the project last activity. |
| `lfsEnabled` | [`Boolean`](#boolean) | Indicates if the project has Large File Storage (LFS) enabled. |
| `mergeRequest` | [`MergeRequest`](#mergerequest) | A single merge request of the project. |
| `mergeRequests` | [`MergeRequestConnection`](#mergerequestconnection) | Merge requests of the project. |
| `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. |
| `milestones` | [`MilestoneConnection`](#milestoneconnection) | Milestones of the project. |
| `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. |
| `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. |
| `packages` | [`PackageConnection`](#packageconnection) | Packages of the project. |
| `path` | [`String!`](#string) | Path of the project. |
| `pipeline` | [`Pipeline`](#pipeline) | Build pipeline of the project. |
| `pipelineAnalytics` | [`PipelineAnalytics`](#pipelineanalytics) | Pipeline analytics. |
| `pipelines` | [`PipelineConnection`](#pipelineconnection) | Build pipelines of the project. |
| `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. |
| `projectMembers` | [`MemberInterfaceConnection`](#memberinterfaceconnection) | Members of the project. |
| `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) | The project's push rules settings. |
| `release` | [`Release`](#release) | A single release of the project. |
| `releases` | [`ReleaseConnection`](#releaseconnection) | Releases of the project. |
| `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. |
| `requirement` | [`Requirement`](#requirement) | Find a single requirement. |
| `requirementStatesCount` | [`RequirementStatesCount`](#requirementstatescount) | Number of requirements for the project by their state. |
| `requirements` | [`RequirementConnection`](#requirementconnection) | Find requirements. |
| `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. |
| `sentryDetailedError` | [`SentryDetailedError`](#sentrydetailederror) | Detailed version of a Sentry error on 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. |
| `services` | [`ServiceConnection`](#serviceconnection) | Project services. |
| `sharedRunnersEnabled` | [`Boolean`](#boolean) | Indicates if shared runners are enabled for the project. |
| `snippets` | [`SnippetConnection`](#snippetconnection) | Snippets of the project. |
| `snippetsEnabled` | [`Boolean`](#boolean) | Indicates if Snippets are enabled for the current user |
| `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. |
| `suggestionCommitMessage` | [`String`](#string) | The commit message used to apply merge request suggestions. |
| `tagList` | [`String`](#string) | List of project topics (not Git tags). |
| `terraformState` | [`TerraformState`](#terraformstate) | Find a single Terraform state by name. |
| `terraformStates` | [`TerraformStateConnection`](#terraformstateconnection) | Terraform states associated with the project. |
| `userPermissions` | [`ProjectPermissions!`](#projectpermissions) | Permissions for the current user on the resource |
| `visibility` | [`String`](#string) | Visibility of the project. |
| `vulnerabilities` | [`VulnerabilityConnection`](#vulnerabilityconnection) | Vulnerabilities reported on the project. |
| `vulnerabilitiesCountByDay` | [`VulnerabilitiesCountByDayConnection`](#vulnerabilitiescountbydayconnection) | Number of vulnerabilities per day for the project. |
| `vulnerabilityScanners` | [`VulnerabilityScannerConnection`](#vulnerabilityscannerconnection) | Vulnerability scanners reported on the project vulnerabilities. |
| `vulnerabilitySeveritiesCount` | [`VulnerabilitySeveritiesCount`](#vulnerabilityseveritiescount) | Counts for each vulnerability severity in the project. |
| `webUrl` | [`String`](#string) | Web URL of the project. |
| `wikiEnabled` | [`Boolean`](#boolean) | Indicates if Wikis are enabled for the current user |

### `ProjectCiCdSetting`
4816 4817 4818

| Field | Type | Description |
| ----- | ---- | ----------- |
4819 4820 4821 4822
| `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. |
4823

4824
### `ProjectConnection`
4825

4826
The connection type for Project.
4827 4828 4829

| Field | Type | Description |
| ----- | ---- | ----------- |
4830 4831 4832
| `edges` | [`[ProjectEdge]`](#projectedge) | A list of edges. |
| `nodes` | [`[Project]`](#project) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
4833

4834
### `ProjectEdge`
4835

4836
An edge in a connection.
4837 4838 4839

| Field | Type | Description |
| ----- | ---- | ----------- |
4840 4841
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`Project`](#project) | The item at the end of the edge. |
4842

4843
### `ProjectMember`
4844

4845
Represents a Project Membership.
4846 4847 4848

| Field | Type | Description |
| ----- | ---- | ----------- |
4849 4850 4851 4852 4853 4854 4855 4856 4857
| `accessLevel` | [`AccessLevel`](#accesslevel) | GitLab::Access level. |
| `createdAt` | [`Time`](#time) | Date and time the membership was created. |
| `createdBy` | [`User`](#user) | 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` | [`User!`](#user) | User that is associated with the member object. |
| `userPermissions` | [`ProjectPermissions!`](#projectpermissions) | Permissions for the current user on the resource |
4858

4859
### `ProjectMemberConnection`
4860

4861
The connection type for ProjectMember.
4862 4863 4864

| Field | Type | Description |
| ----- | ---- | ----------- |
4865 4866 4867
| `edges` | [`[ProjectMemberEdge]`](#projectmemberedge) | A list of edges. |
| `nodes` | [`[ProjectMember]`](#projectmember) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
4868

4869
### `ProjectMemberEdge`
4870

4871
An edge in a connection.
4872 4873 4874

| Field | Type | Description |
| ----- | ---- | ----------- |
4875 4876
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`ProjectMember`](#projectmember) | The item at the end of the edge. |
4877

4878
### `ProjectPermissions`
4879

4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925
| Field | Type | Description |
| ----- | ---- | ----------- |
| `adminOperations` | [`Boolean!`](#boolean) | Indicates the user can perform `admin_operations` 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 |
| `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 |

### `ProjectStatistics`
4926 4927 4928

| Field | Type | Description |
| ----- | ---- | ----------- |
4929 4930 4931 4932 4933 4934 4935 4936 4937
| `buildArtifactsSize` | [`Float!`](#float) | Build artifacts size of the project in bytes. |
| `commitCount` | [`Float!`](#float) | Commit count of the project. |
| `lfsObjectsSize` | [`Float!`](#float) | Large File Storage (LFS) object size of the project in bytes. |
| `packagesSize` | [`Float!`](#float) | Packages size of the project 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. |
4938

4939
### `PrometheusAlert`
4940

4941
The alert condition for Prometheus.
4942 4943 4944

| Field | Type | Description |
| ----- | ---- | ----------- |
4945 4946
| `humanizedText` | [`String!`](#string) | The human-readable text of the alert condition. |
| `id` | [`ID!`](#id) | ID of the alert condition. |
4947

4948
### `PrometheusIntegrationCreatePayload`
4949

4950
Autogenerated return type of PrometheusIntegrationCreate.
4951 4952 4953

| Field | Type | Description |
| ----- | ---- | ----------- |
4954 4955 4956
| `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) | The newly created integration. |
4957

4958
### `PrometheusIntegrationResetTokenPayload`
4959

4960
Autogenerated return type of PrometheusIntegrationResetToken.
4961

4962 4963
| Field | Type | Description |
| ----- | ---- | ----------- |
4964 4965 4966
| `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) | The newly created integration. |
4967

4968
### `PrometheusIntegrationUpdatePayload`
4969

4970
Autogenerated return type of PrometheusIntegrationUpdate.
4971

4972 4973
| Field | Type | Description |
| ----- | ---- | ----------- |
4974 4975 4976
| `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) | The newly created integration. |
4977

4978
### `PromoteToEpicPayload`
4979

4980
Autogenerated return type of PromoteToEpic.
4981

4982 4983
| Field | Type | Description |
| ----- | ---- | ----------- |
4984 4985 4986 4987
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `epic` | [`Epic`](#epic) | The epic after issue promotion. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
| `issue` | [`Issue`](#issue) | The issue after mutation. |
4988

4989
### `PushRules`
4990

4991
Represents rules that commit pushes must follow.
4992

4993 4994
| Field | Type | Description |
| ----- | ---- | ----------- |
4995
| `rejectUnsignedCommits` | [`Boolean!`](#boolean) | Indicates whether commits not signed through GPG will be rejected. |
4996

4997
### `Release`
4998

4999
Represents a release.
5000

5001 5002
| Field | Type | Description |
| ----- | ---- | ----------- |
5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016
| `assets` | [`ReleaseAssets`](#releaseassets) | Assets of the release. |
| `author` | [`User`](#user) | User that created the release. |
| `commit` | [`Commit`](#commit) | The 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) | The GitLab Flavored Markdown rendering of `description` |
| `evidences` | [`ReleaseEvidenceConnection`](#releaseevidenceconnection) | Evidence for the release. |
| `links` | [`ReleaseLinks`](#releaselinks) | Links of the release. |
| `milestones` | [`MilestoneConnection`](#milestoneconnection) | Milestones associated to the release. |
| `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. |
5017

5018
### `ReleaseAssetLink`
5019

5020
Represents an asset link associated with a release.
5021

5022 5023
| Field | Type | Description |
| ----- | ---- | ----------- |
5024 5025 5026 5027 5028 5029
| `directAssetUrl` | [`String`](#string) | Direct asset URL of the link. |
| `external` | [`Boolean`](#boolean) | Indicates the link points to an external resource. |
| `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. |
5030

5031
### `ReleaseAssetLinkConnection`
5032

5033
The connection type for ReleaseAssetLink.
5034

5035 5036
| Field | Type | Description |
| ----- | ---- | ----------- |
5037 5038 5039
| `edges` | [`[ReleaseAssetLinkEdge]`](#releaseassetlinkedge) | A list of edges. |
| `nodes` | [`[ReleaseAssetLink]`](#releaseassetlink) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
5040

5041
### `ReleaseAssetLinkCreatePayload`
5042

5043
Autogenerated return type of ReleaseAssetLinkCreate.
5044

5045 5046
| Field | Type | Description |
| ----- | ---- | ----------- |
5047 5048 5049
| `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) | The asset link after mutation. |
5050

5051
### `ReleaseAssetLinkEdge`
5052

5053
An edge in a connection.
5054

5055 5056
| Field | Type | Description |
| ----- | ---- | ----------- |
5057 5058
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`ReleaseAssetLink`](#releaseassetlink) | The item at the end of the edge. |
5059

5060 5061 5062 5063 5064 5065 5066 5067 5068 5069
### `ReleaseAssetLinkUpdatePayload`

Autogenerated return type of ReleaseAssetLinkUpdate.

| Field | 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) | The asset link after mutation. |

5070
### `ReleaseAssets`
5071

5072
A container for all assets associated with a release.
5073 5074 5075

| Field | Type | Description |
| ----- | ---- | ----------- |
5076 5077 5078
| `count` | [`Int`](#int) | Number of assets of the release. |
| `links` | [`ReleaseAssetLinkConnection`](#releaseassetlinkconnection) | Asset links of the release. |
| `sources` | [`ReleaseSourceConnection`](#releasesourceconnection) | Sources of the release. |
5079

5080
### `ReleaseConnection`
5081

5082
The connection type for Release.
5083 5084 5085

| Field | Type | Description |
| ----- | ---- | ----------- |
5086 5087 5088 5089
| `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. |
5090

5091
### `ReleaseCreatePayload`
5092

5093
Autogenerated return type of ReleaseCreate.
5094

5095 5096
| Field | Type | Description |
| ----- | ---- | ----------- |
5097 5098 5099
| `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) | The release after mutation. |
5100

5101
### `ReleaseDeletePayload`
Avielle Wolfe's avatar
Avielle Wolfe committed
5102

5103
Autogenerated return type of ReleaseDelete.
Avielle Wolfe's avatar
Avielle Wolfe committed
5104

5105 5106
| Field | Type | Description |
| ----- | ---- | ----------- |
5107 5108 5109
| `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) | The deleted release. |
5110

5111
### `ReleaseEdge`
5112

5113
An edge in a connection.
5114

5115 5116
| Field | Type | Description |
| ----- | ---- | ----------- |
5117 5118
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`Release`](#release) | The item at the end of the edge. |
5119

5120
### `ReleaseEvidence`
5121

5122
Evidence for a release.
5123

5124 5125
| Field | Type | Description |
| ----- | ---- | ----------- |
5126 5127 5128 5129
| `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. |
5130

5131
### `ReleaseEvidenceConnection`
5132

5133
The connection type for ReleaseEvidence.
5134

5135 5136
| Field | Type | Description |
| ----- | ---- | ----------- |
5137 5138 5139
| `edges` | [`[ReleaseEvidenceEdge]`](#releaseevidenceedge) | A list of edges. |
| `nodes` | [`[ReleaseEvidence]`](#releaseevidence) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
5140

5141
### `ReleaseEvidenceEdge`
5142

5143
An edge in a connection.
5144

5145 5146 5147 5148
| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`ReleaseEvidence`](#releaseevidence) | The item at the end of the edge. |
5149

5150
### `ReleaseLinks`
5151

5152 5153 5154 5155 5156 5157 5158 5159 5160
| Field | 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. |
5161

5162
### `ReleaseSource`
5163

5164
Represents the source code attached to a release in a particular format.
5165

5166 5167 5168 5169
| Field | Type | Description |
| ----- | ---- | ----------- |
| `format` | [`String`](#string) | Format of the source. |
| `url` | [`String`](#string) | Download URL of the source. |
5170

5171
### `ReleaseSourceConnection`
5172

5173
The connection type for ReleaseSource.
5174

5175 5176 5177 5178 5179
| Field | Type | Description |
| ----- | ---- | ----------- |
| `edges` | [`[ReleaseSourceEdge]`](#releasesourceedge) | A list of edges. |
| `nodes` | [`[ReleaseSource]`](#releasesource) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
5180

5181
### `ReleaseSourceEdge`
5182

5183
An edge in a connection.
Sarah Yasonik's avatar
Sarah Yasonik committed
5184

5185 5186 5187 5188
| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`ReleaseSource`](#releasesource) | The item at the end of the edge. |
Sarah Yasonik's avatar
Sarah Yasonik committed
5189

5190
### `ReleaseUpdatePayload`
Sarah Yasonik's avatar
Sarah Yasonik committed
5191

5192
Autogenerated return type of ReleaseUpdate.
5193

5194 5195 5196 5197 5198
| Field | 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) | The release after mutation. |
5199

5200
### `RemoveAwardEmojiPayload`
5201

5202
Autogenerated return type of RemoveAwardEmoji.
5203

5204 5205 5206 5207 5208
| Field | Type | Description |
| ----- | ---- | ----------- |
| `awardEmoji` | [`AwardEmoji`](#awardemoji) | The 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. |
5209

5210
### `RemoveProjectFromSecurityDashboardPayload`
5211

5212
Autogenerated return type of RemoveProjectFromSecurityDashboard.
5213

5214 5215 5216 5217
| Field | Type | Description |
| ----- | ---- | ----------- |
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
5218

5219
### `RepositionImageDiffNotePayload`
5220

5221
Autogenerated return type of RepositionImageDiffNote.
5222

5223 5224 5225 5226 5227
| Field | 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) | The note after mutation. |
5228

5229
### `Repository`
5230

5231 5232 5233 5234 5235 5236
| Field | Type | Description |
| ----- | ---- | ----------- |
| `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. |
| `tree` | [`Tree`](#tree) | Tree of the repository. |
5237

5238
### `Requirement`
5239

5240
Represents a requirement.
5241

5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258
| Field | Type | Description |
| ----- | ---- | ----------- |
| `author` | [`User!`](#user) | Author of the requirement. |
| `createdAt` | [`Time!`](#time) | Timestamp of when the requirement was created. |
| `description` | [`String`](#string) | Description of the requirement. |
| `descriptionHtml` | [`String`](#string) | The GitLab Flavored Markdown rendering of `description` |
| `id` | [`ID!`](#id) | ID of the requirement. |
| `iid` | [`ID!`](#id) | Internal ID of the requirement. |
| `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. |
| `testReports` | [`TestReportConnection`](#testreportconnection) | Test reports of the requirement. |
| `title` | [`String`](#string) | Title of the requirement. |
| `titleHtml` | [`String`](#string) | The 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 |
5259

5260
### `RequirementConnection`
5261

5262
The connection type for Requirement.
5263

5264 5265 5266 5267 5268
| Field | Type | Description |
| ----- | ---- | ----------- |
| `edges` | [`[RequirementEdge]`](#requirementedge) | A list of edges. |
| `nodes` | [`[Requirement]`](#requirement) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
5269

5270
### `RequirementEdge`
5271

5272
An edge in a connection.
5273

5274 5275 5276 5277
| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`Requirement`](#requirement) | The item at the end of the edge. |
lauraMon's avatar
lauraMon committed
5278

5279
### `RequirementPermissions`
lauraMon's avatar
lauraMon committed
5280

5281
Check permissions for the current user on a requirement.
lauraMon's avatar
lauraMon committed
5282

5283 5284 5285 5286 5287 5288 5289
| Field | 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 |
5290

5291
### `RequirementStatesCount`
5292

5293
Counts of requirements by their state.
5294

5295 5296 5297 5298
| Field | Type | Description |
| ----- | ---- | ----------- |
| `archived` | [`Int`](#int) | Number of archived requirements. |
| `opened` | [`Int`](#int) | Number of opened requirements. |
5299

5300
### `RevertVulnerabilityToDetectedPayload`
5301

5302
Autogenerated return type of RevertVulnerabilityToDetected.
5303

5304 5305 5306 5307 5308
| Field | 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) | The vulnerability after revert. |
5309

5310
### `RootStorageStatistics`
5311

5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322
| Field | Type | Description |
| ----- | ---- | ----------- |
| `buildArtifactsSize` | [`Float!`](#float) | The CI artifacts size in bytes. |
| `lfsObjectsSize` | [`Float!`](#float) | The LFS objects size in bytes. |
| `packagesSize` | [`Float!`](#float) | The packages size in bytes. |
| `pipelineArtifactsSize` | [`Float!`](#float) | The CI pipeline artifacts size in bytes. |
| `repositorySize` | [`Float!`](#float) | The Git repository size in bytes. |
| `snippetsSize` | [`Float!`](#float) | The snippets size in bytes. |
| `storageSize` | [`Float!`](#float) | The total storage in bytes. |
| `uploadsSize` | [`Float!`](#float) | The uploads size in bytes. |
| `wikiSize` | [`Float!`](#float) | The wiki size in bytes. |
5323

5324
### `RunDASTScanPayload`
5325

5326
Autogenerated return type of RunDASTScan.
5327

5328 5329 5330 5331 5332
| Field | 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. |
5333

5334
### `RunnerArchitecture`
5335

5336 5337 5338 5339
| Field | Type | Description |
| ----- | ---- | ----------- |
| `downloadLocation` | [`String!`](#string) | Download location for the runner for the platform architecture. |
| `name` | [`String!`](#string) | Name of the runner platform architecture. |
5340

5341
### `RunnerArchitectureConnection`
5342

5343
The connection type for RunnerArchitecture.
5344

5345 5346 5347 5348 5349
| Field | Type | Description |
| ----- | ---- | ----------- |
| `edges` | [`[RunnerArchitectureEdge]`](#runnerarchitectureedge) | A list of edges. |
| `nodes` | [`[RunnerArchitecture]`](#runnerarchitecture) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
5350

5351
### `RunnerArchitectureEdge`
5352

5353
An edge in a connection.
5354

5355 5356 5357 5358
| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`RunnerArchitecture`](#runnerarchitecture) | The item at the end of the edge. |
5359

5360
### `RunnerPlatform`
5361

5362 5363 5364 5365 5366
| Field | Type | Description |
| ----- | ---- | ----------- |
| `architectures` | [`RunnerArchitectureConnection`](#runnerarchitectureconnection) | Runner architectures supported for the platform. |
| `humanReadableName` | [`String!`](#string) | Human readable name of the runner platform. |
| `name` | [`String!`](#string) | Name slug of the runner platform. |
5367

5368
### `RunnerPlatformConnection`
5369

5370
The connection type for RunnerPlatform.
5371

5372 5373 5374 5375 5376
| Field | Type | Description |
| ----- | ---- | ----------- |
| `edges` | [`[RunnerPlatformEdge]`](#runnerplatformedge) | A list of edges. |
| `nodes` | [`[RunnerPlatform]`](#runnerplatform) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
5377

5378
### `RunnerPlatformEdge`
5379

5380
An edge in a connection.
5381

5382 5383 5384 5385
| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`RunnerPlatform`](#runnerplatform) | The item at the end of the edge. |
5386

5387
### `RunnerSetup`
5388

5389 5390 5391 5392
| Field | Type | Description |
| ----- | ---- | ----------- |
| `installInstructions` | [`String!`](#string) | Instructions for installing the runner on the specified architecture. |
| `registerInstructions` | [`String`](#string) | Instructions for registering the runner. |
5393

5394
### `SastCiConfiguration`
5395

5396
Represents a CI configuration of SAST.
5397

5398 5399 5400 5401 5402
| Field | Type | Description |
| ----- | ---- | ----------- |
| `analyzers` | [`SastCiConfigurationAnalyzersEntityConnection`](#sastciconfigurationanalyzersentityconnection) | List of analyzers entities attached to SAST configuration. |
| `global` | [`SastCiConfigurationEntityConnection`](#sastciconfigurationentityconnection) | List of global entities related to SAST configuration. |
| `pipeline` | [`SastCiConfigurationEntityConnection`](#sastciconfigurationentityconnection) | List of pipeline entities related to SAST configuration. |
5403

5404
### `SastCiConfigurationAnalyzersEntity`
5405

5406
Represents an analyzer entity in SAST CI configuration.
5407

5408 5409 5410 5411 5412 5413 5414
| Field | 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. |
5415

5416
### `SastCiConfigurationAnalyzersEntityConnection`
5417

5418
The connection type for SastCiConfigurationAnalyzersEntity.
5419

5420 5421 5422 5423 5424
| Field | Type | Description |
| ----- | ---- | ----------- |
| `edges` | [`[SastCiConfigurationAnalyzersEntityEdge]`](#sastciconfigurationanalyzersentityedge) | A list of edges. |
| `nodes` | [`[SastCiConfigurationAnalyzersEntity]`](#sastciconfigurationanalyzersentity) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |
5425

5426
### `SastCiConfigurationAnalyzersEntityEdge`
5427

5428
An edge in a connection.
5429

5430 5431 5432 5433
| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`SastCiConfigurationAnalyzersEntity`](#sastciconfigurationanalyzersentity) | The item at the end of the edge. |
5434

5435
### `SastCiConfigurationEntity`
5436

5437
Represents an entity in SAST CI configuration.
5438

5439 5440 5441 5442 5443 5444 5445 5446 5447 5448
| Field | 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. |
| `size` | [`SastUiComponentSize`](#sastuicomponentsize) | Size of the UI component. |
| `type` | [`String`](#string) | Type of the field value. |
| `value` | [`String`](#string) | Current value of the entity. |
5449

5450
### `SastCiConfigurationEntityConnection`
5451

5452
The connection type for SastCiConfigurationEntity.
5453

5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496
| Field | 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`

An edge in a connection.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`SastCiConfigurationEntity`](#sastciconfigurationentity) | The item at the end of the edge. |

### `SastCiConfigurationOptionsEntity`

Represents an entity for options in SAST CI configuration.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `label` | [`String`](#string) | Label of option entity. |
| `value` | [`String`](#string) | Value of option entity. |

### `SastCiConfigurationOptionsEntityConnection`

The connection type for SastCiConfigurationOptionsEntity.

| Field | 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`

An edge in a connection.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`SastCiConfigurationOptionsEntity`](#sastciconfigurationoptionsentity) | The item at the end of the edge. |

5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524
### `Scan`

Represents the security scan information.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `errors` | [`[String!]!`](#string) | List of errors. |
| `name` | [`String!`](#string) | Name of the scan. |

### `ScanConnection`

The connection type for Scan.

| Field | 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`

An edge in a connection.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`Scan`](#scan) | The item at the end of the edge. |

5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575
### `ScannedResource`

Represents a resource scanned by a security scan.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `requestMethod` | [`String`](#string) | The HTTP request method used to access the URL. |
| `url` | [`String`](#string) | The URL scanned by the scanner. |

### `ScannedResourceConnection`

The connection type for ScannedResource.

| Field | 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`

An edge in a connection.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`ScannedResource`](#scannedresource) | The item at the end of the edge. |

### `SecurityReportSummary`

Represents summary of a security report.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `apiFuzzing` | [`SecurityReportSummarySection`](#securityreportsummarysection) | Aggregated counts for the `api_fuzzing` 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 |
| `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.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `scannedResources` | [`ScannedResourceConnection`](#scannedresourceconnection) | A list of the first 20 scanned resources. |
| `scannedResourcesCount` | [`Int`](#int) | Total number of scanned resources. |
| `scannedResourcesCsvPath` | [`String`](#string) | Path to download all the scanned resources in CSV format. |
5576
| `scans` | [`ScanConnection!`](#scanconnection) | List of security scans ran for the type. |
5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446
| `vulnerabilitiesCount` | [`Int`](#int) | Total number of vulnerabilities. |

### `SecurityScanners`

Represents a list of security scanners.

| Field | 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. |

### `SentryDetailedError`

A Sentry error.

| Field | 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. |
| `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.

| Field | 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.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `detailedError` | [`SentryDetailedError`](#sentrydetailederror) | Detailed version of a Sentry error on the project. |
| `errorStackTrace` | [`SentryErrorStackTrace`](#sentryerrorstacktrace) | Stack Trace of Sentry Error. |
| `errors` | [`SentryErrorConnection`](#sentryerrorconnection) | Collection of Sentry Errors. |
| `externalUrl` | [`String`](#string) | External URL for Sentry. |

### `SentryErrorConnection`

The connection type for SentryError.

| Field | 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`

An edge in a connection.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`SentryError`](#sentryerror) | The item at the end of the edge. |

### `SentryErrorFrequency`

| Field | 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.

| Field | 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.

| Field | 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.

| Field | 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.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `level` | [`String`](#string) | Severity level of the Sentry Error. |
| `logger` | [`String`](#string) | Logger of the Sentry Error. |

### `ServiceConnection`

The connection type for Service.

| Field | 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`

An edge in a connection.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`Service`](#service) | The item at the end of the edge. |

### `Snippet`

Represents a snippet entry.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `author` | [`User`](#user) | The owner of the snippet. |
| `blob` **{warning-solid}** | [`SnippetBlob!`](#snippetblob) | **Deprecated:** Use `blobs`. Deprecated in 13.3. |
| `blobs` | [`SnippetBlobConnection`](#snippetblobconnection) | Snippet blobs. |
| `createdAt` | [`Time!`](#time) | Timestamp this snippet was created. |
| `description` | [`String`](#string) | Description of the snippet. |
| `descriptionHtml` | [`String`](#string) | The GitLab Flavored Markdown rendering of `description` |
| `discussions` | [`DiscussionConnection!`](#discussionconnection) | All discussions on this noteable. |
| `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. |
| `project` | [`Project`](#project) | The 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. |

### `SnippetBlob`

Represents the snippet blob.

| Field | 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. |
| `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. |

### `SnippetBlobConnection`

The connection type for SnippetBlob.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `edges` | [`[SnippetBlobEdge]`](#snippetblobedge) | A list of edges. |
| `nodes` | [`[SnippetBlob]`](#snippetblob) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |

### `SnippetBlobEdge`

An edge in a connection.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`SnippetBlob`](#snippetblob) | The item at the end of the edge. |

### `SnippetBlobViewer`

Represents how the blob content should be displayed.

| Field | 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 too large to be displayed. |
| `type` | [`BlobViewersType!`](#blobviewerstype) | Type of blob viewer. |

### `SnippetConnection`

The connection type for Snippet.

| Field | 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`

An edge in a connection.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`Snippet`](#snippet) | The item at the end of the edge. |

### `SnippetPermissions`

| Field | 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.

| Field | 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 should be 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 |

### `SnippetRepositoryRegistryConnection`

The connection type for SnippetRepositoryRegistry.

| Field | 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`

An edge in a connection.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`SnippetRepositoryRegistry`](#snippetrepositoryregistry) | The item at the end of the edge. |

### `StatusAction`

| Field | Type | Description |
| ----- | ---- | ----------- |
| `buttonTitle` | [`String`](#string) | Title for the button, for example: Retry this job. |
| `icon` | [`String`](#string) | Icon used in the action button. |
| `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`

| Field | 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. |

### `SubmoduleConnection`

The connection type for Submodule.

| Field | 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`

An edge in a connection.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`Submodule`](#submodule) | The item at the end of the edge. |

### `TaskCompletionStatus`

Completion status of tasks.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `completedCount` | [`Int!`](#int) | Number of completed tasks. |
| `count` | [`Int!`](#int) | Number of total tasks. |

### `TerraformState`

| Field | Type | Description |
| ----- | ---- | ----------- |
| `createdAt` | [`Time!`](#time) | Timestamp the Terraform state was created. |
| `id` | [`ID!`](#id) | ID of the Terraform state. |
| `latestVersion` | [`TerraformStateVersion`](#terraformstateversion) | The latest version of the Terraform state. |
| `lockedAt` | [`Time`](#time) | Timestamp the Terraform state was locked. |
| `lockedByUser` | [`User`](#user) | The 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. |

### `TerraformStateConnection`

The connection type for TerraformState.

| Field | 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. |

### `TerraformStateDeletePayload`

Autogenerated return type of TerraformStateDelete.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |

### `TerraformStateEdge`

An edge in a connection.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`TerraformState`](#terraformstate) | The item at the end of the edge. |

### `TerraformStateLockPayload`

Autogenerated return type of TerraformStateLock.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |

### `TerraformStateUnlockPayload`

Autogenerated return type of TerraformStateUnlock.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |

### `TerraformStateVersion`

| Field | Type | Description |
| ----- | ---- | ----------- |
| `createdAt` | [`Time!`](#time) | Timestamp the version was created. |
| `createdByUser` | [`User`](#user) | The 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) | The 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.

| Field | 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 should be 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. |

### `TerraformStateVersionRegistryConnection`

The connection type for TerraformStateVersionRegistry.

| Field | 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`

An edge in a connection.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`TerraformStateVersionRegistry`](#terraformstateversionregistry) | The item at the end of the edge. |

### `TestReport`

Represents a requirement test report.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `author` | [`User`](#user) | 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. |

### `TestReportConnection`

The connection type for TestReport.

| Field | 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`

An edge in a connection.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`TestReport`](#testreport) | The item at the end of the edge. |

### `TimeReportStats`

Represents the time report stats for timeboxes.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `complete` | [`TimeboxMetrics`](#timeboxmetrics) | Completed issues metrics. |
| `incomplete` | [`TimeboxMetrics`](#timeboxmetrics) | Incomplete issues metrics. |
| `total` | [`TimeboxMetrics`](#timeboxmetrics) | Total issues metrics. |

### `TimeboxMetrics`

Represents measured stats metrics for timeboxes.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `count` | [`Int!`](#int) | The count metric. |
| `weight` | [`Int!`](#int) | The weight metric. |

### `TimeboxReport`

Represents a historically accurate report about the timebox.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `burnupTimeSeries` | [`[BurnupChartDailyTotals!]`](#burnupchartdailytotals) | Daily scope and completed totals for burnup charts. |
| `stats` | [`TimeReportStats`](#timereportstats) | Represents the time report stats for the timebox. |

### `Timelog`

| Field | Type | Description |
| ----- | ---- | ----------- |
| `issue` | [`Issue`](#issue) | The issue that logged time was added to. |
| `note` | [`Note`](#note) | The note where the quick action to add the logged time was executed. |
| `spentAt` | [`Time`](#time) | Timestamp of when the time tracked was spent at. |
| `timeSpent` | [`Int!`](#int) | The time spent displayed in seconds. |
| `user` | [`User!`](#user) | The user that logged the time. |

### `TimelogConnection`

The connection type for Timelog.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `edges` | [`[TimelogEdge]`](#timelogedge) | A list of edges. |
| `nodes` | [`[Timelog]`](#timelog) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |

### `TimelogEdge`

An edge in a connection.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`Timelog`](#timelog) | The item at the end of the edge. |

### `Todo`

Representing a to-do entry.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `action` | [`TodoActionEnum!`](#todoactionenum) | Action of the to-do item. |
| `author` | [`User!`](#user) | The 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. |
| `project` | [`Project`](#project) | The project this to-do item is associated with. |
| `state` | [`TodoStateEnum!`](#todostateenum) | State of the to-do item. |
| `targetType` | [`TodoTargetEnum!`](#todotargetenum) | Target type of the to-do item. |

### `TodoConnection`

The connection type for Todo.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `edges` | [`[TodoEdge]`](#todoedge) | A list of edges. |
| `nodes` | [`[Todo]`](#todo) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |

### `TodoCreatePayload`

Autogenerated return type of TodoCreate.

| Field | 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) | The to-do item created. |

### `TodoEdge`

An edge in a connection.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`Todo`](#todo) | The item at the end of the edge. |

### `TodoMarkDonePayload`

Autogenerated return type of TodoMarkDone.

| Field | 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) | The requested to-do item. |

### `TodoRestoreManyPayload`

Autogenerated return type of TodoRestoreMany.

| Field | 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. |
| `updatedIds` **{warning-solid}** | [`[TodoID!]!`](#todoid) | **Deprecated:** Use to-do items. Deprecated in 13.2. |

### `TodoRestorePayload`

Autogenerated return type of TodoRestore.

| Field | 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) | The requested to-do item. |

### `TodosMarkAllDonePayload`

Autogenerated return type of TodosMarkAllDone.

| Field | 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. |
| `updatedIds` **{warning-solid}** | [`[TodoID!]!`](#todoid) | **Deprecated:** Use to-do items. Deprecated in 13.2. |

### `ToggleAwardEmojiPayload`

Autogenerated return type of ToggleAwardEmoji.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `awardEmoji` | [`AwardEmoji`](#awardemoji) | The 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. |

### `Tree`

| Field | Type | Description |
| ----- | ---- | ----------- |
| `blobs` | [`BlobConnection!`](#blobconnection) | Blobs of the tree. |
| `lastCommit` | [`Commit`](#commit) | Last commit for the tree. |
| `submodules` | [`SubmoduleConnection!`](#submoduleconnection) | Sub-modules of the tree. |
| `trees` | [`TreeEntryConnection!`](#treeentryconnection) | Trees of the tree. |

### `TreeEntry`

Represents a directory.

| Field | 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). |

### `TreeEntryConnection`

The connection type for TreeEntry.

| Field | 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`

An edge in a connection.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`TreeEntry`](#treeentry) | The item at the end of the edge. |

### `UpdateAlertStatusPayload`

Autogenerated return type of UpdateAlertStatus.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `alert` | [`AlertManagementAlert`](#alertmanagementalert) | The 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) | The issue created after mutation. |
| `todo` | [`Todo`](#todo) | The to-do item after mutation. |

### `UpdateBoardEpicUserPreferencesPayload`

Autogenerated return type of UpdateBoardEpicUserPreferences.

| Field | 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. |

### `UpdateBoardListPayload`

Autogenerated return type of UpdateBoardList.

| Field | 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. |

### `UpdateBoardPayload`

Autogenerated return type of UpdateBoard.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `board` | [`Board`](#board) | The 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. |

### `UpdateComplianceFrameworkPayload`

Autogenerated return type of UpdateComplianceFramework.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `complianceFramework` | [`ComplianceFramework`](#complianceframework) | The compliance framework after mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |

### `UpdateContainerExpirationPolicyPayload`

Autogenerated return type of UpdateContainerExpirationPolicy.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `containerExpirationPolicy` | [`ContainerExpirationPolicy`](#containerexpirationpolicy) | The container expiration policy after mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |

### `UpdateEpicPayload`

Autogenerated return type of UpdateEpic.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `epic` | [`Epic`](#epic) | The epic after mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |

### `UpdateImageDiffNotePayload`

Autogenerated return type of UpdateImageDiffNote.

| Field | 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) | The note after mutation. |

### `UpdateIssuePayload`

Autogenerated return type of UpdateIssue.

| Field | 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) | The issue after mutation. |

### `UpdateIterationPayload`

Autogenerated return type of UpdateIteration.

| Field | 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. |

### `UpdateNamespacePackageSettingsPayload`

Autogenerated return type of UpdateNamespacePackageSettings.

| Field | 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) | The namespace package setting after mutation. |

### `UpdateNotePayload`

Autogenerated return type of UpdateNote.

| Field | 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) | The note after mutation. |

### `UpdateRequirementPayload`

Autogenerated return type of UpdateRequirement.

| Field | 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. |

### `UpdateSnippetPayload`

Autogenerated return type of UpdateSnippet.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `captchaSiteKey` | [`String`](#string) | The CAPTCHA site key which must be used to render a challenge for the user to solve to obtain a valid captchaResponse value. Included only when an operation was not completed because "NeedsCaptchaResponse" is true. |
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |
| `needsCaptchaResponse` | [`Boolean`](#boolean) | Indicates whether the operation was detected as possible spam and not completed. If CAPTCHA is enabled, the request must be resubmitted with a valid CAPTCHA response and spam_log_id included for the operation to be completed. Included only when an operation was not completed because "NeedsCaptchaResponse" is true. |
| `snippet` | [`Snippet`](#snippet) | The snippet after mutation. |
| `spam` | [`Boolean`](#boolean) | Indicates whether the operation was detected as definite spam. There is no option to resubmit the request with a CAPTCHA response. |
| `spamLogId` | [`Int`](#int) | The spam log ID which must be passed along with a valid CAPTCHA response for an operation to be completed. Included only when an operation was not completed because "NeedsCaptchaResponse" is true. |

### `UsageTrendsMeasurement`

Represents a recorded measurement (object count) for the Admins.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `count` | [`Int!`](#int) | Object count. |
| `identifier` | [`MeasurementIdentifier!`](#measurementidentifier) | The type of objects being measured. |
| `recordedAt` | [`Time`](#time) | The time the measurement was recorded. |

### `UsageTrendsMeasurementConnection`

The connection type for UsageTrendsMeasurement.

| Field | 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`

An edge in a connection.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`UsageTrendsMeasurement`](#usagetrendsmeasurement) | The item at the end of the edge. |

### `User`

6447 6448
Representation of a GitLab user.

6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098
| Field | Type | Description |
| ----- | ---- | ----------- |
| `assignedMergeRequests` | [`MergeRequestConnection`](#mergerequestconnection) | Merge Requests assigned to the user. |
| `authoredMergeRequests` | [`MergeRequestConnection`](#mergerequestconnection) | Merge Requests authored by the user. |
| `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. |
| `email` **{warning-solid}** | [`String`](#string) | **Deprecated:** Use public_email. Deprecated in 13.7. |
| `groupCount` | [`Int`](#int) | Group count for the user. Available only when feature flag `user_group_counts` is enabled. |
| `groupMemberships` | [`GroupMemberConnection`](#groupmemberconnection) | Group memberships of the user. |
| `id` | [`ID!`](#id) | ID of the user. |
| `location` | [`String`](#string) | The location of the user. |
| `name` | [`String!`](#string) | Human-readable name of the user. |
| `projectMemberships` | [`ProjectMemberConnection`](#projectmemberconnection) | Project memberships of the user. |
| `publicEmail` | [`String`](#string) | User's public email. |
| `reviewRequestedMergeRequests` | [`MergeRequestConnection`](#mergerequestconnection) | Merge Requests assigned to the user for review. |
| `snippets` | [`SnippetConnection`](#snippetconnection) | Snippets authored by the user. |
| `starredProjects` | [`ProjectConnection`](#projectconnection) | Projects starred by the user. |
| `state` | [`UserState!`](#userstate) | State of the user. |
| `status` | [`UserStatus`](#userstatus) | User status. |
| `todos` | [`TodoConnection!`](#todoconnection) | To-do items of the user. |
| `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. |

### `UserCallout`

| Field | Type | Description |
| ----- | ---- | ----------- |
| `dismissedAt` | [`Time`](#time) | Date when the callout was dismissed. |
| `featureName` | [`UserCalloutFeatureNameEnum!`](#usercalloutfeaturenameenum) | Name of the feature that the callout is for. |

### `UserCalloutConnection`

The connection type for UserCallout.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `edges` | [`[UserCalloutEdge]`](#usercalloutedge) | A list of edges. |
| `nodes` | [`[UserCallout]`](#usercallout) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |

### `UserCalloutCreatePayload`

Autogenerated return type of UserCalloutCreate.

| Field | 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) | The user callout dismissed. |

### `UserCalloutEdge`

An edge in a connection.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`UserCallout`](#usercallout) | The item at the end of the edge. |

### `UserConnection`

The connection type for User.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `edges` | [`[UserEdge]`](#useredge) | A list of edges. |
| `nodes` | [`[User]`](#user) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |

### `UserEdge`

An edge in a connection.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`User`](#user) | The item at the end of the edge. |

### `UserPermissions`

| Field | Type | Description |
| ----- | ---- | ----------- |
| `createSnippet` | [`Boolean!`](#boolean) | Indicates the user can perform `create_snippet` on this resource |

### `UserStatus`

| Field | 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 |

### `VulnerabilitiesCountByDay`

Represents the count of vulnerabilities by severity on a particular day. This data is retained for 365 days.

| Field | 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 |

### `VulnerabilitiesCountByDayAndSeverity`

Represents the number of vulnerabilities for a particular severity on a particular day. This data is retained for 365 days.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `count` | [`Int`](#int) | Number of vulnerabilities. |
| `day` | [`ISO8601Date`](#iso8601date) | Date for the count. |
| `severity` | [`VulnerabilitySeverity`](#vulnerabilityseverity) | Severity of the counted vulnerabilities. |

### `VulnerabilitiesCountByDayAndSeverityConnection`

The connection type for VulnerabilitiesCountByDayAndSeverity.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `edges` | [`[VulnerabilitiesCountByDayAndSeverityEdge]`](#vulnerabilitiescountbydayandseverityedge) | A list of edges. |
| `nodes` | [`[VulnerabilitiesCountByDayAndSeverity]`](#vulnerabilitiescountbydayandseverity) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |

### `VulnerabilitiesCountByDayAndSeverityEdge`

An edge in a connection.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`VulnerabilitiesCountByDayAndSeverity`](#vulnerabilitiescountbydayandseverity) | The item at the end of the edge. |

### `VulnerabilitiesCountByDayConnection`

The connection type for VulnerabilitiesCountByDay.

| Field | 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`

An edge in a connection.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`VulnerabilitiesCountByDay`](#vulnerabilitiescountbyday) | The item at the end of the edge. |

### `Vulnerability`

Represents a vulnerability.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `confirmedAt` | [`Time`](#time) | Timestamp of when the vulnerability state was changed to confirmed. |
| `confirmedBy` | [`User`](#user) | The user that confirmed the vulnerability. |
| `description` | [`String`](#string) | Description of the vulnerability. |
| `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. |
| `dismissedAt` | [`Time`](#time) | Timestamp of when the vulnerability state was changed to dismissed. |
| `dismissedBy` | [`User`](#user) | The user that dismissed the vulnerability. |
| `externalIssueLinks` | [`VulnerabilityExternalIssueLinkConnection!`](#vulnerabilityexternalissuelinkconnection) | List of external issue links related to the vulnerability. |
| `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. |
| `issueLinks` | [`VulnerabilityIssueLinkConnection!`](#vulnerabilityissuelinkconnection) | List of issue links related to 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. |
| `notes` | [`NoteConnection!`](#noteconnection) | All notes on this noteable. |
| `primaryIdentifier` | [`VulnerabilityIdentifier`](#vulnerabilityidentifier) | Primary identifier of the vulnerability. |
| `project` | [`Project`](#project) | The 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). `Scan Type` in the UI. |
| `resolvedAt` | [`Time`](#time) | Timestamp of when the vulnerability state was changed to resolved. |
| `resolvedBy` | [`User`](#user) | The 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) |
| `title` | [`String`](#string) | Title of the vulnerability. |
| `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) | URL to the vulnerability's details page. |

### `VulnerabilityConfirmPayload`

Autogenerated return type of VulnerabilityConfirm.

| Field | 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) | The vulnerability after state change. |

### `VulnerabilityConnection`

The connection type for Vulnerability.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `edges` | [`[VulnerabilityEdge]`](#vulnerabilityedge) | A list of edges. |
| `nodes` | [`[Vulnerability]`](#vulnerability) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |

### `VulnerabilityDetailBase`

Represents the vulnerability details base.

| Field | 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.

| Field | 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.

| Field | 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.

| Field | 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) | The commit SHA value. |

### `VulnerabilityDetailDiff`

Represents the vulnerability details diff field.

| Field | 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.

| Field | 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.

| Field | 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.

| Field | 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.

| Field | 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.

| Field | 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. |

### `VulnerabilityDetailTable`

Represents the vulnerability details table value.

| Field | 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` | [`[VulnerabilityDetail!]!`](#vulnerabilitydetail) | Table rows. |

### `VulnerabilityDetailText`

Represents the vulnerability details text field.

| Field | 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.

| Field | 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. |

### `VulnerabilityDismissPayload`

Autogenerated return type of VulnerabilityDismiss.

| Field | 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) | The vulnerability after dismissal. |

### `VulnerabilityEdge`

An edge in a connection.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`Vulnerability`](#vulnerability) | The item at the end of the edge. |

### `VulnerabilityExternalIssueLink`

Represents an external issue link of a vulnerability.

| Field | 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. |

### `VulnerabilityExternalIssueLinkConnection`

The connection type for VulnerabilityExternalIssueLink.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `edges` | [`[VulnerabilityExternalIssueLinkEdge]`](#vulnerabilityexternalissuelinkedge) | A list of edges. |
| `nodes` | [`[VulnerabilityExternalIssueLink]`](#vulnerabilityexternalissuelink) | A list of nodes. |
| `pageInfo` | [`PageInfo!`](#pageinfo) | Information to aid in pagination. |

### `VulnerabilityExternalIssueLinkCreatePayload`

Autogenerated return type of VulnerabilityExternalIssueLinkCreate.

| Field | 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) | The created external issue link. |

### `VulnerabilityExternalIssueLinkDestroyPayload`

Autogenerated return type of VulnerabilityExternalIssueLinkDestroy.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `clientMutationId` | [`String`](#string) | A unique identifier for the client performing the mutation. |
| `errors` | [`[String!]!`](#string) | Errors encountered during execution of the mutation. |

### `VulnerabilityExternalIssueLinkEdge`

An edge in a connection.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`VulnerabilityExternalIssueLink`](#vulnerabilityexternalissuelink) | The item at the end of the edge. |

### `VulnerabilityIdentifier`

Represents a vulnerability identifier.

| Field | 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.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `id` | [`ID!`](#id) | GraphQL ID of the vulnerability. |
| `issue` | [`Issue!`](#issue) | The issue attached to issue link. |
| `linkType` | [`VulnerabilityIssueLinkType!`](#vulnerabilityissuelinktype) | Type of the issue link. |

### `VulnerabilityIssueLinkConnection`

The connection type for VulnerabilityIssueLink.

| Field | 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`

An edge in a connection.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`VulnerabilityIssueLink`](#vulnerabilityissuelink) | The item at the end of the edge. |

### `VulnerabilityLocationContainerScanning`

Represents the location of a vulnerability found by a container security scan.

| Field | 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.

| Field | 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. |

### `VulnerabilityLocationDast`

Represents the location of a vulnerability found by a DAST scan.

| Field | 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.

| Field | 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. |

### `VulnerabilityLocationSast`

Represents the location of a vulnerability found by a SAST scan.

| Field | 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.

| Field | 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.

| Field | 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 |
| `createVulnerability` | [`Boolean!`](#boolean) | Indicates the user can perform `create_vulnerability` 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 |
| `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 |

### `VulnerabilityResolvePayload`

Autogenerated return type of VulnerabilityResolve.

| Field | 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) | The vulnerability after state change. |

### `VulnerabilityRevertToDetectedPayload`

Autogenerated return type of VulnerabilityRevertToDetected.

| Field | 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) | The vulnerability after revert. |

### `VulnerabilityScanner`

Represents a vulnerability scanner.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `externalId` | [`String`](#string) | External ID of the vulnerability scanner. |
| `name` | [`String`](#string) | Name of the vulnerability scanner. |
| `reportType` | [`VulnerabilityReportType`](#vulnerabilityreporttype) | Type of the vulnerability report. |
| `vendor` | [`String`](#string) | Vendor of the vulnerability scanner. |

### `VulnerabilityScannerConnection`

The connection type for VulnerabilityScanner.

| Field | 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`

An edge in a connection.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `cursor` | [`String!`](#string) | A cursor for use in pagination. |
| `node` | [`VulnerabilityScanner`](#vulnerabilityscanner) | The item at the end of the edge. |

### `VulnerabilitySeveritiesCount`

Represents vulnerability counts by severity.

| Field | 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 |

### `VulnerableDependency`

Represents a vulnerable dependency. Used in vulnerability location data.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `package` | [`VulnerablePackage`](#vulnerablepackage) | The package associated with the vulnerable dependency. |
| `version` | [`String`](#string) | The version of the vulnerable dependency. |

### `VulnerablePackage`

Represents a vulnerable package. Used in vulnerability dependency data.

| Field | Type | Description |
| ----- | ---- | ----------- |
| `name` | [`String`](#string) | The name of the vulnerable package. |

### `VulnerableProjectsByGrade`

Represents vulnerability letter grades with associated projects.

| Field | 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. |

## 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 |
| ----- | ----------- |
| `DEVELOPER` | Developer access |
| `GUEST` | Guest access |
| `MAINTAINER` | Maintainer access |
| `MINIMAL_ACCESS` | Minimal access |
| `NO_ACCESS` | No access |
| `OWNER` | Owner access |
| `REPORTER` | Reporter access |

### `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:** Use CREATED_ASC. Deprecated in 13.5. |
| `created_desc` **{warning-solid}** | **Deprecated:** Use CREATED_DESC. Deprecated in 13.5. |
| `updated_asc` **{warning-solid}** | **Deprecated:** Use UPDATED_ASC. Deprecated in 13.5. |
| `updated_desc` **{warning-solid}** | **Deprecated:** Use UPDATED_DESC. Deprecated in 13.5. |

### `AlertManagementDomainFilter`

Filters the alerts based on given domain.

| Value | Description |
| ----- | ----------- |
| `operations` | Alerts for operations domain. |
| `threat_monitoring` | Alerts for threat monitoring domain. |

### `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` | Acknowledged status |
| `IGNORED` | Ignored status |
| `RESOLVED` | Resolved status |
| `TRIGGERED` | Triggered status |

### `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. |

### `AvailabilityEnum`

User availability status.

| Value | Description |
| ----- | ----------- |
| `BUSY` | Busy |
| `NOT_SET` | Not Set |

### `BlobViewersType`

Types of blob viewers.

| Value | Description |
| ----- | ----------- |
| `auxiliary` | Auxiliary blob viewers type. |
| `rich` | Rich blob viewers type. |
| `simple` | Simple blob viewers type. |

### `CiConfigStatus`

Values for YAML processor result.

| Value | Description |
| ----- | ----------- |
| `INVALID` | The configuration file is not valid. |
| `VALID` | The configuration file is valid. |

### `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. |

### `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 |
| `THIRTY_DAYS` | 30 days until tags are automatically removed |

### `ContainerRepositoryCleanupStatus`

Status of the tags cleanup of a container repository.

| Value | Description |
| ----- | ----------- |
| `ONGOING` | The tags cleanup is ongoing. |
| `SCHEDULED` | The tags cleanup is scheduled and is going to be executed shortly. |
| `UNFINISHED` | The tags cleanup has been partially executed. There are still remaining tags to delete. |
| `UNSCHEDULED` | The 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:** Use CREATED_ASC. Deprecated in 13.5. |
| `created_desc` **{warning-solid}** | **Deprecated:** Use CREATED_DESC. Deprecated in 13.5. |
| `updated_asc` **{warning-solid}** | **Deprecated:** Use UPDATED_ASC. Deprecated in 13.5. |
| `updated_desc` **{warning-solid}** | **Deprecated:** Use UPDATED_DESC. Deprecated in 13.5. |

### `ContainerRepositoryStatus`

Status of a container repository.

| Value | Description |
| ----- | ----------- |
| `DELETE_FAILED` | Delete Failed status. |
| `DELETE_SCHEDULED` | Delete Scheduled status. |

### `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. |

### `DastSiteValidationStrategyEnum`

| Value | Description |
| ----- | ----------- |
| `HEADER` | Header validation. |
| `TEXT_FILE` | Text file validation. |

### `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 |

### `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. |

### `DiffPositionType`

Type of file the position refers to.

| Value | Description |
| ----- | ----------- |
| `image` | An image |
| `text` | A text file |

### `EntryType`

Type of a tree entry.

| Value | Description |
| ----- | ----------- |
| `blob` |  |
| `commit` |  |
| `tree` |  |

### `EpicSort`

Roadmap sort values.

| Value | Description |
| ----- | ----------- |
| `end_date_asc` | End date at ascending order. |
| `end_date_desc` | End date at descending order. |
| `start_date_asc` | Start date at ascending order. |
| `start_date_desc` | Start date at descending order. |

### `EpicState`

State of an epic.

| Value | Description |
| ----- | ----------- |
| `all` |  |
| `closed` |  |
| `opened` |  |

### `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. |

### `EventAction`

Event action.

| Value | Description |
| ----- | ----------- |
| `APPROVED` | Approved action |
| `ARCHIVED` | Archived 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 |

### `GroupMemberRelation`

Group member relation.

| Value | Description |
| ----- | ----------- |
| `DESCENDANTS` | Descendants members |
| `DIRECT` | Direct members |
| `INHERITED` | Inherited members |

### `HealthStatus`

Health status of an issue or epic.

| Value | Description |
| ----- | ----------- |
| `atRisk` |  |
| `needsAttention` |  |
| `onTrack` |  |

### `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. |

### `IssueSort`

Values for sorting issues.

| Value | Description |
| ----- | ----------- |
| `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. |
| `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. |
| `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. |
| `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:** Use CREATED_ASC. Deprecated in 13.5. |
| `created_desc` **{warning-solid}** | **Deprecated:** Use CREATED_DESC. Deprecated in 13.5. |
| `updated_asc` **{warning-solid}** | **Deprecated:** Use UPDATED_ASC. Deprecated in 13.5. |
| `updated_desc` **{warning-solid}** | **Deprecated:** Use UPDATED_DESC. Deprecated in 13.5. |

### `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 |
| `TEST_CASE` | Test Case issue type |

### `IterationState`

State of a GitLab iteration.

| Value | Description |
| ----- | ----------- |
| `all` |  |
| `closed` |  |
| `opened` |  |
| `started` |  |
| `upcoming` |  |

### `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. |
| `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. |
| `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_MANAGEMENT` | LICENSE MANAGEMENT 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. |
| `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` |  |
| `issue_count` |  |
| `issue_weights` |  |

### `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. |

### `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. |

### `MergeRequestSort`

Values for sorting merge requests.

| 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. |
| `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. |
| `UPDATED_ASC` | Updated at ascending order. |
| `UPDATED_DESC` | Updated at descending order. |
| `created_asc` **{warning-solid}** | **Deprecated:** Use CREATED_ASC. Deprecated in 13.5. |
| `created_desc` **{warning-solid}** | **Deprecated:** Use CREATED_DESC. Deprecated in 13.5. |
| `updated_asc` **{warning-solid}** | **Deprecated:** Use UPDATED_ASC. Deprecated in 13.5. |
| `updated_desc` **{warning-solid}** | **Deprecated:** Use UPDATED_DESC. Deprecated in 13.5. |

### `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. |

### `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. |

### `MilestoneStateEnum`

Current state of milestone.

| Value | Description |
| ----- | ----------- |
| `active` | Milestone is currently active. |
| `closed` | Milestone is closed. |

### `MoveType`

The position to which the adjacent object should be moved.

| Value | Description |
| ----- | ----------- |
| `after` | The adjacent object will be moved after the object that is being moved. |
| `before` | The adjacent object will be 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 |
| ----- | ----------- |
| `SIMILARITY` | Most similar to the search query. |
| `STORAGE` | Sort by storage size. |

### `OncallRotationUnitEnum`

Rotation length unit of an on-call rotation.

| Value | Description |
| ----- | ----------- |
| `DAYS` | Days |
| `HOURS` | Hours |
| `WEEKS` | Weeks |

### `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 |
| `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 |
| `RUBYGEMS` | Packages from the Rubygems package manager |

### `PipelineConfigSourceEnum`

| Value | Description |
| ----- | ----------- |
| `AUTO_DEVOPS_SOURCE` |  |
| `BRIDGE_SOURCE` |  |
| `COMPLIANCE_SOURCE` |  |
| `EXTERNAL_PROJECT_SOURCE` |  |
| `PARAMETER_SOURCE` |  |
| `REMOTE_SOURCE` |  |
| `REPOSITORY_SOURCE` |  |
| `UNKNOWN_SOURCE` |  |
| `WEBIDE_SOURCE` |  |

### `PipelineStatusEnum`

| Value | Description |
| ----- | ----------- |
| `CANCELED` |  |
| `CREATED` |  |
| `FAILED` |  |
| `MANUAL` |  |
| `PENDING` |  |
| `PREPARING` |  |
| `RUNNING` |  |
| `SCHEDULED` |  |
| `SKIPPED` |  |
| `SUCCESS` |  |
| `WAITING_FOR_RESOURCE` |  |

### `ProjectMemberRelation`

Project member relation.

| Value | Description |
| ----- | ----------- |
| `DESCENDANTS` | Descendants members |
| `DIRECT` | Direct members |
| `INHERITED` | Inherited members |
| `INVITED_GROUPS` | Invited Groups 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. |

### `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. |

### `RequirementState`

State of a requirement.

| Value | Description |
| ----- | ----------- |
| `ARCHIVED` |  |
| `OPENED` |  |

### `RequirementStatusFilter`

Status of a requirement based on last test report.

| Value | Description |
| ----- | ----------- |
| `FAILED` |  |
| `MISSING` | Requirements without any test report. |
| `PASSED` |  |

### `SastUiComponentSize`

Size of UI component in SAST configuration page.

| Value | Description |
| ----- | ----------- |
| `LARGE` | The size of UI component in SAST configuration page is large. |
| `MEDIUM` | The size of UI component in SAST configuration page is medium. |
| `SMALL` | The size of UI component in SAST configuration page is small. |

### `SecurityReportTypeEnum`

| Value | Description |
| ----- | ----------- |
| `API_FUZZING` | API FUZZING 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 |
| `SECRET_DETECTION` | SECRET DETECTION scan report |

### `SecurityScannerType`

The type of the security scanner.

| Value | Description |
| ----- | ----------- |
| `API_FUZZING` |  |
| `CONTAINER_SCANNING` |  |
| `COVERAGE_FUZZING` |  |
| `DAST` |  |
| `DEPENDENCY_SCANNING` |  |
| `SAST` |  |
| `SECRET_DETECTION` |  |

### `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 |
| ----- | ----------- |
| `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 |
| `FLOWDOCK_SERVICE` | FlowdockService type |
| `GITHUB_SERVICE` | GithubService type |
| `HANGOUTS_CHAT_SERVICE` | HangoutsChatService type |
| `HIPCHAT_SERVICE` | HipchatService 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 |
| `PUSHOVER_SERVICE` | PushoverService type |
| `REDMINE_SERVICE` | RedmineService type |
| `SLACK_SERVICE` | SlackService type |
| `SLACK_SLASH_COMMANDS_SERVICE` | SlackSlashCommandsService type |
| `TEAMCITY_SERVICE` | TeamcityService type |
| `UNIFY_CIRCUIT_SERVICE` | UnifyCircuitService type |
| `WEBEX_TEAMS_SERVICE` | WebexTeamsService type |
| `YOUTRACK_SERVICE` | YoutrackService type |

### `SnippetBlobActionEnum`

Type of a snippet blob input action.

| Value | Description |
| ----- | ----------- |
| `create` |  |
| `delete` |  |
| `move` |  |
| `update` |  |

### `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:** Use CREATED_ASC. Deprecated in 13.5. |
| `created_desc` **{warning-solid}** | **Deprecated:** Use CREATED_DESC. Deprecated in 13.5. |
| `updated_asc` **{warning-solid}** | **Deprecated:** Use UPDATED_ASC. Deprecated in 13.5. |
| `updated_desc` **{warning-solid}** | **Deprecated:** Use UPDATED_DESC. Deprecated in 13.5. |

### `TestReportState`

State of a test report.

| Value | Description |
| ----- | ----------- |
| `FAILED` |  |
| `PASSED` |  |

### `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 TODO. |
| `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` | The state of the todo is done. |
| `pending` | The state of the todo is pending. |

### `TodoTargetEnum`

| Value | Description |
| ----- | ----------- |
| `ALERT` | An Alert. |
| `COMMIT` | A Commit. |
| `DESIGN` | A Design. |
| `EPIC` | An Epic. |
| `ISSUE` | An Issue. |
| `MERGEREQUEST` | A MergeRequest. |

### `TypeEnum`

| Value | Description |
| ----- | ----------- |
| `personal` |  |
| `project` |  |

### `UserCalloutFeatureNameEnum`

Name of the feature that the callout is for.

| Value | Description |
| ----- | ----------- |
| `ACCOUNT_RECOVERY_REGULAR_CHECK` | Callout feature name for account_recovery_regular_check. |
| `ACTIVE_USER_COUNT_THRESHOLD` | Callout feature name for active_user_count_threshold. |
| `ADMIN_INTEGRATIONS_MOVED` | Callout feature name for admin_integrations_moved. |
| `BUY_PIPELINE_MINUTES_NOTIFICATION_DOT` | Callout feature name for buy_pipeline_minutes_notification_dot. |
| `CANARY_DEPLOYMENT` | Callout feature name for canary_deployment. |
| `CLUSTER_SECURITY_WARNING` | Callout feature name for cluster_security_warning. |
| `CUSTOMIZE_HOMEPAGE` | Callout feature name for customize_homepage. |
| `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. |
| `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. |
| `REGISTRATION_ENABLED_CALLOUT` | Callout feature name for registration_enabled_callout. |
| `SERVICE_TEMPLATES_DEPRECATED` | Callout feature name for service_templates_deprecated. |
| `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. |
| `THREAT_MONITORING_INFO` | Callout feature name for threat_monitoring_info. |
| `ULTIMATE_TRIAL` | Callout feature name for ultimate_trial. |
| `UNFINISHED_TAG_CLEANUP_CALLOUT` | Callout feature name for unfinished_tag_cleanup_callout. |
| `WEBHOOKS_MOVED` | Callout feature name for webhooks_moved. |
| `WEB_IDE_ALERT_DISMISSED` | Callout feature name for web_ide_alert_dismissed. |

### `UserState`

Possible states of a user.

| Value | Description |
| ----- | ----------- |
| `active` | The user is active and is able to use the system. |
| `blocked` | The user has been blocked and is prevented from using the system. |
| `deactivated` | The user is no longer active and is unable to use the system. |

### `VisibilityLevelsEnum`

| Value | Description |
| ----- | ----------- |
| `internal` | Internal visibility level. |
| `private` | Private visibility level. |
| `public` | Public visibility level. |
8099

8100
### `VisibilityScopesEnum`
8101 8102 8103

| Value | Description |
| ----- | ----------- |
8104 8105 8106
| `internal` |  |
| `private` |  |
| `public` |  |
8107

8108
### `VulnerabilityDismissalReason`
8109

8110
The dismissal reason of the Vulnerability.
8111 8112 8113

| Value | Description |
| ----- | ----------- |
8114 8115 8116 8117 8118
| `ACCEPTABLE_RISK` | The likelihood of the Vulnerability occurring and its impact are deemed acceptable |
| `FALSE_POSITIVE` | The Vulnerability was incorrectly identified as being present |
| `MITIGATING_CONTROL` | There is a mitigating control that eliminates the Vulnerability or makes its risk acceptable |
| `NOT_APPLICABLE` | Other reasons for dismissal |
| `USED_IN_TESTS` | The Vulnerability is used in tests and does not pose an actual risk |
8119

8120
### `VulnerabilityExternalIssueLinkExternalTracker`
8121

8122
The external tracker of the external issue link related to a vulnerability.
8123 8124 8125

| Value | Description |
| ----- | ----------- |
8126
| `JIRA` | Jira external tracker |
8127

8128
### `VulnerabilityExternalIssueLinkType`
8129

8130
The type of the external issue link related to a vulnerability.
8131 8132 8133

| Value | Description |
| ----- | ----------- |
8134
| `CREATED` | Created link type |
8135

8136
### `VulnerabilityGrade`
8137

8138
The grade of the vulnerable project.
8139 8140 8141

| Value | Description |
| ----- | ----------- |
8142 8143 8144 8145 8146
| `A` |  |
| `B` |  |
| `C` |  |
| `D` |  |
| `F` |  |
8147

8148
### `VulnerabilityIssueLinkType`
8149

8150
The type of the issue link related to a vulnerability.
8151 8152 8153

| Value | Description |
| ----- | ----------- |
8154 8155
| `CREATED` |  |
| `RELATED` |  |
8156

8157
### `VulnerabilityReportType`
8158

8159
The type of the security scan that found the vulnerability.
8160 8161 8162

| Value | Description |
| ----- | ----------- |
8163 8164 8165 8166 8167 8168 8169
| `API_FUZZING` |  |
| `CONTAINER_SCANNING` |  |
| `COVERAGE_FUZZING` |  |
| `DAST` |  |
| `DEPENDENCY_SCANNING` |  |
| `SAST` |  |
| `SECRET_DETECTION` |  |
8170

8171
### `VulnerabilitySeverity`
8172

8173
The severity of the vulnerability.
8174 8175 8176

| Value | Description |
| ----- | ----------- |
8177 8178 8179 8180 8181 8182
| `CRITICAL` |  |
| `HIGH` |  |
| `INFO` |  |
| `LOW` |  |
| `MEDIUM` |  |
| `UNKNOWN` |  |
8183

8184
### `VulnerabilitySort`
8185

8186
Vulnerability sort values.
8187 8188 8189

| Value | Description |
| ----- | ----------- |
8190 8191 8192 8193 8194 8195 8196 8197 8198 8199
| `detected_asc` | Detection timestamp in ascending order. |
| `detected_desc` | Detection timestamp in descending order. |
| `report_type_asc` | Report Type in ascending order. |
| `report_type_desc` | Report Type in descending order. |
| `severity_asc` | Severity in ascending order. |
| `severity_desc` | Severity in descending order. |
| `state_asc` | State in ascending order. |
| `state_desc` | State in descending order. |
| `title_asc` | Title in ascending order. |
| `title_desc` | Title in descending order. |
8200

8201
### `VulnerabilityState`
8202

8203
The state of the vulnerability.
8204 8205 8206

| Value | Description |
| ----- | ----------- |
8207 8208 8209 8210
| `CONFIRMED` |  |
| `DETECTED` |  |
| `DISMISSED` |  |
| `RESOLVED` |  |
8211

8212
## Scalar types
8213

8214 8215 8216
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.
8217

8218 8219
This schema includes custom scalar types for identifiers, with a specific type for
each kind of object.
8220

8221
For more information, read about [Scalar Types](https://graphql.org/learn/schema/#scalar-types) on `graphql.org`.
8222

8223
### `AlertManagementHttpIntegrationID`
8224

8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 8411 8412 8413 8414 8415
A `AlertManagementHttpIntegrationID` is a global ID. It is encoded as a string.

An example `AlertManagementHttpIntegrationID` is: `"gid://gitlab/AlertManagement::HttpIntegration/1"`.

### `AnalyticsDevopsAdoptionSegmentID`

A `AnalyticsDevopsAdoptionSegmentID` is a global ID. It is encoded as a string.

An example `AnalyticsDevopsAdoptionSegmentID` is: `"gid://gitlab/Analytics::DevopsAdoption::Segment/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.

### `CiPipelineID`

A `CiPipelineID` is a global ID. It is encoded as a string.

An example `CiPipelineID` is: `"gid://gitlab/Ci::Pipeline/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"`.

### `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"`.

### `DastProfileID`

A `DastProfileID` is a global ID. It is encoded as a string.

An example `DastProfileID` is: `"gid://gitlab/Dast::Profile/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.

### `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"`.

### `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).

### `GitlabErrorTrackingDetailedErrorID`

A `GitlabErrorTrackingDetailedErrorID` is a global ID. It is encoded as a string.

An example `GitlabErrorTrackingDetailedErrorID` is: `"gid://gitlab/Gitlab::ErrorTracking::DetailedError/1"`.

### `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.

### `IncidentManagementOncallParticipantID`
8416

8417
A `IncidentManagementOncallParticipantID` is a global ID. It is encoded as a string.
8418

8419
An example `IncidentManagementOncallParticipantID` is: `"gid://gitlab/IncidentManagement::OncallParticipant/1"`.
8420

8421
### `IncidentManagementOncallRotationID`
8422

8423
A `IncidentManagementOncallRotationID` is a global ID. It is encoded as a string.
8424

8425
An example `IncidentManagementOncallRotationID` is: `"gid://gitlab/IncidentManagement::OncallRotation/1"`.
8426

8427
### `Int`
8428

8429
Represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
8430

8431
### `IssueID`
8432

8433
A `IssueID` is a global ID. It is encoded as a string.
8434

8435
An example `IssueID` is: `"gid://gitlab/Issue/1"`.
8436

8437
### `IterationID`
8438

8439
A `IterationID` is a global ID. It is encoded as a string.
8440

8441
An example `IterationID` is: `"gid://gitlab/Iteration/1"`.
8442

8443
### `IterationsCadenceID`
8444

8445
A `IterationsCadenceID` is a global ID. It is encoded as a string.
8446

8447
An example `IterationsCadenceID` is: `"gid://gitlab/Iterations::Cadence/1"`.
8448

8449
### `JSON`
8450

8451
Represents untyped JSON.
8452

8453
### `JsonString`
8454

8455
JSON object as raw string.
8456

8457
### `LabelID`
8458

8459
A `LabelID` is a global ID. It is encoded as a string.
8460

8461
An example `LabelID` is: `"gid://gitlab/Label/1"`.
8462

8463
### `ListID`
8464

8465
A `ListID` is a global ID. It is encoded as a string.
8466

8467
An example `ListID` is: `"gid://gitlab/List/1"`.
8468

8469
### `MergeRequestID`
8470

8471
A `MergeRequestID` is a global ID. It is encoded as a string.
8472

8473
An example `MergeRequestID` is: `"gid://gitlab/MergeRequest/1"`.
8474

8475
### `MetricsDashboardAnnotationID`
8476

8477
A `MetricsDashboardAnnotationID` is a global ID. It is encoded as a string.
8478

8479
An example `MetricsDashboardAnnotationID` is: `"gid://gitlab/Metrics::Dashboard::Annotation/1"`.
8480

8481
### `MilestoneID`
8482

8483
A `MilestoneID` is a global ID. It is encoded as a string.
8484

8485
An example `MilestoneID` is: `"gid://gitlab/Milestone/1"`.
8486

8487
### `NamespaceID`
8488

8489
A `NamespaceID` is a global ID. It is encoded as a string.
8490

8491
An example `NamespaceID` is: `"gid://gitlab/Namespace/1"`.
8492

8493
### `NoteID`
8494

8495
A `NoteID` is a global ID. It is encoded as a string.
8496

8497
An example `NoteID` is: `"gid://gitlab/Note/1"`.
8498

8499
### `NoteableID`
8500

8501
A `NoteableID` is a global ID. It is encoded as a string.
8502

8503
An example `NoteableID` is: `"gid://gitlab/Noteable/1"`.
8504

8505
### `PackagesPackageID`
8506

8507
A `PackagesPackageID` is a global ID. It is encoded as a string.
8508

8509
An example `PackagesPackageID` is: `"gid://gitlab/Packages::Package/1"`.
8510

8511
### `ProjectID`
8512

8513
A `ProjectID` is a global ID. It is encoded as a string.
8514

8515
An example `ProjectID` is: `"gid://gitlab/Project/1"`.
8516

8517
### `PrometheusServiceID`
8518

8519
A `PrometheusServiceID` is a global ID. It is encoded as a string.
8520

8521
An example `PrometheusServiceID` is: `"gid://gitlab/PrometheusService/1"`.
8522

8523 8524 8525 8526 8527 8528
### `ReleasesLinkID`

A `ReleasesLinkID` is a global ID. It is encoded as a string.

An example `ReleasesLinkID` is: `"gid://gitlab/Releases::Link/1"`.

8529
### `SnippetID`
8530

8531
A `SnippetID` is a global ID. It is encoded as a string.
8532

8533
An example `SnippetID` is: `"gid://gitlab/Snippet/1"`.
8534

8535
### `String`
8536

8537
Represents textual data as UTF-8 character sequences. This type is most often used by GraphQL to represent free-form human-readable text.
8538

8539
### `TerraformStateID`
8540

8541
A `TerraformStateID` is a global ID. It is encoded as a string.
8542

8543
An example `TerraformStateID` is: `"gid://gitlab/Terraform::State/1"`.
8544

8545
### `Time`
8546

8547
Time represented in ISO 8601.
8548

8549
For example: "2021-03-09T14:58:50+00:00".
8550

8551
See `https://www.iso.org/iso-8601-date-and-time-format.html`.
8552

8553
### `TodoID`
8554

8555
A `TodoID` is a global ID. It is encoded as a string.
8556

8557
An example `TodoID` is: `"gid://gitlab/Todo/1"`.
8558

8559
### `TodoableID`
8560

8561
A `TodoableID` is a global ID. It is encoded as a string.
8562

8563
An example `TodoableID` is: `"gid://gitlab/Todoable/1"`.
8564

8565 8566 8567 8568 8569 8570 8571 8572 8573
### `UntrustedRegexp`

A regexp containing patterns sourced from user input.

### `Upload`

### `UserID`

A `UserID` is a global ID. It is encoded as a string.
8574

8575
An example `UserID` is: `"gid://gitlab/User/1"`.
8576

8577
### `VulnerabilitiesExternalIssueLinkID`
8578

8579
A `VulnerabilitiesExternalIssueLinkID` is a global ID. It is encoded as a string.
8580

8581
An example `VulnerabilitiesExternalIssueLinkID` is: `"gid://gitlab/Vulnerabilities::ExternalIssueLink/1"`.
8582

8583
### `VulnerabilityID`
8584

8585
A `VulnerabilityID` is a global ID. It is encoded as a string.
8586

8587
An example `VulnerabilityID` is: `"gid://gitlab/Vulnerability/1"`.
8588

8589
## Abstract types
8590

8591 8592
Abstract types (unions and interfaces) are ways the schema can represent
values that may be one of several concrete types.
8593

8594 8595 8596 8597 8598 8599
- 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.
8600

8601 8602
See the [GraphQL documentation](https://graphql.org/learn/) for more information on using
abstract types.
8603

8604
### Unions
8605

8606
#### `PackageMetadata`
8607

8608
Represents metadata associated with a Package.
8609

8610
One of:
8611

8612
- [`ComposerMetadata`](#composermetadata)
8613

8614
#### `VulnerabilityDetail`
8615

8616
Represents a vulnerability detail field. The fields with data will depend on the vulnerability detail type.
8617

8618
One of:
8619

8620 8621 8622 8623 8624 8625 8626 8627 8628 8629 8630 8631 8632
- [`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)
8633

8634
#### `VulnerabilityLocation`
8635

8636
Represents a vulnerability location. The fields with data will depend on the vulnerability report type.
8637

8638
One of:
8639

8640 8641 8642 8643 8644 8645
- [`VulnerabilityLocationContainerScanning`](#vulnerabilitylocationcontainerscanning)
- [`VulnerabilityLocationCoverageFuzzing`](#vulnerabilitylocationcoveragefuzzing)
- [`VulnerabilityLocationDast`](#vulnerabilitylocationdast)
- [`VulnerabilityLocationDependencyScanning`](#vulnerabilitylocationdependencyscanning)
- [`VulnerabilityLocationSast`](#vulnerabilitylocationsast)
- [`VulnerabilityLocationSecretDetection`](#vulnerabilitylocationsecretdetection)
8646

8647
### Interfaces
8648

8649
#### `AlertManagementIntegration`
8650

8651
Implementations:
8652

8653 8654
- [`AlertManagementHttpIntegration`](#alertmanagementhttpintegration)
- [`AlertManagementPrometheusIntegration`](#alertmanagementprometheusintegration)
8655

8656 8657 8658 8659 8660 8661 8662 8663 8664
| Field | 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. |
8665

8666
#### `CurrentUserTodos`
8667

8668
Implementations:
8669

8670 8671 8672 8673 8674 8675
- [`BoardEpic`](#boardepic)
- [`Design`](#design)
- [`Epic`](#epic)
- [`EpicIssue`](#epicissue)
- [`Issue`](#issue)
- [`MergeRequest`](#mergerequest)
8676

8677 8678 8679
| Field | Type | Description |
| ----- | ---- | ----------- |
| `currentUserTodos` | [`TodoConnection!`](#todoconnection) | To-do items for the current user. |
8680

8681
#### `DesignFields`
8682

8683
Implementations:
8684

8685 8686
- [`Design`](#design)
- [`DesignAtVersion`](#designatversion)
8687

8688 8689 8690 8691 8692 8693 8694 8695 8696 8697 8698 8699
| Field | Type | Description |
| ----- | ---- | ----------- |
| `diffRefs` | [`DiffRefs!`](#diffrefs) | The diff refs for this design. |
| `event` | [`DesignVersionEvent!`](#designversionevent) | How this design was changed in the current version. |
| `filename` | [`String!`](#string) | The filename of the design. |
| `fullPath` | [`String!`](#string) | The full path to the design file. |
| `id` | [`ID!`](#id) | The ID of this design. |
| `image` | [`String!`](#string) | The 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) | The issue the design belongs to. |
| `notesCount` | [`Int!`](#int) | The total count of user-created notes for this design. |
| `project` | [`Project!`](#project) | The project the design belongs to. |
8700

8701
#### `Entry`
8702

8703
Implementations:
8704

8705 8706 8707
- [`Blob`](#blob)
- [`Submodule`](#submodule)
- [`TreeEntry`](#treeentry)
8708

8709 8710 8711 8712 8713 8714 8715 8716
| Field | 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. |
8717

8718
#### `Eventable`
8719

8720
Implementations:
8721

8722 8723
- [`BoardEpic`](#boardepic)
- [`Epic`](#epic)
8724

8725 8726 8727
| Field | Type | Description |
| ----- | ---- | ----------- |
| `events` | [`EventConnection`](#eventconnection) | A list of events associated with the object. |
8728

8729
#### `MemberInterface`
8730

8731
Implementations:
8732

8733 8734
- [`GroupMember`](#groupmember)
- [`ProjectMember`](#projectmember)
8735

8736 8737 8738 8739 8740 8741 8742 8743 8744
| Field | Type | Description |
| ----- | ---- | ----------- |
| `accessLevel` | [`AccessLevel`](#accesslevel) | GitLab::Access level. |
| `createdAt` | [`Time`](#time) | Date and time the membership was created. |
| `createdBy` | [`User`](#user) | 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` | [`User!`](#user) | User that is associated with the member object. |
8745

8746
#### `Noteable`
8747

8748
Implementations:
8749

8750 8751 8752 8753 8754 8755 8756 8757 8758
- [`AlertManagementAlert`](#alertmanagementalert)
- [`BoardEpic`](#boardepic)
- [`Design`](#design)
- [`Epic`](#epic)
- [`EpicIssue`](#epicissue)
- [`Issue`](#issue)
- [`MergeRequest`](#mergerequest)
- [`Snippet`](#snippet)
- [`Vulnerability`](#vulnerability)
8759

8760 8761 8762 8763
| Field | Type | Description |
| ----- | ---- | ----------- |
| `discussions` | [`DiscussionConnection!`](#discussionconnection) | All discussions on this noteable. |
| `notes` | [`NoteConnection!`](#noteconnection) | All notes on this noteable. |
8764

8765
#### `ResolvableInterface`
8766

8767
Implementations:
8768

8769 8770
- [`Discussion`](#discussion)
- [`Note`](#note)
8771

8772 8773 8774 8775 8776 8777
| Field | 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` | [`User`](#user) | User who resolved the object. |
8778

8779
#### `Service`
8780

8781 8782 8783 8784 8785 8786 8787 8788 8789 8790 8791 8792 8793 8794 8795 8796 8797 8798 8799 8800
Implementations:

- [`BaseService`](#baseservice)
- [`JiraService`](#jiraservice)

| Field | Type | Description |
| ----- | ---- | ----------- |
| `active` | [`Boolean`](#boolean) | Indicates if the service is active. |
| `type` | [`String`](#string) | Class name of the service. |

#### `TimeboxReportInterface`

Implementations:

- [`Iteration`](#iteration)
- [`Milestone`](#milestone)

| Field | Type | Description |
| ----- | ---- | ----------- |
| `report` | [`TimeboxReport`](#timeboxreport) | Historically accurate report about the timebox. |