Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
dac26146
Commit
dac26146
authored
Feb 27, 2020
by
Eugenia Grieff
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change iid argument type for epics mutation
parent
f4e8ab6d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
doc/api/graphql/reference/gitlab_schema.graphql
doc/api/graphql/reference/gitlab_schema.graphql
+2
-2
doc/api/graphql/reference/gitlab_schema.json
doc/api/graphql/reference/gitlab_schema.json
+2
-2
ee/app/graphql/mutations/epics/base.rb
ee/app/graphql/mutations/epics/base.rb
+1
-1
No files found.
doc/api/graphql/reference/gitlab_schema.graphql
View file @
dac26146
...
...
@@ -2595,7 +2595,7 @@ input EpicSetSubscriptionInput {
"""
The
iid
of
the
epic
to
mutate
"""
iid
:
String
!
iid
:
ID
!
"""
The
desired
state
of
the
subscription
...
...
@@ -7799,7 +7799,7 @@ input UpdateEpicInput {
"""
The
iid
of
the
epic
to
mutate
"""
iid
:
String
!
iid
:
ID
!
"""
The
IDs
of
labels
to
be
removed
from
the
epic
.
...
...
doc/api/graphql/reference/gitlab_schema.json
View file @
dac26146
...
...
@@ -24417,7 +24417,7 @@
"name"
:
null
,
"ofType"
:
{
"kind"
:
"SCALAR"
,
"name"
:
"
String
"
,
"name"
:
"
ID
"
,
"ofType"
:
null
}
},
...
...
@@ -24870,7 +24870,7 @@
"name"
:
null
,
"ofType"
:
{
"kind"
:
"SCALAR"
,
"name"
:
"
String
"
,
"name"
:
"
ID
"
,
"ofType"
:
null
}
},
...
...
ee/app/graphql/mutations/epics/base.rb
View file @
dac26146
...
...
@@ -5,7 +5,7 @@ module Mutations
class
Base
<
::
Mutations
::
BaseMutation
include
Mutations
::
ResolvesGroup
argument
:iid
,
GraphQL
::
STRING
_TYPE
,
argument
:iid
,
GraphQL
::
ID
_TYPE
,
required:
true
,
description:
"The iid of the epic to mutate"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment