We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I might be misunderstanding or missing something...so preemptively sorry.
The PHPdoc for ArangoDBClient\GraphHandler\saveEdge states that:
@param string $collection - if one uses a graph with more than one vertex collection one must provide the collection
I believe that "vertex" should be "edge", specifically because it initially confused me then I saw that the associated code is:
if ($collection === null) { $edgeCollections = $this->getEdgeCollections($graph); $edgeCollectionsCount = count($edgeCollections); if ($edgeCollectionsCount !== 1) { throw new ClientException('A collection must be provided.'); } if ($edgeCollectionsCount === 1) { $collection = $edgeCollections[0]; } }
Link to relevant docs:
arangodb-php/lib/ArangoDBClient/GraphHandler.php
Line 1019 in 69d557f
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I might be misunderstanding or missing something...so preemptively sorry.
The PHPdoc for ArangoDBClient\GraphHandler\saveEdge states that:
I believe that "vertex" should be "edge", specifically because it initially confused me then I saw that the associated code is:
Link to relevant docs:
arangodb-php/lib/ArangoDBClient/GraphHandler.php
Line 1019 in 69d557f
The text was updated successfully, but these errors were encountered: