graph icon indicating copy to clipboard operation
graph copied to clipboard

Practical Gremlin - An Apache TinkerPop Tutorial

Results 89 graph issues
Sort by recently updated
recently updated
newest added

The sample code examples (as appropriate) should be updated to use `traversal()` by itself rather than forms of `new EmptyGraph().traversal()`

New Gremlin features
improvements

Time to update the data again.

enhancement
Fixed
v283

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.

enhancement

Fix typo "upon on" in the flatMap section

corrections
Fixed
v283

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] ```

Fixed
improvements
additional-examples
v283

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...

question
improvements
fix-in-second-edition

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...

translations
spanish

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.

enhancement
improvements
fix-in-second-edition

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...

enhancement
fix-in-second-edition

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,...

enhancement
improvements
fix-in-second-edition