Dynamic arg help
When a field is "dynamic", its value is computed dynamically as the evaluation of its corresponding typescript snippet.
That snippet can be single line:last_result.myarg
or multiline:
let x = 5;
x + 2
If it is multiline, the last statement before the final expressionMUST END WITH ; and a newline
The snippet can also be a string template:`Hello ${params.name}, all your base ${previous_result.base_name}
belong to us`
However, the last line must always be the final expression.
The snippet can use any typescript primitives, and the following flow specific objects and functions: