Graph Icon not displaying i Neo4j Browser

Hello All,

I am new to this database . I am using neo4j desktop version to learn it . I executed following query.

Version 5.12.0

Blockquote
CREATE
(keanu:Person {name: 'Keanu Reever'}),
(laurence:Person {name: 'Laurence Fishburne'}),
(carrie:Person {name: 'Carrie-Anne Moss'}),
(tom:Person {name: 'Tom Hanks'}),
(theMatrix:Movie {title: 'The Matrix'}),
(keanu)-[:ACTED_IN]->(theMatrix),
(laurence)-[:ACTED_IN]->(theMatrix),
(carrie)-[:ACTED_IN]->(theMatrix)

I am not finding graph icon

That is because your query does not return anything to display. You are just creating entities. If you want to show everything, then add "return *" to the query.

1 Like