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

group_variable_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: f9ed54f0d10d1bc04f030ef19f19eb7815d6eedf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# frozen_string_literal: true

module Types
  module Ci
    # rubocop: disable Graphql/AuthorizeTypes
    class GroupVariableType < BaseObject
      graphql_name 'CiGroupVariable'
      description 'CI/CD variables for a group.'

      connection_type_class(Types::Ci::GroupVariableConnectionType)
      implements(VariableInterface)

      field :environment_scope, GraphQL::Types::String,
            null: true,
            description: 'Scope defining the environments that can use the variable.'

      field :masked, GraphQL::Types::Boolean,
            null: true,
            description: 'Indicates whether the variable is masked.'

      field :protected, GraphQL::Types::Boolean,
            null: true,
            description: 'Indicates whether the variable is protected.'
    end
  end
end