INTERFACE

ProfileFilterTabCustomFilterInterface

link GraphQL Schema definition

  • interface ProfileFilterTabCustomFilterInterface {
  • # 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
  • }