Can we execute different workflows in parallel with each other?

Let’s say I have 100 different workflows. By a different workflow I mean, that each one has a different set of activities to be executed in an order. I know we can have a concurrent execution of same workflow instances, but can we do it across different workflows?

Yes, you can. From the service point of view, the workflow type is just a string. So there is no difference in executing the same or different workflow types. And all workflows are always executed in parallel.

thank you @maxim