Is it possible to have two mindmaps that share children? This is what I would like to have:
Concept 1 is blue, and has some children. Concept 2 is red, and has some children. Concept 1 and two share one child, which is purple.
And this is what I have so far: Concept 1 is blue, and has some children. Concept 2 is blue, and has some children.
\begin{tikzpicture}[small mindmap,concept color=blue!80]
\node [concept] {Root concept 1}
child[clockwise from=270] {node[concept] {child}}
child[clockwise from=270] {node[concept] {child}};
\node [concept] at (5,0) {Root concept 2}
child[clockwise from=225] {node[concept] {child}}
child[grow=0 ] {node[concept] {child}};
\end{tikzpicture}

