summaryrefslogtreecommitdiff
path: root/app/graphql/types/ci/config/stage_type.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/ci/config/stage_type.rb')
-rw-r--r--app/graphql/types/ci/config/stage_type.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/graphql/types/ci/config/stage_type.rb b/app/graphql/types/ci/config/stage_type.rb
index 7e2aa9470f2..5b1163edac2 100644
--- a/app/graphql/types/ci/config/stage_type.rb
+++ b/app/graphql/types/ci/config/stage_type.rb
@@ -7,10 +7,10 @@ module Types
class StageType < BaseObject
graphql_name 'CiConfigStage'
- field :name, GraphQL::Types::String, null: true,
- description: 'Name of the stage.'
field :groups, Types::Ci::Config::GroupType.connection_type, null: true,
description: 'Groups of jobs for the stage.'
+ field :name, GraphQL::Types::String, null: true,
+ description: 'Name of the stage.'
end
end
end