You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Method createEdge takes graphName as a first argument - however this argument is in fact used as a databaseName during rest call URL construction.
see InternalEdgeDriverImpl line 54:
Property graphName is here used as a database name (first argument) in the createEndpointUrl method call and will be placed in the generated URL that should have this format:
http://server:port/_db/<database-name>/_api/edge
Currently following URL is generated:
http://server:port/_db/<graph-name>/_api/edge
which will always result in 404 and "database not found" error
The text was updated successfully, but these errors were encountered:
Method createEdge takes graphName as a first argument - however this argument is in fact used as a databaseName during rest call URL construction.
see InternalEdgeDriverImpl line 54:
However createEndpointUrl method takes following parameters:
Property graphName is here used as a database name (first argument) in the createEndpointUrl method call and will be placed in the generated URL that should have this format:
Currently following URL is generated:
which will always result in 404 and "database not found" error
The text was updated successfully, but these errors were encountered: