Object
ScanReport
A downloadable report providing information about the scan and its results.
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>"
}
}
}