Type Alias Encounter

Encounter: {
    __typename?: "Encounter";
    characterRankings?: Maybe<Scalars["JSON"]>;
    fightRankings?: Maybe<Scalars["JSON"]>;
    id: Scalars["Int"];
    journalID: Scalars["Int"];
    name: Scalars["String"];
    zone: Zone;
}

A single encounter for the game.

Type declaration

  • Optional__typename?: "Encounter"
  • OptionalcharacterRankings?: Maybe<Scalars["JSON"]>

    Player rankings information for a zone. This data is not considered frozen, and it can change without notice. Use at your own risk.

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

    Fight rankings information for a zone. This data is not considered frozen, and it can change without notice. Use at your own risk.

  • id: Scalars["Int"]

    The ID of the encounter.

  • journalID: Scalars["Int"]

    The Blizzard journal ID, used as the identifier in the encounter journal and various Blizzard APIs like progression.

  • name: Scalars["String"]

    The localized name of the encounter.

  • zone: Zone

    The zone that this encounter is found in.