Type Alias User

User: {
    __typename?: "User";
    battleTag?: Maybe<Scalars["String"]>;
    characters?: Maybe<Maybe<Character>[]>;
    guilds?: Maybe<Maybe<Guild>[]>;
    id: Scalars["Int"];
    name: Scalars["String"];
}

A single user of the site. Most fields can only be accessed when authenticated as that user with the "view-user-profile" scope.

Type declaration

  • Optional__typename?: "User"
  • OptionalbattleTag?: Maybe<Scalars["String"]>

    The battle tag of the user if they have linked it.

  • Optionalcharacters?: Maybe<Maybe<Character>[]>

    The characters claimed by this user. Only accessible via user authentication when you have the "view-user-profile" scope.

  • Optionalguilds?: Maybe<Maybe<Guild>[]>

    The list of guilds to which the user belongs. Only accessible via user authentication when you have the "view-user-profile" scope.

  • id: Scalars["Int"]

    The ID of the user.

  • name: Scalars["String"]

    The name of the user.