OBJECT

EntityScoringCategory

link GraphQL Schema definition

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