OBJECT

ColumnFormattingFieldFilterRule

link GraphQL Schema definition

  • type ColumnFormattingFieldFilterRule implements ColumnFormattingFilterFieldRuleInterface {
  • # Unique identifier of this conditional-formatting rule.
  • id: UUID
  • # Identifier of the field whose value the rule is evaluated against.
  • field: String
  • # Comparison applied between the field value and the rule values, such as equals,
  • # contains or is between.
  • operator: FieldOperator
  • # Values the field is compared against; grouped into lists so a single rule can
  • # match any of several values.
  • values: [[String]]
  • # Color applied to matching cells, given as an RGB color code encoded as an
  • # integer.
  • color: Int
  • # Identifier of the report box that the compared field belongs to.
  • boxId: ID
  • }