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

job_artifacts.fragment.graphql « fragments « 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: 829b9d9f9d85869cc134b357ade6199da6067abc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
fragment JobArtifacts on Pipeline {
  id
  jobs(securityReportTypes: $reportTypes) {
    nodes {
      id
      name
      artifacts {
        nodes {
          downloadPath
          fileType
        }
      }
    }
  }
}