Difference between revisions of "Gremlin"

From BITPlan Wiki
Jump to navigation Jump to search
Line 8: Line 8:
 
public interface GraphTraversal<S,E> extends Traversal<S,E>
 
public interface GraphTraversal<S,E> extends Traversal<S,E>
 
</source>
 
</source>
 +
and at https://markorodriguez.com/ the Author Marko Rodriguez explains the ideas behind using an generic approach vor handling Graphs.
 
[[Category:SiGNaL]]
 
[[Category:SiGNaL]]

Revision as of 17:25, 10 January 2018

GraphTraversal

One of the core concepts of tinkerpop/gremlin is the GraphTraversal It 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.