Switch
値によって分岐する単一ノードで、各ケース(下記)ごとの出力と Default 出力を持ちます。各出力をそれぞれのケースのコマンドに接続します(Case / End Switch コマンドは不要)。
条件分岐Switch分岐
概要
値によって分岐する単一ノードで、各ケース(下記)ごとの出力と Default 出力を持ちます。各出力をそれぞれのケースのコマンドに接続します(Case / End Switch コマンドは不要)。
A single node that switches on a value and has one output per case (listed below) plus a Default output. Wire each output to the commands for that case (no separate Case / End Switch commands).
パラメータ
| パラメータ | 型 | 必須 | 既定値 | 説明 |
|---|---|---|---|---|
| Value to switch on | string | 必須 | Compared against each case (one per line). 例: {{{status}}} 変数に対応 | |
| Cases (one per line) | multiline | 必須 | Each line is a case value and becomes its own output, in order. An unmatched value uses the Default output. 例: active
pending
closed 変数に対応 |