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: 4a709aa4711d48397712fc8f76e98455769eee25 (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::Types::Int, 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