Type Alias ReportFight

ReportFight: {
    __typename?: "ReportFight";
    averageItemLevel?: Maybe<Scalars["Float"]>;
    bossPercentage?: Maybe<Scalars["Float"]>;
    boundingBox?: Maybe<ReportMapBoundingBox>;
    classicSeasonID?: Maybe<Scalars["Int"]>;
    completeRaid: Scalars["Boolean"];
    difficulty?: Maybe<Scalars["Int"]>;
    dungeonPulls?: Maybe<Maybe<ReportDungeonPull>[]>;
    encounterID: Scalars["Int"];
    endTime: Scalars["Float"];
    enemyNPCs?: Maybe<Maybe<ReportFightNpc>[]>;
    enemyPets?: Maybe<Maybe<ReportFightNpc>[]>;
    enemyPlayers?: Maybe<Maybe<Scalars["Int"]>[]>;
    fightPercentage?: Maybe<Scalars["Float"]>;
    friendlyNPCs?: Maybe<Maybe<ReportFightNpc>[]>;
    friendlyPets?: Maybe<Maybe<ReportFightNpc>[]>;
    friendlyPlayers?: Maybe<Maybe<Scalars["Int"]>[]>;
    gameZone?: Maybe<GameZone>;
    hardModeLevel?: Maybe<Scalars["Int"]>;
    id: Scalars["Int"];
    inProgress?: Maybe<Scalars["Boolean"]>;
    keystoneAffixes?: Maybe<Maybe<Scalars["Int"]>[]>;
    keystoneBonus?: Maybe<Scalars["Int"]>;
    keystoneLevel?: Maybe<Scalars["Int"]>;
    keystoneTime?: Maybe<Scalars["Int"]>;
    kill?: Maybe<Scalars["Boolean"]>;
    lastPhase?: Maybe<Scalars["Int"]>;
    lastPhaseAsAbsoluteIndex?: Maybe<Scalars["Int"]>;
    lastPhaseIsIntermission?: Maybe<Scalars["Boolean"]>;
    layer?: Maybe<Scalars["Int"]>;
    maps?: Maybe<Maybe<ReportMap>[]>;
    name: Scalars["String"];
    originalEncounterID?: Maybe<Scalars["Int"]>;
    phaseTransitions?: Maybe<PhaseTransition[]>;
    rating?: Maybe<Scalars["Int"]>;
    size?: Maybe<Scalars["Int"]>;
    startTime: Scalars["Float"];
    talentImportCode?: Maybe<Scalars["String"]>;
    wipeCalledTime?: Maybe<Scalars["Float"]>;
}

The ReportFight represents a single fight that occurs in the report.

