summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipeline_editor/graphql/queries/ci_config.query.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/pipeline_editor/graphql/queries/ci_config.query.graphql')
-rw-r--r--app/assets/javascripts/pipeline_editor/graphql/queries/ci_config.query.graphql12
1 files changed, 12 insertions, 0 deletions
diff --git a/app/assets/javascripts/pipeline_editor/graphql/queries/ci_config.query.graphql b/app/assets/javascripts/pipeline_editor/graphql/queries/ci_config.query.graphql
new file mode 100644
index 00000000000..df7de6a1f54
--- /dev/null
+++ b/app/assets/javascripts/pipeline_editor/graphql/queries/ci_config.query.graphql
@@ -0,0 +1,12 @@
+#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
+ mergedYaml
+ status
+ stages {
+ ...PipelineStagesConnection
+ }
+ }
+}