Is it possible to edit nodes from GUI level in neo4j browser? I want to make MATCH query which returns some nodes and then edit them using UI. Just like you can do it in many SQL databases clients, where you SELECT some data, edit some rows by hand and commit changes to database.
Asked
Active
Viewed 260 times
2 Answers
3
Neo4j Browser doesn't have an option to edit the graph from the UI, but Neo4j Bloom does - Edit graph data

Thennan
- 788
- 5
- 13
0
What you're describing is a WYSIWYG type experience, which some RDBMS GUIs offer, but is usually not the most efficient nor safe way of updating your data.
If you want to edit the data in your database, you would have to use Cypher CREATE
or UPDATE
statements.

greg_data
- 2,247
- 13
- 20