nx_arangodb.DiGraph.successors
- DiGraph.successors(n)[source]
Returns an iterator over successor nodes of n.
A successor of n is a node m such that there exists a directed edge from n to m.
Parameters
- nnode
A node in the graph
Raises
- NetworkXError
If n is not in the graph.
See Also
predecessors
Notes
neighbors() and successors() are the same.