Skip to main content

Update Test JIRA Notification Settings

The following mutation updates a test JIRA Notification Settings:

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