summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/graphql/recursive-query-edges-node.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'spec/fixtures/api/graphql/recursive-query-edges-node.graphql')
-rw-r--r--spec/fixtures/api/graphql/recursive-query-edges-node.graphql23
1 files changed, 23 insertions, 0 deletions
diff --git a/spec/fixtures/api/graphql/recursive-query-edges-node.graphql b/spec/fixtures/api/graphql/recursive-query-edges-node.graphql
new file mode 100644
index 00000000000..de790b1a6c7
--- /dev/null
+++ b/spec/fixtures/api/graphql/recursive-query-edges-node.graphql
@@ -0,0 +1,23 @@
+{
+ project(fullPath: "gitlab-org/gitlab") {
+ group {
+ projects {
+ edges {
+ node {
+ group {
+ projects {
+ edges {
+ node {
+ group {
+ description
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}