I have a flow that returns a collection, which I then need to feed as a JSON parameter to another module. So far I set it up like this, but it looks like the JSON object is not produced as a result.
What can I fix?
I have the following path: Collection > Transform to String > Parse JSON
It returns an object of a type:
{
"parameter": "value"
}
and what I need is the
{
"graph": {
"parameter": "value"
}
}
so that I can later plug the JSON from “graph” into another module (without the “graph”, just the JSON)