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

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

module Types
  class UserType < BaseObject
    graphql_name '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