debian-mirror-gitlab/app/assets/javascripts/sidebar/queries/update_epic_title.mutation.graphql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
159 B
GraphQL
Raw Normal View History

2021-12-11 22:18:48 +05:30
mutation updateEpicTitle($input: UpdateEpicInput!) {
2021-04-29 21:17:54 +05:30
updateIssuableTitle: updateEpic(input: $input) {
epic {
2022-01-26 12:08:38 +05:30
id
2021-04-29 21:17:54 +05:30
title
}
errors
}
}