ArangoDB-Community / pyArango

Python Driver for ArangoDB with built-in validation
https://pyarango.readthedocs.io/en/latest/
Apache License 2.0
238 stars 90 forks source link

Error: `Failed to create a new edge, edge attribute missing or invalid` #140

Closed bdparrish closed 5 years ago

bdparrish commented 5 years ago

The API errors out when trying to call self.graph.createGraph(definition, from_id, to_id, attributes).

Errors with Failed to create a new edge, edge attribute missing or invalid

Actual call:

edge = self.graph.createEdge(
                self.edges_collection,
                from_id,
                to_id,
                {"name": 'test', "_key": f'{uuid.uuid4()}'}
            )