Select Model Elements - run graph one element at a time

My graph begins with selecting a model element. The graph will run when using Select Model Element node to select one element.
It does not run when using Select Model Elements.
Is there a way to select multiple elements and then have the graph run one element at a time?

This just means that you have a list structure or lacing issue. We need to see your graph to determine more.

1 Like

The only way to run an entire function across an element in sequence is to put it into a node or Python script, then instruct the code to work either across each input in Python, or @L1 for the input to the custom node as far as I’m aware. Otherwise it will work across each element node by node.

I ended up saving my working graph as a custom node and placing the ‘Select model elements’ node before the custom node. Thanks for the replies to this thread!