在调用状态任务时,是否可以指定多个 InputPath,或者“选择”多个 JSON 节点以传递给任务的输入?
示例:
If this is the execution input:
{
"id":"identifier",
"nestedObjectA": {
"doubleNestedObjectA": {
"valueA": "value"
}
},
"nestedObjectB" : {
"valueB": "value"
}
}
是否可以将以下内容作为输入传递给一项任务:
{
"id":"identifier",
"nestedObjectB" : {
"valueB": "value"
}
}
和以下到其他?
{
"id":"identifier",
"nestedObjectA": {
"doubleNestedObjectA": {
"valueA": "value"
}
}
}