Neo4j py2neo.database.status.CypherSyntaxError:输入“O”无效:应为“t/t”

Neo4j py2neo.database.status.CypherSyntaxError:输入“O”无效:应为“t/t”,neo4j,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 Pape

下面是我试图在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 })
请帮我更正查询。

您缺少报价

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 })