2017-03-03 2 views
0

Hier ist eine Abfrage, die ich in Neo4j Version 3.1.1 ausführen möchte Was ist falsch an dieser Abfrage?py2neo.database.status.CypherSyntaxError: Ungültige Eingabe 'O': erwartet '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 }) 

Bitte helfen Sie mir, die Abfrage zu korrigieren.

Antwort

1

Sie fehlen Zitate

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