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