summaryrefslogtreecommitdiff
path: root/fixtures
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-01-19 03:07:38 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2023-01-19 03:07:38 +0000
commit0cee6f1577cd31cae7dc0e82f65dcad462a4d18a (patch)
tree180a48cc0b5b15e6f2ac489a6c828ebab591d4cf /fixtures
parentdcd01617a750c41fd082cc3383fc7ad2f2afd026 (diff)
downloadgitlab-ce-0cee6f1577cd31cae7dc0e82f65dcad462a4d18a.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'fixtures')
-rw-r--r--fixtures/lib/gitlab/graphql/queries/persist_directive.query.graphql3
-rw-r--r--fixtures/lib/gitlab/graphql/queries/persist_field.query.graphql6
-rw-r--r--fixtures/lib/gitlab/graphql/queries/persistantly_directive.query.graphql3
3 files changed, 12 insertions, 0 deletions
diff --git a/fixtures/lib/gitlab/graphql/queries/persist_directive.query.graphql b/fixtures/lib/gitlab/graphql/queries/persist_directive.query.graphql
new file mode 100644
index 00000000000..843ae77d8b4
--- /dev/null
+++ b/fixtures/lib/gitlab/graphql/queries/persist_directive.query.graphql
@@ -0,0 +1,3 @@
+query {
+ project @persist
+}
diff --git a/fixtures/lib/gitlab/graphql/queries/persist_field.query.graphql b/fixtures/lib/gitlab/graphql/queries/persist_field.query.graphql
new file mode 100644
index 00000000000..bb52afeb94e
--- /dev/null
+++ b/fixtures/lib/gitlab/graphql/queries/persist_field.query.graphql
@@ -0,0 +1,6 @@
+query {
+ blog(title: "A history of GraphQL") {
+ __persist
+ title
+ }
+}
diff --git a/fixtures/lib/gitlab/graphql/queries/persistantly_directive.query.graphql b/fixtures/lib/gitlab/graphql/queries/persistantly_directive.query.graphql
new file mode 100644
index 00000000000..88a58d01a30
--- /dev/null
+++ b/fixtures/lib/gitlab/graphql/queries/persistantly_directive.query.graphql
@@ -0,0 +1,3 @@
+query {
+ project @persistantly
+}