gitlab-org--gitlab-foss/app/graphql/types/ci/variable_input_type.rb

14 lines
387 B
Ruby

# 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