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

ci_job.fragment.graphql « fragments « graphql « job_details « ci « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3a27a9a62a3c7089f71aa79f987d697968e47777 (plain)
1
2
3
4
5
6
7
8
9
10
#import "~/ci/job_details/graphql/fragments/ci_variable.fragment.graphql"

fragment BaseCiJob on CiJob {
  id
  manualVariables {
    nodes {
      ...ManualCiVariable
    }
  }
}