Type Alias ReportMasterData

ReportMasterData: {
    __typename?: "ReportMasterData";
    abilities?: Maybe<Maybe<ReportAbility>[]>;
    actors?: Maybe<Maybe<ReportActor>[]>;
    gameVersion?: Maybe<Scalars["Int"]>;
    lang?: Maybe<Scalars["String"]>;
    logVersion: Scalars["Int"];
}

The ReporMastertData object contains information about the log version of a report, as well as the actors and abilities used in the report.

Type declaration

  • Optional__typename?: "ReportMasterData"
  • Optionalabilities?: Maybe<Maybe<ReportAbility>[]>

    A list of every ability that occurs in the report.

  • Optionalactors?: Maybe<Maybe<ReportActor>[]>

    A list of every actor (player, NPC, pet) that occurs in the report.

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

    The version of the game that generated the log file. Used to distinguish Classic and Retail Warcraft primarily.

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

    The auto-detected locale of the report. This is the source language of the original log file.

  • logVersion: Scalars["Int"]

    The version of the client parser that was used to parse and upload this log file.