graph
graph copied to clipboard
Practical Gremlin - An Apache TinkerPop Tutorial
The sample code examples (as appropriate) should be updated to use `traversal()` by itself rather than forms of `new EmptyGraph().traversal()`
Time to update the data again.
Should add some coverage of the settings that allow the output from the Gremlin console to be color coded to the Gremlin console introduction section.
Add an example that shows how to compare a property with the contents of a sack. Something like this needs to be added. ``` gremlin> g.withSack(6).V().hasLabel('airport').as('a').where(gt('a')).by('runways').by(sack()) ==>v[8] ==>v[18] ```
I've followed the steps Chapter 7. INTRODUCING GREMLIN SERVER on setting up the gremlin console on a remote server and connected to it with ``` gremlin> :remote connect tinkerpop.server conf/remote.yaml...
Hello, my name is Levi. This book is amazing. I think that would be great if we can translate. I have forked it and create a "Spanish-translation" branch. I don't...
The book should also include a section that discusses how to connect to a Gremlin Server using the [graph-notebook](https://github.com/aws/graph-notebook) project, or indeed from any iPyhon or JupyterNotebook environment.
Throughout the book, as well as in the introduction and in the references at the very end there are links to to the official TinkerPop docs. However, a few more...
Coverage could be expanded to include simple things such as `count()` and `groupCount(`) by label as well as more interesting queries such as ``` gremlin> g.V().outE().otherV().groupCount().by(path().by(label)) ==>{[country, contains, airport]=3424, [continent,...