Retrieve JIRA Integrations
Getting an JIRA Integration by id
The following query retrieves a JIRA Integration by id:
query GetJIRAIntegration($jiraIntegrationId: ObjectID!) {
node(id: $jiraIntegrationId) {
... on JiraIntegration {
name
jiraProjectId
jiraIssueTypeId
createdAt
updatedAt
}
}
}
Getting the JIRA integration linked to a given test suite
The following query retrieves the JIRA Integration linked to a given test suite:
query GetTestSuiteJIRAIntegrations($testSuiteId: ObjectID!) {
node(id: $testSuiteId) {
... on TestSuite {
testSuiteJiraIntegration {
jiraIntegration {
id
}
}
}
}
}