mixnix
mixnix

Reputation: 465

Can you edit node/relationship from UI level in neo4j browser?

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.

Upvotes: 0

Views: 741

Answers (2)

greg_data
greg_data

Reputation: 2293

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.

https://neo4j.com/developer/cypher/updating/

Upvotes: 0

Thennan
Thennan

Reputation: 898

Neo4j Browser doesn't have an option to edit the graph from the UI, but Neo4j Bloom does - Edit graph data

Upvotes: 3

Related Questions