Skip to main content

Link JIRA Integrations to Test Suites

The following mutation links a JIRA Integration to a test suite:

mutation LinkeJIRAIntegrationToTestSuite($testSuiteId: ObjectID!, $jiraIntegrationId: ObjectID!) {
linkJiraIntegrationToTestSuite(
input: { testSuiteId: $testSuiteId, jiraIntegrationId: $jiraIntegrationId }
) {
testSuiteJiraIntegration {
id
testSuite {
id
}
jiraIntegration {
id
}
}
}
}

Try in explorer