I have this:
\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{graphs, graphs.standard}
\begin{document}
\tikz
\graph [simple, nodes={draw, circle, minimum size = .5cm}, clockwise] {
subgraph C_n [name=inner, radius = 1.5cm, n=3];
subgraph C_n [name=outer, radius = 3cm, n=4];
};
\end{document}
And now I want to draw single edges from nodes of inner to nodes of outer. How do I do that?

