I would like a more advanced graph generator and with good graphical interface.
Do you know where I can get one?
Otherwise I will start creating one myself.
Hi klug,
I hope this snippet of query can help you:
with obj.Id as keyName
match (n)
where n[keyName] is not null
with n,keyName,n[keyName] as value
with apoc.map.fromPairs([[keyName,value]]) as ns
return ns
Hi,
Maybe this give you some answers to your question.
stackoverflow.com
How to embed neo4j browser result visualisation in web application
javascript, neo4j
asked by
fiedl
on 02:39PM - 06...
To accomplish this I've to create a temporarily CHILD relation.
Didn't find any apoc that can create a virtual paths from nodes. Which would be a better solution.
To rerun the solution you have to delete the child relations at the beginning ohterwise...
Hi,
To begin with you could try this procedure:
Neo4j Graph Database Platform
apoc.convert.toTree - APOC Documentation
This section contains reference documentation for the apoc.convert.toTree procedure.
...