The Teamwork Graph API is coming soon. The relationship types documented here are indicative of what will be available in the Graph via the Teamwork Graph API. Please note that relationships, their properties, and functionality may change before and during the Early Access Program.
The AtlasProjectHasProjectUpdate relationship represents the link between a Townsquare project and a Townsquare project update within the Teamwork Graph. It allows you to:
query AtlasProjectHasProjectUpdate_CypherQuery($cypherQuery: String!, $params: CypherRequestParams) {
cypherQuery(query: $cypherQuery, params: $params) {
edges {
node {
columns {
value {
... on CypherQueryResultNode {
id
data {
__typename
... on TownsquareProjectUpdate {
id
}
}
}
}
}
}
}
}
}
Params
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.
query AtlasProjectHasProjectUpdate_CypherQuery($cypherQuery: String!, $params: CypherRequestParams) {
cypherQuery(query: $cypherQuery, params: $params) {
edges {
node {
columns {
value {
... on CypherQueryResultNode {
id
data {
__typename
... on TownsquareProject {
id
}
}
}
}
}
}
}
}
}
Params
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.