Object

IssueCounts

Exposes information about the number of issues found, sorted their severity level.

Fields

total(): Int!
The total number of issues found.
The number of high-severity issues found, along with Burp Scanner's confidence level.
The number of medium-severity issues found, along with Burp Scanner's confidence level.
The number of low-severity issues found, along with Burp Scanner's confidence level.
The number of issues found that are displayed for information only, along with Burp Scanner's confidence level.

Example

Query
query GetIssueCounts ($scanId: ID!, $auditItemId: ID!) {
    scan(id: $scanId) {
        audit_item(id: $auditItemId) {
            issue_counts {
                total
                high {
                    total
                    certain
                    firm
                    tentative
                }
                medium {
                    total
                    certain
                    firm
                    tentative
                }
                low {
                    total
                    certain
                    firm
                    tentative
                }
                info {
                    total
                    certain
                    firm
                    tentative
                }
            }
        }
    }
}
Variables
{
  "scanId": "2",
  "auditItemId": "4"
}
Result
{
  "data": {
    "scan": {
      "audit_item": {
        "issue_counts": {
          "total": null,
          "high": {
            "total": null,
            "certain": null,
            "firm": null,
            "tentative": null
          },
          "medium": {
            "total": null,
            "certain": null,
            "firm": null,
            "tentative": null
          },
          "low": {
            "total": null,
            "certain": null,
            "firm": null,
            "tentative": null
          },
          "info": {
            "total": null,
            "certain": null,
            "firm": null,
            "tentative": null
          }
        }
      }
    }
  }
}