In neo4j, how can I display multiple properties on graph? For example if I need to display a person's name and birth_year.
When I run this query MATCH (p:person) RETURN p.person_id, p.birth_year LIMIT 25
it shows data in tabular format in the neo4j browser. If I click on graph it says "No graph view available. You have to RETURN nodes, relationships or paths to see a graph visualization."
Any suggestions?