Skip to content

Add `scans` field to securityReportSummary on GraphQL

What does this MR do?

This MR introduces a new field called scans for the SecurityReportSummarySection GraphQL types. The idea behind this new field is that we will inform the users about the errors that happened during the report ingestion process.

The query to utilize this new field would look like this;

query getScanInfo($projectPath: ID!, $pipelineID: ID!) {
  project(fullPath: $projectPath) {
    pipeline(iid: $pipelineID) {
      securityReportSummary {
        dast {
          vulnerabilitiesCount
          scans {
            nodes {
              name
              errors
            }
          }
        }
      }
    }
  }
}

Related to #321927 (closed).

Does this MR meet the acceptance criteria?

Conformity

Availability and Testing

Security

If this MR contains changes to processing or storing of credentials or tokens, authorization and authentication methods and other items described in the security review guidelines:

  • [-] Label as security and @ mention @gitlab-com/gl-security/appsec
  • [-] The MR includes necessary changes to maintain consistency between UI, API, email, or other methods
  • [-] Security reports checked/validated by a reviewer from the AppSec team
Edited by Mehmet Emin INAC

Merge request reports