2021-01-29 16:09:34 -05:00
---
2021-12-03 04:10:57 -05:00
stage: Ecosystem
group: Integrations
2021-01-29 16:09:34 -05:00
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/#assignments
---
2021-12-07 04:09:59 -05:00
# GraphQL API removed items **(FREE)**
2020-11-17 22:09:21 -05:00
GraphQL is a versionless API, unlike the REST API.
Occasionally, items have to be updated or removed from the GraphQL API.
2021-03-02 13:11:20 -05:00
According to our [process for removing items ](index.md#deprecation-and-removal-process ), here are the items that have been removed.
2020-11-17 22:09:21 -05:00
2022-04-22 02:08:26 -04:00
## GitLab 15.0
2022-05-02 05:10:46 -04:00
Fields removed in GitLab 15.0.
2022-04-22 02:08:26 -04:00
### GraphQL Mutations
2022-05-02 05:10:46 -04:00
[Removed ](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/85382 ) in GitLab 15.0:
2022-04-22 02:08:26 -04:00
| Argument name | Mutation | Deprecated in | Use instead |
| -------------------- | -------------------- | ------------- | -------------------------- |
2022-05-02 05:10:46 -04:00
| - | `clusterAgentTokenDelete` | 14.7 | `clusterAgentTokenRevoke` |
### GraphQL Fields
[Removed ](https://gitlab.com/gitlab-org/gitlab/-/issues/342882 ) in GitLab 15.0:
| Argument name | Field name | Deprecated in | Use instead |
| -------------------- | --------------------| ------------- | -------------------------- |
| - | `pipelines` | 14.5 | None |
2022-04-22 02:08:26 -04:00
2022-04-28 08:09:06 -04:00
### GraphQL Types
| Field name | GraphQL type | Deprecated in | Use instead |
| ------------------------------------------ | ------------------------ | ------------- | ---------------------------------------------------------------------------------- |
| `defaultMergeCommitMessageWithDescription` | `GraphQL::Types::String` | 14.5 | None. Define a [merge commit template ](../../user/project/merge_requests/commit_templates.md ) in your project and use `defaultMergeCommitMessage` . |
2021-06-10 08:10:09 -04:00
## GitLab 14.0
2021-09-07 08:11:26 -04:00
Fields [removed ](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/63293 ) in GitLab 14.0:
2021-06-10 08:10:09 -04:00
### GraphQL Mutations
| Argument name | Mutation | Deprecated in | Use instead |
| -------------------- | -------------------- | ------------- | -------------------------- |
| `updated_ids` | `todosMarkAllDone` | 13.2 | `todos` |
| `updated_ids` | `todoRestoreMany` | 13.2 | `todos` |
| `global_id` | `dastScannerProfileCreate` | 13.6 | `todos` |
| - | `addAwardEmoji` | 13.2 | `awardEmojiAdd` |
| - | `removeAwardEmoji` | 13.2 | `awardEmojiRemove` |
| - | `toggleAwardEmoji` | 13.2 | `ToggleAwardEmoji` |
| - | `runDastScan` | 13.5 | `dastOnDemandScanCreate` |
| - | `dismissVulnerability` | 13.5 | `vulnerabilityDismiss` |
| - | `revertVulnerabilityToDetected` | 13.5 | `vulnerabilityRevertToDetected` |
### GraphQL Types
| Field name | GraphQL type | Deprecated in | Use instead |
| -------------------- | -------------------- | ------------- | -------------------------- |
| `blob` | `SnippetType` | 13.3 | `blobs` |
| `global_id` | `DastScannerProfileType` | 13.6 | `blobs` |
| `vulnerabilities_count_by_day_and_severity` | `GroupType` , `QueryType` | 13.3 | None. Plaintext tokens no longer supported for security reasons. |
2020-11-17 22:09:21 -05:00
## GitLab 13.6
2021-12-03 04:10:57 -05:00
Prior to GitLab 14.0, deprecated items could be removed in `XX.6` releases.
2021-09-07 08:11:26 -04:00
Fields [removed ](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/44866 ) in GitLab 13.6:
2020-11-17 22:09:21 -05:00
| Field name | GraphQL type | Deprecated in | Use instead |
2021-07-30 17:10:15 -04:00
|----------------------|--------------------------|---------------|----------------------------|
| `date` | `Timelog` | 12.10 | `spentAt` |
2020-11-17 22:09:21 -05:00
| `designs` | `Issue` , `EpicIssue` | 12.2 | `designCollection` |
| `latestPipeline` | `Commit` | 12.5 | `pipelines` |
| `mergeCommitMessage` | `MergeRequest` | 11.8 | `latestMergeCommitMessage` |
| `token` | `GrafanaIntegration` | 12.7 | None. Plaintext tokens no longer supported for security reasons. |