2022-01-26 12:08:38 +05:30
|
|
|
#import "~/graphql_shared/fragments/label.fragment.graphql"
|
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
mutation issueSetLabels($input: UpdateIssueInput!) {
|
2022-01-26 12:08:38 +05:30
|
|
|
updateIssuableLabels: updateIssue(input: $input) {
|
|
|
|
issuable: issue {
|
2021-09-30 23:02:18 +05:30
|
|
|
id
|
2021-01-03 14:25:43 +05:30
|
|
|
labels {
|
|
|
|
nodes {
|
2022-01-26 12:08:38 +05:30
|
|
|
...Label
|
2021-01-03 14:25:43 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
errors
|
|
|
|
}
|
|
|
|
}
|