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