We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6aee695 commit 3285368Copy full SHA for 3285368
CHANGELOG.md
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7
8
## [Unreleased]
9
10
+### Added
11
+
12
+- Added `maxRuntime` option to `db.query` method
13
14
### Fixed
15
16
- Replaced `linkedlist` dependency with `x3-linkedlist` ([#601](https://github.com/arangodb/arangojs/issues/601))
src/database.ts
@@ -62,6 +62,7 @@ export type QueryOptions = {
62
batchSize?: number;
63
cache?: boolean;
64
memoryLimit?: number;
65
+ maxRuntime?: number;
66
ttl?: number;
67
timeout?: number;
68
options?: {
0 commit comments