summaryrefslogtreecommitdiff
path: root/app/graphql/types/ci/config/group_type.rb
blob: 19076fe9c205bdc8edafbc61700ca0f00f235785 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

module Types
  module Ci
    # rubocop: disable Graphql/AuthorizeTypes
    module Config
      class GroupType < BaseObject
        graphql_name 'CiConfigGroup'

        field :jobs, Types::Ci::Config::JobType.connection_type, null: true,
              description: 'Jobs in group.'
        field :name, GraphQL::Types::String, null: true,
              description: 'Name of the job group.'
        field :size, GraphQL::Types::Int, null: true,
              description: 'Size of the job group.'
      end
    end
  end
end