Let's look at features that graphs or digraphs have before viewing some special types of graphs.
The directed edge is $(\color{red}{1},\color{blue}{2})$. Vertex $\color{red} 1$ is the initial vertex, and vertex $\color{blue} 2$ is the terminal vertex. Miriam Briskman, CC BY-NC 4.0.
\documentclass[border=1pt]{standalone}
\usepackage{tikz}
\usetikzlibrary{arrows.meta}
\tikzset{
vertex/.style={draw, circle, very thick, minimum size=1cm},
edge/.style={very thick, -Triangle}
}
\begin{document}
\begin{tikzpicture}
\node[vertex, dotted, red] (v1) at (0,0) {1};
\node[vertex, dashed, blue] (v2) at (4,0) {2};
\draw[edge] (v1) -- (v2);
\end{tikzpicture}
\end{document}