summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipeline_editor/graphql/queries/get_starter_template.query.graphql
blob: 88825718f7b8878bda1acf47169f080c0afd17e3 (plain)
1
2
3
4
5
6
7
query getTemplate($projectPath: ID!, $templateName: String!) {
  project(fullPath: $projectPath) {
    ciTemplate(name: $templateName) {
      content
    }
  }
}