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 Atlas (Townsquare) projects to their corresponding Jira epics for tracking project progress and deliverables. This relationship enables teams to associate project work with specific epics in Jira, facilitating project management and progress tracking across both platforms.
Relationship type: Canonical
| From object types | To object types |
|---|---|
Jira work item - ati:cloud:jira:issue | Atlassian project - ati:cloud:townsquare:project |
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.
1 2query JiraEpicTracksAtlassianProject_CypherQuery($cypherQuery: String!, $params: CypherRequestParams) { cypherQuery(query: $cypherQuery, params: $params) { edges { node { columns { value { ... on CypherQueryResultNode { id data { __typename ... on AtlassianProject { id } } } } } } } } }
1 2{ "cypherQuery": "MATCH (item:JiraWorkItem {ari: $id})-[:jira_epic_tracks_atlassian_project]->(project:AtlassianProject) RETURN project", "params": { "id": "$id" } }
| Name | Type | Properties |
|---|---|---|
synced | Boolean | |
syncLabels | Boolean |
Rate this page: