debian-mirror-gitlab/spec/fixtures/api/graphql/recursive-query-edges-node.graphql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
395 B
GraphQL
Raw Normal View History

2020-03-09 13:42:32 +05:30
{
project(fullPath: "gitlab-org/gitlab") {
group {
projects {
edges {
node {
group {
projects {
edges {
node {
group {
description
}
}
}
}
}
}
}
}
}
}
}