Get the 'successors' from 'edges'

I’m confused about HOW get the ‘successors’ of the ‘dst’ of the ‘edges’ when given the ‘EDGES’ in “def message_func(self, edges):”

How about

def message_func(self, edges):
    src, dst, eid = edges.edges()
    # Assume we can access the graph via self
    self.g.successors(dst)
1 Like