Browser showing extra information?

I'm not sure how or why this happen, but when I run a query in the Neo4J browser, I keep getting extra data in the graph. For example, if i query something like:

match (a:Alpha) -[tb:TO_BRAVO]-> (b:Bravo) -[tc:TO_CHARLIE]-> (c:Charlie) -[td:TO_DELTA]-> (d:Delta) return *

I get a graph that also includes a relationship of type ALPHA_DELTA that connects the Alpha node to Delta nodes. But I'm not asking for that relationship and when I look at the data, text or code tabs, I don't see ALPHA_DELTA in there at all. Yet, the browser is graphing that relationship and I don't know why. It makes it hard to validate that I'm only getting expected data as a result of the query.

Ah, I found it. It's a preference: Connect result nodes -- have to turn that off.

2 Likes