Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-02-04 03:09:04 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-02-04 03:09:04 +0300
commit27a18afc7dba4e09a5ec78e5c251c31216d7792a (patch)
tree5dcc015be79e00de4133a66defe10bf1463ff827 /spec/fixtures/api
parent71c9d577ad563572050335dc261ba7673e3e566f (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/fixtures/api')
-rw-r--r--spec/fixtures/api/graphql/recursive-introspection.graphql46
-rw-r--r--spec/fixtures/api/graphql/recursive-query-edges-node.graphql23
-rw-r--r--spec/fixtures/api/graphql/recursive-query-nodes.graphql19
-rw-r--r--spec/fixtures/api/graphql/recursive-query.graphql47
4 files changed, 45 insertions, 90 deletions
diff --git a/spec/fixtures/api/graphql/recursive-introspection.graphql b/spec/fixtures/api/graphql/recursive-introspection.graphql
index db970bb14b6..8346fbdde74 100644
--- a/spec/fixtures/api/graphql/recursive-introspection.graphql
+++ b/spec/fixtures/api/graphql/recursive-introspection.graphql
@@ -2,51 +2,11 @@ query allSchemaTypes {
__schema {
types {
fields {
- type{
+ type {
fields {
type {
fields {
- type {
- fields {
- type {
- fields {
- type {
- fields {
- type {
- fields {
- type {
- fields {
- type {
- fields {
- type {
- fields {
- type {
- fields {
- type {
- fields {
- type {
- fields {
- name
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
+ name
}
}
}
@@ -54,4 +14,4 @@ query allSchemaTypes {
}
}
}
-} \ No newline at end of file
+}
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
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/spec/fixtures/api/graphql/recursive-query-nodes.graphql b/spec/fixtures/api/graphql/recursive-query-nodes.graphql
new file mode 100644
index 00000000000..c8d93f74f86
--- /dev/null
+++ b/spec/fixtures/api/graphql/recursive-query-nodes.graphql
@@ -0,0 +1,19 @@
+{
+ project(fullPath: "gitlab-org/gitlab") {
+ group {
+ projects {
+ nodes {
+ group {
+ projects {
+ nodes {
+ group {
+ description
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/spec/fixtures/api/graphql/recursive-query.graphql b/spec/fixtures/api/graphql/recursive-query.graphql
deleted file mode 100644
index d1616c4de6e..00000000000
--- a/spec/fixtures/api/graphql/recursive-query.graphql
+++ /dev/null
@@ -1,47 +0,0 @@
-{
- project(fullPath: "gitlab-org/gitlab-ce") {
- group {
- projects {
- edges {
- node {
- group {
- projects {
- edges {
- node {
- group {
- projects {
- edges {
- node {
- group {
- projects {
- edges {
- node {
- group {
- projects {
- edges {
- node {
- group {
- description
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
-}