2017-03-03 3 views
0

これはNeo4jバージョン3.1.1で実行しようとしているクエリです。 このクエリで何が問題になっていますか?py2neo.database.status.CypherSyntaxError:無効な入力 'O':予想される 't/T'

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

あなたが欠落している引用符

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 }) 
関連する問題