I am trying to add multiple values to a property, like a list kind of solution. The eventual aim of this endeavour is to be able to search the values for the property 'Synoniem' separately, so that if a search query finds one word in the list (and not all per se) returns the node that is attached to the property.
I have tried this:
//Import data directly into Neo4j 1.01
MERGE (:Onderneming {Naam:"De Haspel", Contactpersoon:"Kees van Dis"})
MERGE (:Onderneming {Naam:"ProPlant", Contactpersoon:"Annechien de Rooij"})
MERGE (:Onderneming {Naam:"Heerlijk Land", Contactpersoon:"Maarten Bril"})
MERGE (:Onderneming {Naam:"Bloemenboter", Contactpersoon:"Patty Broek"})
MERGE (:Kernactiviteit {Kernactiviteit:"Agro-ecologie", Synoniem:"Agro-forestry", Synoniem:"Agroecologie"})
And also this doesn't work:
//Import data directly into Neo4j 1.01
MERGE (:Onderneming {Naam:"De Haspel", Contactpersoon:"Kees van Dis"})
MERGE (:Onderneming {Naam:"ProPlant", Contactpersoon:"Annechien de Rooij"})
MERGE (:Onderneming {Naam:"Heerlijk Land", Contactpersoon:"Maarten Bril"})
MERGE (:Onderneming {Naam:"Bloemenboter", Contactpersoon:"Patty Broek"})
MERGE (:Kernactiviteit {Kernactiviteit:"Agro-ecologie", Synoniem:"Agro-forestry", "Agroecologie"})
Any smart words of advice?