Skip to main content

Flow Editor Components

The Flow Builder has the following major components we will detail below:

  • Toolbar: the toolbar allows you to export the flow, configure the flow settings, and test the flow.
  • Settings: configure the flow settings.
  • Static Inputs: view all flow static inputs.
  • Flow Inputs: view all flow inputs.
  • Action: steps are the building blocks of a flow. They are the actions that will be executed when the flow is run.
  • Action editor: configure the action.

Example of a flow

Example of a flow in Windmill.

Toolbar

Flow Toolbar

The toolbar allows you to export the flow, configure the flow settings, and test the flow. Here are the different options available in the toolbar:

  • Summary: shortcut to edit the flow summary.
  • Previous/Next: undo actions.
  • Path: define the permissions of the flow.
  • JSON: export the flow as a JSON file.
  • Test flow: open the flow test slider.
  • Test up to: open the flow test slider.
  • Draft: save the flow as draft.
  • Draft: deploy the flow.

Settings

The flow settings are divided into four tabs:

Metadata

Each flow has metadata associated with it, enabling it to be defined and configured in depth.

Summary

Summary (optional) is a short, human-readable summary of the Script. It will be displayed as a title across Windmill. If omitted, the UI will use the path by default.

Path

Path is the Flow's unique identifier that consists of the flow's owner, and the script's name. The owner can be either a user, or a group of users (folder).

Description

This is where you can give instructions to users on how to run your Flow. It supports markdown.

Flow Metadata

Flow Metadata Markdown

Schedule

Flows can be triggered by any schedules, their webhooks or their UI but they only have only one primary schedules with which they share the same path. The primary schedule can be set here.

A CRON expression is used to define the schedule. Schedules can also be disabled.

Flow Schedule

tip

Have more details on all the ways to trigger flows here.

Shared Directory

Flows on Windmill are by default based on a result basis. A step will take as inputs the results of previous steps. And this works fine for lightweight automation.

For heavier ETLs, you might want to use the Shared Directory to share data between steps. Steps will share a folder at ./shared in which they can store heavier data and pass them to the next step.

Beware that the ./shared folder is not preserved across suspends and sleeps. The directory is temporary and active for the time of the execution.

To enable the shared directory, on the Settings menu, go to Shared Directory and toggle on Shared Directory on './shared'.

Flow Shared Directory

To use the shared directory, just load outputs using ./shared/${path} and call it for following steps.

Example from the Demo workspace Same worker example of using the './shared' folder

Loading output Flow Shared Folder 1


Calling as input Flow Shared Folder 1

This flow can be found on the Demo workspace.

Another example is to be found from the Hub.

Worker Group Tag

Flows can be assigned custom worker groups for efficient execution on different machines with varying specifications.

Worker group tag

Test flow

Test your current version of the flow with the Test flow button. This will opens a menu with an auto-generated UI of your current configuration.

You can also test up to a certain step by clicking on an action (x) and then on Test up to x.

At last, you can directly test a step.


Static inputs

This menu centralizes the static inputs of every steps. It is akin to a file containing all constants. Modifying a value here modify it in the step input directly. It is especially useful when forking a flow to get an overview of all the variables to parametrize that are not exposed directly as flow inputs.

Flow Inputs

In this section, you will learn how to add and configure flow inputs.

There are three ways to add flow inputs:

  • Customize the flow inputs.
  • Using a Request: send a POST request to the a specific endpoint to add a flow input.
  • Copying the first step inputs.

Customize the flow inputs

To manually configure the flow inputs, click on Input and then the Add property button. It will open a slider where you can configure the flow input.

  • Name: the name of the flow input.
  • Description: the description of the flow input.
  • Type: the type of the flow input: Integer, Number, String, Boolean, Array, Object, or Any.
  • Default value: the default value of the flow input.

Some arguments' types can be given advanced settings that will affect the inputs' auto-generated UI and JSON Schema.

Here is an example on how to define a list as an enum of strings using the Customize menu.


Below is the list of all available advanced settings for each argument type:

TypeAdvanced Configuration
IntegerNo advanced configuration for this type.
NumberMin and Max.
String- File (base64) | Enum | Format: email, hostname, uri, uuid, ipv4, yaml, sql, date-time | Pattern (Regex)
BooleanNo advanced configuration for this type.
ObjectAdvanced settings are Resource Types.
Array- Items are strings | Items are strings from an enum | Items are objects (JSON) | Items are numbers | Items are bytes
AnyNo advanced configuration for this type.

