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

Examples of com.tinkerpop.gremlin.process.graph.step.map.EdgeOtherVertexStep


    public default GraphTraversal<S, Vertex> bothV() {
        return this.toV(Direction.BOTH);
    }

    public default GraphTraversal<S, Vertex> otherV() {
        return this.addStep(new EdgeOtherVertexStep(this));
    }
View Full Code Here

TOP

Related Classes of com.tinkerpop.gremlin.process.graph.step.map.EdgeOtherVertexStep

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.