OBJECT

EntityHealthFieldFilterRule

link GraphQL Schema definition

  • type EntityHealthFieldFilterRule implements FilterFieldRuleInterface {
  • # Unique identifier of the health indicator rule.
  • id: UUID!
  • # Identifier of the field this rule evaluates when computing the health score.
  • field: String!
  • # Comparison operator applied between the field value and the rule values, such as
  • # equals, contains, or between.
  • operator: FieldOperator
  • # Values the field is compared against. The outer list holds OR groups; each inner
  • # list holds the operands for a single comparison.
  • values: [[String]]
  • # Human-readable label describing what this health indicator measures.
  • description: String!
  • # -1 for critical, otherwise choose between 0 and 100
  • score: Int!
  • }