Using a Request

For this example, we will use the following flow at path: u/test-user/my_flow.

You can send a POST request to the following endpoint with a payload to add a flow input: the payload will be interpreted to extract the flow input.

For example, using CURL:

curl -X POST https://app.windmill.dev/api/w/windmill-labs/capture_u/u/test-user/my_flow \
-H 'Content-Type: application/json' \
-d '{"foo": 42}'

The flow input will be added with the following properties:

  • Name: foo
  • Type: Integer
  • Default value: 42

Copying the first step inputs

To copy the first step inputs, click on the First step inputs button.

Flow Actions

An action script is simply a script that is neither a trigger nor an approval script. Those are the majority of the scripts.

There are two ways to create an action script:

  • Write it directly in the flow editor.
  • Import it from the Hub.
  • Import it from the workspace.

Inline action script

You can either create a new action script in:

There are special kinds of scripts, SQL and query languages:

These are essentially Typescript template to easily write queries to a database.

Triggering an action script from the Hub

You can refer to and trigger an action script from the Hub. You also have the possibility to fork it (copy it as an inline script) directly to modify its behavior.

Triggering an action script from the workspace

You can refer to and trigger an action script from the workspace. Similar to the previous section, you can copy the script to an inline flow script and modify it.

Flow action

Action editor

Windmill provide a web editor to write your scripts. It is available in the flow editor.

The script editor in split in three parts:

Action editor header

The header is composed of:

  • Summary: edit the summary of the script.
  • Shortcuts: shortcut to advanced configuration.
    1. Retries: configure the number of retries and the delay between each retry.
    2. Concurrency limit: set concurrency limits to prevent exceeding the API Limit of the targeted API.
    3. Cache: cache the results of a step for a specified time.
    4. Early stop/Break: if defined, at the end of the step, the predicate expression will be evaluated to decide if the flow should stop early. Skipped flows are just a label useful to not see them in the runs page. If stop early is run within a forloop, it will just break the for-loop and have it stop at that iteration instead of stopping the whole flow.
    5. Suspend: if defined, at the end of the step, the flow will be suspended until it receives external requests to be resumed or canceled. This is most useful for implementing approval steps but can be used flexibly for other purpose. To get the resume urls, use wmill.getResumeUrls() in Typescript, or wmill.get_resume_urls() in Python.
    6. Sleep: if defined, at the end of the step, the flow will sleep for a number of seconds before scheduling the next job (if any, no effect if the step is the last one). Sleeping is passive and does not consume any resources.
    7. Mock: when a step is mocked, it will immediately return the mocked value without performing any computation.

Script editor

  • Context var: add a context variable to the script.
  • Var: add an input variable to the script.
  • Resource: add a resource to the script.
  • Reset: reset the script to its initial state.
  • Assistant: reload the LSP assistant.
  • Format: format the script. Can be triggerd on save (CTRL+S).
  • Script: view hub or workspace script code.

Step configuration/Test this step

The step configuration is composed of three parts:

Step input

Step input

Inputs of a script can be defined in the step configuration. They can be configured in three ways:

  • Templatable string: a templatable string is a string that can be templated with context variables. It is defined by wrapping the string with ${ and }. For example, ${context.var} is a templatable string that will be replaced by the value of the context variable var.
  • Dynamic: JS expression that will be evaluated at runtime. The expression can use context variables and input variables. For example, context.var is a dynamic expression that will be replaced by the value of the context variable var.
  • Static: a static value that will be used as is. For example, static value is a static value that will be used as is.
Templatable string/Static

The templatable string and static value can be combined. For example, ${context.var} static value is a templatable string that will be replaced by the value of the context variable var and then concatenated with the static value static value.

`${context.var} static value`;
Dynamic

JS expression that will be evaluated at runtime.

[1, 2, 3, 4].reduce((acc, val) => acc + val, 0);
Insert mode

There are two insert modes:

  • Append: append a context variable, a flow input or a resource at the cursor position
  • Connect: replace the current value by a context variable, a flow input or a resource

Clicking on a field will set the mode to "Append". Clicking on the "Connect" button will set the mode to "Connect".

Test this step

Test this step

The test this step section allows to test the step on its own. You can set the input and run the script. The result and logs are displayed on the left-hand side.

Advanced

The advanced section allows to configure the following: