diff --git a/app/graphql/types/ci/catalog/resources/version_type.rb b/app/graphql/types/ci/catalog/resources/version_type.rb
index c568403f320ad4288805edfa87f77d1bc9ead9d7..b52a1c6b13da33fb465611d0c6d860a8e3fbe978 100644
--- a/app/graphql/types/ci/catalog/resources/version_type.rb
+++ b/app/graphql/types/ci/catalog/resources/version_type.rb
@@ -20,18 +20,10 @@ class VersionType < BaseObject
           field :released_at, Types::TimeType, null: true, description: 'Timestamp of when the version was released.',
             alpha: { milestone: '16.7' }
 
-          field :tag_name, GraphQL::Types::String, null: true, method: :name,
-            description: 'Deprecated in 16.8. Use name.',
-            alpha: { milestone: '16.7' }
-
           field :name, GraphQL::Types::String, null: true,
             description: 'Name that uniquely identifies the version within the catalog resource.',
             alpha: { milestone: '16.8' }
 
-          field :tag_path, GraphQL::Types::String, null: true, method: :path,
-            description: 'Deprecated in 16.8. Use path.',
-            alpha: { milestone: '16.7' }
-
           field :path, GraphQL::Types::String, null: true,
             description: 'Relative web path to the version.',
             alpha: { milestone: '16.8' }
diff --git a/doc/api/graphql/reference/index.md b/doc/api/graphql/reference/index.md
index a7e6409b8aa3751446b6d20a21f4ee0b47df3637..12c2ab99033400c4a1809f7cb016cf4387969a80 100644
--- a/doc/api/graphql/reference/index.md
+++ b/doc/api/graphql/reference/index.md
@@ -15589,8 +15589,6 @@ four standard [pagination arguments](#connection-pagination-arguments):
 | <a id="cicatalogresourceversionpath"></a>`path` **{warning-solid}** | [`String`](#string) | **Introduced** in 16.8. This feature is an Experiment. It can be changed or removed at any time. Relative web path to the version. |
 | <a id="cicatalogresourceversionreadmehtml"></a>`readmeHtml` **{warning-solid}** | [`String`](#string) | **Introduced** in 16.8. This feature is an Experiment. It can be changed or removed at any time. GitLab Flavored Markdown rendering of README.md. This field can only be resolved for one version in any single request. |
 | <a id="cicatalogresourceversionreleasedat"></a>`releasedAt` **{warning-solid}** | [`Time`](#time) | **Introduced** in 16.7. This feature is an Experiment. It can be changed or removed at any time. Timestamp of when the version was released. |
-| <a id="cicatalogresourceversiontagname"></a>`tagName` **{warning-solid}** | [`String`](#string) | **Introduced** in 16.7. This feature is an Experiment. It can be changed or removed at any time. Deprecated in 16.8. Use name. |
-| <a id="cicatalogresourceversiontagpath"></a>`tagPath` **{warning-solid}** | [`String`](#string) | **Introduced** in 16.7. This feature is an Experiment. It can be changed or removed at any time. Deprecated in 16.8. Use path. |
 
 ### `CiConfig`
 
diff --git a/spec/graphql/types/ci/catalog/resources/version_type_spec.rb b/spec/graphql/types/ci/catalog/resources/version_type_spec.rb
index 10eea90e949c358b05caff66942700ed18f8f19a..bc1b9a97e887cb39e656d7f71dce0068982dacca 100644
--- a/spec/graphql/types/ci/catalog/resources/version_type_spec.rb
+++ b/spec/graphql/types/ci/catalog/resources/version_type_spec.rb
@@ -10,9 +10,7 @@
       id
       created_at
       released_at
-      tag_name
       name
-      tag_path
       path
       author
       commit