Gremlin-Python Connecting to existing JanusGraph
问题 I Have created a graph using gremlin console gremlin> ConfiguredGraphFactory.graphNames ==>MYGRAPH gremlin> ConfiguredGraphFactory.getConfiguration('MYGRAPH') ==>storage.backend=cql ==>graph.graphname=MYGRAPH ==>storage.hostname=127.0.0.1 ==>Template_Configuration=false gremlin> g.V().properties() ==>vp[name->SFO] ==>vp[country->USA] ==>vp[name->ALD] ==>vp[country->IND] ==>vp[name->BLR] ==>vp[country->IND] gremlin> I want to connect with MYGRAPH using gremlin-python. Can someone please tell