Skip to content

Added HTTP/2 support and several schema and statement methods

Pre-release
Pre-release

Choose a tag to compare

@LaravelFreelancerNL LaravelFreelancerNL released this 30 Mar 11:51
· 74 commits to next since this release

Added HTTP/2 support.
Set 'version' config to 2 to enable it.

truncateCollection
You can now call truncateCollection on the schema handler.

$arangoClient->schema()->truncateCollection('users');

getCollectionDocumentCount
Returns the number of documents in a collection.

$arangoClient->schema()->getCollectionDocumentCount('users');

getWritesExecuted
You can now retrieve the number of affected documents after an executed insert/update/delete statement.

$statement->getWritesExecuted();