OBJECT

FitnessCustomRule

link GraphQL Schema definition

  • type FitnessCustomRule {
  • # How the filter boxes combine — And or Or.
  • operator: FilterGroupOperator!
  • # Optional boolean formula combining the filter boxes by their number.
  • formula: String
  • # Primary group of filter conditions.
  • filterMainBox: MainFilterBox!
  • # Additional condition groups, combined per operator/formula.
  • filterSiblingBoxes: [FilterBox!]!
  • # When false, this custom rule is configured but not evaluated for records.
  • isEnabled: Boolean!
  • # Warning level raised when a record matches this rule: Notice, Warning, or Error.
  • state: WarningLevelEnum!
  • }