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

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

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