Hello! Have been exploring neo4j for the last few months, I am trying to have a visualization for our lab devices using Go bolt driver to connect to Neo4j DB and D3.js for UI.
When we have thousands of devices, it's practically not possible to show a...
Have a graph like below, need to find all the paths count from each A to connected C.
How to achieve this?
Expecting below results for the above graph:
A,C,2 (first A,C)
A,C,3 (second A,C)
I have a group of nodes connected like this:
Within a group, each of the nodes will be connected to similar nodes by 1 or more hops.
I need to get a group members separately ? Not really worried about how they are connected, as long as they are conn...
I have very huge data with these kinds of network relationships, showing a simplistic view:
The requirement is to show the high level nodes with the connectivity as pairs.
If I want to show only of Label types (A,D,E), need to return like this:
[A, ...
Based on the given input need to skip the specific nodes and continue with the nodes connected to them.
To simplify, say I have nodes like this:
A->B->C->D->E
I should query this graph in the following way:
if my input is B and C, I should skip B and...
Thank you @andrew.bowman ! One more query on similar lines, I have a relationship property called health for each, while finding the path between each A and C, I also need to find the overall health.
In the same graph, the relationship between A and...
Thank you @andrew.bowman , this will return the overall count.
In my case I have 2 As and 2Cs (They will be connected via some other nodes and relationships, just for the simplicity I have shown as disconnected).
I need to know path count for first A...
Thank you @Cobra for helping.
Actually all these nodes are not directly connected... there may be some other nodes and relationships in between them, how do we specify them in the WWC query?
I have below nodes and relationships:
create(d:Label{name:"...
Hi @koji, I tried your query as you suggested, my requirement is to send the nodes in a pair like below.
A-B-C-D-E
if my input is B and D, I need to send (A, C), (C, E).
I tried to code this way, is this correct?
create(a:Label{name:"A", id:1})-[r1:C...