15 lines
289 B
GraphQL
15 lines
289 B
GraphQL
#import "~/graphql_shared/fragments/label.fragment.graphql"
|
|
|
|
mutation issueSetLabels($input: UpdateIssueInput!) {
|
|
updateIssuableLabels: updateIssue(input: $input) {
|
|
issuable: issue {
|
|
id
|
|
labels {
|
|
nodes {
|
|
...Label
|
|
}
|
|
}
|
|
}
|
|
errors
|
|
}
|
|
}
|