summaryrefslogtreecommitdiff
path: root/app/graphql/types/ci/group_variable_type.rb
blob: 3322f741342152fbac3c070a4c867a0f92bfa775 (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
# 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.'

      implements(VariableInterface)

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

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

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