Store Gremlin graph in local DynamoDB

后端 未结 2 574
旧巷少年郎
旧巷少年郎 2020-12-21 03:50

Instead of using AWS, I am using its local available DynamoDB database and creating a graph in the Gremlin console.

My PC is using Gremlin-version=3.0.1.incuba

2条回答
  •  爱一瞬间的悲伤
    2020-12-21 04:32

    You are attempting to commit your traversal g. You should be attempting to commit your graph like so: graph.commit().

    g is the traversal which is initialised as such: g = graph.traversal() and it cannot be committed.

提交回复
热议问题