OBJECT
EntityScoringCategory
link GraphQL Schema definition
- type EntityScoringCategory {
- # Unique identifier of the scoring category.
- : UUID!
- # Display name of the scoring category (for example Hot, Warm, Cold).
- : String!
- # When true, the label is treated as a translation key and localized in the UI;
- # otherwise the literal label text is shown.
- : Boolean!
- # Upper score threshold of this category. A record falls into the category whose
- # threshold its accumulated score does not exceed.
- : Int!
- # Color used to render this category in the UI, encoded as an integer.
- : Int!
- }