9 lines
145 B
GraphQL
9 lines
145 B
GraphQL
|
mutation updateEpic($input: UpdateEpicInput!) {
|
||
|
updateIssuableTitle: updateEpic(input: $input) {
|
||
|
epic {
|
||
|
title
|
||
|
}
|
||
|
errors
|
||
|
}
|
||
|
}
|