I create relationships using Py2neo in the following way:
article = graph.merge_one("Article", "id", aid)
article2 = graph.merge_one("Article", "id", aid2)
graph.create_unique(Relationship(article, "RELATED", article2))
But I get the following error message:
KeyError: 'http://localhost:7474/db/data/relationship/63'
Exception ignored in: <function WeakValueDictionary.__init__.<locals>.remove at 0x7f8ef4116e18>
Traceback (most recent call last):
File "/var/www/or/env/lib/python3.4/weakref.py", line 108, in remove
del self.data[wr.key]