How does Cypher in NeoVis.NEOVIS_ADVANCED_CONFIG work?
See original GitHub issueMy idea is that if the nodes belong to a community, then the edge length between them will be short. I try
relationship: {
EdgeLabel: {
[NeoVis.NEOVIS_ADVANCED_CONFIG]: {
cypher: {
length: "match (n)--(m) where n.gid=m.gid return 1000"
},
}
But it doesn’t work. Trying MATCH (n) WHERE id(n) = $id match (n)--(m) where n.gid=m.gid return 1000
doesn’t work too
Issue Analytics
- State:
- Created 2 years ago
- Comments:22
Top Results From Across the Web
NeovisConfig | neovis.js
Documentation for neovis.js. ... initialCypher: "MATCH (n)-[r:INTERACTS]->(m) RETURN n,r,m" ... The Cypher query that will get the data ...
Read more >Graph Visualization with Neo4j Using Neovis.js
This tool is Neovis.js and is used for creating JavaScript based graph ... we can run PageRank over this part of the graph...
Read more >neovis.js 2.0: Neo4j + vis.js == Graph Visualizations in The ...
It can work with/without a access to shared memory. It depends on shared_preload_libraries config. When plpgsql_check was initialized by ...
Read more >Doctor.ai with Alan and Neovis.js | by Sixing Huang - Medium
From Google's Infoboxes to Amazon Music, we can see knowledge graphs at work. In the massive healthcare industry, knowledge graphs can make medical...
Read more >Neo4j NeoVis trouble - Stack Overflow
Please check the below code.. The cypher works for me, First test with some simple cypher to test whether you are connecting to...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Also,make sure that the cypher in cypher advance block uses $id, if you don’t all the lengthes would be the same 😅
ah I see. The return needs to be a string or number, not an array