Difference between revisions of "Gremlin"
Jump to navigation
Jump to search
Line 9: | Line 9: | ||
</source> | </source> | ||
and at https://markorodriguez.com/ the Author [https://www.linkedin.com/in/markorodriguez Marko Rodriguez] explains the ideas behind using an generic approach vor handling Graphs. | and at https://markorodriguez.com/ the Author [https://www.linkedin.com/in/markorodriguez Marko Rodriguez] explains the ideas behind using an generic approach vor handling Graphs. | ||
− | The [https://github.com/apache/tinkerpop/blob/master/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/dsl/graph/GraphTraversalSource.java Java implementation is available on github | + | The [https://github.com/apache/tinkerpop/blob/master/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/dsl/graph/GraphTraversalSource.java Java implementation] is available on github. |
[[Category:SiGNaL]] | [[Category:SiGNaL]] |
Revision as of 16:35, 10 January 2018
GraphTraversal
One of the core concepts of tinkerpop/gremlin is the GraphTraversal It's interface has a generic definition as:
public interface GraphTraversal<S,E> extends Traversal<S,E>
and at https://markorodriguez.com/ the Author Marko Rodriguez explains the ideas behind using an generic approach vor handling Graphs. The Java implementation is available on github.