Skip to content

Commit 11ea784

Browse files
committed
Add ArangoSearchViewLink#inBackground
Fixes #759
1 parent d90713b commit 11ea784

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ This driver uses semantic versioning:
6060
queue time metrics reported by the most recently received server responses if
6161
the server supports this feature.
6262

63+
- Added `ArangoSearchViewLink#inBackground` ([#759](https://github.com/arangodb/arangojs/issues/759))
64+
6365
## [7.6.1] - 2021-10-26
6466

6567
### Fixed

src/view.ts

+7
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,13 @@ export type ArangoSearchViewLink = {
8484
* Default: `"none"`
8585
*/
8686
storeValues?: "none" | "id";
87+
/**
88+
* If set to `true`, then no exclusive lock is used on the source collection
89+
* during View index creation, so that it remains basically available.
90+
*
91+
* Default: `false`
92+
*/
93+
inBackground?: boolean;
8794
};
8895

8996
/**

0 commit comments

Comments
 (0)