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

variable_input_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: 193ca6ffe4e2f3118673f55081d17b7bb0abf709 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Types
  module Ci
    class VariableInputType < BaseInputObject
      graphql_name 'CiVariableInput'
      description 'Attributes for defining a CI/CD variable.'

      argument :key, GraphQL::Types::String, description: 'Name of the variable.'
      argument :value, GraphQL::Types::String, description: 'Value of the variable.'
    end
  end
end