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

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

      field :name, GraphQL::STRING_TYPE, null: true,
        description: 'Name of the job group'
      field :size, GraphQL::INT_TYPE, null: true,
        description: 'Size of the group'
      field :jobs, Ci::JobType.connection_type, null: true,
        description: 'Jobs in group'
      field :detailed_status, Types::Ci::DetailedStatusType, null: true,
            description: 'Detailed status of the group',
            resolve: -> (obj, _args, ctx) { obj.detailed_status(ctx[:current_user]) }
    end
  end
end