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.
  • id: Int!
  • # The name of the user.
  • name: String!
  • # The list of guilds to which the user belongs. Only accessible via user
  • # authentication when you have the "view-user-profile" scope.
  • guilds: [Guild]
  • # The characters claimed by this user. Only accessible via user authentication
  • # when you have the "view-user-profile" scope.
  • characters: [Character]
  • # The battle tag of the user if they have linked it.
  • battleTag: String
  • }