を作成しているが、エラーが見つかりません次のように私は2つの文書間のエッジ「has_taken」を作成しています:ArangoDB - コレクションコレクションは
sin_graph.createEdge("has_taken", userDoc._id, tripDoc._id, edgeAttributes={})
をそして、私は次のエラーを取得しています:
File "/Library/Python/2.7/site-packages/pyArango/graph.py", line 135, in createEdge raise CreationError("Unable to create edge, %s" % r.json()["errorMessage"], data) CreationError: Unable to create edge, collection not found. Errors: {u'code': 404, u'errorNum': 1203, u'errorMessage': u'collection not found', u'error': True}
"has_taken"という名前のコレクションが存在しますが、上記のエラーが発生しています。
詳細を書くことができますか?どこから 'sin_graph'を得るのですか? –
私は、次のコマンドによって、私のグラフを得た私はarangoDB –
のGUIを使用して、このグラフを作成している sin_graph = db.graphs [「Graph_name」] はあなたが正しいDBを使用していますか?とは_system> –