OBJECT

ProcessFilterNode

link GraphQL Schema definition

  • type ProcessFilterNode implements ProcessNodeInterface, ProfileFilterBoxTabInterface {
  • # Unique identifier of this node within the process node tree.
  • id: ID!
  • # Identifier of the node that precedes this one in the process node tree. Null for
  • # nodes attached directly to the trigger.
  • parentId: ID
  • # Display name of the node shown in the process builder.
  • name: 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!]!
  • # How the filter conditions are combined: all must match, any may match, or a
  • # custom expression.
  • operator: FilterGroupOperator!
  • # Custom boolean expression combining the numbered filter conditions. Used when
  • # the operator is a custom expression.
  • formula: String
  • }