Type Alias Query

Query: {
    __typename?: "Query";
    characterData?: Maybe<CharacterData>;
    gameData?: Maybe<GameData>;
    guildData?: Maybe<GuildData>;
    progressRaceData?: Maybe<ProgressRaceData>;
    rateLimitData?: Maybe<RateLimitData>;
    reportData?: Maybe<ReportData>;
    userData?: Maybe<UserData>;
    worldData?: Maybe<WorldData>;
}

Type declaration

  • Optional__typename?: "Query"
  • OptionalcharacterData?: Maybe<CharacterData>

    Obtain the character data object that allows the retrieval of individual characters or filtered collections of characters.

  • OptionalgameData?: Maybe<GameData>

    Obtain the game data object that holds collections of static data such as abilities, achievements, classes, items, NPCs, etc..

  • OptionalguildData?: Maybe<GuildData>

    Obtain the guild data object that allows the retrieval of individual guilds or filtered collections of guilds.

  • OptionalprogressRaceData?: Maybe<ProgressRaceData>

    Obtain information about an ongoing world first or realm first race. Inactive when no race is occurring. This data only updates once every 30 seconds, so you do not need to fetch this information more often than that.

  • OptionalrateLimitData?: Maybe<RateLimitData>

    Obtain the rate limit data object to see how many points have been spent by this key.

  • OptionalreportData?: Maybe<ReportData>

    Obtain the report data object that allows the retrieval of individual reports or filtered collections of reports by guild or by user.

  • OptionaluserData?: Maybe<UserData>

    Obtain the user object that allows the retrieval of the authorized user's id and username.

  • OptionalworldData?: Maybe<WorldData>

    Obtain the world data object that holds collections of data such as all expansions, regions, subregions, servers, dungeon/raid zones, and encounters.