Returns either the DTO itself, or the DTOs of the inner nodes of the subgraph.
()
| 118 | |
| 119 | /** Returns either the DTO itself, or the DTOs of the inner nodes of the subgraph. */ |
| 120 | getInnerNodes(): ExecutableLGraphNode[] { |
| 121 | return this.node.isSubgraphNode() ? this.node.getInnerNodes(this.nodesByExecutionId, this.subgraphNodePath) : [this] |
| 122 | } |
| 123 | |
| 124 | /** |
| 125 | * Resolves the executable node & link IDs for a given input slot. |
nothing calls this directly
no test coverage detected