Is it possible to get the adjacency matrix of a graph in Neo4j? Or do I need to build it myself?

Thanks!

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Neo4j is linking nodes directly, so there is no global concept of data, everything is local. You would need to touch at least all relationships to build that matrix I think, then keep it updated be maybe hooking into the transaction events for mutating operations, see the docs and Java API

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.