I'm trying to make a graph like this, but I have not been able to draw the curved arrow in the center.
Here is what I have:
\begin{figure}
\centering
\begin{tikzpicture}
%% vertices
\draw[fill=black] (0,0) circle (3pt);
\draw[fill=black] (1,0) circle (3pt);
\draw[fill=white] (2,0) circle (3pt);
\draw[fill=black] (3.3,0) circle (3pt);
\draw[fill=black] (4.3,0) circle (3pt);
\draw[fill=white] (5.3,0) circle (3pt);
\draw[fill=white] (6.6,0) circle (3pt);
\draw[fill=white] (7.6,0) circle (3pt);
\draw[fill=black] (8.6,0) circle (3pt);
%% vertex labels
\node at (0, .8) {1};
\node at (0, -.3) {x};
\node at (1, -.3) {y};
\node at (2, -.3) {z};
\node at (3.3, .8) {2};
\node at (3.3, -.3) {x};
\node at (4.3, -.3) {y};
\node at (5.3, -.3) {z};
\node at (6.6, .8) {3};
\node at (6.6, -.3) {x};
\node at (7.6, -.3) {y};
\node at (8.6, -.3) {z};
%%% edges
\draw[thick] (0,0) -- (1,0) -- (1.9,0);
\draw[thick] (3.3,0) -- (4.3,0) -- (5.2,0);
\draw[thick] (6.7,0) -- (7.5,0);
\draw[thick] (7.7,0) -- (8.6,0);
\end{tikzpicture}
\caption{Existe una jugada entre el tablero 1 y el tablero 3.}
\end{figure}
Which looks like this:



edge[bend left=45, -stealth]– AndréC Nov 22 '21 at 17:42