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>2021-08-11 12:10:00 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-08-11 12:10:00 +0300
commit564919dfc6c6b352163d4c6dc01827a5f12ffc88 (patch)
tree9e91b8dde12a3054fffc513c6e0ab0400a039a88 /app/assets/javascripts/graphql_shared
parent2000704b7a6cc9eb37dd597ed03567265eda9308 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/graphql_shared')
-rw-r--r--app/assets/javascripts/graphql_shared/mutations/create_merge_request.mutation.graphql8
1 files changed, 8 insertions, 0 deletions
diff --git a/app/assets/javascripts/graphql_shared/mutations/create_merge_request.mutation.graphql b/app/assets/javascripts/graphql_shared/mutations/create_merge_request.mutation.graphql
new file mode 100644
index 00000000000..79c56448b3f
--- /dev/null
+++ b/app/assets/javascripts/graphql_shared/mutations/create_merge_request.mutation.graphql
@@ -0,0 +1,8 @@
+mutation createMergeRequest($input: MergeRequestCreateInput!) {
+ mergeRequestCreate(input: $input) {
+ mergeRequest {
+ iid
+ }
+ errors
+ }
+}