I made two node and one relationship
node: Person(Sally, John) and book(gdp) relation: HAS_READ
and I wanted to see "sally-HAS_READ->gdp", "John-HAS_READ->gdp
but when I wrote MATCH p=(n:Person)-[r:HAS_READ]->() RETURN n,p LIMIT 25
then there is only (no changes, no records)
If I wrote MATCH p=()-[r:HAS_READ]->() RETURN p LIMIT 25
, then I can see entire entities and relation edge but entities was not clear. I can't figure out which one is john or sally, it was just gray color.
If I want to clear entity and relation edges, How could I do?
ex) John -HAS_READ->gdp
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…