Workflows
Structure of a workflow
Actions
Action events
Common actions
-
Set variable : Actions can be used to update the state of your app. -
Call API : APIs that do not have an auto-fetch set, must be called during a workflow to fetch their data. You can also use this type of action to re-fetch data when you expect it to have new data. -
Logging and Monitoring : Actions can write logs, monitor system health, or report anomalies. -
Trigger component event : When you click a button in your component, you can use the element event's workflow to trigger a component-level event that parent elements can listen to. -
Timers : The `Sleep` action can be used to delay the execution of a new workflow, or you can utilize `Interval` to continuously repeat a workflow every x seconds. -
Custom action : Perhaps you have created a custom action . These will show up when picking actions. A custom action can be used to set a value in session-storage etc.