OBJECT

ProcessLinkRecordNode

link GraphQL Schema definition

  • type ProcessLinkRecordNode 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
  • # When true, the records linked by this node also start another process.
  • triggerProcess: Boolean!
  • # Process that the linked records start when triggering another process is
  • # enabled.
  • triggerProcessId: UUID
  • # 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.
  • relation: ProcessRecordNodeRelationEnum!
  • # Lookup field that defines the relation. Required when the relation is a lookup,
  • # and must be empty otherwise.
  • relationLookupFieldId: String
  • # API name of the related custom entity. Set only when the related record type is
  • # a custom entity.
  • entityApiName: String
  • # How the records to link are found: by a filter condition, or by matching a field
  • # value against a field on the triggered record.
  • recordIdentificationType: ProcessRecordIdentificationType!
  • # Condition that selects the records to link. Used when records are identified by
  • # filter.
  • recordFilter: FieldFilter
  • # Field on the triggered record whose value is matched to find records to link.
  • # Used when records are identified by field.
  • triggeredRecordFieldId: UUID
  • # Field on the candidate records that must match the triggered record value. Used
  • # when records are identified by field.
  • recordFieldId: UUID
  • # When true, link every matching record; when false, link only the best single
  • # match.
  • linkAll: Boolean!
  • }

link Require by

This element is not required by anyone