在Updating a Vertex Property下的文档中,提到可以通过
执行“更新属性值而不向值集添加附加值”
g.V('exampleid01').property(single, 'age', 25)
在gremlin_python中,我无法运行上述查询。
我得到错误:
update_prop_overwrite = g.V().hasLabel('placeholder-vertex').property(single,'maker','unknown').next()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'single' is not defined
我该如何解决这个问题,以便我可以替换 Neptune 中的 Vertex 属性值?
如果值已经存在,则没有single
查询会将新属性值附加到属性键。