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

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


    public default <E2> GraphTraversal<S, Map<String, E2>> select(final Function... stepFunctions) {
        return this.select(Collections.emptyList(), stepFunctions);
    }

    public default <E2> GraphTraversal<S, E2> select(final String label, Function stepFunction) {
        return this.addStep(new SelectOneStep(this, label, stepFunction));
    }
View Full Code Here

TOP

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

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.