query ThreadCluster($id: ID!) {
threadCluster(id: $id) {
id
title
description
category
sentiment
confidence
}
}{
"id": "id"
}{
"data": {
"threadCluster": {
"id": "id",
"title": "string",
"description": "string",
"category": "string",
"sentiment": "string",
"confidence": 1.5
}
}
}threadCluster
Fetches a single thread cluster by its ID. Returns null if no cluster with that ID exists in the current workspace. This API is in beta and may change without notice.
threadCluster(id: ID!): ThreadClusterArguments
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 ThreadCluster($id: ID!) {
threadCluster(id: $id) {
id
title
description
category
sentiment
confidence
}
}{
"id": "id"
}{
"data": {
"threadCluster": {
"id": "id",
"title": "string",
"description": "string",
"category": "string",
"sentiment": "string",
"confidence": 1.5
}
}
}Was this page helpful?

