debian-mirror-gitlab/app/assets/javascripts/sidebar/queries/project_issue_milestone.mutation.graphql

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

17 lines
355 B
GraphQL
Raw Normal View History

2021-09-04 01:27:46 +05:30
mutation projectIssueMilestoneMutation($fullPath: ID!, $iid: String!, $attributeId: ID) {
issuableSetAttribute: updateIssue(
input: { projectPath: $fullPath, iid: $iid, milestoneId: $attributeId }
) {
errors
issuable: issue {
id
attribute: milestone {
title
id
state
2021-09-30 23:02:18 +05:30
expired
2021-09-04 01:27:46 +05:30
}
}
}
}