How to stop moving nodes in Neo4j?

I am using Neo4j with the webadmin interface.

When I run the query, I display nodes and relationships graphically. However, whenever I move a node, other nodes connected to it also move. How can I stop this force-gravity effect?

Many thanks

+7
database neo4j graph-databases relationship nodes
source share
1 answer

It is not possible to disable this behavior, especially in the browser, although when you manually move the node, it becomes β€œattached” to this location, so it will not move when its neighbors do.

If you think you will find more control over node movements, you can always raise a question or pull out a request on GitHub.

0
source share

All Articles