arangodb-php
arangodb-php copied to clipboard
PHP ODM for ArangoDB
For driver version 1.4 we need to implement async request functionality described here: - http://www.arangodb.org/manuals/1.4/HttpJob.html - https://github.com/triAGENS/api-implementors/issues/19
Hello everyone, I have a question, is possible execute a transaction when you use create a new graph?, if is possible how create a transaction?
Configurable analyzers were introduced in the 3.5 release https://www.arangodb.com/2019/06/rc4-of-arangodb-3-5-configurable-analyzers-arangosearch-upgrades/ Any plans for including support for creating them in the PHP library?
I'm trying to configure my arangodb-php connection-options in a way I could access my arangodb database in aws from godaddy. Could I get a detailed tutorial or some help on...
HttpResponse.php using json_decode($body, true); means that empty objects get translated to arrays, which breaks some of our stuff. We've extended `DocumentHandler` in order to override the getDocument method, but I...
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...
Add security on connection settings via .env Please note that for legal reasons we require you to sign the [Contributor Agreement](https://www.arangodb.com/documents/cla.pdf) before we can accept your pull requests.
public function update(Document $document, array $options = []) { $documentId = $this->getDocumentId($document); return $this->updateById($document, $documentId, $document, $options); } It seems the first arg to call to updateById should be $collection,...
when I use function getById, why Edge doesn't use documentClass just like document did? is there any reason? I want to know.
Are there any plans to create a native PHP >= 7.1 extension of this library to increase overall performance in PHP? Something like [node-arangodb-cxx](https://github.com/arangodb/node-arangodb-cxx). Have you any idea which performance...