Developer
News and Updates
Get Support
Sign in
Get Support
Sign in
DOCUMENTATION
Cloud
Data Center
Resources
Sign in
Sign in
DOCUMENTATION
Cloud
Data Center
Resources
Sign in
Object types
Relationship types
Last updated Feb 27, 2026

External repository has external pull request

The Teamwork Graph API is available through Forge's Early Access Program (EAP).

EAPs are offered to selected users for testing and feedback purposes. These features are unsupported and are subject to change without notice.

You must only install apps that call the Teamwork Graph API in test organizations. Apps calling the Teamwork Graph API require the read:graph:jiraor read:graph:confluence scope, which provides access to Teamwork Graph data across your entire organization. While apps still respect end-user permissions, this scope may grant access to sensitive information. For safety, only install these apps in organizations with test data unless you have an approved path to production.

Additionally, this EAP has significant limitations. To review the full list of limitations, see Limitations and considerations.

You must be part of this EAP in order to use the Teamwork Graph API. Express interest in joining through this form.

Links pull requests to their containing repositories, enabling tracking and querying of code review activities within repository contexts. This relationship provides essential connectivity for development workflow visualization, code review analytics, and repository activity monitoring across integrated development tools.

Relationship type: Canonical

From object typesTo object types
External repository - ati:cloud:jira:repository, ati:cloud:graph:repositoryExternal pull request - ati:cloud:jira:pull-request, ati:cloud:graph:pull-request

Cypher

We recommend sending parameterized Cypher queries as below instead of embedding the parameters directly in the query string. This approach will help ensure better performance.

GraphQL

1
2
query ExternalRepositoryHasExternalPullRequest_CypherQuery($cypherQuery: String!, $params: CypherRequestParams) {
  cypherQuery(query: $cypherQuery, params: $params) {
    edges {
      node {
        columns {
          value {
            ... on CypherQueryResultNode {
              id
              data {
                __typename
                ... on ExternalPullRequest {
                  id
                }
              }
            }
          }
        }
      }
    }
  }
}

Params

1
2
{
  "cypherQuery": "MATCH (repository:ExternalRepository {ari: $id})-[:external_repository_has_external_pull_request]->(request:ExternalPullRequest) RETURN request",
  "params": {
    "id": "$id"
  }
}

Rate this page: