summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipelines/graphql/fragments/pipeline_stages_connection.fragment.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/pipelines/graphql/fragments/pipeline_stages_connection.fragment.graphql')
-rw-r--r--app/assets/javascripts/pipelines/graphql/fragments/pipeline_stages_connection.fragment.graphql34
1 files changed, 34 insertions, 0 deletions
diff --git a/app/assets/javascripts/pipelines/graphql/fragments/pipeline_stages_connection.fragment.graphql b/app/assets/javascripts/pipelines/graphql/fragments/pipeline_stages_connection.fragment.graphql
new file mode 100644
index 00000000000..f93908aeb04
--- /dev/null
+++ b/app/assets/javascripts/pipelines/graphql/fragments/pipeline_stages_connection.fragment.graphql
@@ -0,0 +1,34 @@
+fragment PipelineStagesConnection on CiConfigStageConnection {
+ nodes {
+ name
+ groups {
+ nodes {
+ name
+ size
+ jobs {
+ nodes {
+ name
+ script
+ beforeScript
+ afterScript
+ environment
+ allowFailure
+ tags
+ when
+ only {
+ refs
+ }
+ except {
+ refs
+ }
+ needs {
+ nodes {
+ name
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}