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: d65d989226034b129fb6603396e40ea20336433c (plain)
1
2
3
4
5
6
7
8
9
10
11
#import "~/pipelines/graphql/queries/pipeline_stages_connection.fragment.graphql"

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