Query
query ThreadClustersPaginated {
threadClustersPaginated {
edges {
cursor
node {
id
title
description
category
sentiment
confidence
}
}
pageInfo {
hasPreviousPage
hasNextPage
startCursor
endCursor
}
}
}Response
{
"data": {
"threadClustersPaginated": {
"edges": [
{
"cursor": "string",
"node": {
"id": "id",
"title": "string",
"description": "string",
"category": "string",
"sentiment": "string",
"confidence": 1.5
}
}
],
"pageInfo": {
"hasPreviousPage": true,
"hasNextPage": true,
"startCursor": "string",
"endCursor": "string"
}
}
}
}Queries
threadClustersPaginated
Returns a paginated list of AI-generated thread clusters for the current workspace.
Use filters to narrow results by company, tenant, or clustering variant.
Supports standard cursor-based pagination via first/after and last/before.
Requires the thread:read permission.
This API is in beta and may change without notice.
QUERY
threadClustersPaginated(first: Int, after: String, last: Int, before: String, filters: ThreadClustersFilter): ThreadClusterConnection!Arguments
first
Int
after
String
last
Int
before
String
filters
Returns
edges
pageInfo
Query
query ThreadClustersPaginated {
threadClustersPaginated {
edges {
cursor
node {
id
title
description
category
sentiment
confidence
}
}
pageInfo {
hasPreviousPage
hasNextPage
startCursor
endCursor
}
}
}Response
{
"data": {
"threadClustersPaginated": {
"edges": [
{
"cursor": "string",
"node": {
"id": "id",
"title": "string",
"description": "string",
"category": "string",
"sentiment": "string",
"confidence": 1.5
}
}
],
"pageInfo": {
"hasPreviousPage": true,
"hasNextPage": true,
"startCursor": "string",
"endCursor": "string"
}
}
}
}Was this page helpful?

