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