OBJECT
ProcessTriggerProcessNode
link GraphQL Schema definition
- type ProcessTriggerProcessNode implements ProcessNodeInterface, ProcessScheduleInterface {
- # 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!
- # Optional schedule that delays this action to a later time. When null, the action
- # runs immediately when reached.
- : ProcessNodeSchedule
- # null = Triggered Record
- : ProcessRecordNodeRelationEnum
- # API name of the related custom entity to start the process for. Set only when
- # the relation targets a custom entity.
- : String
- # When true, the related records are passed to the started process as the records
- # that triggered it.
- : Boolean
- # Lookup field that defines the relation. Required when the relation is a lookup,
- # and must be empty otherwise.
- : String
- # Process that this node starts.
- : UUID!
- # Optional condition that narrows which related records the started process runs
- # for.
- : FieldFilter
- }
link Require by
This element is not required by anyone