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

access_level_type.rb « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c7f915f5038869800beda7a3ddd9369ec4d5b407 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true
# rubocop:disable Graphql/AuthorizeTypes

module Types
  class AccessLevelType < Types::BaseObject
    graphql_name 'AccessLevel'
    description 'Represents the access level of a relationship between a User and object that it is related to'

    field :integer_value, GraphQL::INT_TYPE, null: true,
          description: 'Integer representation of access level',
          method: :to_i

    field :string_value, Types::AccessLevelEnum, null: true,
          description: 'String representation of access level',
          method: :to_i
  end
end