gitlab/ee/app/assets/javascripts/boards/graphql/update_epic_labels.mutation.graphql
2021-11-08 04:55:59 +00:00

17 lines
248 B
GraphQL

mutation updateBoardEpicLabels($input: UpdateEpicInput!) {
updateEpic(input: $input) {
epic {
id
labels {
nodes {
id
title
color
description
}
}
}
errors
}
}