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

ci_config.query.graphql « queries « graphql « pipeline_editor « ci « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5354ed7c2d5bb67625a0761aa7623b39c2a0d0ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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
    includes {
      location
      type
      blob
      raw
    }
    mergedYaml
    status
    stages {
      ...PipelineStagesConnection
    }
  }
}