OBJECT

ContactFilterTab

link GraphQL Schema definition

  • type ContactFilterTab implements ProfileFilterTabCustomFilterInterface, ProfileFilterBoxTabInterface, ProfileFilterBaseInterface {
  • # True when the conditions are combined with a custom formula rather than a simple
  • # And/Or across all conditions.
  • isCustom: Boolean!
  • # How the conditions are combined: And applies all conditions, Or applies any,
  • # Custom evaluates the expression in the formula.
  • operator: FilterGroupOperator!
  • # Boolean expression combining the numbered conditions (for example "1 AND (2 OR
  • # 3)"). Used when the operator is Custom.
  • formula: String
  • # Whether the filter is applied. When false, the filter conditions are ignored.
  • isEnabled: Boolean!
  • # Primary group of filter conditions evaluated on the main record type.
  • filterMainBox: MainFilterBox!
  • # Additional groups of filter conditions evaluated on related record types.
  • filterSiblingBoxes: [FilterBox!]!
  • }