summaryrefslogtreecommitdiff
path: root/fixtures
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-05-19 15:44:42 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2021-05-19 15:44:42 +0000
commit4555e1b21c365ed8303ffb7a3325d773c9b8bf31 (patch)
tree5423a1c7516cffe36384133ade12572cf709398d /fixtures
parente570267f2f6b326480d284e0164a6464ba4081bc (diff)
downloadgitlab-ce-4555e1b21c365ed8303ffb7a3325d773c9b8bf31.tar.gz
Add latest changes from gitlab-org/gitlab@13-12-stable-eev13.12.0-rc42
Diffstat (limited to 'fixtures')
-rw-r--r--fixtures/lib/gitlab/graphql/queries/plans.customer.mutation.graphql5
-rw-r--r--fixtures/lib/gitlab/graphql/queries/plans.customer.query.graphql5
2 files changed, 10 insertions, 0 deletions
diff --git a/fixtures/lib/gitlab/graphql/queries/plans.customer.mutation.graphql b/fixtures/lib/gitlab/graphql/queries/plans.customer.mutation.graphql
new file mode 100644
index 00000000000..71ad42c3303
--- /dev/null
+++ b/fixtures/lib/gitlab/graphql/queries/plans.customer.mutation.graphql
@@ -0,0 +1,5 @@
+mutation updatePlans($tags: [PlanTag!]) {
+ plans(planTags: $tags) {
+ name
+ }
+}
diff --git a/fixtures/lib/gitlab/graphql/queries/plans.customer.query.graphql b/fixtures/lib/gitlab/graphql/queries/plans.customer.query.graphql
new file mode 100644
index 00000000000..cbc705ee81b
--- /dev/null
+++ b/fixtures/lib/gitlab/graphql/queries/plans.customer.query.graphql
@@ -0,0 +1,5 @@
+query getPlans($tags: [PlanTag!]) {
+ plans(planTags: $tags) {
+ name
+ }
+}