Neo4j-Bloodhound- Match Cypher querys between nodes

177 Views Asked by At

I am looking for a way to display the direct relation between computers without displaying the users or groups. Like for example

MATCH c=(C:Computer)-[:HasSession|:AdminTo|:CanRDP]-(n:Computer) return c

The goal is to show the possible connections to other computers based on the users and groups that have access to the computers.

Which relation is used does not matter in the end.

1

There are 1 best solutions below

2
Graphileon On

You need virtual relationships to do that in Neo4j . see https://neo4j.com/labs/apoc/4.1/virtual/virtual-nodes-rels/