query ThreadClusters {
threadClusters {
id
title
description
category
sentiment
confidence
}
}{
"data": {
"threadClusters": [
{
"id": "id",
"title": "string",
"description": "string",
"category": "string",
"sentiment": "string",
"confidence": 1.5
}
]
}
}threadClusters
Returns all AI-generated thread clusters for the current workspace, sorted by thread count descending.
Clusters group semantically similar threads together so you can spot trends and recurring issues at a glance.
The optional variant argument selects which clustering model run to return; omit it to receive the default variant.
This API is in beta and may change without notice.
threadClusters(variant: String): [ThreadCluster!]!Arguments
Returns
A longer AI-generated summary of the common theme shared by threads in this cluster.
A broader AI-generated category label for the cluster (e.g. 'bug', 'feedback', 'other').
The overall AI-assessed sentiment of threads in this cluster: one of 'positive', 'neutral', or 'negative'.
A score between 0 and 1 indicating how coherent and well-defined the cluster is; null when confidence has not been computed.
A single emoji chosen by the AI to visually represent the cluster's theme.
The threads that belong to this cluster, each annotated with their semantic distance from the cluster centroid.
query ThreadClusters {
threadClusters {
id
title
description
category
sentiment
confidence
}
}{
"data": {
"threadClusters": [
{
"id": "id",
"title": "string",
"description": "string",
"category": "string",
"sentiment": "string",
"confidence": 1.5
}
]
}
}Was this page helpful?

