Query
query ThreadLinkGroups {
threadLinkGroups {
edges {
cursor
node {
id
threads {
__typename
}
threadLinks {
__typename
}
tierMetrics {
__typename
}
companyMetrics {
__typename
}
defaultViewRank
}
}
pageInfo {
hasPreviousPage
hasNextPage
startCursor
endCursor
}
}
}Response
{
"data": {
"threadLinkGroups": {
"edges": [
{
"cursor": "string",
"node": {
"id": "id",
"threads": {
"__typename": "ThreadConnection"
},
"threadLinks": {
"__typename": "ThreadLinkConnection"
},
"tierMetrics": {
"__typename": "ThreadLinkGroupTierMetrics"
},
"companyMetrics": {
"__typename": "ThreadLinkGroupCompanyMetrics"
},
"defaultViewRank": 1
}
}
],
"pageInfo": {
"hasPreviousPage": true,
"hasNextPage": true,
"startCursor": "string",
"endCursor": "string"
}
}
}
}Queries
threadLinkGroups
Returns a paginated list of thread link groups, each representing a distinct external entity (e.g. a Linear issue or Jira ticket) that is linked to one or more threads. Use this to build views that aggregate threads by a shared linked issue. Supports filtering by status, specific group IDs, company, or tier.
QUERY
threadLinkGroups(first: Int, after: String, last: Int, before: String, filters: ThreadLinkGroupFilter): ThreadLinkGroupConnection!Arguments
first
Int
after
String
last
Int
before
String
filters
Returns
edges
pageInfo
Query
query ThreadLinkGroups {
threadLinkGroups {
edges {
cursor
node {
id
threads {
__typename
}
threadLinks {
__typename
}
tierMetrics {
__typename
}
companyMetrics {
__typename
}
defaultViewRank
}
}
pageInfo {
hasPreviousPage
hasNextPage
startCursor
endCursor
}
}
}Response
{
"data": {
"threadLinkGroups": {
"edges": [
{
"cursor": "string",
"node": {
"id": "id",
"threads": {
"__typename": "ThreadConnection"
},
"threadLinks": {
"__typename": "ThreadLinkConnection"
},
"tierMetrics": {
"__typename": "ThreadLinkGroupTierMetrics"
},
"companyMetrics": {
"__typename": "ThreadLinkGroupCompanyMetrics"
},
"defaultViewRank": 1
}
}
],
"pageInfo": {
"hasPreviousPage": true,
"hasNextPage": true,
"startCursor": "string",
"endCursor": "string"
}
}
}
}Was this page helpful?

