OBJECT

FieldFilter

link GraphQL Schema definition

  • type FieldFilter {
  • # 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, the filter is ignored and all records match.
  • isEnabled: Boolean!
  • }