Developer
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 Jan 8, 2026

Focus focus area has external position

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. Do not install apps using this API in organizations with production data while this feature is in EAP.

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.

The `FocusFocusAreaHasExternalPosition` relationship represents the allocation of a position to a focus area within the organization's workforce management system. It allows you to:
* Retrieve positions allocated to a specific focus area
* Find which focus areas a specific position is allocated to
* Track position allocations and workforce assignments to strategic focus areas

Relationship type: Canonical

From object typesTo object types
Focus Focus Area - ati:cloud:mercury:focus-areaTalent Position - ati:cloud:radar:position

Cypher

Note

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 FocusFocusAreaHasExternalPosition_CypherQuery($cypherQuery: String!, $params: CypherRequestParams) {
  cypherQuery(query: $cypherQuery, params: $params) {
    edges {
      node {
        columns {
          value {
            ... on CypherQueryResultNode {
              id
              data {
                __typename
                ... on TalentPosition {
                  id
                }
              }
            }
          }
        }
      }
    }
  }
}

Params

1
2
{
  "cypherQuery": "MATCH (position:TalentPosition)-[:focus_focus_area_has_external_position]->(area:FocusFocusArea {ari: $id}) RETURN position",
  "params": {
    "id": "$id"
  }
}

Rate this page: