summaryrefslogtreecommitdiff
path: root/app/graphql/types/user_type.rb
blob: 6b53554314b3d63420c9feeb810be7d6b0f5fda5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

module Types
  class UserType < BaseObject
    graphql_name 'User'

    authorize :read_user

    present_using UserPresenter

    field :name, GraphQL::STRING_TYPE, null: false
    field :username, GraphQL::STRING_TYPE, null: false
    field :avatar_url, GraphQL::STRING_TYPE, null: false
    field :web_url, GraphQL::STRING_TYPE, null: false
  end
end