In a Directed Graph, connections go only one way. Think of Twitter: If you follow a celebrity, they do not automatically follow you back. The edge has a direction.
One-way streets, web links, and dependency chains are directed graphs. An edge from to does not imply an edge from to . Directed graphs need algorithms that respect direction. You cannot always reverse a path. This distinction matters for reachability, shortest paths, and cycle detection.