Created
December 11, 2023 10:04
-
-
Save shairyar/c10fa4a9d3b7b4297083623981e83426 to your computer and use it in GitHub Desktop.
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, $notificationFrequency: IncidentNotificationFrequencyEnum, $severity: IncidentSeverityEnum, $assigneeIds: [String!], $notificationThreshold: Int) { | |
updateIncident( | |
appId: $appId | |
number: $number | |
state: $state | |
description: $description | |
notificationFrequency: $notificationFrequency | |
notificationThreshold: $notificationThreshold | |
severity: $severity | |
assigneeIds: $assigneeIds | |
) { | |
... on ExceptionIncident { | |
id | |
notificationFrequency | |
notificationThreshold | |
state | |
description | |
severity | |
assignees { | |
id | |
__typename | |
} | |
__typename | |
} | |
... on PerformanceIncident { | |
id | |
notificationFrequency | |
notificationThreshold | |
state | |
description | |
severity | |
assignees { | |
id | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Query variables