Current section
Files
Jump to
Current section
Files
examples/workflow13.json
{
"main": {
"steps": [
{
"first": {
"call": "hello",
"args": {
"input": "Kristof"
},
"result": "some_output"
}
},
{
"second": {
"return": "${some_output}"
}
}
]
},
"hello": {
"params": [
"input"
],
"steps": [
{
"first": {
"return": "${\"Hello \"+input}"
}
}
]
}
}