stellasia / neomap

A Neo4j Desktop application to visualize nodes with geographic attributes on a map.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Use the same drop-down for properties as for the label.

jexp opened this issue · comments

For all 3 lat, lon, tooltip

Either just by calling: call dbms.propertyKeys()

Or if you want to go more fancy to only show keys by default that are in your label.

MATCH (n:$label) 
WITH n LIMIT 100 
UNWIND keys(n) as key
RETURN distinct key

Done in 0.3.1, thanks!