我正在尝试从 csv 文件中读取数据并将它们设置为 Neo4J 数据库中现有节点的动态属性。我正在使用 setProperty 过程,因为我不知道数据(属性的名称和值)。这是我的密码脚本:
USING PERIODIC COMMIT
LOAD CSV WITH HEADERS FROM "file:\\Attribute.csv" AS row
MATCH (linkableArtifact:LinkableArtifact {linkableArtifactID: row.linkable_artifact})
CALL apoc.create.setProperty(linkableArtifact, row.attribute_name, row.attribute_value)
YIELD node
RETURN COUNT(node)
只要row.attribute_value
不为空,它就可以工作。然后我收到以下错误:
Failed to call procedure `apoc.create.setProperty(nodes :: ANY?, key :: STRING?, value :: ANY?) :: (node :: NODE?)`: [null] is not a supported property value
有没有办法检查row.attribute_value
然后决定是否调用该程序?