OBJECT
ProcessCreateRelatedRecordNode
A node which creates entity with relation to the triggered entity
link GraphQL Schema definition
- type ProcessCreateRelatedRecordNode 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
- # Relationship from the triggered record to the related records this node acts on,
- # such as a standard relation, a primary account or contact, a parent account, or
- # a lookup field relation.
- : ProcessRecordNodeRelationEnum!
- # Lookup field that defines the relation. Required when the relation is a lookup,
- # and must be empty otherwise.
- : String
- # API name of the related custom entity. Set only when the related record type is
- # a custom entity.
- : String
- # Field values and operations applied to the record this node creates or updates.
- : ProcessEntityTemplate
- # When true, the records affected by this node also start another process.
- : Boolean!
- # Process that the affected records start when triggering another process is
- # enabled.
- : UUID
- }
link Require by
This element is not required by anyone