Skip to main content

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
}
}
}

Try in explorer

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
}
}
}
}
}

Try in explorer