Is it Possible to Transition Between Steps in Different Workflows?

This topic was automatically generated from Slack. You can find the original thread here.

is it possible to move from one step to one from other workflow?

Maybe with $.flow.rerun() & resume

can you share some reference link? I think I have to somehow select which workflow and step I’d like to move to, how to do this?

I don’t think this is what I am looking for

can you help me with this?

Are you asking about the builder or about workflow execution?

workflow execution

You can trigger other workflows from any workflow (using an HTTP trigger).

But you can’t call a specific step. Only execute the entire workflow.

You might need to create smaller, reusable workflows to achieve what you’re looking for.

got it, thanks