Difference between revisions of "Gremlin"
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: | |
+ | <source lang='java'> | ||
+ | public interface GraphTraversal<S,E> extends Traversal<S,E> | ||
+ | </source> | ||
[[Category:SiGNaL]] | [[Category:SiGNaL]] |
Revision as of 16:23, 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>