summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipeline_editor/graphql/queries/ci_config.query.graphql
blob: df7de6a1f54056e4398f17516d5b7cea86fc4b96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#import "~/pipelines/graphql/fragments/pipeline_stages_connection.fragment.graphql"

query getCiConfigData($projectPath: ID!, $sha: String, $content: String!) {
  ciConfig(projectPath: $projectPath, sha: $sha, content: $content) {
    errors
    mergedYaml
    status
    stages {
      ...PipelineStagesConnection
    }
  }
}