CALL apoc.cypher.doIt创建动态节点的时候怎么指定多个标签?

Posted 星朝

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CALL apoc.cypher.doIt创建动态节点的时候怎么指定多个标签?相关的知识,希望对你有一定的参考价值。

下面的创建节点实例,请教一下CALL apoc.cypher.doIt如何创建多个标签?现在的方式是只能指定一个标签!

UNWIND 
[{name:"sdasdsad234fdgsasdfas33",properties:{born:1978},labels:"ables213"},{name:"ssds12ad23489gsasdfas33",properties:{born:1978,sex:"男性",age:22},labels:"label31"}] AS row
CALL apoc.cypher.doIt(‘MERGE (n:`‘ + row.labels + ‘` {name: {name}}) SET n += {properties}‘, {properties: row.properties, name: row.name}) YIELD value
RETURN 1

解决方案一:

写在set里面,set n += {properties},n:human

解决方案讨论:

@zhoujieren64 用参数的形式传递怎么写呢? 例如这个会报错:

UNWIND 
[{name:"sdasdsad234fdgsasdfas33",properties:{born:1978},labels:"ables213",labelTest:"test"},{name:"ssds12ad23489gsasdfas33",properties:{born:1978,sex:"男性",age:22},labels:"label31",labelTest:"test"}] AS row
CALL apoc.cypher.doIt(‘MERGE (n:`‘ + row.labels + ‘` {name: {name}}) SET n += {properties},n:{labelTest}‘, {properties: row.properties, name: row.name,labelTest:row.labelTest}) YIELD value
RETURN 1
原文地址:http://neo4j.com.cn/topic/5c4e7ea5cd4dafa110f1c6f1

以上是关于CALL apoc.cypher.doIt创建动态节点的时候怎么指定多个标签?的主要内容,如果未能解决你的问题,请参考以下文章

php中怎么使用call_user_func动态调用方法

如何使用 jQuery 创建元素并动态选择它们

动态作用域与this +apply和call +bind

laravel 动态添加调度器

函数的四种调用模式.上下文调用.call.apply

获取消息的动态定义