2022-07-23 23:45:48 +05:30
|
|
|
#import "ee_else_ce/sidebar/queries/escalation_status.fragment.graphql"
|
|
|
|
|
2022-05-07 20:08:51 +05:30
|
|
|
mutation updateEscalationStatus($projectPath: ID!, $status: IssueEscalationStatus!, $iid: String!) {
|
|
|
|
issueSetEscalationStatus(input: { projectPath: $projectPath, status: $status, iid: $iid }) {
|
|
|
|
errors
|
|
|
|
clientMutationId
|
|
|
|
issue {
|
|
|
|
id
|
2022-07-23 23:45:48 +05:30
|
|
|
...EscalationStatusFragment
|
2022-05-07 20:08:51 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|