Skip to main content

Update Test JIRA Notification Settings

The following mutation updates a test JIRA Notification Settings:

mutation UpdateTestJIRANotificationSettings($testId: ObjectID!, $createJiraTicketOnFailure: Boolean, $jiraTicketCustomNote: String) {
updateTest(input: {
testId: $testId,
createJiraTicketOnFailure: $createJiraTicketOnFailure,
jiraTicketCustomNote: $jiraTicketCustomNote,
}) {
test {
id
createJiraTicketOnFailure
jiraTicketCustomNote
}
}
}

Try in explorer