OBJECT

ProcessEntityOperation

link GraphQL Schema definition

  • type ProcessEntityOperation {
  • # Field on the target record that this operation sets.
  • fieldId: UUID!
  • # How the field value is determined: a custom value, a value copied from the
  • # triggered record, the trigger actor, the process owner, or cleared.
  • operation: ProcessEntityOperationEnum
  • # Extra settings for operation.
  • extras: ProcessEntityOperationExtras
  • # Field on the triggered record whose value is copied into the target field. Used
  • # when the value is taken from the triggered record.
  • triggeredRecordFieldId: UUID
  • # Lookup field that resolves the related record the copied value is read from,
  • # when the source value comes through a relation.
  • triggeredLookupRelationFieldId: UUID
  • # Translation of source values to target values when copying a field value,
  • # mapping each source option to the value to set.
  • mapping: EntityOperationMapping
  • }