Skip to main content

if

An if expression.

Field Configurations

KeyTypeDescriptionDefault Value
"params" (required)Objectundefinednull

Parameters

KeyTypeDescriptionDefault Value
"async"BooleanSpecifies whether the action should perform asynchronously.null
"condition" (required)ObjectThe expression to use as condition.null
"else"ArrayList of actions to execute if the condition is false.null
"then"ArrayList of actions to execute if the condition is true.null

Inherited

From Base Action

Base Action

Field Configurations

KeyTypeDescriptionDefault Value
"dynamicParams"ObjectDynamic params to retrieve data from a specific context e.g. a userSetting.null
"leadingDelimiter"StringThe leading mustache delimiter to use.null
"params"Object,ArrayObject containing the properties of the action.null
"trailingDelimiter"StringThe trailing mustache delimiter to use.null
"type"StringType name of the action.null

Examples

Example 1: Execute an if query

Goal: Create an if action checking whether a specific field exists.

The condition parameter specifies the expression that is used as the condition for the if query.

{
"type": "if",
"params": {
"condition": {
"left": {
"context": "namedForm",
"field": "shroedingersCat"
},
"mode": "exists"
},
"then": [
{
"type": "showMessage",
"params": {
"text": "does exist"
}
}
],
"else": [
{
"type": "showMessage",
"params": {
"text": "does not exist"
}
}
]
}
}

Depending on the result of the if query, either the actions in the then or else parameter are executed.

Result:

Screenshot of the app showing the results of the sample code from Example 1.
An if action has been created.