Introduction to Gremlin
Explore Gremlin, the imperative graph traversal language used across many graph databases. Understand its relationship with TinkerPop and TinkerGraph and learn to implement Gremlin queries within Elixir using a custom TinkerGraph service.
We'll cover the following...
We'll cover the following...
Direct graph traversal
Cypher and SPARQL are the two main declarative query languages for graphs, but for directly traversing graphs, perhaps the best-known language used by graph databases is Gremlin. As an imperative language, ...