Type Alias ReportDungeonPull

ReportDungeonPull: {
    __typename?: "ReportDungeonPull";
    boundingBox?: Maybe<ReportMapBoundingBox>;
    encounterID: Scalars["Int"];
    endTime: Scalars["Float"];
    enemyNPCs?: Maybe<Maybe<ReportDungeonPullNpc>[]>;
    id: Scalars["Int"];
    kill?: Maybe<Scalars["Boolean"]>;
    maps?: Maybe<Maybe<ReportMap>[]>;
    name: Scalars["String"];
    startTime: Scalars["Float"];
    x: Scalars["Int"];
    y: Scalars["Int"];
}

The ReportDungeonPull represents a single pull that occurs in a containing dungeon.

Type declaration

  • Optional__typename?: "ReportDungeonPull"
  • OptionalboundingBox?: Maybe<ReportMapBoundingBox>

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

  • 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<ReportDungeonPullNpc>[]>

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

  • id: Scalars["Int"]

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

  • 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 an incomplete run, etc..

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

    All the maps that were involved in a pull.

  • name: Scalars["String"]

    The name of the fight.

  • 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.

  • x: Scalars["Int"]

    The x position of the first mob damaged in the pull at the time this damage happens. Used to establish a marker position to represent where the pull took place.

  • y: Scalars["Int"]

    The y position of the first mob damaged in the pull at the time this damage happens. Used to establish a marker position to represent where the pull took place.