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

variable_input_type.rb « pipeline_schedule « ci « mutations « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 54a6ad92448dd49377228306c674abfb0d5dc8af (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 Mutations
  module Ci
    module PipelineSchedule
      class VariableInputType < Types::BaseInputObject
        graphql_name 'PipelineScheduleVariableInput'

        description 'Attributes for the pipeline schedule variable.'

        argument :key, GraphQL::Types::String, required: true, description: 'Name of the variable.'

        argument :value, GraphQL::Types::String, required: true, description: 'Value of the variable.'

        argument :variable_type, Types::Ci::VariableTypeEnum, required: true, description: 'Type of the variable.'
      end
    end
  end
end