Hi,
I am following Reference data from a child workflow article to get a very basic operation to work.
I have a child workflow which sets text using the String tool.
The parent workflow calls this child workflow (for no. of runs
= 1 and no params passed).
The parent workflow references the value of "Compose Text" from the child workflow. It's reference within the child workflow is{{states.state_in_child.stringtools.compose_text}}
. I try to reference this as per my understanding of the referenced article to reference the child's data, but it does not work.
The result is this:
The data reference (as per the linked article) should follow the format, states.{{state that runs the child}}.child.{{state in child}}.value
.
I've tried the following references and none of them work:
a. {{states.calling_child.child.state_in_child.value}}
c. {{states.calling_child.child.state_in_child.stringtools.compose_text}}
d. {{states.calling_child.child.state_in_child.stringtools.compose_text.value}}
e. {{states.calling_child.child.state_in_child.stringtools.compose_text}}.value
Can anyone point out what I am missing?
Regards,
AK