How could I draw this directed graph using LaTeX?
I know the following code:
\documentclass[12pt]{article} \usepackage{tikz} \usetikzlibrary{graphs,graphs.standard} \tikzgraphsset{declare={polygon_n}{[clique]\foreach\x in\tikzgraphV{\x/}}} \begin{document} \begin{center} \tikz\graph[clockwise, nodes={circle, node distance=4cm, fill=blue, inner sep=1}] { polygon_n[n=5] }; \end{center} \end{document} Thanks.

