Neo4j How to add multiple values to the property of a node
neo4j, nosql
Solution
wouldn't it be better to do it the graph way and create a node for each website, than simply create relationship between the node1 and the websites nodes?
anyway, for modyfying arrays you may take a look at: https://groups.google.com/forum/?fromgroups=#!topic/neo4j/bY5GXWYpM1k
Problem
While i am creating nodes for one of the problem , I am stuck, after going through documentation I realised I couldn't find multi value property assignment to the node For eg: Node 1 have property Websites visit, since it cannot be a single website , how to add property to Node 1 "website" such that it can take two values like www.abc.com www.def.com ``` node1["websites"] = "www.abc.com" "www.def.com" ``` Such that while accessing each property of a node each website in a node property can be accessed individually. Thanks for your time !