标签: neo4j cypher
如何使用Cypher查询向现有节点添加标签?
答案 0 :(得分:67)
在参考文档中,请参阅http://docs.neo4j.org/chunked/stable/query-set.html#set-set-a-label-on-a-node,您需要使用set向现有节点添加标签:
set
match (n {id:desired-id}) set n :newLabel return n