Skip to content
okram edited this page Jan 26, 2013 · 326 revisions

Gremlin is a graph traversal language. The documentation herein will provide all the information necessary to understand how to use Gremlin for graph query, analysis, and manipulation. Gremlin works over those graph databases/frameworks that implement the Blueprints property graph data model. Examples include TinkerGraph, Neo4j, OrientDB, DEX, InfiniteGraph, Titan, Rexster, and Sail RDF Stores. Gremlin is a style of graph traversal that can be used in various JVM languages. This distribution of Gremlin provides support for Java and Groovy. Except where otherwise stated, the documentation herein is respective of the Groovy implementation (minor syntactic tweaks are required to map the ideas over to other JVM implementations).

Please join the Gremlin users group at http://groups.google.com/group/gremlin-users for all TinkerPop related discussions. 1

g = new Neo4jGraph('/tmp/neo4j')

// calculate basic collaborative filtering for vertex 1
m = [:]
g.v(1).out('likes').in('likes').out('likes').groupCount(m)
m.sort{-it.value}

// calculate the primary eigenvector (eigenvector centrality) of a graph
m = [:]; c = 0;
g.V.out.groupCount(m).loop(2){c++ < 1000}
m.sort{-it.value}


The Graph Traversal Programming Pattern (Presentation of Basic Graph Traversal Concepts)
On the Nature of Pipes (Understand the Gremlin Engine)
Gremlin Tutorial 1 (Screencast of Gremlin 0.7)
Gremlin Tutorial 2 (Presentation of Gremlin 1.1)


<!-- * can be java, groovy, or test -->
<dependency>
   <groupId>com.tinkerpop.gremlin</groupId>
   <artifactId>gremlin-*</artifactId>
   <version>2.2.0</version>
</dependency>

Non-Maven users can get the raw jars from Apache’s Central Repository.

1 Gremlin documentation is up to date with the current Gremlin codebase, not with the latest Gremlin release.
For previous javadocs, use the following URL schema: http://tinkerpop.com/docs/javadocs/gremlin/${version}
For previous wikidocs, use the following URL schema: http://tinkerpop.com/docs/wikidocs/gremlin/${version}/Home.html