Update JIRA Authentications
The following mutation updates a JIRA Authentication:
mutation UpdateJIRAAuthentication($jiraAuthenticationId: ObjectID!, $name: String) {
updateJiraAuthentication(
input: {
jiraAuhtenticationId: $jiraAuthenticationId
name: $name
}
) {
jiraAuthentication {
id
name
}
}
}
caution
Only the name of a JIRA Authentication can be updated.