Registry / database / gremlin-core

gremlin-core

JSON →
library3.8.0javamavenunverified

Core library for the Apache TinkerPop graph computing framework, providing the Gremlin graph traversal language.

<dependency> <groupId>org.apache.tinkerpop</groupId> <artifactId>gremlin-core</artifactId> <version>3.8.0</version> </dependency>
INSTALL
IMPORT
SIG · GREMLIN-CORE
G
gremlin-core
databasejavav3.8.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

GraphTraversalSource
org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversalSource

Create an in-memory graph and add a vertex

import org.apache.tinkerpop.gremlin.structure.Graph; import org.apache.tinkerpop.gremlin.tinkergraph.structure.TinkerGraph; import org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversalSource; Graph graph = TinkerGraph.open(); GraphTraversalSource g = graph.traversal(); g.addV("person").property("name", "marko").iterate(); System.out.println(g.V().has("name", "marko").next());
Debug
Known issues
breakingGremlin 3.8.0 may have breaking changes from earlier versions in traversal strategies.
fix
Review migration guide when upgrading from 3.7.x or earlier.
affects: >=3.8.0
Upgrade
Version history
3.8.0latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
12 hits · last 30 days
node
12
Resources
gremlin-core — mvn dependency:get gremlin-core · libregistry