我对 Neo4j 相当陌生,手头有以下问题。我正在尝试开发一个社交网站,我想在其中将两个用户之间交换的消息存储在他们的关系属性上。为此,我试图将他们所有的消息以数组/列表的形式存储在关系属性上。您能否建议 Neo4j 是否提供此类操作。
我还想知道我是否可以在此关系属性和数组/列表更新中插入我的消息(即在下一个索引上添加新消息)
例如:
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"]
以这种方式......谢谢