We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
if we put the output into on json key, we can handle the output better in a plan.
instead returning: ["node1, "node2"]
["node1, "node2"]
return: {"nodes": ["node1", "node2"]}
{"nodes": ["node1", "node2"]}
then we cann acces them with $nodes.first.value instead of parsejson($nodes.first.value['_output'].strip)
$nodes.first.value
parsejson($nodes.first.value['_output'].strip)
and $nodes.first.value you can merge then into the next task/plan/step
run_task(some::task, $$nodes.first.value['nodes'], "a name")
$nodes.first.value['nodes']
The text was updated successfully, but these errors were encountered:
No branches or pull requests
if we put the output into on json key, we can handle the output better in a plan.
instead returning:
["node1, "node2"]
return:
{"nodes": ["node1", "node2"]}
then we cann acces them with
$nodes.first.value
instead ofparsejson($nodes.first.value['_output'].strip)
and
$nodes.first.value
you can merge then into the next task/plan/steprun_task(some::task, $
$nodes.first.value['nodes']
, "a name")The text was updated successfully, but these errors were encountered: