do you know how to connect all nodes of one graph to a node of another graph?
for node in messages:
graph.add_edge(graph.nodes[22], node, label="channel_of")
messages is a graph and both graphs are of the same type. graph.nodes[22], which is a channel, returns the node, but not as the node itself but as a dictionary. That is why the single message node cannot be connected to the channel. How can I create an edge between the channel and all nodes of messages?
Many thanks in advance!
