Welcome to mirror list, hosted at ThFree Co, Russian Federation.

security_report_download_paths.query.graphql « queries « security_reports « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4ce13827da29232fdab41b68095227c337f5612e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
query securityReportDownloadPaths(
  $projectPath: ID!
  $iid: String!
  $reportTypes: [SecurityReportTypeEnum!]
) {
  project(fullPath: $projectPath) {
    mergeRequest(iid: $iid) {
      headPipeline {
        id
        jobs(securityReportTypes: $reportTypes) {
          nodes {
            name
            artifacts {
              nodes {
                downloadPath
                fileType
              }
            }
          }
        }
      }
    }
  }
}