From fd00c18d15c634879214ce82cbc8122388993f6a Mon Sep 17 00:00:00 2001 From: Tomek <tomek@rojek.cc> Date: Thu, 5 Oct 2017 16:47:19 +0200 Subject: [PATCH] add information about support JanusGraph --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2559d09a..fd787b29 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,7 @@ with the Ferma engine. Ferma also supports any of the many databases compatible with TinkerPop including the following. + * [JanusGraph](http://janusgraph.org/) * [Titan](http://thinkaurelius.github.io/titan/) * [Neo4j](http://neo4j.com) * [OrientDB](http://www.orientechnologies.com/orientdb/) @@ -71,7 +72,7 @@ To include Ferma in your project of choice include the following Maven dependenc <version>3.2.1</version> </dependency> ``` - + ## Getting Started @@ -148,14 +149,14 @@ provide type resolution. Basically the type of object you use when adding to the reading from the graph. Say we extend the Person class with the Programmer class. - + ```java public class Programmer extends Person { } ``` - + Using simple mode will save the type of Java class the element was created with for use later: - + ```java public void testSimpleTyping() { Graph graph = TinkerGraph.open(); -- GitLab