I thought that the following two graphs are the same.
\documentclass[tikz]{standalone}
\usetikzlibrary{graphs}
\begin{document}
\tikz\graph{1--{2,3}};
\tikz\graph{1--[]{2,3}};
\end{document}
But they result
and
.
It is supposed to be so? I found this because I need to insert some edge options like [red,thick]. But usually I create empty nodes like \tikz\graph{/--[foobar]{/,/}}; to make it short. Any alternatives?

