summaryrefslogtreecommitdiff
path: root/app/graphql/mutations
diff options
context:
space:
mode:
authorBob Van Landuyt <bob@vanlanduyt.co>2019-06-03 20:15:04 +0200
committerBob Van Landuyt <bob@vanlanduyt.co>2019-06-03 21:59:33 +0200
commitf16b13113ff580fbde78f8f6ba42a3f86c04ca12 (patch)
tree7f02f606fe484ff76f12cc649ea44d000d5c6e0c /app/graphql/mutations
parented503d51a39943b482e917028d589cc26ec01c95 (diff)
downloadgitlab-ce-f16b13113ff580fbde78f8f6ba42a3f86c04ca12.tar.gz
Fix incorrect instances of `GraphQL::ID_TYPE`
Since the `GraphQL::ID_TYPE` usages should represent globally unique ids, this changes some fields for which this is not the case into strings. The `ID_TYPE` is a specialised, so this change should be backwards compatible. https://graphql-ruby.org/type_definitions/scalars.html
Diffstat (limited to 'app/graphql/mutations')
-rw-r--r--app/graphql/mutations/merge_requests/base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/graphql/mutations/merge_requests/base.rb b/app/graphql/mutations/merge_requests/base.rb
index 7d0cb777ad1..e85d16fc2c5 100644
--- a/app/graphql/mutations/merge_requests/base.rb
+++ b/app/graphql/mutations/merge_requests/base.rb
@@ -10,7 +10,7 @@ module Mutations
required: true,
description: "The project the merge request to mutate is in"
- argument :iid, GraphQL::ID_TYPE,
+ argument :iid, GraphQL::STRING_TYPE,
required: true,
description: "The iid of the merge request to mutate"