Sentiment
type Sentiment {
net: Float!
change: Float
totalPositiveCount: Int!
totalNegativeCount: Int!
totalStatements: Int!
}
Fields
Sentiment.net ● Float! non-null scalar graph-ql-types
Cumulative, normalized value of sentiment in the document. The value varies from -1 (very negative) to 1 (very positive). @exposed
Sentiment.change ● Float scalar graph-ql-types
Difference in overall sentiment in this document compared to a previous value.
For example, for Transcripts it can be a difference since the previous quarter’s earnings transcript for the company. @exposed
Sentiment.totalPositiveCount ● Int! non-null scalar graph-ql-types
Count of positive statements in the document @exposed
Sentiment.totalNegativeCount ● Int! non-null scalar graph-ql-types
Count of negative statements in the document @exposed
Sentiment.totalStatements ● Int! non-null scalar graph-ql-types
Total count of assessed statements in the document @exposed
Returned By
Document__sentiment query
Member Of
Document object