Object

ScanReport

A downloadable report providing information about the scan and its results.

Fields

report_html(): String
The content of the scan report in HTML format.
warning(): String
Any warning that should be noted before the report is downloaded.

Example

Query
query get_report(
    $scanId: ID!,
    $include_false_positives: Boolean) {
  scan_report(
      scan_id: $scanId,
      include_false_positives: $include_false_positives) {
    report_html
  }
}
Variables
{
  "scanId": "2",
  "include_false_positives": false
}
Result
{
  "data": {
    "scan_report": {
      "report_html": "<html>...</html>"
    }
  }
}