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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
289 B
GraphQL
Raw Normal View History

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
}
}