Hello,
As per the screenshot -
My query is -
MATCH (n)-[*]-(find) WHERE find.name =~'(?i).*Success.*' RETURN n,r,find
Here, we get all the nodes that are connected to Success, till 3 levels of Relationships. However, we want Label/Relationsh...
Hi,
I have around 15,500 nodes stored in my graph database and i display all of them through the cypher query -
MATCH (n)-[r]->(m) RETURN n,r,m;
And the visualization appeared is this through Neovis-
But it took around 45 minutes to upload and sin...