> Your code does not follow a path but instead you always search from same > node for every type in the list.
Yeah - that's kind of what I thought the intended behavior was, but now I understand. Thanks for the explanation. On Oct 5, 1:51 am, Jozef Wagner <[email protected]> wrote: > Borneos walk is a convenient wrapper > forhttp://api.neo4j.org/current/org/neo4j/graphdb/Node.html#getSingleRel..., > org.neo4j.graphdb.Direction) > > It returns exactly one node. It should be used in situations where you want > to walk from some node by following given list of relationship types. It > cannot be used in situations where node has multiple relationships of same > type. > > Your code does not follow a path but instead you always search from same > node for every type in the list. > > Jozef -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en
