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

query getPipelineCorpuses($projectPath: ID!, $iid: ID, $reportTypes: [SecurityReportTypeEnum!]) {
  project(fullPath: $projectPath) {
    id
    pipeline(iid: $iid) {
      # eslint-disable-next-line @graphql-eslint/require-id-when-available
      ...JobArtifacts
    }
  }
}