py2neo.database.status.CypherSyntaxError:输入'O'无效:预期't / T'

时间:2017-03-03 08:56:44

标签: neo4j

这是我试图在Neo4j 3.1.1版中运行的查询 这个查询出了什么问题?

CREATE (ee:officers { name: KIM SOO IN, icij_id: E72326DEA50F1A9C2876E112AAEB42BC, 
 valid_until: The Panama Papers data is current through 2015,
 country_codes: KOR, countries: South Korea, sourceID: Panama Papers, 
 note: , node_id: 12000001 })

请帮我纠正查询。

1 个答案:

答案 0 :(得分:1)

你缺少引号

CREATE (ee:officers { name: "KIM SOO IN", icij_id: "E72326DEA50F1A9C2876E112AAEB42BC", 
valid_until: "The Panama Papers data is current through 2015",
country_codes: "KOR", countries: "South Korea", sourceID: "Panama Papers", 
note:"" , node_id: 12000001 })