在调用状态任务时,是否可以指定多个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"
}
}
}