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

module Types
  module Ci
    # rubocop: disable Graphql/AuthorizeTypes
    # This type is only accessible from CiJob
    class BuildNeedType < BaseObject
      graphql_name 'CiBuildNeed'

      field :id, GraphQL::Types::ID, null: false,
            description: 'ID of the job we need to complete.'
      field :name, GraphQL::Types::String, null: true,
            description: 'Name of the job we need to complete.'
    end
  end
end