OBJECT

ProcessTriggerProcessNode

link GraphQL Schema definition

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

link Require by

This element is not required by anyone