简体   繁体   中英

How return a query in Neo4j with graph?

My code is a there but I can't see the tab Graph

Please help me, if its possible!

MATCH (a1:Article)-->(p:KeyWords)<--(a2:Article)
WHERE a1.id <> a2.id
RETURN a1.title, a2.title

The graph only shows if you're returning nodes. You're returning properties of nodes, but not the nodes themselves. Try returning a1, a2.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM