Re: [Neo4j] Chyper query never ends!!

2014-05-12 Thread Michael Hunger
I think so, yes. Michael Am 12.05.2014 um 15:47 schrieb Antonio Grimaldi : > Good work, thank you very much.. > Do you know if it is a final work? > > Thanks > Antonio > > Il giorno martedì 25 marzo 2014 09:20:19 UTC+1, Antonio Grimaldi ha scritto: > i tried to execute this cypher query : >

Re: [Neo4j] Chyper query never ends!!

2014-05-05 Thread Michael Hunger
As far as I know Mattias worked on that. https://github.com/neo4j/neo4j/pull/2321 Michael Am 29.04.2014 um 15:58 schrieb Antonio Grimaldi : > Hi Michael > > do you have any suggestion about this? > > Thank you > Antonio > > -- > You received this message because you are subscribed to the Go

Re: [Neo4j] Chyper query never ends!!

2014-03-25 Thread Koen Kleingeld
and if you limit the path length ... MATCH path=(startNode)-[:CAR_MAIN_NODES_RELATION*1..4]->(endNode) for example 2014-03-25 9:20 GMT+01:00 Antonio Grimaldi : > i tried to execute this cypher query : > > StringBuilder sb = new StringBuilder("START startNode = node(269604), > endNode = node(26

[Neo4j] Chyper query never ends!!

2014-03-25 Thread Antonio Grimaldi
i tried to execute this cypher query : StringBuilder sb = new StringBuilder("START startNode = node(269604), endNode = node(269605) MATCH path=(startNode)-[:CAR_MAIN_NODES_RELATION*]->(endNode) RETURN path AS shortestPath, reduce(cost=0, rel in relationships(path) | cost + rel.edgeLength) AS to