使用titan + cassandra DB中的gremlin scala更新边缘属性值

时间:2016-09-28 05:40:28

标签: scala graph-databases titan gremlin gremlin-server

我正在尝试使用gremlin scala更新传出边缘(outE)的边缘属性值。

环境: 泰坦+卡桑德拉

graph.V().outE().properties("Id","100").iterate()

以上不起作用。有没有其他方法来更新edge属性值。

1 个答案:

答案 0 :(得分:2)

您有一个小错误。您的遍历正在进行查找。要将属性添加到所有边,请执行以下操作:

graph.traversal().V().outE().property("Id","100").iterate();

property变异。 properties进行查找。更多信息here