Reputation: 3
Here is a query that I am trying to run in Neo4j version 3.1.1 What is wrong with this query?
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 })
Please help me rectify the query.
Upvotes: 0
Views: 563
Reputation: 6514
You are missing quotes
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 })
Upvotes: 1