Difference between revisions of "Gremlin"

From BITPlan Wiki
Jump to navigation Jump to search
Line 4: Line 4:
 
One of the core concepts of tinkerpop/gremlin is the  
 
One of the core concepts of tinkerpop/gremlin is the  
 
[http://tinkerpop.apache.org/javadocs/3.2.5/core/org/apache/tinkerpop/gremlin/process/traversal/dsl/graph/GraphTraversal.html GraphTraversal]
 
[http://tinkerpop.apache.org/javadocs/3.2.5/core/org/apache/tinkerpop/gremlin/process/traversal/dsl/graph/GraphTraversal.html GraphTraversal]
It has a generic definition as:
+
It's interface has a generic definition as:
 
<source lang='java'>
 
<source lang='java'>
 
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 [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]
 
[[Category:SiGNaL]]
 
[[Category:SiGNaL]]

Revision as of 17: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