Type Alias Character

Character: {
    __typename?: "Character";
    canonicalID: Scalars["Int"];
    claimed?: Maybe<Scalars["Boolean"]>;
    classID: Scalars["Int"];
    encounterRankings?: Maybe<Scalars["JSON"]>;
    faction: GameFaction;
    gameData?: Maybe<Scalars["JSON"]>;
    guildRank: Scalars["Int"];
    guilds?: Maybe<Maybe<Guild>[]>;
    hidden: Scalars["Boolean"];
    id: Scalars["Int"];
    level: Scalars["Int"];
    name: Scalars["String"];
    recentReports?: Maybe<ReportPagination>;
    server: Server;
    zoneRankings?: Maybe<Scalars["JSON"]>;
}

A player character. Characters can earn individual rankings and appear in reports.

Type declaration

  • Optional__typename?: "Character"
  • canonicalID: Scalars["Int"]

    The canonical ID of the character. If a character renames or transfers, then the canonical id can be used to identify the most recent version of the character.

  • Optionalclaimed?: Maybe<Scalars["Boolean"]>

    Whether this character is claimed by the current user. Only accessible if accessed via the user API with the "view-user-profile" scope.

  • classID: Scalars["Int"]

    The class id of the character.

  • OptionalencounterRankings?: Maybe<Scalars["JSON"]>

    Encounter rankings information for a character, filterable to specific zones, bosses, metrics, etc. This data is not considered frozen, and it can change without notice. Use at your own risk.

  • faction: GameFaction

    The faction of the character.

  • OptionalgameData?: Maybe<Scalars["JSON"]>

    Cached game data such as gear for the character. This data was fetched from the appropriate source (Blizzard APIs for WoW, Lodestone for FF). This call will only return a cached copy of the data if it exists already. It will not go out to Blizzard or Lodestone to fetch a new copy.

  • guildRank: Scalars["Int"]

    The guild rank of the character in their primary guild. This is not the user rank on the site, but the rank according to the game data, e.g., a Warcraft guild rank or an FFXIV Free Company rank.

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

    All guilds that the character belongs to.

  • hidden: Scalars["Boolean"]

    Whether or not the character has all its rankings hidden.

  • id: Scalars["Int"]

    The ID of the character.

  • level: Scalars["Int"]

    The level of the character.

  • name: Scalars["String"]

    The name of the character.

  • OptionalrecentReports?: Maybe<ReportPagination>

    Recent reports for the character.

  • server: Server

    The server that the character belongs to.

  • OptionalzoneRankings?: Maybe<Scalars["JSON"]>

    Rankings information for a character, filterable to specific zones, bosses, metrics, etc. This data is not considered frozen, and it can change without notice. Use at your own risk.