OBJECT

ProcessChangeOwnershipNode

link GraphQL Schema definition

  • type ProcessChangeOwnershipNode 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
  • # Whether the new owner is picked from a list of specific users or from the
  • # members of selected sales units.
  • assigneeType: ProcessChangeOwnershipAssigneeType!
  • # Users among whom ownership is rotated in round-robin order. Used when the
  • # assignee type is a list of users.
  • clientIds: [ID!]!
  • # Sales units whose members ownership is rotated among in round-robin order. Used
  • # when the assignee type is sales unit.
  • salesUnitIds: [ID!]!
  • }

link Require by

This element is not required by anyone