INTERFACE

ColumnFormattingFilterFieldRuleInterface

link GraphQL Schema definition

  • interface ColumnFormattingFilterFieldRuleInterface {
  • # Identifier of this condition within the filter box. Used to reference the
  • # condition from the box formula.
  • id: UUID
  • # Identifier of the field whose value the rule is evaluated against.
  • field: String
  • # Comparison applied between the field and the supplied values (for example Is,
  • # IsNot, Contains, Between, IsEmpty).
  • operator: FieldOperator
  • # Values the field is compared against. The outer list holds alternatives combined
  • # with OR; the inner list holds the parts of a single value (such as the two
  • # bounds of a Between comparison).
  • values: [[String]]
  • }