- nebula 版本:2.0 GA
问题描述:
如下neo4j按属性查询节点后创建边的代码,要怎么转换为nebula查询?
match (from:Label1{prop1:‘AAA’})
match (to:Label2{prop2:‘BBB’})
merge (from)-[r:edge1]->(to) set r.prop1=‘X’,r.prop2=‘Y’
nebula 目前不支持 merge语法啊, 插入数据目前只能使用insert 语句
nebula 有办法在一个查询中实现这种吗?
我目前能想到的办法只有在内存中先查出两个点,再通过代码组装为插入边的语句后入库
没错。
同问 ,怎么实现 像neo4j merge