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

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