OBJECT

ProcessUpdateAiFieldsNode

Automatizer action node that triggers AI Smart Field value updates.

link GraphQL Schema definition

  • type ProcessUpdateAiFieldsNode 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
  • # AI smart fields whose values are recalculated when this node runs.
  • smartAiFieldIds: [UUID!]!
  • # Relationship from the triggered record to the records whose AI fields are
  • # updated. When null, the triggered record itself is updated.
  • 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 whose AI fields are updated. Set only when
  • # the related record type is a custom entity.
  • entityApiName: String
  • }

link Require by

This element is not required by anyone