Control Flow
Understand how data moves through your Lawme workflows
How Lawme Processes Your Workflow
Lawme processes your workflow in two main steps:
Step 1: Planning the Workflow
Mapping the Journey
Lawme first looks at your entire workflow to understand how all the blocks are connected. It identifies where data enters your workflow (input blocks) and where it ends up (output blocks).
Step 2: Executing the Workflow
Running the Process
Lawme then starts running your workflow, beginning with the input blocks. It processes multiple blocks at the same time when possible, making your workflow efficient.
Special Situations in Your Workflow
Skipping Parts of Your Workflow
For example, if you have an “If” block in your workflow, and the condition isn’t met, the blocks connected to the “false” path won’t run. This helps your workflow make decisions and only execute the relevant parts.
Handling Skipped Sections
Some special blocks in Lawme can work with these skipped sections:
If/Else Block
Chooses between two paths based on a condition.
Coalesce Block
Picks the first available value from multiple options.
Race Inputs Block
Uses the first result that becomes available.
Output Block
Sends results out of your workflow.
Loops in Your Workflow
Loop Controller
This special block allows parts of your workflow to repeat. It’s designed to handle skipped sections carefully, ensuring your loop works as expected.
When using loops, it’s a good idea to include checks (like an If/Else block) to make sure your loop doesn’t unexpectedly stop due to skipped sections.
By understanding these concepts, you can create more sophisticated workflows that make decisions and handle different scenarios effectively.