我已經看到關係屬性尚未在neo4django中實現。在this thread中公開的解決方法是爲每個與屬性的關係創建一個新的節點類型。 我不能承受太多的計算,所以我不想使用這種技術。在閱讀我看到的source code時,作爲Relationship類的文檔字符串,此:"""Extend to add properties to relationships.""" 我的問題是,該怎麼做?從哪裏開始
我有一個使用neo4django映射器在neo4j(1.8.2版)上運行查詢的Django(1.4.0版)web應用程序。 但是,只要我做一個查詢像 OnlinePerson.objects.filter(name="Bijan")
我得到一個運行時錯誤的 ('The type node for class OnlinePerson could not be created in the da
我已經定義父類的Person,和如下的Father一個子類: class Person(models.NodeModel):
first_name = models.StringProperty()
middle_name = models.StringProperty()
last_name = models.StringProperty()
class Fa