issuesResponse

Response object for issue-related queries, providing detailed information about issues, their counts, and pagination data.

Examples

type IssuesResponse {
  issues: [Issue]
  totalIssues: Int
  totalFilteredIssues: Int
  totalResolvedIssues: Int
  offset: Int
  totalActiveIssues: Int
  selectedPosition: Int
  topOffset: Int
  cursorValue: String
}

Fields

Field
Description
Supported fields

issues [Issue]

List of issues or alerts associated with the query

importantSeverityBreakdown [String] isCVERelated Boolean overrideSeverityReason String highestOXCVESeverity String latestCommit AggItem additionalTabs [AdditionalTab] issueDetailsHeaders [IssueDetailsTabs] compliance [ComplianceItem] sbom SbomLib dependencyGraph SbomDependencyGraphResponse groupId String name String mainTitle String secondTitle String scanId String created Float sla SlaData issueUpdatedAt Float scanDate Float description String impact String exposure String severity String owners [String] ownerEmails [String] occurrences Int score IssueScore orgConScore Float connector String learnMore [String] extraInfo [ExtraInfo] resource IssueResource appName String app IAppsInfo policy IPolicy issueId String category ICategory aggregations IAggregations recommendation String violationInfoTitle String sourceTools [String] ruleId String fixes PolicyFix fixAppliedDeatils FixAppliedDeatils cwe [String] fixLink String cweList [CweList] dependencyChain [String] publicExploitLink String createdAt Float tickets [Ticket] slackNotification [SlackNotification] messages [IssueMessage] fixIssue FixIssue requestContent String responseContent String autoFix FixIssue lowerSeverityReason [String] severityChange String originalToolSeverity String scaVulnerabilities [SCAVulnerability] dependencyGraphNodes [DependencyNode] dependencyGraphEdges [DependencyEdge] scaTriggerPkg String scaTriggerPkgs [TriggerPackage] pkgSemanticVersion String graphExist Boolean indirectSupported Boolean severityChangeReason [String] severityChangedReason [SeverityChangedReason] aggSeverityExplanation String aggSFsForCalcDisplay [SeverityChangedReason] resolvedIssueDate Float isPRAvailable Boolean cicdFields CICDFields comment String excludedByAlert Boolean excludedByPolicy Boolean excludedByApp Boolean countRule CountRule exclusionId String languageInfo LanguageInfo isMonoRepoChild Boolean monoRepoParent String isFixAvailable Boolean isFixApplied Boolean isGPTFixAvailable Boolean oscarData [OscarItem] gptInfo GPTInfo prDeatils PullRequest tags [AppTag] originalSeverity Int overrideSeverity Boolean isFalsePositive Boolean falsePositiveComment String isCanceledFalsePositive Boolean cancelFalsePositiveComment String falsePositiveDetails FalsePositiveDetails issueStatus IssueStatus scanIssueStatus IssueStatus resolvedReason String resolvedDetails String resolvedReasonDetails ReasonDetails disappearedReason String disappearedDetails String disappearedReasonDetails ReasonDetails disappearedDate Float correlatedIssueId String correlatedRegistry String scaFixType ScaFixType previousSeverity PrevSeverity version String severityFactorsDiff [SeverityFactorsDiff] exposedByApiItems [ExposedByApiItem] originBranchName String exclusionComment String exclusionExpiredAt Date problematicPkg String serverlessDeploymentOperation ServerlessDeploymentOperation eventFromExternalTool Boolean issueOwners [IOwner] cveExclusions [RecommendedExclusions]

totalIssues Int

Total count of issues without any filters applied

totalFilteredIssues Int

Total count of issues considering applied filters

totalResolvedIssues Int

Total count of resolved issues

offset Int

Offset value to skip records in paginated responses

totalActiveIssues Int

Total count of active issues

selectedPosition Int

Selected position in the issue list

topOffset Int

Offset value used for top-level pagination

cursorValue String

A value returned by the API that represents the position of the last item in the previous page. Use this value to paginate efficiently through the results. Pass the cursorValue from the previous API response to fetch the next page of results. If omitted, the API returns the first page.

References

Queries using this object:

Last updated