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

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