neo4j电影示例,将所有节点标题更改为节点名称

时间:2013-05-23 20:03:41

标签: graph neo4j

我的数据库中有很多演员和电影。电影有标题,我想将所有标题作为属性名称的属性转换为“名称”。想通过密码做到这一点。谢谢!

1 个答案:

答案 0 :(得分:3)

start n=node(*)
where has(n.title)
set n.name = n.title
delete n.title
return count(*);