Hi Peter, It's a bit confusing, but we have (at least) two traverser frameworks, both of which have been around since 1.x.
The core traverser API: in the org.neo4j.graphdb package The "new" traverser API: in the org.neo4j.graphdb.traversal package Have a look at the slideware in the neo4j tutorial here for examples: https://github.com/jimwebber/neo4j-tutorial The REST API doesn't provide such rich access. If you're going to do super-badass traversals, then I'd write them in Java and expose them through the REST API as extensions (a bit like stored procs I guess): Unmanaged (JAX-RS) extensions: http://docs.neo4j.org/chunked/snapshot/server-unmanaged-extensions.html Server plugins: http://docs.neo4j.org/chunked/snapshot/server-plugins.html Jim PS - Please upgrade to 1.4.1. It's completely jar-compatible with 1.4 but better. _______________________________________________ Neo4j mailing list [email protected] https://lists.neo4j.org/mailman/listinfo/user

