Package com.tinkerpop.gremlin.neo4j.structure

Examples of com.tinkerpop.gremlin.neo4j.structure.Neo4jGraph


        this(traversal, query, new HashMap<>());
    }

    public Neo4jCypherStep(final Traversal traversal, final String query, final Map<String, Object> parameters) {
        super(traversal);
        final Neo4jGraph graph = (Neo4jGraph) traversal.sideEffects().getGraph();
        final ExecutionEngine cypher = Neo4jHelper.getCypher(graph);
        this.setFunction(traverser -> {
            final S s = traverser.get();
            parameters.put(START, s);
            final ExecutionResult result = cypher.execute(query, parameters);
View Full Code Here

TOP

Related Classes of com.tinkerpop.gremlin.neo4j.structure.Neo4jGraph

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.