DocumentTopicCluster
Document Topic is a group of similar key from document
type DocumentTopicCluster {
name: String!
tag: String
rank: Float!
sentimentCounts: SentimentCounts
netMentionCount: Int
topics: [DocumentTopic!]
}
Fields
DocumentTopicCluster.name
● String!
non-null scalar
This field gives the name of DocumentTopic cluster title Eg: Organization @exposed
DocumentTopicCluster.tag
● String
scalar
This field gives information about the tag of document topic. Which helps to get the snippets of the categorized document topic. Eg: st_rgltry @exposed
DocumentTopicCluster.rank
● Float!
non-null scalar
This field gives a score of how important the theme/topic cluster is to the document Eg: A number between 0 and 1. 1 means highest score @exposed
DocumentTopicCluster.sentimentCounts
● SentimentCounts
object
This field gives the number of occurrences of topic around different sentiment polarities (positive/negative/neutral) in the document Eg: Neutral 2 mentions, Positive 4 mentions, Negative 0 mention @exposed
DocumentTopicCluster.netMentionCount
● Int
scalar
This field gives the count of differences of DocumentTopics occurrences from previous transcript earnings call documents. It will be zero for non-earnings call document. Eg: 5 @exposed
DocumentTopicCluster.topics
● [DocumentTopic!]
list object
This field lists individual DocumentTopics that are part of a given Topic cluster Eg: Topics will contain the list of topics, for example, given example: 'Organization', neutral two mentions, positive four mentions @exposed
Member of
Document
object