diff --git a/doc/api/graphql/reference/index.md b/doc/api/graphql/reference/index.md
index b7b23de90a04c438a96cedf03a3642676b8bb4e2..8a561ee4f80056d52f785d73334ec5b5f9ebdf4f 100644
--- a/doc/api/graphql/reference/index.md
+++ b/doc/api/graphql/reference/index.md
@@ -896,10 +896,6 @@ Returns [`RunnerSetup`](#runnersetup).
 
 Runner usage by runner.
 
-DETAILS:
-**Introduced** in GitLab 16.9.
-**Status**: Experiment.
-
 Returns [`[CiRunnerUsage!]`](#cirunnerusage).
 
 #### Arguments
@@ -916,10 +912,6 @@ Returns [`[CiRunnerUsage!]`](#cirunnerusage).
 
 Runner usage by project.
 
-DETAILS:
-**Introduced** in GitLab 16.9.
-**Status**: Experiment.
-
 Returns [`[CiRunnerUsageByProject!]`](#cirunnerusagebyproject).
 
 #### Arguments
@@ -8125,10 +8117,6 @@ Input type: `RunnerUpdateInput`
 
 ### `Mutation.runnersExportUsage`
 
-DETAILS:
-**Introduced** in GitLab 16.7.
-**Status**: Experiment.
-
 Input type: `RunnersExportUsageInput`
 
 #### Arguments
diff --git a/ee/app/graphql/ee/types/mutation_type.rb b/ee/app/graphql/ee/types/mutation_type.rb
index 5c012e8f85dba91d23157a5cb1402bfe52f1c256..a6c2fec877cb24c5d0119e5b9dac4fa1b5c51870 100644
--- a/ee/app/graphql/ee/types/mutation_type.rb
+++ b/ee/app/graphql/ee/types/mutation_type.rb
@@ -121,7 +121,7 @@ def self.authorization_scopes
         mount_mutation ::Mutations::AuditEvents::ExternalAuditEventDestinations::Destroy
         mount_mutation ::Mutations::AuditEvents::ExternalAuditEventDestinations::Update
         mount_mutation ::Mutations::Ci::NamespaceCiCdSettingsUpdate
-        mount_mutation ::Mutations::Ci::Runners::ExportUsage, alpha: { milestone: '16.7' }
+        mount_mutation ::Mutations::Ci::Runners::ExportUsage
         mount_mutation ::Mutations::RemoteDevelopment::Workspaces::Create
         mount_mutation ::Mutations::RemoteDevelopment::Workspaces::Update
         mount_mutation ::Mutations::RemoteDevelopment::NamespaceClusterAgentMappings::Create
diff --git a/ee/app/graphql/ee/types/query_type.rb b/ee/app/graphql/ee/types/query_type.rb
index beb4318cddaba83555a3dc6a6ee5b72f2515cb8a..11abaeb44905724538217b3c73a8344c1e4860e4 100644
--- a/ee/app/graphql/ee/types/query_type.rb
+++ b/ee/app/graphql/ee/types/query_type.rb
@@ -117,13 +117,11 @@ module QueryType
         field :runner_usage_by_project,
           [::Types::Ci::RunnerUsageByProjectType],
           null: true,
-          alpha: { milestone: '16.9' },
           description: 'Runner usage by project.',
           resolver: ::Resolvers::Ci::RunnerUsageByProjectResolver
         field :runner_usage,
           [::Types::Ci::RunnerUsageType],
           null: true,
-          alpha: { milestone: '16.9' },
           description: 'Runner usage by runner.',
           resolver: ::Resolvers::Ci::RunnerUsageResolver