Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

String query1 =  "START a=node:node_auto_index(name=\"A\") , 

m=node:node_auto_index(name=\"M\"), b=node:node_auto_index(name=\"G\") MATCH 

p=a-[*]-b-[*]-m  " +  WHERE ALL(r in RELS(p) WHERE r.value >= 200) " 

+   "   WITH a, m, MIN(LENGTH(p)) AS l  MATCH p=a-[*]-b-[*]-m WHERE ALL(r 

 in RELS(p) WHERE r.value >= 200)" + "   AND LENGTH(p)=l RETURN p order by      length(p) desc ";//limit 2

ExecutionResult eResult = exEngine.execute(query1);

I am using above query to get all paths between two nodes. how can I iterate over returning RelationShips.

share|improve this question

3 Answers

up vote 0 down vote accepted

This looks like a duplicate of Neo4j Cypher: How to iterate over ExecutionResult result. See if that post answers your question.

share|improve this answer
exEngine.execute(query) has been deprecated. – user1718956 Oct 5 '12 at 2:47

I did it using following approach, the link posted above helped.

final Iterator rels = eResult.columnAs("p");

        while (rels.hasNext()){
            Path path = rels.next();

            Iterable<Relationship>  relationships = path.relationships();
            java.util.Iterator<Relationship> relIterator = relationships.iterator();
            while (relIterator.hasNext()){
                Relationship rel = relIterator.next();
                String aNode = (String) rel.getStartNode().getProperty("name");
                String zNode = (String) rel.getEndNode().getProperty("name");
                Long value = (Long) rel.getProperty("value");
                System.out.println(aNode +" is connected to "+zNode + " with value "+value);


            }

        }
    </code>
share|improve this answer

You can just return rels(p) as rels to just return the relationships. Or nodes(p) ftm.

If you are just interested in the names of the nodes of the path use extract.

return extract(n in nodes(p) : n.name) as names
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.