Examples of columnAs()


Examples of org.neo4j.cypher.javacompat.ExecutionResult.columnAs()

      ExecutionEngine engine            = (ExecutionEngine) new ExecutionEngine(graphDb);
     
      try (final Tx tx = app.tx()) {
       
        ExecutionResult result            = engine.execute("start n = node(*) match (n)<-[r:ONE_TO_ONE]-() return r");
        final Iterator<Relationship> rels = result.columnAs("r");

        assertTrue(rels.hasNext());

        rels.next().delete();
       
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.