My neo4j data base is growing in complexity and I would like to perform queries so that i can see my data set visualized by only one type of relationship
I am having trouble refining the output in the neo4j console so that I only see nodes bound by one relationship instead of "(completed with 3 additional relationships)".
I have tried this query amongst others without luck:
MATCH (a)-[rel:ALL_RESOURCES]-()
WHERE rel = 'ALL_RESOURCES'
RETURN a
I would be very grateful for any help someone can provide.