DataStax Studio:更新节点的整数属性
DataStax Studio : Update an integer property of node
我们有一个顶点,它有一个 属性 类型的 int 并且当我尝试为那个节点更新 属性 时
g.V().hasLabel("business").hasNot("authenticityScore").properties("authenticityScore",0).iterate()
此查询未更新记录。
从 Datastax studio 更新 int 值时是否需要注意任何类型转换
该语法不正确。 properties()
步骤从图形元素(例如顶点)获取属性列表,但是 property()
设置了一个 属性 键和值,因此您的遍历应写为:
g.V().hasLabel("business").hasNot("authenticityScore").
property("authenticityScore",0).iterate()
我们有一个顶点,它有一个 属性 类型的 int 并且当我尝试为那个节点更新 属性 时
g.V().hasLabel("business").hasNot("authenticityScore").properties("authenticityScore",0).iterate()
此查询未更新记录。
从 Datastax studio 更新 int 值时是否需要注意任何类型转换
该语法不正确。 properties()
步骤从图形元素(例如顶点)获取属性列表,但是 property()
设置了一个 属性 键和值,因此您的遍历应写为:
g.V().hasLabel("business").hasNot("authenticityScore").
property("authenticityScore",0).iterate()