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

get_starter_template.query.graphql « queries « graphql « pipeline_editor « ci « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a34c8f365f477c3b543a8fa43a6ba4e4bbac9848 (plain)
1
2
3
4
5
6
7
8
query getTemplate($projectPath: ID!, $templateName: String!) {
  project(fullPath: $projectPath) {
    id
    ciTemplate(name: $templateName) {
      content
    }
  }
}