我在索引中有具有以下属性的节点:
{'user_id': u'00050714572570434939', 'hosts': [u'http://shyjive.blogspot.com/'], 'follows': ['null']}
现在我有索引,我正在尝试简单的查询来索引以获取节点:
index = gdb.nodes.indexes.create('blogger2')
uid = gdb.nodes.create()
uid["hosts"] = ['http://shyjive.blogspot.com/']
uid["user_id"] = "00050714572570434939"
uid["follows"] = ['null']
print index["user_id"]["00050714572570434939"][:]
这返回 [],这里有什么问题!
我在neo4j组的开发人员建议的python中使用列表的原因是我想将多个属性值存储到节点,所以我在这里使用列表而不是数组