Commit 1b0a76f2 authored by charlie ablett's avatar charlie ablett Committed by Marcin Sedlak-Jakubowski

Add GraphQL removed items docs

- add links and template
parent e7650bc4
...@@ -82,6 +82,10 @@ The process is as follows: ...@@ -82,6 +82,10 @@ The process is as follows:
release post (at or prior to X.11 and X.5 releases). release post (at or prior to X.11 and X.5 releases).
1. Fields meeting criteria are removed in X.0 or X.6. 1. Fields meeting criteria are removed in X.0 or X.6.
### List of removed items
View the [fields, enums, and other items we removed](removed_items.md) from the GraphQL API.
## Available queries ## Available queries
The GraphQL API includes the following queries at the root level: The GraphQL API includes the following queries at the root level:
......
...@@ -15,6 +15,8 @@ fields and methods on a model are available via GraphQL. ...@@ -15,6 +15,8 @@ fields and methods on a model are available via GraphQL.
CAUTION: **Caution:** CAUTION: **Caution:**
Fields that are deprecated are marked with **{warning-solid}**. Fields that are deprecated are marked with **{warning-solid}**.
Items (fields, enums, etc) that have been removed according to our [deprecation process](../index.md#deprecation-process) can be found
in [Removed Items](../removed_items.md).
## Object types ## Object types
......
# GraphQL API removed items
GraphQL is a versionless API, unlike the REST API.
Occasionally, items have to be updated or removed from the GraphQL API.
According to our [process for removing items](index.md#deprecation-process), here are the items that have been removed.
## GitLab 13.6
Fields removed in [GitLab 13.6](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/44866):
| Field name | GraphQL type | Deprecated in | Use instead |
| -------------------- | -------------------- | ------------- | -------------------------- |
| `date` | `Timelog` **(STARTER)** | 12.10 | `spentAt` |
| `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. |
...@@ -14,6 +14,8 @@ ...@@ -14,6 +14,8 @@
CAUTION: **Caution:** CAUTION: **Caution:**
Fields that are deprecated are marked with **{warning-solid}**. Fields that are deprecated are marked with **{warning-solid}**.
Items (fields, enums, etc) that have been removed according to our [deprecation process](../index.md#deprecation-process) can be found
in [Removed Items](../removed_items.md).
\ \
:plain :plain
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment