Re: [Neo] Searching 'links', based on their attributes ? [SOLUTION]

2009-08-01 Thread Mattias Persson
Allright I think the reason you aren't getting any answers is that a traverser doesn't visit the same node twice during its lifetime. So if the traverser is traversing from world to n3 it won't follow the KNOWS relationship to n2 since you specified only OUTGOING such relationship in the

Re: [Neo] Searching 'links', based on their attributes ? [SOLUTION]

2009-07-31 Thread sebastien nichele
Mattias, Ok well, after a little bit of greymatter work, I finally got it. I didn't realized that links provides reachability of the nodes, not filtering of the nodes. Since all nodes are linked to a root node, i can reach all nodes by traversing from rootnode only on CONTAINS links. I have