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

ci_config.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: 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
    }
  }
}