-
Notifications
You must be signed in to change notification settings - Fork 272
Property Graph Implementations
In order to connect a graph database to Blueprints, the Blueprints property graph interfaces must be implemented. As such, the graph database API and the Blueprints API need to be coupled. Each subsection discusses the various implementations of the Blueprints property graph interfaces.
DEPENDENCY NOTE: It is important to note that including a <dependency/>
to Blueprints does not entail all the respective graph database dependencies. The reason for this is that it allows users to include only those graph database implementations they wish for their particular projects (e.g.~licensing, size, etc.). However, if all dependencies are desired, then the following <dependency/>
can be added to your project’s pom.xml
.
<dependency>
<groupId>com.tinkerpop</groupId>
<artifactId>graphdb-deps-all</artifactId>
<version>0.1-SNAPSHOT</version>
<packaging>pom</packaging>
</dependency>
This dependency includes all the TinkerPop supported/maintained graph database implementations. Finally, to tailor to particular implementations, please see the <dependency/>
snippets in the subsections that follow in this documentation.