[Neo4j] UnsupportedOperationException on RestNode.traverse

2011-11-29 Thread e0d
Upon migrating my graph database from an embedded one to a neo4j server instance, I'm getting an UnsupportedOperationException calling traverse on a RestNode. Given that the body of the implementation in RestNode is: throw new UnsupportedOperationException(); this isn't a big surprise.

Re: [Neo4j] UnsupportedOperationException on RestNode.traverse

2011-11-29 Thread Michael Hunger
traverse on the nodes is the old traverser API which is not supported there. please use restgraphdatabase.traversal() to create a RestTraversalDescription. Michael mobile mail please excuse brevity and typos Am 30.11.2011 um 03:58 schrieb e0d edward.zarecor+ne...@alleyoop.com: Upon