标签: neo4j py2neo
我想在我的关系中添加新属性。我尝试了类似节点的东西:
rel = graph.relationship(id) p = rel.properties p['d'] = 'aaa' rel.push()
但没有更新。 我正在使用py2neo v3.1.2