16 lines
244 B
GraphQL
16 lines
244 B
GraphQL
mutation issueSetLabels($input: UpdateIssueInput!) {
|
|
updateIssue(input: $input) {
|
|
issue {
|
|
id
|
|
labels {
|
|
nodes {
|
|
id
|
|
title
|
|
color
|
|
description
|
|
}
|
|
}
|
|
}
|
|
errors
|
|
}
|
|
}
|