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.
Example
Query
query get_report(
$scan_id: ID!,
$include_false_positives: Boolean) {
scan_report(
scan_id: $scan_id,
include_false_positives: $include_false_positives) {
report_html
}
}
Variables
{
"scan_id": "2",
"include_false_positives": false
}
Result
{
"data": {
"scan_report": {
"report_html": "<html>...</html>"
}
}
}