Skip to content

overallRansomwareInvestigationSummary

Overall ransomware investigation summary.

Arguments

Argument Type Description
historyNumHours (required) Int! The number of hours in the past from the time of request for which the summary is retrieved.

Returns

OverallRansomwareInvestigationSummary!

Sample

query OverallRansomwareInvestigationSummary($historyNumHours: Int!) {
  overallRansomwareInvestigationSummary(historyNumHours: $historyNumHours) {
    analysisFailureCount
    analysisSuccessCount
    anomaliesCount
  }
}
{
  "historyNumHours": 0
}
{
  "data": {
    "overallRansomwareInvestigationSummary": {
      "analysisFailureCount": 0,
      "analysisSuccessCount": 0,
      "anomaliesCount": 0
    }
  }
}