I\'ve recently stumbled upon Clean Architecture, by Uncle Bob, and I\'m curious to know whether Interactors can execute other Interactors.
For example, these are my Inte
I have been pondering the same thing and after finding very little on the subject, I have come to the conclusion "Yes" it is probably the best option.
my reasoning as follows:
To preserve single responsibility, I would consider limiting aggregating use-cases to do only that, i.e. executing those use cases and doing any final transformations.
Given the age of this question, I'd be interested to know which way you went with this and issues you encountered.