Package com.tinkerpop.gremlin.process.graph.step.sideEffect

Examples of com.tinkerpop.gremlin.process.graph.step.sideEffect.StartStep


     * @return a fluent Gremlin traversal
     */
    public Neo4jTraversal cypher(final String query, final Map<String, Object> parameters) {
        this.tx().readWrite();
        final Neo4jTraversal traversal = Neo4jTraversal.of(this);
        traversal.addStep(new StartStep(traversal, new Neo4jCypherIterator(this.cypher.execute(query, parameters).iterator(), this)));
        return traversal;
    }
View Full Code Here

TOP

Related Classes of com.tinkerpop.gremlin.process.graph.step.sideEffect.StartStep

Copyright © 2018 www.massapicom. 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.