Hi Team
I am using Neo4j Graphene DB on Heroku, Version details for same are.
A)Neo4j Browser version: 4.0.3
B)Neo4j Server version: [3.5.17]
My question is regarding hiding/suppressing relationship between 2 nodes when displayed in graph. If there are 2-3 relationship between nodes , I am interested in displaying only specific relationship.
Ex: When i run below query i want to display only ACTED_IN relationship between node "Tom Cruise" and "Top Gun" , instead Neo4j browser showcases all available relationship between 2.
match(p:Person {name :"Tom Cruise"})-[r:ACTED_IN]->(m:Movie {title:"Top Gun"})
return p,r,m
Based on few old post on Stackoverflow , There used to be couple of option in browser to control this behavior , Namely "Auto-Complete" and "Connect all Result node". However these options are no longer available.
So , is there way to control this behavior when displaying graph on NeoBrowser and specifically when this data is pulled and presented in different web page pulling data from Neo4j DB.
Appreciate the help.