OBJECT
User
A single user of the site. Most fields can only be accessed when authenticated as that user with the "view-user-profile" scope.
link GraphQL Schema definition
- type User {
- # The ID of the user.
- : Int!
- # The name of the user.
- : String!
- # The avatar of the user, typically the main character avatar.
- : String!
- # The list of guilds to which the user belongs. Only accessible via user
- # authentication when you have the "view-user-profile" scope.
- : [Guild]
- # The characters claimed by this user. Only accessible via user authentication
- # when you have the "view-user-profile" scope.
- : [Character]
- # The battle tag of the user if they have linked it.
- : String
- }