Commit dac26146 authored by Eugenia Grieff's avatar Eugenia Grieff

Change iid argument type for epics mutation

parent f4e8ab6d
...@@ -2595,7 +2595,7 @@ input EpicSetSubscriptionInput { ...@@ -2595,7 +2595,7 @@ input EpicSetSubscriptionInput {
""" """
The iid of the epic to mutate The iid of the epic to mutate
""" """
iid: String! iid: ID!
""" """
The desired state of the subscription The desired state of the subscription
...@@ -7799,7 +7799,7 @@ input UpdateEpicInput { ...@@ -7799,7 +7799,7 @@ input UpdateEpicInput {
""" """
The iid of the epic to mutate The iid of the epic to mutate
""" """
iid: String! iid: ID!
""" """
The IDs of labels to be removed from the epic. The IDs of labels to be removed from the epic.
......
...@@ -24417,7 +24417,7 @@ ...@@ -24417,7 +24417,7 @@
"name": null, "name": null,
"ofType": { "ofType": {
"kind": "SCALAR", "kind": "SCALAR",
"name": "String", "name": "ID",
"ofType": null "ofType": null
} }
}, },
...@@ -24870,7 +24870,7 @@ ...@@ -24870,7 +24870,7 @@
"name": null, "name": null,
"ofType": { "ofType": {
"kind": "SCALAR", "kind": "SCALAR",
"name": "String", "name": "ID",
"ofType": null "ofType": null
} }
}, },
......
...@@ -5,7 +5,7 @@ module Mutations ...@@ -5,7 +5,7 @@ module Mutations
class Base < ::Mutations::BaseMutation class Base < ::Mutations::BaseMutation
include Mutations::ResolvesGroup include Mutations::ResolvesGroup
argument :iid, GraphQL::STRING_TYPE, argument :iid, GraphQL::ID_TYPE,
required: true, required: true,
description: "The iid of the epic to mutate" description: "The iid of the epic to mutate"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment