summaryrefslogtreecommitdiff
path: root/app/graphql/types/access_level_type.rb
blob: 21c3669979c3581ab1155550af9eca0432c58331 (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