debian-mirror-gitlab/app/assets/javascripts/boards/graphql/issue_set_labels.mutation.graphql

17 lines
244 B
GraphQL
Raw Normal View History

2021-01-03 14:25:43 +05:30
mutation issueSetLabels($input: UpdateIssueInput!) {
updateIssue(input: $input) {
issue {
2021-09-30 23:02:18 +05:30
id
2021-01-03 14:25:43 +05:30
labels {
nodes {
id
title
color
description
}
}
}
errors
}
}