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

security_report_pipeline_download_paths.query.graphql « queries « graphql « 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: e4f0c392b9158eb5bea0380a690c9bf37cd7bb5d (plain)
1
2
3
4
5
6
7
8
9
10
#import "../fragments/job_artifacts.fragment.graphql"

query getPipelineCorpuses($projectPath: ID!, $iid: ID, $reportTypes: [SecurityReportTypeEnum!]) {
  project(fullPath: $projectPath) {
    id
    pipeline(iid: $iid) {
      ...JobArtifacts
    }
  }
}