Type Alias ReportArchiveStatus

ReportArchiveStatus: {
    __typename?: "ReportArchiveStatus";
    archiveDate?: Maybe<Scalars["Int"]>;
    isAccessible: Scalars["Boolean"];
    isArchived: Scalars["Boolean"];
}

The archival status of a report.

Type declaration

  • Optional__typename?: "ReportArchiveStatus"
  • OptionalarchiveDate?: Maybe<Scalars["Int"]>

    The date on which the report was archived (if it has been archived).

  • isAccessible: Scalars["Boolean"]

    Whether the current user can access the report. Always true if the report is not archived, and always false if not using user authentication.

  • isArchived: Scalars["Boolean"]

    Whether the report has been archived.