OBJECT

HealthCategory

link GraphQL Schema definition

  • type HealthCategory {
  • # Unique identifier of the health category.
  • id: UUID!
  • # Display name of the health category (for example Good, Watch, Critical).
  • 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 health-score threshold of this category. A record falls into the category
  • # whose threshold its score does not exceed. The critical category uses -1.
  • value: Int!
  • # Color used to render this category in the UI, encoded as an integer.
  • color: Int!
  • }