summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/graphql/recursive-query-edges-node.graphql
blob: de790b1a6c7747f3e2c84eded5b2bf01a36c9321 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  project(fullPath: "gitlab-org/gitlab") {
    group {
      projects {
        edges {
          node {
            group {
              projects {
                edges {
                  node {
                    group {
                      description
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}