Type declaration

  • Optional__typename?: "ReportFight"
  • OptionalaverageItemLevel?: Maybe<Scalars["Float"]>

    The average item level of the players in the fight.

  • OptionalbossPercentage?: Maybe<Scalars["Float"]>

    The percentage health of the active boss or bosses at the end of a fight.

  • OptionalboundingBox?: Maybe<ReportMapBoundingBox>

    The bounding box that encloses the positions of all players/enemies in the fight.

  • OptionalclassicSeasonID?: Maybe<Scalars["Int"]>

    The season ID of a Classic fight. Will only be nonzero for Season of Mastery in Vanilla for now.

  • completeRaid: Scalars["Boolean"]

    Whether or not a fight represents an entire raid from start to finish, e.g., in Classic WoW a complete run of Blackwing Lair.

  • Optionaldifficulty?: Maybe<Scalars["Int"]>

    The difficulty setting for the raid, dungeon, or arena. Null for trash.

  • OptionaldungeonPulls?: Maybe<Maybe<ReportDungeonPull>[]>

    For a dungeon, a list of pulls that occurred in the dungeon. Pulls have details such as the enemies involved in the pull and map info showing where the pull took place.

  • encounterID: Scalars["Int"]

    The encounter ID of the fight. If the ID is 0, the fight is considered a trash fight.

  • endTime: Scalars["Float"]

    The end time of the fight. This is a timestamp with millisecond precision that is relative to the start of the report, i.e., the start of the report is considered time 0.

  • OptionalenemyNPCs?: Maybe<Maybe<ReportFightNpc>[]>

    Information about enemy NPCs involved in the fight. Includes report IDs, instance counts, and instance group counts for each NPC.

  • OptionalenemyPets?: Maybe<Maybe<ReportFightNpc>[]>

    Information about enemy pets involved in the fight. Includes report IDs, instance counts, and instance group counts for each pet.

  • OptionalenemyPlayers?: Maybe<Maybe<Scalars["Int"]>[]>

    The IDs of all players involved in a fight. These players can be referenced in the master data actors table to get detailed information about each participant.

  • OptionalfightPercentage?: Maybe<Scalars["Float"]>

    The actual completion percentage of the fight. This is the field used to indicate how far into a fight a wipe was, since fights can be complicated and have multiple bosses, no bosses, bosses that heal, etc.

  • OptionalfriendlyNPCs?: Maybe<Maybe<ReportFightNpc>[]>

    Information about friendly NPCs involved in the fight. Includes report IDs, instance counts, and instance group counts for each NPC.

  • OptionalfriendlyPets?: Maybe<Maybe<ReportFightNpc>[]>

    Information about friendly pets involved in the fight. Includes report IDs, instance counts, and instance group counts for each pet.

  • OptionalfriendlyPlayers?: Maybe<Maybe<Scalars["Int"]>[]>

    The IDs of all players involved in a fight. These players can be referenced in the master data actors table to get detailed information about each participant.

  • OptionalgameZone?: Maybe<GameZone>

    The game zone the fight takes place in. This should not be confused with the zones used by the sites for rankings. This is the actual in-game zone info.

  • OptionalhardModeLevel?: Maybe<Scalars["Int"]>

    The hard mode level of the fight. Most fights don't support optional hard modes. This only applies to bosses like Sartharion.

  • id: Scalars["Int"]

    The report ID of the fight. This ID can be used to fetch only events, tables or graphs for this fight.

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

    Whether or not the fight is still in progress. If this field is false, it means the entire fight has been uploaded.

  • OptionalkeystoneAffixes?: Maybe<Maybe<Scalars["Int"]>[]>

    The affixes for a Mythic+ dungeon.

  • OptionalkeystoneBonus?: Maybe<Scalars["Int"]>

    The bonus field represents Bronze, Silver or Gold in Challenge Modes, or +1-+3 pushing of Mythic+ keys. It has the values 1, 2, and 3.

  • OptionalkeystoneLevel?: Maybe<Scalars["Int"]>

    The keystone level for a Mythic+ dungeon.

  • OptionalkeystoneTime?: Maybe<Scalars["Int"]>

    The completion time for a Challenge Mode or Mythic+ Dungeon. This is the official time used on Blizzard leaderboards.

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

    Whether or not the fight was a boss kill, i.e., successful. If this field is false, it means the fight was a wipe or a failed run, etc..

  • OptionallastPhase?: Maybe<Scalars["Int"]>

    The phase that the encounter was in when the fight ended. Counts up from 1 based off the phase type (i.e., normal phase vs intermission).

  • OptionallastPhaseAsAbsoluteIndex?: Maybe<Scalars["Int"]>

    The phase that the encounter was in when the fight ended. Always increases from 0, so a fight with three real phases and two intermissions would count up from 0 to 4.

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

    Whether or not the phase that the encounter was in when the fight ended was an intermission or not.

  • Optionallayer?: Maybe<Scalars["Int"]>

    The layer of a Torghast run.

  • Optionalmaps?: Maybe<Maybe<ReportMap>[]>

    All the maps that were involved in a fight. For single bosses this will usually be a single map, but for dungeons it will typically be multiple maps.

  • name: Scalars["String"]

    The name of the fight.

  • OptionaloriginalEncounterID?: Maybe<Scalars["Int"]>

    Some boss fights may be converted to trash fights (encounterID = 0). When this occurs, originalEncounterID contains the original ID of the encounter.

  • OptionalphaseTransitions?: Maybe<PhaseTransition[]>

    List of observed phase transitions during the fight.

  • Optionalrating?: Maybe<Scalars["Int"]>

    The official Blizzard rating for a completed Mythic+ dungeon or Torghast run.

  • Optionalsize?: Maybe<Scalars["Int"]>

    The group size for the raid, dungeon, or arena. Null for trash.

  • startTime: Scalars["Float"]

    The start time of the fight. This is a timestamp with millisecond precision that is relative to the start of the report, i.e., the start of the report is considered time 0.

  • OptionaltalentImportCode?: Maybe<Scalars["String"]>

    The import/export code for a Retail Dragonflight talent build. Will be null for a classic or pre-Dragonflight fight.

  • OptionalwipeCalledTime?: Maybe<Scalars["Float"]>

    If a wipe was explicitly called using the Companion app, then this field will contain the time. This is a timestamp with millisecond precision that is relative to the start of the report, i.e., the start of the report is considered time 0.