Proper visualization in Neo4j browser but improper using Neovis in the browser

This query is working on both neo4j desktop and neovis.
"CALL
{MATCH (c:Client)-[:vendor_is]->(v:Vendor) WHERE size((v)-[:vendor_is]-(:Client)) > 1 and c.name='Fullerton'
RETURN v, collect(c) AS CommonClient
UNION ALL
MATCH (c:Client)-[:vendor_is]->(v:Vendor) WHERE size((v)-[:vendor_is]-(:Client)) > 1 and c.name='IndusInd' RETURN v, collect(c) AS CommonClient}
RETURN v,CommonClient"

Result in neo4j application -

Problem - NeoVis is not showing the relationship arrow between the label it is only showing labels of nodes

Suggestions:

  1. Try to include and return the [rel:vendor_is] relationships as well.
  2. Or use and return named paths, like in MATCH path1 = ...

Regards,
-C

1 Like