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

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


    public default GraphTraversal<S, E> groupCount() {
        return this.groupCount(null, null);
    }

    public default GraphTraversal<S, Vertex> addE(final Direction direction, final String edgeLabel, final String stepLabel, final Object... propertyKeyValues) {
        return this.addStep(new AddEdgeStep(this, direction, edgeLabel, stepLabel, propertyKeyValues));
    }
View Full Code Here

TOP

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

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.