I read the docs and learned that when you connect GraphNodes together, the GraphEdit keeps a list of the connections which can be accessed by
get_connection_list()
The documentation shows the array:
{ from_port: 0, from: "GraphNode name 0", to_port: 1, to: "GraphNode name 1" }
I don't know what kind of array this is. It doesn't seem to be a dictionary. I can't find any more info on what kind of array this is or how to access it's elements.
How does it work, or where it's documented?