Right now if I need to access a particular item from a node execution list, I’ll have to include a function node that adds the required attribute by accessing $items and then use the set attribute.
It would be helpful to have $items directly in expressions so that I can call $items(0).node[‘MyUpstreamNode’].data
An example use case is using the authentication code token fetched in one web request with each of the web requests from the list. Right now only the first one passes and everything else fails.