【发布时间】:2017-07-05 07:13:42
【问题描述】:
我用过这个查询
g.V().has('empId','123').as('a').V().has('deptId','567').addE('worksAt').properties('startedOn','17/15/07','title','manager','pay',15000)
这不起作用。
使用.property 步骤添加单个属性
g.V().has('empId','123').as('a').V().has('deptId','567').addE('worksAt').property('startedOn','17/15/07')
【问题讨论】:
标签: titan gremlin tinkerpop tinkerpop3