Let's say I create the following node with a single component
node "Node1" {
[Component1]
}
But later, I want to modify the Node with another component (and let's say I want to do this programmatically), is it possible for me to modify Node1 outside of it's context?
Something like:
[Node1].add([Component2])
How close could I get to this level of functionality?