如何在 Gremlin 上更新多个顶点属性?
我想在顶点上添加多个属性。我可以这样做:
g.v(1).firstname='Marko'
g.v(1).lastname='Rodriguez'
但是如何在单个查询中使用以下哈希 {firstname:'Marko', lastname:'Rodriguez'} 添加这些属性?
I want to add several properties on a vertex. I could do:
g.v(1).firstname='Marko'
g.v(1).lastname='Rodriguez'
But how to add these properties with the following hash {firstname:'Marko', lastname:'Rodriguez'} in a single query?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以构造一个可以工作的 SideEffect 管道。在简单的情况下,执行以下操作:
或者,如果您只需要在一个节点上工作并拥有映射,则可以使用映射的
each
方法:或者您可以在管道内部执行此操作,其中你有一个包含你想要设置的值的哈希值。我们将再次使用 sideEffect 管道。因为闭包内有一个闭包,所以我们需要将第一个闭包中的
it
值别名为其他值,在本例中是tn
,“this node”的缩写,因此可以在第二个闭包中访问它。:这将产生以下结果:
此方法的一个潜在问题是您需要记住顶点 id 是字符串,而不是整数,因此请确保正确引用它们。
You can construct a SideEffect pipe that would work. In the simple case, do this:
Alternatively, if you need to work on just one node and have the map you can use the
each
method of a map:Or you could do this inside of a pipe where you have a hash with values you wish to set. Once again, we'll use the sideEffect pipe. Because there is a closure inside of a closure we need to alias the value of
it
from the first closure to something else, in this casetn
, short for "this node", so it is accessible in the second closure.:This will yield the following:
One potential gotcha with this method is that you need to remember that vertex id's are strings, not integers, so make sure to quote them appropriately.