krlawrence / graph

Practical Gremlin - An Apache TinkerPop Tutorial
Apache License 2.0
836 stars 253 forks source link

Add coverage of `traversal().withGraph(...)` #201

Open krlawrence opened 4 years ago

krlawrence commented 4 years ago

Since version 3.3.5 you can replace

graph = TinkerGraph.open()
g = graph.traversal()

with

 g = traversal().withGraph(TinkerGraph.open())
krlawrence commented 1 year ago

See also issue #259