I am not sure I understand properly how contexts work for subflows. I read that the "flow" context for subflow nodes is NOT the one of the parent flow. Ok that makes sense. What I am not getting: As many flows use a specific subflow, does that create multiple instances of that subflow, hence multiple flow contexts or are all parent flows calling the same subflow and the flow context will always be the same. It's a tricky question to phrase, I hope it makes sense.
Example: I have a subflow that stored something in the flow context with a key named foo
. When that subflow is use multiple times from different flows, will foo
be overwritten everytime or does each subflow have its own foo
?
cheers,
Mathias