Type Alias Report

Report: {
    __typename?: "Report";
    archiveStatus?: Maybe<ReportArchiveStatus>;
    code: Scalars["String"];
    endTime: Scalars["Float"];
    events?: Maybe<ReportEventPaginator>;
    exportedSegments: Scalars["Int"];
    fights?: Maybe<Maybe<ReportFight>[]>;
    graph?: Maybe<Scalars["JSON"]>;
    guild?: Maybe<Guild>;
    guildTag?: Maybe<GuildTag>;
    masterData?: Maybe<ReportMasterData>;
    owner?: Maybe<User>;
    phases?: Maybe<EncounterPhases[]>;
    playerDetails?: Maybe<Scalars["JSON"]>;
    rankedCharacters?: Maybe<Maybe<Character>[]>;
    rankings?: Maybe<Scalars["JSON"]>;
    region?: Maybe<Region>;
    revision: Scalars["Int"];
    segments: Scalars["Int"];
    startTime: Scalars["Float"];
    table?: Maybe<Scalars["JSON"]>;
    title: Scalars["String"];
    visibility: Scalars["String"];
    zone?: Maybe<Zone>;
}

A single report uploaded by a player to a guild or personal logs.

Type declaration

  • Optional__typename?: "Report"
  • OptionalarchiveStatus?: Maybe<ReportArchiveStatus>

    Whether this report has been archived. Events, tables, and graphs for archived reports are inaccessible unless the retrieving user has a subscription including archive access.

  • code: Scalars["String"]

    The report code, a unique value used to identify the report.

  • endTime: Scalars["Float"]

    The end time of the report. This is a UNIX timestamp representing the timestamp of the last event contained in the report.

  • Optionalevents?: Maybe<ReportEventPaginator>

    A set of paginated report events, filterable via arguments like type, source, target, ability, etc. This data is not considered frozen, and it can change without notice. Use at your own risk.

  • exportedSegments: Scalars["Int"]

    The number of exported segments in the report. This is how many segments have been processed for rankings.

  • Optionalfights?: Maybe<Maybe<ReportFight>[]>

    A set of fights with details about participating players.

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

    A graph of information for a report, filterable via arguments like type, source, target, ability, etc. This data is not considered frozen, and it can change without notice. Use at your own risk.

  • Optionalguild?: Maybe<Guild>

    The guild that the report belongs to. If this is null, then the report was uploaded to the user's personal logs.

  • OptionalguildTag?: Maybe<GuildTag>

    The guild tag that the report belongs to. If this is null, then the report was not tagged.

  • OptionalmasterData?: Maybe<ReportMasterData>

    Data from the report's master file. This includes version info, all of the players, NPCs and pets that occur in the report, and all the game abilities used in the report.

  • Optionalowner?: Maybe<User>

    The user that uploaded the report.

  • Optionalphases?: Maybe<EncounterPhases[]>

    Phase information for all boss encounters observed in this report. This requires loading fight data, but does not double-charge API points if you load fights and phases.

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

    A table of information for the players of a report, including their specs, talents, gear, etc. This data is not considered frozen, and it can change without notice. Use at your own risk.

  • OptionalrankedCharacters?: Maybe<Maybe<Character>[]>

    A list of all characters that ranked on kills in the report.

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

    Rankings information for a report, filterable to specific fights, bosses, metrics, etc. This data is not considered frozen, and it can change without notice. Use at your own risk.

  • Optionalregion?: Maybe<Region>

    The region of the report.

  • revision: Scalars["Int"]

    The revision of the report. This number is increased when reports get re-exported.

  • segments: Scalars["Int"]

    The number of uploaded segments in the report.

  • startTime: Scalars["Float"]

    The start time of the report. This is a UNIX timestamp representing the timestamp of the first event contained in the report.

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

    A table of information for a report, filterable via arguments like type, source, target, ability, etc. This data is not considered frozen, and it can change without notice. Use at your own risk.

  • title: Scalars["String"]

    A title for the report.

  • visibility: Scalars["String"]

    The visibility level of the report. The possible values are 'public', 'private', and 'unlisted'.

  • Optionalzone?: Maybe<Zone>

    The principal zone that the report contains fights for. Null if no supported zone exists.