Welcome to mirror list, hosted at ThFree Co, Russian Federation.

build_need_type.rb « ci « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3bd81f8fa8f5f1e039ecea41b3f83e0b889ba1fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 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 :name, GraphQL::STRING_TYPE, null: true,
            description: 'Name of the job we need to complete.'
    end
  end
end