I am fairly new to Neo4j and have the following problem at hand. I am trying to develop a social networking site wherein I would like to store the message exchanged between two users on their relationship property. For this, I am trying to store all their messages in the form of array/list on a relationship property. Can you please suggest if Neo4j provides such types of operation.
I would also like to know if I could just insert my message on this relationship property and the array/List updates(i.e adds new message on the next index)
For ex:
User1 -> User2 : Hi, whats up
User2 -> User1 : Hi, I am in college
So the relationship property stores the message in the form of list such as:
["Hi,Whats up", "Hi, I am in college"]
Something in this manner..... Thanks