summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipeline_editor/graphql/queries/ci_config.graphql
blob: 30c18a965366e9aea25164e9e7960686a6c2b1ec (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!, $content: String!) {
  ciConfig(projectPath: $projectPath, content: $content) {
    errors
    mergedYaml
    status
    stages {
      ...PipelineStagesConnection
    }
  }
}