Re: [Neo4j] Best way to find all the relationships between nodes which in a list

2011-07-22 Thread Peter Neubauer
Hi there, Cypher does not let you address the ID directly (yet) in the where parts. Michael, Andres, WDYT of supporting it? Cheers, /peter neubauer GTalk:      neubauer.peter Skype       peter.neubauer Phone       +46 704 106975 LinkedIn   http://www.linkedin.com/in/neubauer Twitter      http://

[Neo4j] Best way to find all the relationships between nodes which in a list

2011-07-19 Thread Jingex
Hi all, In a case we have several people, name:"Mike","Jack","John", as their node id are:1,2,3 We want to find out all the relationships between them. Use Cypher, the query like this: start n = (1,2,3) mathch (n)-[r]-(people) where people.name = "Mike" or people.name = "Jack" or people.n