Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否有像 append 等内置方法添加到类型列表的 a 属性的末尾。
所以例如
我有一个节点
CREATE (A:TEST{dateUpdated:[21312312,2121212],title:'title'})
并且我想在一个查询中添加标题时将一个新的时间戳附加到 dateUpdated 属性,该属性是 list 类型。
在 Neo4j中没有直接使用数组属性的内置支持。您需要自己在应用程序中处理此问题。MongoDB,一个面向文档的数据库,使用推送本机支持这一点