无法添加新顶点

时间:2019-04-25 01:33:11

标签: gremlin janusgraph

我正在尝试添加一个新顶点,该顶点的属性值是一个很大的字符串。 这是通过使用gremlin_python。 示例代码:

vertex = g.addV(label).next()
res = g.V(vertex).property('key', 'this_is_a_huge_string')

1 个答案:

答案 0 :(得分:1)

我感觉到您的问题是您没有迭代第二遍遍:

vertex = g.addV(label).next()
res = g.V(vertex).property('key', 'this_is_a_huge_string').next()

请注意,最好将其写为以下单个语句:

vertex = g.addV(label).property('key', 'this_is_a_huge_string').next()