Last active
May 8, 2025 10:46
-
-
Save shairyar/30ef92f9e500a6b1171da2f03250ec0e to your computer and use it in GitHub Desktop.
GraphQL Query to close an incident
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mutation updateIncidentMutation($appId: String!, $number: Int!, $state: IncidentStateEnum, $description: String) { | |
updateIncident( | |
appId: $appId | |
number: $number | |
state: $state | |
description: $description | |
) { | |
... on ExceptionIncident { | |
id | |
state | |
description | |
severity | |
assignees { | |
id | |
} | |
} | |
} | |
} |
Author
shairyar
commented
Apr 3, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment