I am currently learning Apache Tinkerpop. An excellent resource is the free online book PRACTICAL GREMLIN by Kelvin R. Lawrence
docker pull srasul/gremlin-console-air-routes-data:latest
docker run -it srasul/gremlin-console-air-routes-data:latest
Example
$ docker run -it srasul/gremlin-console-air-routes-data:latest
Apr 12, 2020 10:24:01 PM java.util.prefs.FileSystemPreferences$1 run
INFO: Created user preferences directory.
\,,,/
(o o)
-----oOOo-(3)-oOOo-----
plugin activated: tinkerpop.server
plugin activated: tinkerpop.utilities
plugin activated: tinkerpop.tinkergraph
gremlin> g
==>graphtraversalsource[tinkergraph[vertices:3742 edges:57574], standard]
gremlin> g.V().groupCount().by(label)
==>[continent:7,country:237,version:1,airport:3497]
Comments
Post a Comment