Neo4j MERGE Statement Syntax Error: Missing Comma Between Parameters
There seems to be a missing comma between the two parameters passed to the MERGE statement. The corrected code would be:
session.run('MERGE (s:'+triple['subject']['label']+' {name: $subject1, subject: $subject2})', subject1=triple['subject']['text'], subject2=triple['subject']['subject'])
原文地址: https://www.cveoy.top/t/topic/ouMm 著作权归作者所有。请勿转载和采集!