diff --git a/CHANGELOG.md b/CHANGELOG.md index 138f24730..5bc82460d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ ---- +$--- permalink: /CHANGELOG title: "CHANGELOG" --- @@ -19,293 +19,19 @@ This driver uses semantic versioning: - A change in the major version (e.g. 1.Y.Z -> 2.0.0) indicates _breaking_ changes that require changes in your code to upgrade. -## [9.1.0] - 2024-09-25 - -### Changed - -- Removed `progress` property from `Index` type - - This property is only available when fetching indexes with the `withHidden` - option set to `true`. - -- Added `HiddenIndex` type (DE-849) - - This type is used to represent an index returned by `collection.indexes` when - the `withHidden` option is set to `true` and includes the `progress` property - in addition to internal indexes. - -## [9.0.0] - 2024-07-31 - -This is a major release and breaks backwards compatibility. - -See [the migration guide](./MIGRATING.md#v8-to-v9) for detailed instructions -for upgrading your code to arangojs v9. - -### Removed - -- Removed Node.js 14 and Node.js 16 support - - With Node.js 14 and 16 having reached their end of life, arangojs will no - longer support these versions of Node.js going forward. - - For more information, see [the Node.js release schedule](https://nodejs.dev/en/about/releases/). - -- Removed `Params` and `Headers` types - - These can mostly be replaced with the native `URLSearchParams` and `Headers` - types but most public methods still accept the equivalent `Record` types for - convenience. - -- Removed deprecated `FulltextIndex` and related types - - Fulltext indexes have been deprecated in ArangoDB 3.10 and should be replaced - with ArangoSearch. - -- Removed browser build - - The browser build has been removed from the repository and will no longer be - published to npm. The npm package can still be used in the browser by using - common frontend tooling like webpack or rollup. - -- Removed `Collection` methods for simple queries: `list`, `all`, `any`, - `byExample`, `firstExample`, `removeByExample`, `replaceByExample`, - `updateByExample`, `lookupByKeys`, `removeByKeys`, `fulltext` - - Simple queries were deprecated in ArangoDB 3.4 and can be replicated with AQL. - -### Changed - -- Replaced request logic with native `fetch` API ([#788](https://github.com/arangodb/arangojs/issues/788), DE-578, DE-758) - - The node-specific request logic using the `http` and `https` modules has been - replaced with all-new logic using the web standard `fetch` API, which should - work in Node.js, browsers and other conformant environments. - -- Unicode names are now **no longer** automatically NFC normalized (DE-65) - - This change affects all database, collection, graph, view and analyzer names - using unicode characters. Starting with arangojs v7.7.0 these names were - automatically NFC normalized. This behavior has now been reverted to match - the behavior of other ArangoDB drivers and help detect normalization issues - in user code. - -- Changed return type of `aql` and the AQL `join` helper function to `AqlQuery` - - Previously the internal `GeneratedAqlQuery` type was exposed as the return - type of these functions, leading to complexity when handling generic type - arguments. - -- Removed dependency on Node `path` module or its browserify equivalent - - This change should be backwards-compatible but may produce different results - when using non-normalized paths and base-paths in custom `routes`. This - should help support more environments and reduce the size of the browser - bundle. - -- Inlined `x3-linkedlist` dependency - - Inlining this dependency should help make arangojs more portable. - -- Split the Collection type parameter into result and input types ([#807](https://github.com/arangodb/arangojs/issues/807)) - - It is now possible to specify a separate type for the data passed when - creating or modifying documents in addition to the type of the data returned - when fetching documents. This allows excluding computed properties from - the input type while still including them in the result type. - -### Added - -- Added ESM support (DE-236) - - The driver now supports being imported as an ES module or CommonJS module - and provides exports for both types of environments. This change should be - backwards-compatible. - -- Added support for `withHidden` option in `collection.indexes` - - This option was introduced in ArangoDB 3.10.13 and 3.11.7 and allows - fetching the progress information of indexes that are in the building phase. - -- Added support for `withStats` option in `collection.indexes` - - This method now takes an object with `withStats` and `withHidden` options - instead of a boolean flag. - -- Added readonly `Job#id` property - - This property was not previously exposed. - -- Added `skipFastLockRound` option for streaming transactions - - This option was introduced in 3.12.1 and allows skipping the fast lock round. - -- Added non-specific `EnsureIndexOptions` type and `ensureIndex` method - signature ([#778](https://github.com/arangodb/arangojs/issues/778)) - - This allows creating indexes without narrowing the index type. - -## [8.8.1] - 2024-03-20 - -### Added - -- Added the `versionAttribute` option to the document operation options types (DE-783) - -## [8.8.0] - 2024-03-12 - -### Changed - -- Renamed ZKD index type to MDI (DE-744) - - The ZKD index type was previously marked as experimental and has now been - finalized and renamed to MDI in ArangoDB 3.12. - -- Added `DocumentOperationMetadata` and `DocumentOperationFailure` types (DE-693) - - The return types of document and edge operations on collections have been - modified to correctly represent the return values of bulk operations and - single document/edge operations using the `overwriteMode` option. - -### Deprecated - -- Deprecated active failover support (DE-746) - - Active failover is no longer be supported in ArangoDB 3.12 and later. This - functionality will be removed from the driver in a future release. - -### Added - -- Added support for `multi_delimiter` analyzer type (DE-753) - -- Added support for `wildcard` analyzer type (DE-750) - -## [8.7.0] - 2024-02-14 - -### Changed - -- Made `options` argument in `collection.edges`, `inEdges` and `outEdges` optional ([#802](https://github.com/arangodb/arangojs/issues/802)) - -### Deprecated - -- Deprecated `db.getLogMessages` - - This API was deprecated in ArangoDB 3.8 and should no longer be used. - Use `db.getLogEntries` instead. - -### Fixed - -- Fixed `db.getLogEntries` using the wrong API endpoint - -## [8.6.0] - 2023-10-24 - -### Added - -- Added `db.createJob` method to convert arbitrary requests into async jobs (DE-610) - - This method can be used to set the `x-arango-async: store` header on any - request, which will cause the server to store the request in an async job: - - ```js - const collectionsJob = await db.createJob(() => db.collections()); - // once loaded, collectionsJob.result will be an array of Collection instances - const numbersJob = await db.createJob(() => - db.query(aql`FOR i IN 1..1000 RETURN i`) - ); - // once loaded, numbersJob.result will be an ArrayCursor of numbers - ``` - -## [8.5.0] - 2023-10-09 - -### Added - -- Implemented hot backup API (DE-576) - -- Implemented logging API (DE-144, DE-145, DE-146, DE-147) - -- Implemented async jobs management (DE-339) - -- Added `db.shutdown` to initiate a clean shutdown of the server - -- Added `db.time` method to retrieve the server's system time - -## [8.4.1] - 2023-09-15 - -### Fixed - -- Fixed default return type of AQL queries being `undefined` instead of `any` ([#797](https://github.com/arangodb/arangojs/issues/797)) - -## [8.4.0] - 2023-07-10 - -### Changed - -- Fetching additional cursor results now uses `POST` instead of `PUT` (DE-605) - - The `PUT` route was deprecated and the `POST` route is supported in all - actively maintained versions of ArangoDB. - -- User management methods now use database-relative URLs (DE-606) - - Previously these methods would make requests without a database prefix, - implicitly using the `_system` database. - -- `aql` template strings now take a generic type argument - - This allows explictly setting the item type of the `ArrayCursor` returned by - `db.query` when using `aql` template strings. Note that like when setting - the type on `db.query` directly, arangojs can make no guarantees that the - type matches the actual data returned by the query. - - ```ts - const numbers = await db.query(aql<{ index: number; squared: number }>` - FOR i IN 1..1000 - RETURN { - index: i, - squared: i * i - } - `); - const first = await numbers.next(); // { index: number; squared: number; } - console.log(first.index, first.squared); // 1 1 - ``` - -### Fixed - -- Fixed `listUsers` behavior ([#782](https://github.com/arangodb/arangojs/issues/782)) - -- Fixed `graph.create` not correctly handling `isDisjoint` option - -### Added - -- Added missing attributes to `QueryInfo` and `MultiExplainResult.stats` types (DE-607) - -- Added cluster rebalancing methods to `Database` (DE-583) - -- Added `db.withTransaction` helper method for streaming transactions ([#786](https://github.com/arangodb/arangojs/discussions/786)) - - This method allows using streaming transactions without having to manually - begin and commit or abort the transaction. - - ```ts - const vertices = db.collection("vertices"); - const edges = db.collection("edges"); - const info = await db.withTransaction([vertices, edges], async (step) => { - const start = await step(() => vertices.document("a")); - const end = await step(() => vertices.document("b")); - return await step(() => edges.save({ _from: start._id, _to: end._id })); - }); - ``` - ## [8.3.1] - 2023-06-05 -### Changed +## Changed - Added note that Simple Queries traversals are removed in ArangoDB 3.12. ## [8.3.0] - 2023-05-11 -### Fixed +## Fixed - Fixed `updateUser` and `replaceUser` behavior ([#783](https://github.com/arangodb/arangojs/issues/783)) -### Added +## Added - Added `renewAuthToken` method to `Database` ([#784](https://github.com/arangodb/arangojs/issues/784)) @@ -504,7 +230,7 @@ for upgrading your code to arangojs v8. squared: i * i } `); - const first = await numbers.next(); // { index: number; squared: number; } + const first = await numbers.next(); console.log(first.index, first.squared); // 1 1 ``` @@ -1924,15 +1650,6 @@ For a detailed list of changes between pre-release versions of v7 see the Graph methods now only return the relevant part of the response body. -[9.1.0]: https://github.com/arangodb/arangojs/compare/v9.0.0...v9.1.0 -[9.0.0]: https://github.com/arangodb/arangojs/compare/v8.8.1...v9.0.0 -[8.8.1]: https://github.com/arangodb/arangojs/compare/v8.8.0...v8.8.1 -[8.8.0]: https://github.com/arangodb/arangojs/compare/v8.7.0...v8.8.0 -[8.7.0]: https://github.com/arangodb/arangojs/compare/v8.6.0...v8.7.0 -[8.6.0]: https://github.com/arangodb/arangojs/compare/v8.5.0...v8.6.0 -[8.5.0]: https://github.com/arangodb/arangojs/compare/v8.4.1...v8.5.0 -[8.4.1]: https://github.com/arangodb/arangojs/compare/v8.4.0...v8.4.1 -[8.4.0]: https://github.com/arangodb/arangojs/compare/v8.3.1...v8.4.0 [8.3.1]: https://github.com/arangodb/arangojs/compare/v8.3.0...v8.3.1 [8.3.0]: https://github.com/arangodb/arangojs/compare/v8.2.1...v8.3.0 [8.2.1]: https://github.com/arangodb/arangojs/compare/v8.2.0...v8.2.1 diff --git a/MIGRATING.md b/MIGRATING.md index e557bd5f5..81a087820 100644 --- a/MIGRATING.md +++ b/MIGRATING.md @@ -1,104 +1,10 @@ ---- +$--- permalink: /MIGRATING -title: "Migration Guide" +title: "Migrating" --- # Migrating -## v8 to v9 - -Version 9 reverts the automatic NFC normalization introduced in v7.7.0. This -means that arangojs will no longer automatically normalize unicode names and -identifiers of collections, graphs, indexes, views, users, databases and so on. - -If you want to continue using NFC normalization, you can use the `normalize` -method available on all JavaScript strings: - -```diff - import { Database } from "arangojs"; - - const db = new Database(); --const collection = db.collection(myUnicodeName); -+const collection = db.collection(myUnicodeName.normalize("NFC")); -``` - -Note that ArangoDB may reject non-normalized unicode names and identifiers. -This change is intended to make it easier to recognize normalization issues in -code interacting with ArangoDB that were previously masked by arangojs. - -### Simple queries - -Simple queries like the `removeByExample` and `firstExample` methods have been -removed from the collections API. These methods were deprecated in ArangoDB 3.4 -and can be replaced with AQL queries. For examples for replicating each -method's behavior in AQL, see the documentation for these methods in ArangoJS 8. - -### Request and Response changes - -Version 9 now uses native `fetch` in all environments. This means that the -request and response objects exposed by ArangoJS now extend the fetch API's -`Request` and `Response` objects rather than those from Node's `http` module -and ArangoJS no longer provides the `agentOptions` or `agent` config options. - -#### Config changes - -The relevant `agentOptions` have been moved up into the `config` type and -in most cases renamed: - -```diff - const db = new Database({ - url: "http://localhost:8529", -- agentOptions: { -- maxSockets: 10, -- keepAlive: true, -- before: (req) => console.log(String(new Date()), 'requesting', req.url), -- after: (res) => console.log(String(new Date()), 'received', res.request.url) -- } -+ poolSize: 10, -+ keepalive: true, -+ beforeRequest: (req) => console.log(String(new Date()), 'requesting', req.url), -+ afterResponse: (res) => console.log(String(new Date()), 'received', res.request.url) - }); -``` - -If you need to modify the request agent beyond what is possible using the fetch -API, you can override Node's default `fetch` Agent using the `undici` module: - -```js -const { Agent, setGlobalDispatcher } = require("undici"); - -setGlobalDispatcher( - new Agent({ - // your agent options here - }) -); -``` - -Note that you will have to add `undici` as a dependency to your project. There -is currently no built-in way to override these options in Node.js without this -module. - -#### Request and Response objects - -This change mostly affects code that uses the `db.route` API to perform -arbitrary requests to the ArangoDB HTTP API. - -The fetch API `Request` and `Response` objects are a bit different from the -equivalent objects previously exposed by these methods. Note that while this -means response objects still provide a `body` property, its semantics are very -different as the fetch API expects the `blob`, `json` and `text` methods to be -used instead. ArangoJS will use the relevant method during response handling -and store the result in the `parsedBody` method: - -```diff - const myFoxxApi = db.route('my/foxx'); - const res = await myFoxxApi.get(); -- const token = res.headers['x-auth-token']; -- if (res.statusCode === 200) console.log(res.body); -+ const token = res.headers.get('x-auth-token'); -+ if (res.status === 200) console.log(res.parsedBody); -``` - ## v7 to v8 Version 8 drops support for Internet Explorer 11 and Node.js 10 and 12. If you diff --git a/devel/assets/search.js b/devel/assets/search.js index 46c19f0c9..d7cbb42fe 100644 --- a/devel/assets/search.js +++ b/devel/assets/search.js @@ -1 +1 @@ -window.searchData = JSON.parse("{\"kinds\":{\"2\":\"Module\",\"8\":\"Enumeration\",\"16\":\"Enumeration Member\",\"64\":\"Function\",\"128\":\"Class\",\"256\":\"Interface\",\"512\":\"Constructor\",\"1024\":\"Property\",\"2048\":\"Method\",\"65536\":\"Type literal\",\"262144\":\"Accessor\",\"4194304\":\"Type alias\",\"8388608\":\"Reference\"},\"rows\":[{\"kind\":2,\"name\":\"analyzer\",\"url\":\"modules/analyzer.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"isArangoAnalyzer\",\"url\":\"functions/analyzer.isArangoAnalyzer.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"AnalyzerFeature\",\"url\":\"types/analyzer.AnalyzerFeature.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"CreateAnalyzerOptions\",\"url\":\"types/analyzer.CreateAnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"CreateIdentityAnalyzerOptions\",\"url\":\"types/analyzer.CreateIdentityAnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateIdentityAnalyzerOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.CreateIdentityAnalyzerOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateIdentityAnalyzerOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateIdentityAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.CreateIdentityAnalyzerOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateIdentityAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/analyzer.CreateIdentityAnalyzerOptions.html#__type.properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateIdentityAnalyzerOptions.__type\"},{\"kind\":4194304,\"name\":\"CreateDelimiterAnalyzerOptions\",\"url\":\"types/analyzer.CreateDelimiterAnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateDelimiterAnalyzerOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.CreateDelimiterAnalyzerOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateDelimiterAnalyzerOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateDelimiterAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.CreateDelimiterAnalyzerOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateDelimiterAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/analyzer.CreateDelimiterAnalyzerOptions.html#__type.properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateDelimiterAnalyzerOptions.__type\"},{\"kind\":4194304,\"name\":\"CreateMultiDelimiterAnalyzerOptions\",\"url\":\"types/analyzer.CreateMultiDelimiterAnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateMultiDelimiterAnalyzerOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.CreateMultiDelimiterAnalyzerOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateMultiDelimiterAnalyzerOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateMultiDelimiterAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.CreateMultiDelimiterAnalyzerOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateMultiDelimiterAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/analyzer.CreateMultiDelimiterAnalyzerOptions.html#__type.properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateMultiDelimiterAnalyzerOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateMultiDelimiterAnalyzerOptions.html#__type.properties.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateMultiDelimiterAnalyzerOptions.__type.properties\"},{\"kind\":1024,\"name\":\"delimiters\",\"url\":\"types/analyzer.CreateMultiDelimiterAnalyzerOptions.html#__type.properties.__type-1.delimiters\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateMultiDelimiterAnalyzerOptions.__type.properties.__type\"},{\"kind\":4194304,\"name\":\"CreateStemAnalyzerOptions\",\"url\":\"types/analyzer.CreateStemAnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateStemAnalyzerOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.CreateStemAnalyzerOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateStemAnalyzerOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateStemAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.CreateStemAnalyzerOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateStemAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/analyzer.CreateStemAnalyzerOptions.html#__type.properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateStemAnalyzerOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateStemAnalyzerOptions.html#__type.properties.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateStemAnalyzerOptions.__type.properties\"},{\"kind\":1024,\"name\":\"locale\",\"url\":\"types/analyzer.CreateStemAnalyzerOptions.html#__type.properties.__type-1.locale\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateStemAnalyzerOptions.__type.properties.__type\"},{\"kind\":4194304,\"name\":\"CreateNormAnalyzerOptions\",\"url\":\"types/analyzer.CreateNormAnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateNormAnalyzerOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.CreateNormAnalyzerOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateNormAnalyzerOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateNormAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.CreateNormAnalyzerOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateNormAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/analyzer.CreateNormAnalyzerOptions.html#__type.properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateNormAnalyzerOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateNormAnalyzerOptions.html#__type.properties.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateNormAnalyzerOptions.__type.properties\"},{\"kind\":1024,\"name\":\"locale\",\"url\":\"types/analyzer.CreateNormAnalyzerOptions.html#__type.properties.__type-1.locale\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateNormAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"case\",\"url\":\"types/analyzer.CreateNormAnalyzerOptions.html#__type.properties.__type-1.case\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateNormAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"accent\",\"url\":\"types/analyzer.CreateNormAnalyzerOptions.html#__type.properties.__type-1.accent\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateNormAnalyzerOptions.__type.properties.__type\"},{\"kind\":4194304,\"name\":\"CreateNgramAnalyzerOptions\",\"url\":\"types/analyzer.CreateNgramAnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateNgramAnalyzerOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.CreateNgramAnalyzerOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateNgramAnalyzerOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateNgramAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.CreateNgramAnalyzerOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateNgramAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/analyzer.CreateNgramAnalyzerOptions.html#__type.properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateNgramAnalyzerOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateNgramAnalyzerOptions.html#__type.properties.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateNgramAnalyzerOptions.__type.properties\"},{\"kind\":1024,\"name\":\"max\",\"url\":\"types/analyzer.CreateNgramAnalyzerOptions.html#__type.properties.__type-1.max\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateNgramAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"min\",\"url\":\"types/analyzer.CreateNgramAnalyzerOptions.html#__type.properties.__type-1.min\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateNgramAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"preserveOriginal\",\"url\":\"types/analyzer.CreateNgramAnalyzerOptions.html#__type.properties.__type-1.preserveOriginal\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateNgramAnalyzerOptions.__type.properties.__type\"},{\"kind\":4194304,\"name\":\"CreateTextAnalyzerOptions\",\"url\":\"types/analyzer.CreateTextAnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateTextAnalyzerOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.CreateTextAnalyzerOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateTextAnalyzerOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateTextAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.CreateTextAnalyzerOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateTextAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/analyzer.CreateTextAnalyzerOptions.html#__type.properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateTextAnalyzerOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateTextAnalyzerOptions.html#__type.properties.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateTextAnalyzerOptions.__type.properties\"},{\"kind\":1024,\"name\":\"locale\",\"url\":\"types/analyzer.CreateTextAnalyzerOptions.html#__type.properties.__type-1.locale\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateTextAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"case\",\"url\":\"types/analyzer.CreateTextAnalyzerOptions.html#__type.properties.__type-1.case\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateTextAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"stopwords\",\"url\":\"types/analyzer.CreateTextAnalyzerOptions.html#__type.properties.__type-1.stopwords\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateTextAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"stopwordsPath\",\"url\":\"types/analyzer.CreateTextAnalyzerOptions.html#__type.properties.__type-1.stopwordsPath\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateTextAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"accent\",\"url\":\"types/analyzer.CreateTextAnalyzerOptions.html#__type.properties.__type-1.accent\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateTextAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"stemming\",\"url\":\"types/analyzer.CreateTextAnalyzerOptions.html#__type.properties.__type-1.stemming\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateTextAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"edgeNgram\",\"url\":\"types/analyzer.CreateTextAnalyzerOptions.html#__type.properties.__type-1.edgeNgram\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateTextAnalyzerOptions.__type.properties.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateTextAnalyzerOptions.html#__type.properties.__type-1.edgeNgram.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateTextAnalyzerOptions.__type.properties.__type.edgeNgram\"},{\"kind\":1024,\"name\":\"min\",\"url\":\"types/analyzer.CreateTextAnalyzerOptions.html#__type.properties.__type-1.edgeNgram.__type-2.min\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateTextAnalyzerOptions.__type.properties.__type.edgeNgram.__type\"},{\"kind\":1024,\"name\":\"max\",\"url\":\"types/analyzer.CreateTextAnalyzerOptions.html#__type.properties.__type-1.edgeNgram.__type-2.max\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateTextAnalyzerOptions.__type.properties.__type.edgeNgram.__type\"},{\"kind\":1024,\"name\":\"preserveOriginal\",\"url\":\"types/analyzer.CreateTextAnalyzerOptions.html#__type.properties.__type-1.edgeNgram.__type-2.preserveOriginal\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateTextAnalyzerOptions.__type.properties.__type.edgeNgram.__type\"},{\"kind\":4194304,\"name\":\"CreateSegmentationAnalyzerOptions\",\"url\":\"types/analyzer.CreateSegmentationAnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateSegmentationAnalyzerOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.CreateSegmentationAnalyzerOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateSegmentationAnalyzerOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateSegmentationAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.CreateSegmentationAnalyzerOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateSegmentationAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/analyzer.CreateSegmentationAnalyzerOptions.html#__type.properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateSegmentationAnalyzerOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateSegmentationAnalyzerOptions.html#__type.properties.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateSegmentationAnalyzerOptions.__type.properties\"},{\"kind\":1024,\"name\":\"break\",\"url\":\"types/analyzer.CreateSegmentationAnalyzerOptions.html#__type.properties.__type-1.break\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateSegmentationAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"case\",\"url\":\"types/analyzer.CreateSegmentationAnalyzerOptions.html#__type.properties.__type-1.case\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateSegmentationAnalyzerOptions.__type.properties.__type\"},{\"kind\":4194304,\"name\":\"CreateAqlAnalyzerOptions\",\"url\":\"types/analyzer.CreateAqlAnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateAqlAnalyzerOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.CreateAqlAnalyzerOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateAqlAnalyzerOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateAqlAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.CreateAqlAnalyzerOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateAqlAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/analyzer.CreateAqlAnalyzerOptions.html#__type.properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateAqlAnalyzerOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateAqlAnalyzerOptions.html#__type.properties.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateAqlAnalyzerOptions.__type.properties\"},{\"kind\":1024,\"name\":\"queryString\",\"url\":\"types/analyzer.CreateAqlAnalyzerOptions.html#__type.properties.__type-1.queryString\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateAqlAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"collapsePositions\",\"url\":\"types/analyzer.CreateAqlAnalyzerOptions.html#__type.properties.__type-1.collapsePositions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateAqlAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"keepNull\",\"url\":\"types/analyzer.CreateAqlAnalyzerOptions.html#__type.properties.__type-1.keepNull\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateAqlAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"batchSize\",\"url\":\"types/analyzer.CreateAqlAnalyzerOptions.html#__type.properties.__type-1.batchSize\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateAqlAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"memoryLimit\",\"url\":\"types/analyzer.CreateAqlAnalyzerOptions.html#__type.properties.__type-1.memoryLimit\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateAqlAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"returnType\",\"url\":\"types/analyzer.CreateAqlAnalyzerOptions.html#__type.properties.__type-1.returnType\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateAqlAnalyzerOptions.__type.properties.__type\"},{\"kind\":4194304,\"name\":\"CreatePipelineAnalyzerOptions\",\"url\":\"types/analyzer.CreatePipelineAnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreatePipelineAnalyzerOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.CreatePipelineAnalyzerOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreatePipelineAnalyzerOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreatePipelineAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.CreatePipelineAnalyzerOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreatePipelineAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/analyzer.CreatePipelineAnalyzerOptions.html#__type.properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreatePipelineAnalyzerOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreatePipelineAnalyzerOptions.html#__type.properties.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreatePipelineAnalyzerOptions.__type.properties\"},{\"kind\":1024,\"name\":\"pipeline\",\"url\":\"types/analyzer.CreatePipelineAnalyzerOptions.html#__type.properties.__type-1.pipeline\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreatePipelineAnalyzerOptions.__type.properties.__type\"},{\"kind\":4194304,\"name\":\"CreateStopwordsAnalyzerOptions\",\"url\":\"types/analyzer.CreateStopwordsAnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateStopwordsAnalyzerOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.CreateStopwordsAnalyzerOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateStopwordsAnalyzerOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateStopwordsAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.CreateStopwordsAnalyzerOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateStopwordsAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/analyzer.CreateStopwordsAnalyzerOptions.html#__type.properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateStopwordsAnalyzerOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateStopwordsAnalyzerOptions.html#__type.properties.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateStopwordsAnalyzerOptions.__type.properties\"},{\"kind\":1024,\"name\":\"stopwords\",\"url\":\"types/analyzer.CreateStopwordsAnalyzerOptions.html#__type.properties.__type-1.stopwords\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateStopwordsAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"hex\",\"url\":\"types/analyzer.CreateStopwordsAnalyzerOptions.html#__type.properties.__type-1.hex\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateStopwordsAnalyzerOptions.__type.properties.__type\"},{\"kind\":4194304,\"name\":\"CreateCollationAnalyzerOptions\",\"url\":\"types/analyzer.CreateCollationAnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateCollationAnalyzerOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.CreateCollationAnalyzerOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateCollationAnalyzerOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateCollationAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.CreateCollationAnalyzerOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateCollationAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/analyzer.CreateCollationAnalyzerOptions.html#__type.properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateCollationAnalyzerOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateCollationAnalyzerOptions.html#__type.properties.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateCollationAnalyzerOptions.__type.properties\"},{\"kind\":1024,\"name\":\"locale\",\"url\":\"types/analyzer.CreateCollationAnalyzerOptions.html#__type.properties.__type-1.locale\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateCollationAnalyzerOptions.__type.properties.__type\"},{\"kind\":4194304,\"name\":\"CreateMinHashAnalyzerOptions\",\"url\":\"types/analyzer.CreateMinHashAnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateMinHashAnalyzerOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.CreateMinHashAnalyzerOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateMinHashAnalyzerOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateMinHashAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.CreateMinHashAnalyzerOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateMinHashAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/analyzer.CreateMinHashAnalyzerOptions.html#__type.properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateMinHashAnalyzerOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateMinHashAnalyzerOptions.html#__type.properties.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateMinHashAnalyzerOptions.__type.properties\"},{\"kind\":1024,\"name\":\"analyzer\",\"url\":\"types/analyzer.CreateMinHashAnalyzerOptions.html#__type.properties.__type-1.analyzer\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateMinHashAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"numHashes\",\"url\":\"types/analyzer.CreateMinHashAnalyzerOptions.html#__type.properties.__type-1.numHashes\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateMinHashAnalyzerOptions.__type.properties.__type\"},{\"kind\":4194304,\"name\":\"CreateClassificationAnalyzerOptions\",\"url\":\"types/analyzer.CreateClassificationAnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateClassificationAnalyzerOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.CreateClassificationAnalyzerOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateClassificationAnalyzerOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateClassificationAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.CreateClassificationAnalyzerOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateClassificationAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/analyzer.CreateClassificationAnalyzerOptions.html#__type.properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateClassificationAnalyzerOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateClassificationAnalyzerOptions.html#__type.properties.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateClassificationAnalyzerOptions.__type.properties\"},{\"kind\":1024,\"name\":\"model_location\",\"url\":\"types/analyzer.CreateClassificationAnalyzerOptions.html#__type.properties.__type-1.model_location\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateClassificationAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"top_k\",\"url\":\"types/analyzer.CreateClassificationAnalyzerOptions.html#__type.properties.__type-1.top_k\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateClassificationAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"threshold\",\"url\":\"types/analyzer.CreateClassificationAnalyzerOptions.html#__type.properties.__type-1.threshold\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateClassificationAnalyzerOptions.__type.properties.__type\"},{\"kind\":4194304,\"name\":\"CreateNearestNeighborsAnalyzerOptions\",\"url\":\"types/analyzer.CreateNearestNeighborsAnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateNearestNeighborsAnalyzerOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.CreateNearestNeighborsAnalyzerOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateNearestNeighborsAnalyzerOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateNearestNeighborsAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.CreateNearestNeighborsAnalyzerOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateNearestNeighborsAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/analyzer.CreateNearestNeighborsAnalyzerOptions.html#__type.properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateNearestNeighborsAnalyzerOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateNearestNeighborsAnalyzerOptions.html#__type.properties.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateNearestNeighborsAnalyzerOptions.__type.properties\"},{\"kind\":1024,\"name\":\"model_location\",\"url\":\"types/analyzer.CreateNearestNeighborsAnalyzerOptions.html#__type.properties.__type-1.model_location\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateNearestNeighborsAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"top_k\",\"url\":\"types/analyzer.CreateNearestNeighborsAnalyzerOptions.html#__type.properties.__type-1.top_k\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateNearestNeighborsAnalyzerOptions.__type.properties.__type\"},{\"kind\":4194304,\"name\":\"CreateWildcardAnalyzerOptions\",\"url\":\"types/analyzer.CreateWildcardAnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateWildcardAnalyzerOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.CreateWildcardAnalyzerOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateWildcardAnalyzerOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateWildcardAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.CreateWildcardAnalyzerOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateWildcardAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/analyzer.CreateWildcardAnalyzerOptions.html#__type.properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateWildcardAnalyzerOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateWildcardAnalyzerOptions.html#__type.properties.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateWildcardAnalyzerOptions.__type.properties\"},{\"kind\":1024,\"name\":\"ngramSize\",\"url\":\"types/analyzer.CreateWildcardAnalyzerOptions.html#__type.properties.__type-1.ngramSize\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateWildcardAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"analyzer\",\"url\":\"types/analyzer.CreateWildcardAnalyzerOptions.html#__type.properties.__type-1.analyzer\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateWildcardAnalyzerOptions.__type.properties.__type\"},{\"kind\":4194304,\"name\":\"CreateGeoJsonAnalyzerOptions\",\"url\":\"types/analyzer.CreateGeoJsonAnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateGeoJsonAnalyzerOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.CreateGeoJsonAnalyzerOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateGeoJsonAnalyzerOptions.html#__type.type-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoJsonAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.CreateGeoJsonAnalyzerOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoJsonAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/analyzer.CreateGeoJsonAnalyzerOptions.html#__type.properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoJsonAnalyzerOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateGeoJsonAnalyzerOptions.html#__type.properties.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateGeoJsonAnalyzerOptions.__type.properties\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateGeoJsonAnalyzerOptions.html#__type.properties.__type-1.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoJsonAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"types/analyzer.CreateGeoJsonAnalyzerOptions.html#__type.properties.__type-1.options\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoJsonAnalyzerOptions.__type.properties.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateGeoJsonAnalyzerOptions.html#__type.properties.__type-1.options.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateGeoJsonAnalyzerOptions.__type.properties.__type.options\"},{\"kind\":1024,\"name\":\"maxCells\",\"url\":\"types/analyzer.CreateGeoJsonAnalyzerOptions.html#__type.properties.__type-1.options.__type-2.maxCells\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoJsonAnalyzerOptions.__type.properties.__type.options.__type\"},{\"kind\":1024,\"name\":\"minLevel\",\"url\":\"types/analyzer.CreateGeoJsonAnalyzerOptions.html#__type.properties.__type-1.options.__type-2.minLevel\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoJsonAnalyzerOptions.__type.properties.__type.options.__type\"},{\"kind\":1024,\"name\":\"maxLevel\",\"url\":\"types/analyzer.CreateGeoJsonAnalyzerOptions.html#__type.properties.__type-1.options.__type-2.maxLevel\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoJsonAnalyzerOptions.__type.properties.__type.options.__type\"},{\"kind\":4194304,\"name\":\"CreateGeoPointAnalyzerOptions\",\"url\":\"types/analyzer.CreateGeoPointAnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateGeoPointAnalyzerOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.CreateGeoPointAnalyzerOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateGeoPointAnalyzerOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoPointAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.CreateGeoPointAnalyzerOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoPointAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/analyzer.CreateGeoPointAnalyzerOptions.html#__type.properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoPointAnalyzerOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateGeoPointAnalyzerOptions.html#__type.properties.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateGeoPointAnalyzerOptions.__type.properties\"},{\"kind\":1024,\"name\":\"latitude\",\"url\":\"types/analyzer.CreateGeoPointAnalyzerOptions.html#__type.properties.__type-1.latitude\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoPointAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"longitude\",\"url\":\"types/analyzer.CreateGeoPointAnalyzerOptions.html#__type.properties.__type-1.longitude\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoPointAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"types/analyzer.CreateGeoPointAnalyzerOptions.html#__type.properties.__type-1.options\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoPointAnalyzerOptions.__type.properties.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateGeoPointAnalyzerOptions.html#__type.properties.__type-1.options.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateGeoPointAnalyzerOptions.__type.properties.__type.options\"},{\"kind\":1024,\"name\":\"minCells\",\"url\":\"types/analyzer.CreateGeoPointAnalyzerOptions.html#__type.properties.__type-1.options.__type-2.minCells\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoPointAnalyzerOptions.__type.properties.__type.options.__type\"},{\"kind\":1024,\"name\":\"minLevel\",\"url\":\"types/analyzer.CreateGeoPointAnalyzerOptions.html#__type.properties.__type-1.options.__type-2.minLevel\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoPointAnalyzerOptions.__type.properties.__type.options.__type\"},{\"kind\":1024,\"name\":\"maxLevel\",\"url\":\"types/analyzer.CreateGeoPointAnalyzerOptions.html#__type.properties.__type-1.options.__type-2.maxLevel\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoPointAnalyzerOptions.__type.properties.__type.options.__type\"},{\"kind\":4194304,\"name\":\"CreateGeoS2AnalyzerOptions\",\"url\":\"types/analyzer.CreateGeoS2AnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateGeoS2AnalyzerOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.CreateGeoS2AnalyzerOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateGeoS2AnalyzerOptions.html#__type.type-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoS2AnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.CreateGeoS2AnalyzerOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoS2AnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/analyzer.CreateGeoS2AnalyzerOptions.html#__type.properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoS2AnalyzerOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateGeoS2AnalyzerOptions.html#__type.properties.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateGeoS2AnalyzerOptions.__type.properties\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateGeoS2AnalyzerOptions.html#__type.properties.__type-1.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoS2AnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"types/analyzer.CreateGeoS2AnalyzerOptions.html#__type.properties.__type-1.options\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoS2AnalyzerOptions.__type.properties.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateGeoS2AnalyzerOptions.html#__type.properties.__type-1.options.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateGeoS2AnalyzerOptions.__type.properties.__type.options\"},{\"kind\":1024,\"name\":\"maxCells\",\"url\":\"types/analyzer.CreateGeoS2AnalyzerOptions.html#__type.properties.__type-1.options.__type-2.maxCells\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoS2AnalyzerOptions.__type.properties.__type.options.__type\"},{\"kind\":1024,\"name\":\"minLevel\",\"url\":\"types/analyzer.CreateGeoS2AnalyzerOptions.html#__type.properties.__type-1.options.__type-2.minLevel\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoS2AnalyzerOptions.__type.properties.__type.options.__type\"},{\"kind\":1024,\"name\":\"maxLevel\",\"url\":\"types/analyzer.CreateGeoS2AnalyzerOptions.html#__type.properties.__type-1.options.__type-2.maxLevel\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoS2AnalyzerOptions.__type.properties.__type.options.__type\"},{\"kind\":1024,\"name\":\"format\",\"url\":\"types/analyzer.CreateGeoS2AnalyzerOptions.html#__type.properties.__type-1.format\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoS2AnalyzerOptions.__type.properties.__type\"},{\"kind\":4194304,\"name\":\"GenericAnalyzerDescription\",\"url\":\"types/analyzer.GenericAnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.GenericAnalyzerDescription.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.GenericAnalyzerDescription\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/analyzer.GenericAnalyzerDescription.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.GenericAnalyzerDescription.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.GenericAnalyzerDescription.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.GenericAnalyzerDescription.__type\"},{\"kind\":4194304,\"name\":\"AnalyzerDescription\",\"url\":\"types/analyzer.AnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"IdentityAnalyzerDescription\",\"url\":\"types/analyzer.IdentityAnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"DelimiterAnalyzerDescription\",\"url\":\"types/analyzer.DelimiterAnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"MultiDelimiterAnalyzerDescription\",\"url\":\"types/analyzer.MultiDelimiterAnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"StemAnalyzerDescription\",\"url\":\"types/analyzer.StemAnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"NormAnalyzerDescription\",\"url\":\"types/analyzer.NormAnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"NgramAnalyzerDescription\",\"url\":\"types/analyzer.NgramAnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"TextAnalyzerDescription\",\"url\":\"types/analyzer.TextAnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"SegmentationAnalyzerDescription\",\"url\":\"types/analyzer.SegmentationAnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"AqlAnalyzerDescription\",\"url\":\"types/analyzer.AqlAnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"PipelineAnalyzerDescription\",\"url\":\"types/analyzer.PipelineAnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"StopwordsAnalyzerDescription\",\"url\":\"types/analyzer.StopwordsAnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"CollationAnalyzerDescription\",\"url\":\"types/analyzer.CollationAnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"MinHashAnalyzerDescription\",\"url\":\"types/analyzer.MinHashAnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"ClassificationAnalyzerDescription\",\"url\":\"types/analyzer.ClassificationAnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"NearestNeighborsAnalyzerDescription\",\"url\":\"types/analyzer.NearestNeighborsAnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"WildcardAnalyzerDescription\",\"url\":\"types/analyzer.WildcardAnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"GeoJsonAnalyzerDescription\",\"url\":\"types/analyzer.GeoJsonAnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"GeoPointAnalyzerDescription\",\"url\":\"types/analyzer.GeoPointAnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"GeoS2AnalyzerDescription\",\"url\":\"types/analyzer.GeoS2AnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":128,\"name\":\"Analyzer\",\"url\":\"classes/analyzer.Analyzer.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/analyzer.Analyzer.html#name\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"analyzer.Analyzer\"},{\"kind\":2048,\"name\":\"exists\",\"url\":\"classes/analyzer.Analyzer.html#exists\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"analyzer.Analyzer\"},{\"kind\":2048,\"name\":\"get\",\"url\":\"classes/analyzer.Analyzer.html#get\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"analyzer.Analyzer\"},{\"kind\":2048,\"name\":\"create\",\"url\":\"classes/analyzer.Analyzer.html#create\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"analyzer.Analyzer\"},{\"kind\":2048,\"name\":\"drop\",\"url\":\"classes/analyzer.Analyzer.html#drop\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"analyzer.Analyzer\"},{\"kind\":2,\"name\":\"aql\",\"url\":\"modules/aql.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"isAqlQuery\",\"url\":\"functions/aql.isAqlQuery.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"aql\"},{\"kind\":64,\"name\":\"isAqlLiteral\",\"url\":\"functions/aql.isAqlLiteral.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"aql\"},{\"kind\":64,\"name\":\"aql\",\"url\":\"functions/aql.aql.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"aql\"},{\"kind\":64,\"name\":\"literal\",\"url\":\"functions/aql.literal.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"aql\"},{\"kind\":64,\"name\":\"join\",\"url\":\"functions/aql.join.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"aql\"},{\"kind\":256,\"name\":\"AqlQuery\",\"url\":\"interfaces/aql.AqlQuery.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"aql\"},{\"kind\":1024,\"name\":\"query\",\"url\":\"interfaces/aql.AqlQuery.html#query\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"aql.AqlQuery\"},{\"kind\":1024,\"name\":\"bindVars\",\"url\":\"interfaces/aql.AqlQuery.html#bindVars\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"aql.AqlQuery\"},{\"kind\":1024,\"name\":\"[type]\",\"url\":\"interfaces/aql.AqlQuery.html#_type_\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"aql.AqlQuery\"},{\"kind\":256,\"name\":\"AqlLiteral\",\"url\":\"interfaces/aql.AqlLiteral.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"aql\"},{\"kind\":4194304,\"name\":\"AqlValue\",\"url\":\"types/aql.AqlValue.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"aql\"},{\"kind\":2,\"name\":\"collection\",\"url\":\"modules/collection.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"isArangoCollection\",\"url\":\"functions/collection.isArangoCollection.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":64,\"name\":\"collectionToString\",\"url\":\"functions/collection.collectionToString.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":256,\"name\":\"ArangoCollection\",\"url\":\"interfaces/collection.ArangoCollection.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/collection.ArangoCollection.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"collection.ArangoCollection\"},{\"kind\":8,\"name\":\"CollectionType\",\"url\":\"enums/collection.CollectionType.html\",\"classes\":\"tsd-kind-enum tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":16,\"name\":\"DOCUMENT_COLLECTION\",\"url\":\"enums/collection.CollectionType.html#DOCUMENT_COLLECTION\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"collection.CollectionType\"},{\"kind\":16,\"name\":\"EDGE_COLLECTION\",\"url\":\"enums/collection.CollectionType.html#EDGE_COLLECTION\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"collection.CollectionType\"},{\"kind\":8,\"name\":\"CollectionStatus\",\"url\":\"enums/collection.CollectionStatus.html\",\"classes\":\"tsd-kind-enum tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":16,\"name\":\"NEWBORN\",\"url\":\"enums/collection.CollectionStatus.html#NEWBORN\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"collection.CollectionStatus\"},{\"kind\":16,\"name\":\"UNLOADED\",\"url\":\"enums/collection.CollectionStatus.html#UNLOADED\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"collection.CollectionStatus\"},{\"kind\":16,\"name\":\"LOADED\",\"url\":\"enums/collection.CollectionStatus.html#LOADED\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"collection.CollectionStatus\"},{\"kind\":16,\"name\":\"UNLOADING\",\"url\":\"enums/collection.CollectionStatus.html#UNLOADING\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"collection.CollectionStatus\"},{\"kind\":16,\"name\":\"DELETED\",\"url\":\"enums/collection.CollectionStatus.html#DELETED\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"collection.CollectionStatus\"},{\"kind\":16,\"name\":\"LOADING\",\"url\":\"enums/collection.CollectionStatus.html#LOADING\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"collection.CollectionStatus\"},{\"kind\":4194304,\"name\":\"KeyGenerator\",\"url\":\"types/collection.KeyGenerator.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":4194304,\"name\":\"ShardingStrategy\",\"url\":\"types/collection.ShardingStrategy.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":4194304,\"name\":\"SimpleQueryListType\",\"url\":\"types/collection.SimpleQueryListType.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":4194304,\"name\":\"ValidationLevel\",\"url\":\"types/collection.ValidationLevel.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":4194304,\"name\":\"WriteOperation\",\"url\":\"types/collection.WriteOperation.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":4194304,\"name\":\"DocumentOperationFailure\",\"url\":\"types/collection.DocumentOperationFailure.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.DocumentOperationFailure.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.DocumentOperationFailure\"},{\"kind\":1024,\"name\":\"error\",\"url\":\"types/collection.DocumentOperationFailure.html#__type.error\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.DocumentOperationFailure.__type\"},{\"kind\":1024,\"name\":\"errorMessage\",\"url\":\"types/collection.DocumentOperationFailure.html#__type.errorMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.DocumentOperationFailure.__type\"},{\"kind\":1024,\"name\":\"errorNum\",\"url\":\"types/collection.DocumentOperationFailure.html#__type.errorNum\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.DocumentOperationFailure.__type\"},{\"kind\":4194304,\"name\":\"DocumentOperationMetadata\",\"url\":\"types/collection.DocumentOperationMetadata.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":4194304,\"name\":\"ComputedValueProperties\",\"url\":\"types/collection.ComputedValueProperties.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.ComputedValueProperties.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.ComputedValueProperties\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/collection.ComputedValueProperties.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.ComputedValueProperties.__type\"},{\"kind\":1024,\"name\":\"expression\",\"url\":\"types/collection.ComputedValueProperties.html#__type.expression\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.ComputedValueProperties.__type\"},{\"kind\":1024,\"name\":\"overwrite\",\"url\":\"types/collection.ComputedValueProperties.html#__type.overwrite\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.ComputedValueProperties.__type\"},{\"kind\":1024,\"name\":\"computeOn\",\"url\":\"types/collection.ComputedValueProperties.html#__type.computeOn\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.ComputedValueProperties.__type\"},{\"kind\":1024,\"name\":\"keepNull\",\"url\":\"types/collection.ComputedValueProperties.html#__type.keepNull\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.ComputedValueProperties.__type\"},{\"kind\":1024,\"name\":\"failOnWarning\",\"url\":\"types/collection.ComputedValueProperties.html#__type.failOnWarning\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.ComputedValueProperties.__type\"},{\"kind\":4194304,\"name\":\"CollectionMetadata\",\"url\":\"types/collection.CollectionMetadata.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CollectionMetadata.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.CollectionMetadata\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/collection.CollectionMetadata.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionMetadata.__type\"},{\"kind\":1024,\"name\":\"globallyUniqueId\",\"url\":\"types/collection.CollectionMetadata.html#__type.globallyUniqueId\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionMetadata.__type\"},{\"kind\":1024,\"name\":\"status\",\"url\":\"types/collection.CollectionMetadata.html#__type.status\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionMetadata.__type\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/collection.CollectionMetadata.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionMetadata.__type\"},{\"kind\":4194304,\"name\":\"CollectionKeyProperties\",\"url\":\"types/collection.CollectionKeyProperties.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CollectionKeyProperties.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.CollectionKeyProperties\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/collection.CollectionKeyProperties.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionKeyProperties.__type\"},{\"kind\":1024,\"name\":\"allowUserKeys\",\"url\":\"types/collection.CollectionKeyProperties.html#__type.allowUserKeys\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionKeyProperties.__type\"},{\"kind\":1024,\"name\":\"increment\",\"url\":\"types/collection.CollectionKeyProperties.html#__type.increment\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionKeyProperties.__type\"},{\"kind\":1024,\"name\":\"offset\",\"url\":\"types/collection.CollectionKeyProperties.html#__type.offset\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionKeyProperties.__type\"},{\"kind\":1024,\"name\":\"lastValue\",\"url\":\"types/collection.CollectionKeyProperties.html#__type.lastValue\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionKeyProperties.__type\"},{\"kind\":4194304,\"name\":\"SchemaProperties\",\"url\":\"types/collection.SchemaProperties.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.SchemaProperties.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.SchemaProperties\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/collection.SchemaProperties.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SchemaProperties.__type\"},{\"kind\":1024,\"name\":\"rule\",\"url\":\"types/collection.SchemaProperties.html#__type.rule\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SchemaProperties.__type\"},{\"kind\":1024,\"name\":\"level\",\"url\":\"types/collection.SchemaProperties.html#__type.level\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SchemaProperties.__type\"},{\"kind\":1024,\"name\":\"message\",\"url\":\"types/collection.SchemaProperties.html#__type.message\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SchemaProperties.__type\"},{\"kind\":4194304,\"name\":\"CollectionProperties\",\"url\":\"types/collection.CollectionProperties.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CollectionProperties.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.CollectionProperties\"},{\"kind\":1024,\"name\":\"statusString\",\"url\":\"types/collection.CollectionProperties.html#__type.statusString\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionProperties.__type\"},{\"kind\":1024,\"name\":\"waitForSync\",\"url\":\"types/collection.CollectionProperties.html#__type.waitForSync\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionProperties.__type\"},{\"kind\":1024,\"name\":\"keyOptions\",\"url\":\"types/collection.CollectionProperties.html#__type.keyOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionProperties.__type\"},{\"kind\":1024,\"name\":\"schema\",\"url\":\"types/collection.CollectionProperties.html#__type.schema\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionProperties.__type\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"types/collection.CollectionProperties.html#__type.writeConcern\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionProperties.__type\"},{\"kind\":1024,\"name\":\"numberOfShards\",\"url\":\"types/collection.CollectionProperties.html#__type.numberOfShards\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionProperties.__type\"},{\"kind\":1024,\"name\":\"shardKeys\",\"url\":\"types/collection.CollectionProperties.html#__type.shardKeys\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionProperties.__type\"},{\"kind\":1024,\"name\":\"replicationFactor\",\"url\":\"types/collection.CollectionProperties.html#__type.replicationFactor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionProperties.__type\"},{\"kind\":1024,\"name\":\"shardingStrategy\",\"url\":\"types/collection.CollectionProperties.html#__type.shardingStrategy\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionProperties.__type\"},{\"kind\":1024,\"name\":\"distributeShardsLike\",\"url\":\"types/collection.CollectionProperties.html#__type.distributeShardsLike\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionProperties.__type\"},{\"kind\":1024,\"name\":\"smartJoinAttribute\",\"url\":\"types/collection.CollectionProperties.html#__type.smartJoinAttribute\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionProperties.__type\"},{\"kind\":1024,\"name\":\"smartGraphAttribute\",\"url\":\"types/collection.CollectionProperties.html#__type.smartGraphAttribute\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionProperties.__type\"},{\"kind\":1024,\"name\":\"computedValues\",\"url\":\"types/collection.CollectionProperties.html#__type.computedValues\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionProperties.__type\"},{\"kind\":1024,\"name\":\"cacheEnabled\",\"url\":\"types/collection.CollectionProperties.html#__type.cacheEnabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionProperties.__type\"},{\"kind\":1024,\"name\":\"syncByRevision\",\"url\":\"types/collection.CollectionProperties.html#__type.syncByRevision\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionProperties.__type\"},{\"kind\":1024,\"name\":\"isSmart\",\"url\":\"types/collection.CollectionProperties.html#__type.isSmart\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionProperties.__type\"},{\"kind\":1024,\"name\":\"isDisjoint\",\"url\":\"types/collection.CollectionProperties.html#__type.isDisjoint\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionProperties.__type\"},{\"kind\":4194304,\"name\":\"ComputedValueOptions\",\"url\":\"types/collection.ComputedValueOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.ComputedValueOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.ComputedValueOptions\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/collection.ComputedValueOptions.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.ComputedValueOptions.__type\"},{\"kind\":1024,\"name\":\"expression\",\"url\":\"types/collection.ComputedValueOptions.html#__type.expression\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.ComputedValueOptions.__type\"},{\"kind\":1024,\"name\":\"overwrite\",\"url\":\"types/collection.ComputedValueOptions.html#__type.overwrite\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.ComputedValueOptions.__type\"},{\"kind\":1024,\"name\":\"computeOn\",\"url\":\"types/collection.ComputedValueOptions.html#__type.computeOn\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.ComputedValueOptions.__type\"},{\"kind\":1024,\"name\":\"keepNull\",\"url\":\"types/collection.ComputedValueOptions.html#__type.keepNull\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.ComputedValueOptions.__type\"},{\"kind\":1024,\"name\":\"failOnWarning\",\"url\":\"types/collection.ComputedValueOptions.html#__type.failOnWarning\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.ComputedValueOptions.__type\"},{\"kind\":4194304,\"name\":\"SchemaOptions\",\"url\":\"types/collection.SchemaOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.SchemaOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.SchemaOptions\"},{\"kind\":1024,\"name\":\"rule\",\"url\":\"types/collection.SchemaOptions.html#__type.rule\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SchemaOptions.__type\"},{\"kind\":1024,\"name\":\"level\",\"url\":\"types/collection.SchemaOptions.html#__type.level\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SchemaOptions.__type\"},{\"kind\":1024,\"name\":\"message\",\"url\":\"types/collection.SchemaOptions.html#__type.message\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SchemaOptions.__type\"},{\"kind\":4194304,\"name\":\"CollectionPropertiesOptions\",\"url\":\"types/collection.CollectionPropertiesOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CollectionPropertiesOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.CollectionPropertiesOptions\"},{\"kind\":1024,\"name\":\"waitForSync\",\"url\":\"types/collection.CollectionPropertiesOptions.html#__type.waitForSync\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionPropertiesOptions.__type\"},{\"kind\":1024,\"name\":\"replicationFactor\",\"url\":\"types/collection.CollectionPropertiesOptions.html#__type.replicationFactor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionPropertiesOptions.__type\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"types/collection.CollectionPropertiesOptions.html#__type.writeConcern\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionPropertiesOptions.__type\"},{\"kind\":1024,\"name\":\"schema\",\"url\":\"types/collection.CollectionPropertiesOptions.html#__type.schema\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionPropertiesOptions.__type\"},{\"kind\":1024,\"name\":\"computedValues\",\"url\":\"types/collection.CollectionPropertiesOptions.html#__type.computedValues\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionPropertiesOptions.__type\"},{\"kind\":1024,\"name\":\"cacheEnabled\",\"url\":\"types/collection.CollectionPropertiesOptions.html#__type.cacheEnabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionPropertiesOptions.__type\"},{\"kind\":4194304,\"name\":\"CollectionChecksumOptions\",\"url\":\"types/collection.CollectionChecksumOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CollectionChecksumOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.CollectionChecksumOptions\"},{\"kind\":1024,\"name\":\"withRevisions\",\"url\":\"types/collection.CollectionChecksumOptions.html#__type.withRevisions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionChecksumOptions.__type\"},{\"kind\":1024,\"name\":\"withData\",\"url\":\"types/collection.CollectionChecksumOptions.html#__type.withData\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionChecksumOptions.__type\"},{\"kind\":4194304,\"name\":\"CollectionDropOptions\",\"url\":\"types/collection.CollectionDropOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CollectionDropOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.CollectionDropOptions\"},{\"kind\":1024,\"name\":\"isSystem\",\"url\":\"types/collection.CollectionDropOptions.html#__type.isSystem\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionDropOptions.__type\"},{\"kind\":4194304,\"name\":\"CollectionKeyOptions\",\"url\":\"types/collection.CollectionKeyOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CollectionKeyOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.CollectionKeyOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/collection.CollectionKeyOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionKeyOptions.__type\"},{\"kind\":1024,\"name\":\"allowUserKeys\",\"url\":\"types/collection.CollectionKeyOptions.html#__type.allowUserKeys\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionKeyOptions.__type\"},{\"kind\":1024,\"name\":\"increment\",\"url\":\"types/collection.CollectionKeyOptions.html#__type.increment\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionKeyOptions.__type\"},{\"kind\":1024,\"name\":\"offset\",\"url\":\"types/collection.CollectionKeyOptions.html#__type.offset\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionKeyOptions.__type\"},{\"kind\":4194304,\"name\":\"CreateCollectionOptions\",\"url\":\"types/collection.CreateCollectionOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CreateCollectionOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"waitForSync\",\"url\":\"types/collection.CreateCollectionOptions.html#__type.waitForSync\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CreateCollectionOptions.__type\"},{\"kind\":1024,\"name\":\"keyOptions\",\"url\":\"types/collection.CreateCollectionOptions.html#__type.keyOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CreateCollectionOptions.__type\"},{\"kind\":1024,\"name\":\"schema\",\"url\":\"types/collection.CreateCollectionOptions.html#__type.schema\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CreateCollectionOptions.__type\"},{\"kind\":1024,\"name\":\"waitForSyncReplication\",\"url\":\"types/collection.CreateCollectionOptions.html#__type.waitForSyncReplication\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CreateCollectionOptions.__type\"},{\"kind\":1024,\"name\":\"enforceReplicationFactor\",\"url\":\"types/collection.CreateCollectionOptions.html#__type.enforceReplicationFactor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CreateCollectionOptions.__type\"},{\"kind\":1024,\"name\":\"numberOfShards\",\"url\":\"types/collection.CreateCollectionOptions.html#__type.numberOfShards\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CreateCollectionOptions.__type\"},{\"kind\":1024,\"name\":\"shardKeys\",\"url\":\"types/collection.CreateCollectionOptions.html#__type.shardKeys\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CreateCollectionOptions.__type\"},{\"kind\":1024,\"name\":\"replicationFactor\",\"url\":\"types/collection.CreateCollectionOptions.html#__type.replicationFactor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CreateCollectionOptions.__type\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"types/collection.CreateCollectionOptions.html#__type.writeConcern\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CreateCollectionOptions.__type\"},{\"kind\":1024,\"name\":\"shardingStrategy\",\"url\":\"types/collection.CreateCollectionOptions.html#__type.shardingStrategy\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CreateCollectionOptions.__type\"},{\"kind\":1024,\"name\":\"distributeShardsLike\",\"url\":\"types/collection.CreateCollectionOptions.html#__type.distributeShardsLike\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CreateCollectionOptions.__type\"},{\"kind\":1024,\"name\":\"smartJoinAttribute\",\"url\":\"types/collection.CreateCollectionOptions.html#__type.smartJoinAttribute\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CreateCollectionOptions.__type\"},{\"kind\":1024,\"name\":\"smartGraphAttribute\",\"url\":\"types/collection.CreateCollectionOptions.html#__type.smartGraphAttribute\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CreateCollectionOptions.__type\"},{\"kind\":1024,\"name\":\"computedValues\",\"url\":\"types/collection.CreateCollectionOptions.html#__type.computedValues\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CreateCollectionOptions.__type\"},{\"kind\":1024,\"name\":\"cacheEnabled\",\"url\":\"types/collection.CreateCollectionOptions.html#__type.cacheEnabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CreateCollectionOptions.__type\"},{\"kind\":4194304,\"name\":\"DocumentExistsOptions\",\"url\":\"types/collection.DocumentExistsOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.DocumentExistsOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.DocumentExistsOptions\"},{\"kind\":1024,\"name\":\"ifMatch\",\"url\":\"types/collection.DocumentExistsOptions.html#__type.ifMatch\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.DocumentExistsOptions.__type\"},{\"kind\":1024,\"name\":\"ifNoneMatch\",\"url\":\"types/collection.DocumentExistsOptions.html#__type.ifNoneMatch\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.DocumentExistsOptions.__type\"},{\"kind\":4194304,\"name\":\"CollectionReadOptions\",\"url\":\"types/collection.CollectionReadOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CollectionReadOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.CollectionReadOptions\"},{\"kind\":1024,\"name\":\"graceful\",\"url\":\"types/collection.CollectionReadOptions.html#__type.graceful\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionReadOptions.__type\"},{\"kind\":1024,\"name\":\"allowDirtyRead\",\"url\":\"types/collection.CollectionReadOptions.html#__type.allowDirtyRead\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionReadOptions.__type\"},{\"kind\":1024,\"name\":\"ifMatch\",\"url\":\"types/collection.CollectionReadOptions.html#__type.ifMatch\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionReadOptions.__type\"},{\"kind\":1024,\"name\":\"ifNoneMatch\",\"url\":\"types/collection.CollectionReadOptions.html#__type.ifNoneMatch\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionReadOptions.__type\"},{\"kind\":4194304,\"name\":\"CollectionBatchReadOptions\",\"url\":\"types/collection.CollectionBatchReadOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CollectionBatchReadOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.CollectionBatchReadOptions\"},{\"kind\":1024,\"name\":\"allowDirtyRead\",\"url\":\"types/collection.CollectionBatchReadOptions.html#__type.allowDirtyRead\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionBatchReadOptions.__type\"},{\"kind\":4194304,\"name\":\"CollectionInsertOptions\",\"url\":\"types/collection.CollectionInsertOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CollectionInsertOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.CollectionInsertOptions\"},{\"kind\":1024,\"name\":\"waitForSync\",\"url\":\"types/collection.CollectionInsertOptions.html#__type.waitForSync\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionInsertOptions.__type\"},{\"kind\":1024,\"name\":\"silent\",\"url\":\"types/collection.CollectionInsertOptions.html#__type.silent\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionInsertOptions.__type\"},{\"kind\":1024,\"name\":\"returnNew\",\"url\":\"types/collection.CollectionInsertOptions.html#__type.returnNew\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionInsertOptions.__type\"},{\"kind\":1024,\"name\":\"returnOld\",\"url\":\"types/collection.CollectionInsertOptions.html#__type.returnOld\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionInsertOptions.__type\"},{\"kind\":1024,\"name\":\"overwriteMode\",\"url\":\"types/collection.CollectionInsertOptions.html#__type.overwriteMode\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionInsertOptions.__type\"},{\"kind\":1024,\"name\":\"mergeObjects\",\"url\":\"types/collection.CollectionInsertOptions.html#__type.mergeObjects\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionInsertOptions.__type\"},{\"kind\":1024,\"name\":\"refillIndexCaches\",\"url\":\"types/collection.CollectionInsertOptions.html#__type.refillIndexCaches\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionInsertOptions.__type\"},{\"kind\":1024,\"name\":\"versionAttribute\",\"url\":\"types/collection.CollectionInsertOptions.html#__type.versionAttribute\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionInsertOptions.__type\"},{\"kind\":4194304,\"name\":\"CollectionReplaceOptions\",\"url\":\"types/collection.CollectionReplaceOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CollectionReplaceOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.CollectionReplaceOptions\"},{\"kind\":1024,\"name\":\"waitForSync\",\"url\":\"types/collection.CollectionReplaceOptions.html#__type.waitForSync\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionReplaceOptions.__type\"},{\"kind\":1024,\"name\":\"silent\",\"url\":\"types/collection.CollectionReplaceOptions.html#__type.silent\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionReplaceOptions.__type\"},{\"kind\":1024,\"name\":\"returnNew\",\"url\":\"types/collection.CollectionReplaceOptions.html#__type.returnNew\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionReplaceOptions.__type\"},{\"kind\":1024,\"name\":\"ignoreRevs\",\"url\":\"types/collection.CollectionReplaceOptions.html#__type.ignoreRevs\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionReplaceOptions.__type\"},{\"kind\":1024,\"name\":\"returnOld\",\"url\":\"types/collection.CollectionReplaceOptions.html#__type.returnOld\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionReplaceOptions.__type\"},{\"kind\":1024,\"name\":\"ifMatch\",\"url\":\"types/collection.CollectionReplaceOptions.html#__type.ifMatch\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionReplaceOptions.__type\"},{\"kind\":1024,\"name\":\"refillIndexCaches\",\"url\":\"types/collection.CollectionReplaceOptions.html#__type.refillIndexCaches\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionReplaceOptions.__type\"},{\"kind\":1024,\"name\":\"versionAttribute\",\"url\":\"types/collection.CollectionReplaceOptions.html#__type.versionAttribute\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionReplaceOptions.__type\"},{\"kind\":4194304,\"name\":\"CollectionUpdateOptions\",\"url\":\"types/collection.CollectionUpdateOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CollectionUpdateOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.CollectionUpdateOptions\"},{\"kind\":1024,\"name\":\"waitForSync\",\"url\":\"types/collection.CollectionUpdateOptions.html#__type.waitForSync\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionUpdateOptions.__type\"},{\"kind\":1024,\"name\":\"silent\",\"url\":\"types/collection.CollectionUpdateOptions.html#__type.silent\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionUpdateOptions.__type\"},{\"kind\":1024,\"name\":\"returnNew\",\"url\":\"types/collection.CollectionUpdateOptions.html#__type.returnNew\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionUpdateOptions.__type\"},{\"kind\":1024,\"name\":\"ignoreRevs\",\"url\":\"types/collection.CollectionUpdateOptions.html#__type.ignoreRevs\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionUpdateOptions.__type\"},{\"kind\":1024,\"name\":\"returnOld\",\"url\":\"types/collection.CollectionUpdateOptions.html#__type.returnOld\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionUpdateOptions.__type\"},{\"kind\":1024,\"name\":\"keepNull\",\"url\":\"types/collection.CollectionUpdateOptions.html#__type.keepNull\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionUpdateOptions.__type\"},{\"kind\":1024,\"name\":\"mergeObjects\",\"url\":\"types/collection.CollectionUpdateOptions.html#__type.mergeObjects\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionUpdateOptions.__type\"},{\"kind\":1024,\"name\":\"ifMatch\",\"url\":\"types/collection.CollectionUpdateOptions.html#__type.ifMatch\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionUpdateOptions.__type\"},{\"kind\":1024,\"name\":\"refillIndexCaches\",\"url\":\"types/collection.CollectionUpdateOptions.html#__type.refillIndexCaches\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionUpdateOptions.__type\"},{\"kind\":1024,\"name\":\"versionAttribute\",\"url\":\"types/collection.CollectionUpdateOptions.html#__type.versionAttribute\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionUpdateOptions.__type\"},{\"kind\":4194304,\"name\":\"CollectionRemoveOptions\",\"url\":\"types/collection.CollectionRemoveOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CollectionRemoveOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.CollectionRemoveOptions\"},{\"kind\":1024,\"name\":\"waitForSync\",\"url\":\"types/collection.CollectionRemoveOptions.html#__type.waitForSync\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionRemoveOptions.__type\"},{\"kind\":1024,\"name\":\"returnOld\",\"url\":\"types/collection.CollectionRemoveOptions.html#__type.returnOld\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionRemoveOptions.__type\"},{\"kind\":1024,\"name\":\"silent\",\"url\":\"types/collection.CollectionRemoveOptions.html#__type.silent\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionRemoveOptions.__type\"},{\"kind\":1024,\"name\":\"ifMatch\",\"url\":\"types/collection.CollectionRemoveOptions.html#__type.ifMatch\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionRemoveOptions.__type\"},{\"kind\":1024,\"name\":\"refillIndexCaches\",\"url\":\"types/collection.CollectionRemoveOptions.html#__type.refillIndexCaches\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionRemoveOptions.__type\"},{\"kind\":4194304,\"name\":\"CollectionImportOptions\",\"url\":\"types/collection.CollectionImportOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CollectionImportOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.CollectionImportOptions\"},{\"kind\":1024,\"name\":\"fromPrefix\",\"url\":\"types/collection.CollectionImportOptions.html#__type.fromPrefix\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionImportOptions.__type\"},{\"kind\":1024,\"name\":\"toPrefix\",\"url\":\"types/collection.CollectionImportOptions.html#__type.toPrefix\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionImportOptions.__type\"},{\"kind\":1024,\"name\":\"overwrite\",\"url\":\"types/collection.CollectionImportOptions.html#__type.overwrite\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionImportOptions.__type\"},{\"kind\":1024,\"name\":\"waitForSync\",\"url\":\"types/collection.CollectionImportOptions.html#__type.waitForSync\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionImportOptions.__type\"},{\"kind\":1024,\"name\":\"onDuplicate\",\"url\":\"types/collection.CollectionImportOptions.html#__type.onDuplicate\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionImportOptions.__type\"},{\"kind\":1024,\"name\":\"complete\",\"url\":\"types/collection.CollectionImportOptions.html#__type.complete\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionImportOptions.__type\"},{\"kind\":1024,\"name\":\"details\",\"url\":\"types/collection.CollectionImportOptions.html#__type.details\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionImportOptions.__type\"},{\"kind\":4194304,\"name\":\"CollectionEdgesOptions\",\"url\":\"types/collection.CollectionEdgesOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CollectionEdgesOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.CollectionEdgesOptions\"},{\"kind\":1024,\"name\":\"allowDirtyRead\",\"url\":\"types/collection.CollectionEdgesOptions.html#__type.allowDirtyRead\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionEdgesOptions.__type\"},{\"kind\":4194304,\"name\":\"SimpleQueryByExampleOptions\",\"url\":\"types/collection.SimpleQueryByExampleOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.SimpleQueryByExampleOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.SimpleQueryByExampleOptions\"},{\"kind\":1024,\"name\":\"skip\",\"url\":\"types/collection.SimpleQueryByExampleOptions.html#__type.skip\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryByExampleOptions.__type\"},{\"kind\":1024,\"name\":\"limit\",\"url\":\"types/collection.SimpleQueryByExampleOptions.html#__type.limit\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryByExampleOptions.__type\"},{\"kind\":1024,\"name\":\"batchSize\",\"url\":\"types/collection.SimpleQueryByExampleOptions.html#__type.batchSize\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryByExampleOptions.__type\"},{\"kind\":1024,\"name\":\"ttl\",\"url\":\"types/collection.SimpleQueryByExampleOptions.html#__type.ttl\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryByExampleOptions.__type\"},{\"kind\":4194304,\"name\":\"SimpleQueryAllOptions\",\"url\":\"types/collection.SimpleQueryAllOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.SimpleQueryAllOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.SimpleQueryAllOptions\"},{\"kind\":1024,\"name\":\"skip\",\"url\":\"types/collection.SimpleQueryAllOptions.html#__type.skip\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryAllOptions.__type\"},{\"kind\":1024,\"name\":\"limit\",\"url\":\"types/collection.SimpleQueryAllOptions.html#__type.limit\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryAllOptions.__type\"},{\"kind\":1024,\"name\":\"batchSize\",\"url\":\"types/collection.SimpleQueryAllOptions.html#__type.batchSize\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryAllOptions.__type\"},{\"kind\":1024,\"name\":\"ttl\",\"url\":\"types/collection.SimpleQueryAllOptions.html#__type.ttl\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryAllOptions.__type\"},{\"kind\":1024,\"name\":\"stream\",\"url\":\"types/collection.SimpleQueryAllOptions.html#__type.stream\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryAllOptions.__type\"},{\"kind\":4194304,\"name\":\"SimpleQueryUpdateByExampleOptions\",\"url\":\"types/collection.SimpleQueryUpdateByExampleOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.SimpleQueryUpdateByExampleOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.SimpleQueryUpdateByExampleOptions\"},{\"kind\":1024,\"name\":\"keepNull\",\"url\":\"types/collection.SimpleQueryUpdateByExampleOptions.html#__type.keepNull\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryUpdateByExampleOptions.__type\"},{\"kind\":1024,\"name\":\"waitForSync\",\"url\":\"types/collection.SimpleQueryUpdateByExampleOptions.html#__type.waitForSync\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryUpdateByExampleOptions.__type\"},{\"kind\":1024,\"name\":\"limit\",\"url\":\"types/collection.SimpleQueryUpdateByExampleOptions.html#__type.limit\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryUpdateByExampleOptions.__type\"},{\"kind\":1024,\"name\":\"mergeObjects\",\"url\":\"types/collection.SimpleQueryUpdateByExampleOptions.html#__type.mergeObjects\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryUpdateByExampleOptions.__type\"},{\"kind\":4194304,\"name\":\"SimpleQueryRemoveByExampleOptions\",\"url\":\"types/collection.SimpleQueryRemoveByExampleOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.SimpleQueryRemoveByExampleOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.SimpleQueryRemoveByExampleOptions\"},{\"kind\":1024,\"name\":\"waitForSync\",\"url\":\"types/collection.SimpleQueryRemoveByExampleOptions.html#__type.waitForSync\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryRemoveByExampleOptions.__type\"},{\"kind\":1024,\"name\":\"limit\",\"url\":\"types/collection.SimpleQueryRemoveByExampleOptions.html#__type.limit\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryRemoveByExampleOptions.__type\"},{\"kind\":4194304,\"name\":\"SimpleQueryReplaceByExampleOptions\",\"url\":\"types/collection.SimpleQueryReplaceByExampleOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":4194304,\"name\":\"SimpleQueryRemoveByKeysOptions\",\"url\":\"types/collection.SimpleQueryRemoveByKeysOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.SimpleQueryRemoveByKeysOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.SimpleQueryRemoveByKeysOptions\"},{\"kind\":1024,\"name\":\"returnOld\",\"url\":\"types/collection.SimpleQueryRemoveByKeysOptions.html#__type.returnOld\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryRemoveByKeysOptions.__type\"},{\"kind\":1024,\"name\":\"silent\",\"url\":\"types/collection.SimpleQueryRemoveByKeysOptions.html#__type.silent\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryRemoveByKeysOptions.__type\"},{\"kind\":1024,\"name\":\"waitForSync\",\"url\":\"types/collection.SimpleQueryRemoveByKeysOptions.html#__type.waitForSync\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryRemoveByKeysOptions.__type\"},{\"kind\":4194304,\"name\":\"SimpleQueryFulltextOptions\",\"url\":\"types/collection.SimpleQueryFulltextOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.SimpleQueryFulltextOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.SimpleQueryFulltextOptions\"},{\"kind\":1024,\"name\":\"index\",\"url\":\"types/collection.SimpleQueryFulltextOptions.html#__type.index\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryFulltextOptions.__type\"},{\"kind\":1024,\"name\":\"limit\",\"url\":\"types/collection.SimpleQueryFulltextOptions.html#__type.limit\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryFulltextOptions.__type\"},{\"kind\":1024,\"name\":\"skip\",\"url\":\"types/collection.SimpleQueryFulltextOptions.html#__type.skip\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryFulltextOptions.__type\"},{\"kind\":4194304,\"name\":\"TraversalOptions\",\"url\":\"types/collection.TraversalOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.TraversalOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.TraversalOptions\"},{\"kind\":1024,\"name\":\"init\",\"url\":\"types/collection.TraversalOptions.html#__type.init\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.TraversalOptions.__type\"},{\"kind\":1024,\"name\":\"filter\",\"url\":\"types/collection.TraversalOptions.html#__type.filter\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.TraversalOptions.__type\"},{\"kind\":1024,\"name\":\"sort\",\"url\":\"types/collection.TraversalOptions.html#__type.sort\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.TraversalOptions.__type\"},{\"kind\":1024,\"name\":\"visitor\",\"url\":\"types/collection.TraversalOptions.html#__type.visitor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.TraversalOptions.__type\"},{\"kind\":1024,\"name\":\"expander\",\"url\":\"types/collection.TraversalOptions.html#__type.expander\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.TraversalOptions.__type\"},{\"kind\":1024,\"name\":\"direction\",\"url\":\"types/collection.TraversalOptions.html#__type.direction\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.TraversalOptions.__type\"},{\"kind\":1024,\"name\":\"itemOrder\",\"url\":\"types/collection.TraversalOptions.html#__type.itemOrder\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.TraversalOptions.__type\"},{\"kind\":1024,\"name\":\"strategy\",\"url\":\"types/collection.TraversalOptions.html#__type.strategy\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.TraversalOptions.__type\"},{\"kind\":1024,\"name\":\"order\",\"url\":\"types/collection.TraversalOptions.html#__type.order\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.TraversalOptions.__type\"},{\"kind\":1024,\"name\":\"uniqueness\",\"url\":\"types/collection.TraversalOptions.html#__type.uniqueness\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.TraversalOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.TraversalOptions.html#__type.uniqueness.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"collection.TraversalOptions.__type.uniqueness\"},{\"kind\":1024,\"name\":\"vertices\",\"url\":\"types/collection.TraversalOptions.html#__type.uniqueness.__type-1.vertices\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.TraversalOptions.__type.uniqueness.__type\"},{\"kind\":1024,\"name\":\"edges\",\"url\":\"types/collection.TraversalOptions.html#__type.uniqueness.__type-1.edges\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.TraversalOptions.__type.uniqueness.__type\"},{\"kind\":1024,\"name\":\"minDepth\",\"url\":\"types/collection.TraversalOptions.html#__type.minDepth\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.TraversalOptions.__type\"},{\"kind\":1024,\"name\":\"maxDepth\",\"url\":\"types/collection.TraversalOptions.html#__type.maxDepth\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.TraversalOptions.__type\"},{\"kind\":1024,\"name\":\"maxIterations\",\"url\":\"types/collection.TraversalOptions.html#__type.maxIterations\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.TraversalOptions.__type\"},{\"kind\":4194304,\"name\":\"CollectionImportResult\",\"url\":\"types/collection.CollectionImportResult.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CollectionImportResult.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.CollectionImportResult\"},{\"kind\":1024,\"name\":\"error\",\"url\":\"types/collection.CollectionImportResult.html#__type.error\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionImportResult.__type\"},{\"kind\":1024,\"name\":\"created\",\"url\":\"types/collection.CollectionImportResult.html#__type.created\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionImportResult.__type\"},{\"kind\":1024,\"name\":\"errors\",\"url\":\"types/collection.CollectionImportResult.html#__type.errors\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionImportResult.__type\"},{\"kind\":1024,\"name\":\"empty\",\"url\":\"types/collection.CollectionImportResult.html#__type.empty\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionImportResult.__type\"},{\"kind\":1024,\"name\":\"updated\",\"url\":\"types/collection.CollectionImportResult.html#__type.updated\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionImportResult.__type\"},{\"kind\":1024,\"name\":\"ignored\",\"url\":\"types/collection.CollectionImportResult.html#__type.ignored\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionImportResult.__type\"},{\"kind\":1024,\"name\":\"details\",\"url\":\"types/collection.CollectionImportResult.html#__type.details\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionImportResult.__type\"},{\"kind\":4194304,\"name\":\"CollectionEdgesResult\",\"url\":\"types/collection.CollectionEdgesResult.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CollectionEdgesResult.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.CollectionEdgesResult\"},{\"kind\":1024,\"name\":\"edges\",\"url\":\"types/collection.CollectionEdgesResult.html#__type.edges\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionEdgesResult.__type\"},{\"kind\":1024,\"name\":\"stats\",\"url\":\"types/collection.CollectionEdgesResult.html#__type.stats\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionEdgesResult.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CollectionEdgesResult.html#__type.stats.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"collection.CollectionEdgesResult.__type.stats\"},{\"kind\":1024,\"name\":\"scannedIndex\",\"url\":\"types/collection.CollectionEdgesResult.html#__type.stats.__type-1.scannedIndex\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionEdgesResult.__type.stats.__type\"},{\"kind\":1024,\"name\":\"filtered\",\"url\":\"types/collection.CollectionEdgesResult.html#__type.stats.__type-1.filtered\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionEdgesResult.__type.stats.__type\"},{\"kind\":4194304,\"name\":\"SimpleQueryRemoveByExampleResult\",\"url\":\"types/collection.SimpleQueryRemoveByExampleResult.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.SimpleQueryRemoveByExampleResult.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.SimpleQueryRemoveByExampleResult\"},{\"kind\":1024,\"name\":\"deleted\",\"url\":\"types/collection.SimpleQueryRemoveByExampleResult.html#__type.deleted\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryRemoveByExampleResult.__type\"},{\"kind\":4194304,\"name\":\"SimpleQueryReplaceByExampleResult\",\"url\":\"types/collection.SimpleQueryReplaceByExampleResult.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.SimpleQueryReplaceByExampleResult.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.SimpleQueryReplaceByExampleResult\"},{\"kind\":1024,\"name\":\"replaced\",\"url\":\"types/collection.SimpleQueryReplaceByExampleResult.html#__type.replaced\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryReplaceByExampleResult.__type\"},{\"kind\":4194304,\"name\":\"SimpleQueryUpdateByExampleResult\",\"url\":\"types/collection.SimpleQueryUpdateByExampleResult.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.SimpleQueryUpdateByExampleResult.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.SimpleQueryUpdateByExampleResult\"},{\"kind\":1024,\"name\":\"updated\",\"url\":\"types/collection.SimpleQueryUpdateByExampleResult.html#__type.updated\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryUpdateByExampleResult.__type\"},{\"kind\":4194304,\"name\":\"SimpleQueryRemoveByKeysResult\",\"url\":\"types/collection.SimpleQueryRemoveByKeysResult.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.SimpleQueryRemoveByKeysResult.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.SimpleQueryRemoveByKeysResult\"},{\"kind\":1024,\"name\":\"removed\",\"url\":\"types/collection.SimpleQueryRemoveByKeysResult.html#__type.removed\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryRemoveByKeysResult.__type\"},{\"kind\":1024,\"name\":\"ignored\",\"url\":\"types/collection.SimpleQueryRemoveByKeysResult.html#__type.ignored\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryRemoveByKeysResult.__type\"},{\"kind\":1024,\"name\":\"old\",\"url\":\"types/collection.SimpleQueryRemoveByKeysResult.html#__type.old\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryRemoveByKeysResult.__type\"},{\"kind\":256,\"name\":\"DocumentCollection\",\"url\":\"interfaces/collection.DocumentCollection.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":2048,\"name\":\"exists\",\"url\":\"interfaces/collection.DocumentCollection.html#exists\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"get\",\"url\":\"interfaces/collection.DocumentCollection.html#get\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"create\",\"url\":\"interfaces/collection.DocumentCollection.html#create\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"properties\",\"url\":\"interfaces/collection.DocumentCollection.html#properties\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"count\",\"url\":\"interfaces/collection.DocumentCollection.html#count\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"recalculateCount\",\"url\":\"interfaces/collection.DocumentCollection.html#recalculateCount\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"figures\",\"url\":\"interfaces/collection.DocumentCollection.html#figures\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"revision\",\"url\":\"interfaces/collection.DocumentCollection.html#revision\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"checksum\",\"url\":\"interfaces/collection.DocumentCollection.html#checksum\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"loadIndexes\",\"url\":\"interfaces/collection.DocumentCollection.html#loadIndexes\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"rename\",\"url\":\"interfaces/collection.DocumentCollection.html#rename\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"truncate\",\"url\":\"interfaces/collection.DocumentCollection.html#truncate\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"drop\",\"url\":\"interfaces/collection.DocumentCollection.html#drop\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"getResponsibleShard\",\"url\":\"interfaces/collection.DocumentCollection.html#getResponsibleShard\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"documentId\",\"url\":\"interfaces/collection.DocumentCollection.html#documentId\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"documentExists\",\"url\":\"interfaces/collection.DocumentCollection.html#documentExists\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"document\",\"url\":\"interfaces/collection.DocumentCollection.html#document\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"documents\",\"url\":\"interfaces/collection.DocumentCollection.html#documents\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"save\",\"url\":\"interfaces/collection.DocumentCollection.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"saveAll\",\"url\":\"interfaces/collection.DocumentCollection.html#saveAll\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"replace\",\"url\":\"interfaces/collection.DocumentCollection.html#replace\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"replaceAll\",\"url\":\"interfaces/collection.DocumentCollection.html#replaceAll\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"update\",\"url\":\"interfaces/collection.DocumentCollection.html#update\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"updateAll\",\"url\":\"interfaces/collection.DocumentCollection.html#updateAll\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"remove\",\"url\":\"interfaces/collection.DocumentCollection.html#remove\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"removeAll\",\"url\":\"interfaces/collection.DocumentCollection.html#removeAll\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"import\",\"url\":\"interfaces/collection.DocumentCollection.html#import\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"list\",\"url\":\"interfaces/collection.DocumentCollection.html#list\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"all\",\"url\":\"interfaces/collection.DocumentCollection.html#all\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"any\",\"url\":\"interfaces/collection.DocumentCollection.html#any\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"byExample\",\"url\":\"interfaces/collection.DocumentCollection.html#byExample\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"firstExample\",\"url\":\"interfaces/collection.DocumentCollection.html#firstExample\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"removeByExample\",\"url\":\"interfaces/collection.DocumentCollection.html#removeByExample\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"replaceByExample\",\"url\":\"interfaces/collection.DocumentCollection.html#replaceByExample\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"updateByExample\",\"url\":\"interfaces/collection.DocumentCollection.html#updateByExample\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"lookupByKeys\",\"url\":\"interfaces/collection.DocumentCollection.html#lookupByKeys\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"removeByKeys\",\"url\":\"interfaces/collection.DocumentCollection.html#removeByKeys\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"fulltext\",\"url\":\"interfaces/collection.DocumentCollection.html#fulltext\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"indexes\",\"url\":\"interfaces/collection.DocumentCollection.html#indexes\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"index\",\"url\":\"interfaces/collection.DocumentCollection.html#index\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"ensureIndex\",\"url\":\"interfaces/collection.DocumentCollection.html#ensureIndex\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"dropIndex\",\"url\":\"interfaces/collection.DocumentCollection.html#dropIndex\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"compact\",\"url\":\"interfaces/collection.DocumentCollection.html#compact\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/collection.DocumentCollection.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":256,\"name\":\"EdgeCollection\",\"url\":\"interfaces/collection.EdgeCollection.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":2048,\"name\":\"document\",\"url\":\"interfaces/collection.EdgeCollection.html#document\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"documents\",\"url\":\"interfaces/collection.EdgeCollection.html#documents\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"save\",\"url\":\"interfaces/collection.EdgeCollection.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"saveAll\",\"url\":\"interfaces/collection.EdgeCollection.html#saveAll\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"replace\",\"url\":\"interfaces/collection.EdgeCollection.html#replace\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"replaceAll\",\"url\":\"interfaces/collection.EdgeCollection.html#replaceAll\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"update\",\"url\":\"interfaces/collection.EdgeCollection.html#update\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"updateAll\",\"url\":\"interfaces/collection.EdgeCollection.html#updateAll\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"remove\",\"url\":\"interfaces/collection.EdgeCollection.html#remove\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"removeAll\",\"url\":\"interfaces/collection.EdgeCollection.html#removeAll\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"import\",\"url\":\"interfaces/collection.EdgeCollection.html#import\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"all\",\"url\":\"interfaces/collection.EdgeCollection.html#all\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"any\",\"url\":\"interfaces/collection.EdgeCollection.html#any\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"byExample\",\"url\":\"interfaces/collection.EdgeCollection.html#byExample\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"firstExample\",\"url\":\"interfaces/collection.EdgeCollection.html#firstExample\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"lookupByKeys\",\"url\":\"interfaces/collection.EdgeCollection.html#lookupByKeys\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"fulltext\",\"url\":\"interfaces/collection.EdgeCollection.html#fulltext\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"edges\",\"url\":\"interfaces/collection.EdgeCollection.html#edges\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"inEdges\",\"url\":\"interfaces/collection.EdgeCollection.html#inEdges\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"outEdges\",\"url\":\"interfaces/collection.EdgeCollection.html#outEdges\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"traversal\",\"url\":\"interfaces/collection.EdgeCollection.html#traversal\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"exists\",\"url\":\"interfaces/collection.EdgeCollection.html#exists\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"get\",\"url\":\"interfaces/collection.EdgeCollection.html#get\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"create\",\"url\":\"interfaces/collection.EdgeCollection.html#create\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"properties\",\"url\":\"interfaces/collection.EdgeCollection.html#properties\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"count\",\"url\":\"interfaces/collection.EdgeCollection.html#count\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"recalculateCount\",\"url\":\"interfaces/collection.EdgeCollection.html#recalculateCount\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"figures\",\"url\":\"interfaces/collection.EdgeCollection.html#figures\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"revision\",\"url\":\"interfaces/collection.EdgeCollection.html#revision\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"checksum\",\"url\":\"interfaces/collection.EdgeCollection.html#checksum\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"loadIndexes\",\"url\":\"interfaces/collection.EdgeCollection.html#loadIndexes\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"rename\",\"url\":\"interfaces/collection.EdgeCollection.html#rename\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"truncate\",\"url\":\"interfaces/collection.EdgeCollection.html#truncate\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"drop\",\"url\":\"interfaces/collection.EdgeCollection.html#drop\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"getResponsibleShard\",\"url\":\"interfaces/collection.EdgeCollection.html#getResponsibleShard\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"documentId\",\"url\":\"interfaces/collection.EdgeCollection.html#documentId\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"documentExists\",\"url\":\"interfaces/collection.EdgeCollection.html#documentExists\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"list\",\"url\":\"interfaces/collection.EdgeCollection.html#list\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"removeByExample\",\"url\":\"interfaces/collection.EdgeCollection.html#removeByExample\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"replaceByExample\",\"url\":\"interfaces/collection.EdgeCollection.html#replaceByExample\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"updateByExample\",\"url\":\"interfaces/collection.EdgeCollection.html#updateByExample\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"removeByKeys\",\"url\":\"interfaces/collection.EdgeCollection.html#removeByKeys\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"indexes\",\"url\":\"interfaces/collection.EdgeCollection.html#indexes\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"index\",\"url\":\"interfaces/collection.EdgeCollection.html#index\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"ensureIndex\",\"url\":\"interfaces/collection.EdgeCollection.html#ensureIndex\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"dropIndex\",\"url\":\"interfaces/collection.EdgeCollection.html#dropIndex\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"compact\",\"url\":\"interfaces/collection.EdgeCollection.html#compact\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/collection.EdgeCollection.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2,\"name\":\"connection\",\"url\":\"modules/connection.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":4194304,\"name\":\"LoadBalancingStrategy\",\"url\":\"types/connection.LoadBalancingStrategy.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"connection\"},{\"kind\":4194304,\"name\":\"Headers\",\"url\":\"types/connection.Headers.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"connection\"},{\"kind\":4194304,\"name\":\"Params\",\"url\":\"types/connection.Params.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"connection\"},{\"kind\":4194304,\"name\":\"ArangoResponseMetadata\",\"url\":\"types/connection.ArangoResponseMetadata.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"connection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/connection.ArangoResponseMetadata.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"connection.ArangoResponseMetadata\"},{\"kind\":1024,\"name\":\"error\",\"url\":\"types/connection.ArangoResponseMetadata.html#__type.error\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.ArangoResponseMetadata.__type\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"types/connection.ArangoResponseMetadata.html#__type.code\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.ArangoResponseMetadata.__type\"},{\"kind\":4194304,\"name\":\"ArangoApiResponse\",\"url\":\"types/connection.ArangoApiResponse.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"connection\"},{\"kind\":4194304,\"name\":\"BasicAuthCredentials\",\"url\":\"types/connection.BasicAuthCredentials.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"connection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/connection.BasicAuthCredentials.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"connection.BasicAuthCredentials\"},{\"kind\":1024,\"name\":\"username\",\"url\":\"types/connection.BasicAuthCredentials.html#__type.username\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.BasicAuthCredentials.__type\"},{\"kind\":1024,\"name\":\"password\",\"url\":\"types/connection.BasicAuthCredentials.html#__type.password\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.BasicAuthCredentials.__type\"},{\"kind\":4194304,\"name\":\"BearerAuthCredentials\",\"url\":\"types/connection.BearerAuthCredentials.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"connection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/connection.BearerAuthCredentials.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"connection.BearerAuthCredentials\"},{\"kind\":1024,\"name\":\"token\",\"url\":\"types/connection.BearerAuthCredentials.html#__type.token\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.BearerAuthCredentials.__type\"},{\"kind\":4194304,\"name\":\"XhrOptions\",\"url\":\"types/connection.XhrOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"connection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/connection.XhrOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"connection.XhrOptions\"},{\"kind\":1024,\"name\":\"maxSockets\",\"url\":\"types/connection.XhrOptions.html#__type.maxSockets\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.XhrOptions.__type\"},{\"kind\":1024,\"name\":\"timeout\",\"url\":\"types/connection.XhrOptions.html#__type.timeout\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.XhrOptions.__type\"},{\"kind\":1024,\"name\":\"beforeSend\",\"url\":\"types/connection.XhrOptions.html#__type.beforeSend\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.XhrOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/connection.XhrOptions.html#__type.beforeSend.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"connection.XhrOptions.__type.beforeSend\"},{\"kind\":1024,\"name\":\"xhr\",\"url\":\"types/connection.XhrOptions.html#__type.xhr\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.XhrOptions.__type\"},{\"kind\":1024,\"name\":\"useXdr\",\"url\":\"types/connection.XhrOptions.html#__type.useXdr\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.XhrOptions.__type\"},{\"kind\":1024,\"name\":\"withCredentials\",\"url\":\"types/connection.XhrOptions.html#__type.withCredentials\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.XhrOptions.__type\"},{\"kind\":4194304,\"name\":\"RequestInterceptors\",\"url\":\"types/connection.RequestInterceptors.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"connection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/connection.RequestInterceptors.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"connection.RequestInterceptors\"},{\"kind\":1024,\"name\":\"before\",\"url\":\"types/connection.RequestInterceptors.html#__type.before\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.RequestInterceptors.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/connection.RequestInterceptors.html#__type.before.__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"connection.RequestInterceptors.__type.before\"},{\"kind\":1024,\"name\":\"after\",\"url\":\"types/connection.RequestInterceptors.html#__type.after\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.RequestInterceptors.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/connection.RequestInterceptors.html#__type.after.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"connection.RequestInterceptors.__type.after\"},{\"kind\":4194304,\"name\":\"RequestOptions\",\"url\":\"types/connection.RequestOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"connection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/connection.RequestOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"connection.RequestOptions\"},{\"kind\":1024,\"name\":\"method\",\"url\":\"types/connection.RequestOptions.html#__type.method\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.RequestOptions.__type\"},{\"kind\":1024,\"name\":\"body\",\"url\":\"types/connection.RequestOptions.html#__type.body\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.RequestOptions.__type\"},{\"kind\":1024,\"name\":\"expectBinary\",\"url\":\"types/connection.RequestOptions.html#__type.expectBinary\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.RequestOptions.__type\"},{\"kind\":1024,\"name\":\"isBinary\",\"url\":\"types/connection.RequestOptions.html#__type.isBinary\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.RequestOptions.__type\"},{\"kind\":1024,\"name\":\"allowDirtyRead\",\"url\":\"types/connection.RequestOptions.html#__type.allowDirtyRead\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.RequestOptions.__type\"},{\"kind\":1024,\"name\":\"retryOnConflict\",\"url\":\"types/connection.RequestOptions.html#__type.retryOnConflict\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.RequestOptions.__type\"},{\"kind\":1024,\"name\":\"headers\",\"url\":\"types/connection.RequestOptions.html#__type.headers\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.RequestOptions.__type\"},{\"kind\":1024,\"name\":\"timeout\",\"url\":\"types/connection.RequestOptions.html#__type.timeout\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.RequestOptions.__type\"},{\"kind\":1024,\"name\":\"basePath\",\"url\":\"types/connection.RequestOptions.html#__type.basePath\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.RequestOptions.__type\"},{\"kind\":1024,\"name\":\"path\",\"url\":\"types/connection.RequestOptions.html#__type.path\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.RequestOptions.__type\"},{\"kind\":1024,\"name\":\"qs\",\"url\":\"types/connection.RequestOptions.html#__type.qs\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.RequestOptions.__type\"},{\"kind\":4194304,\"name\":\"AgentOptions\",\"url\":\"types/connection.AgentOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"connection\"},{\"kind\":4194304,\"name\":\"Config\",\"url\":\"types/connection.Config.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"connection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/connection.Config.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"connection.Config\"},{\"kind\":1024,\"name\":\"databaseName\",\"url\":\"types/connection.Config.html#__type.databaseName\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.Config.__type\"},{\"kind\":1024,\"name\":\"url\",\"url\":\"types/connection.Config.html#__type.url\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.Config.__type\"},{\"kind\":1024,\"name\":\"auth\",\"url\":\"types/connection.Config.html#__type.auth\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.Config.__type\"},{\"kind\":1024,\"name\":\"arangoVersion\",\"url\":\"types/connection.Config.html#__type.arangoVersion\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.Config.__type\"},{\"kind\":1024,\"name\":\"loadBalancingStrategy\",\"url\":\"types/connection.Config.html#__type.loadBalancingStrategy\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.Config.__type\"},{\"kind\":1024,\"name\":\"maxRetries\",\"url\":\"types/connection.Config.html#__type.maxRetries\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.Config.__type\"},{\"kind\":1024,\"name\":\"retryOnConflict\",\"url\":\"types/connection.Config.html#__type.retryOnConflict\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.Config.__type\"},{\"kind\":1024,\"name\":\"agent\",\"url\":\"types/connection.Config.html#__type.agent\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.Config.__type\"},{\"kind\":1024,\"name\":\"agentOptions\",\"url\":\"types/connection.Config.html#__type.agentOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.Config.__type\"},{\"kind\":1024,\"name\":\"headers\",\"url\":\"types/connection.Config.html#__type.headers\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.Config.__type\"},{\"kind\":1024,\"name\":\"precaptureStackTraces\",\"url\":\"types/connection.Config.html#__type.precaptureStackTraces\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.Config.__type\"},{\"kind\":1024,\"name\":\"responseQueueTimeSamples\",\"url\":\"types/connection.Config.html#__type.responseQueueTimeSamples\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.Config.__type\"},{\"kind\":2,\"name\":\"cursor\",\"url\":\"modules/cursor.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":256,\"name\":\"CursorExtras\",\"url\":\"interfaces/cursor.CursorExtras.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"cursor\"},{\"kind\":1024,\"name\":\"warnings\",\"url\":\"interfaces/cursor.CursorExtras.html#warnings\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"cursor.CursorExtras\"},{\"kind\":1024,\"name\":\"plan\",\"url\":\"interfaces/cursor.CursorExtras.html#plan\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"cursor.CursorExtras\"},{\"kind\":1024,\"name\":\"profile\",\"url\":\"interfaces/cursor.CursorExtras.html#profile\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"cursor.CursorExtras\"},{\"kind\":1024,\"name\":\"stats\",\"url\":\"interfaces/cursor.CursorExtras.html#stats\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"cursor.CursorExtras\"},{\"kind\":256,\"name\":\"CursorStats\",\"url\":\"interfaces/cursor.CursorStats.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"cursor\"},{\"kind\":1024,\"name\":\"cacheHits\",\"url\":\"interfaces/cursor.CursorStats.html#cacheHits\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"cursor.CursorStats\"},{\"kind\":1024,\"name\":\"cacheMisses\",\"url\":\"interfaces/cursor.CursorStats.html#cacheMisses\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"cursor.CursorStats\"},{\"kind\":1024,\"name\":\"cursorsCreated\",\"url\":\"interfaces/cursor.CursorStats.html#cursorsCreated\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"cursor.CursorStats\"},{\"kind\":1024,\"name\":\"cursorsRearmed\",\"url\":\"interfaces/cursor.CursorStats.html#cursorsRearmed\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"cursor.CursorStats\"},{\"kind\":1024,\"name\":\"writesExecuted\",\"url\":\"interfaces/cursor.CursorStats.html#writesExecuted\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"cursor.CursorStats\"},{\"kind\":1024,\"name\":\"writesIgnored\",\"url\":\"interfaces/cursor.CursorStats.html#writesIgnored\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"cursor.CursorStats\"},{\"kind\":1024,\"name\":\"scannedFull\",\"url\":\"interfaces/cursor.CursorStats.html#scannedFull\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"cursor.CursorStats\"},{\"kind\":1024,\"name\":\"scannedIndex\",\"url\":\"interfaces/cursor.CursorStats.html#scannedIndex\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"cursor.CursorStats\"},{\"kind\":1024,\"name\":\"filtered\",\"url\":\"interfaces/cursor.CursorStats.html#filtered\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"cursor.CursorStats\"},{\"kind\":1024,\"name\":\"peakMemoryUsage\",\"url\":\"interfaces/cursor.CursorStats.html#peakMemoryUsage\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"cursor.CursorStats\"},{\"kind\":1024,\"name\":\"executionTime\",\"url\":\"interfaces/cursor.CursorStats.html#executionTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"cursor.CursorStats\"},{\"kind\":1024,\"name\":\"fullCount\",\"url\":\"interfaces/cursor.CursorStats.html#fullCount\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"cursor.CursorStats\"},{\"kind\":1024,\"name\":\"httpRequests\",\"url\":\"interfaces/cursor.CursorStats.html#httpRequests\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"cursor.CursorStats\"},{\"kind\":1024,\"name\":\"nodes\",\"url\":\"interfaces/cursor.CursorStats.html#nodes\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"cursor.CursorStats\"},{\"kind\":128,\"name\":\"BatchedArrayCursor\",\"url\":\"classes/cursor.BatchedArrayCursor.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"cursor\"},{\"kind\":262144,\"name\":\"items\",\"url\":\"classes/cursor.BatchedArrayCursor.html#items\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"cursor.BatchedArrayCursor\"},{\"kind\":262144,\"name\":\"extra\",\"url\":\"classes/cursor.BatchedArrayCursor.html#extra\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"cursor.BatchedArrayCursor\"},{\"kind\":262144,\"name\":\"count\",\"url\":\"classes/cursor.BatchedArrayCursor.html#count\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"cursor.BatchedArrayCursor\"},{\"kind\":262144,\"name\":\"hasMore\",\"url\":\"classes/cursor.BatchedArrayCursor.html#hasMore\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"cursor.BatchedArrayCursor\"},{\"kind\":262144,\"name\":\"hasNext\",\"url\":\"classes/cursor.BatchedArrayCursor.html#hasNext\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"cursor.BatchedArrayCursor\"},{\"kind\":2048,\"name\":\"loadAll\",\"url\":\"classes/cursor.BatchedArrayCursor.html#loadAll\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"cursor.BatchedArrayCursor\"},{\"kind\":2048,\"name\":\"all\",\"url\":\"classes/cursor.BatchedArrayCursor.html#all\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"cursor.BatchedArrayCursor\"},{\"kind\":2048,\"name\":\"next\",\"url\":\"classes/cursor.BatchedArrayCursor.html#next\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"cursor.BatchedArrayCursor\"},{\"kind\":2048,\"name\":\"forEach\",\"url\":\"classes/cursor.BatchedArrayCursor.html#forEach\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"cursor.BatchedArrayCursor\"},{\"kind\":2048,\"name\":\"map\",\"url\":\"classes/cursor.BatchedArrayCursor.html#map\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"cursor.BatchedArrayCursor\"},{\"kind\":2048,\"name\":\"flatMap\",\"url\":\"classes/cursor.BatchedArrayCursor.html#flatMap\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"cursor.BatchedArrayCursor\"},{\"kind\":2048,\"name\":\"reduce\",\"url\":\"classes/cursor.BatchedArrayCursor.html#reduce\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"cursor.BatchedArrayCursor\"},{\"kind\":2048,\"name\":\"kill\",\"url\":\"classes/cursor.BatchedArrayCursor.html#kill\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"cursor.BatchedArrayCursor\"},{\"kind\":2048,\"name\":\"[asyncIterator]\",\"url\":\"classes/cursor.BatchedArrayCursor.html#_asyncIterator_\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"cursor.BatchedArrayCursor\"},{\"kind\":128,\"name\":\"ArrayCursor\",\"url\":\"classes/cursor.ArrayCursor.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"cursor\"},{\"kind\":262144,\"name\":\"batches\",\"url\":\"classes/cursor.ArrayCursor.html#batches\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"cursor.ArrayCursor\"},{\"kind\":262144,\"name\":\"extra\",\"url\":\"classes/cursor.ArrayCursor.html#extra\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"cursor.ArrayCursor\"},{\"kind\":262144,\"name\":\"count\",\"url\":\"classes/cursor.ArrayCursor.html#count\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"cursor.ArrayCursor\"},{\"kind\":262144,\"name\":\"hasNext\",\"url\":\"classes/cursor.ArrayCursor.html#hasNext\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"cursor.ArrayCursor\"},{\"kind\":2048,\"name\":\"all\",\"url\":\"classes/cursor.ArrayCursor.html#all\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"cursor.ArrayCursor\"},{\"kind\":2048,\"name\":\"next\",\"url\":\"classes/cursor.ArrayCursor.html#next\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"cursor.ArrayCursor\"},{\"kind\":2048,\"name\":\"forEach\",\"url\":\"classes/cursor.ArrayCursor.html#forEach\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"cursor.ArrayCursor\"},{\"kind\":2048,\"name\":\"map\",\"url\":\"classes/cursor.ArrayCursor.html#map\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"cursor.ArrayCursor\"},{\"kind\":2048,\"name\":\"flatMap\",\"url\":\"classes/cursor.ArrayCursor.html#flatMap\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"cursor.ArrayCursor\"},{\"kind\":2048,\"name\":\"reduce\",\"url\":\"classes/cursor.ArrayCursor.html#reduce\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"cursor.ArrayCursor\"},{\"kind\":2048,\"name\":\"kill\",\"url\":\"classes/cursor.ArrayCursor.html#kill\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"cursor.ArrayCursor\"},{\"kind\":2048,\"name\":\"[asyncIterator]\",\"url\":\"classes/cursor.ArrayCursor.html#_asyncIterator_\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"cursor.ArrayCursor\"},{\"kind\":2,\"name\":\"database\",\"url\":\"modules/database.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"isArangoDatabase\",\"url\":\"functions/database.isArangoDatabase.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":4194304,\"name\":\"TransactionCollections\",\"url\":\"types/database.TransactionCollections.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.TransactionCollections.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.TransactionCollections\"},{\"kind\":1024,\"name\":\"exclusive\",\"url\":\"types/database.TransactionCollections.html#__type.exclusive\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.TransactionCollections.__type\"},{\"kind\":1024,\"name\":\"write\",\"url\":\"types/database.TransactionCollections.html#__type.write\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.TransactionCollections.__type\"},{\"kind\":1024,\"name\":\"read\",\"url\":\"types/database.TransactionCollections.html#__type.read\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.TransactionCollections.__type\"},{\"kind\":4194304,\"name\":\"TransactionOptions\",\"url\":\"types/database.TransactionOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.TransactionOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.TransactionOptions\"},{\"kind\":1024,\"name\":\"allowImplicit\",\"url\":\"types/database.TransactionOptions.html#__type.allowImplicit\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.TransactionOptions.__type\"},{\"kind\":1024,\"name\":\"allowDirtyRead\",\"url\":\"types/database.TransactionOptions.html#__type.allowDirtyRead\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.TransactionOptions.__type\"},{\"kind\":1024,\"name\":\"waitForSync\",\"url\":\"types/database.TransactionOptions.html#__type.waitForSync\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.TransactionOptions.__type\"},{\"kind\":1024,\"name\":\"lockTimeout\",\"url\":\"types/database.TransactionOptions.html#__type.lockTimeout\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.TransactionOptions.__type\"},{\"kind\":1024,\"name\":\"maxTransactionSize\",\"url\":\"types/database.TransactionOptions.html#__type.maxTransactionSize\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.TransactionOptions.__type\"},{\"kind\":4194304,\"name\":\"QueryOptions\",\"url\":\"types/database.QueryOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.QueryOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.QueryOptions\"},{\"kind\":1024,\"name\":\"allowDirtyRead\",\"url\":\"types/database.QueryOptions.html#__type.allowDirtyRead\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"allowRetry\",\"url\":\"types/database.QueryOptions.html#__type.allowRetry\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"timeout\",\"url\":\"types/database.QueryOptions.html#__type.timeout\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"retryOnConflict\",\"url\":\"types/database.QueryOptions.html#__type.retryOnConflict\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"count\",\"url\":\"types/database.QueryOptions.html#__type.count\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"batchSize\",\"url\":\"types/database.QueryOptions.html#__type.batchSize\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"cache\",\"url\":\"types/database.QueryOptions.html#__type.cache\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"memoryLimit\",\"url\":\"types/database.QueryOptions.html#__type.memoryLimit\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"maxRuntime\",\"url\":\"types/database.QueryOptions.html#__type.maxRuntime\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"ttl\",\"url\":\"types/database.QueryOptions.html#__type.ttl\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"failOnWarning\",\"url\":\"types/database.QueryOptions.html#__type.failOnWarning\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"profile\",\"url\":\"types/database.QueryOptions.html#__type.profile\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"stream\",\"url\":\"types/database.QueryOptions.html#__type.stream\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"maxWarningsCount\",\"url\":\"types/database.QueryOptions.html#__type.maxWarningsCount\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"fullCount\",\"url\":\"types/database.QueryOptions.html#__type.fullCount\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"fillBlockCache\",\"url\":\"types/database.QueryOptions.html#__type.fillBlockCache\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"optimizer\",\"url\":\"types/database.QueryOptions.html#__type.optimizer\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.QueryOptions.html#__type.optimizer.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"database.QueryOptions.__type.optimizer\"},{\"kind\":1024,\"name\":\"rules\",\"url\":\"types/database.QueryOptions.html#__type.optimizer.__type-1.rules\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type.optimizer.__type\"},{\"kind\":1024,\"name\":\"maxPlans\",\"url\":\"types/database.QueryOptions.html#__type.maxPlans\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"maxNodesPerCallstack\",\"url\":\"types/database.QueryOptions.html#__type.maxNodesPerCallstack\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"maxTransactionSize\",\"url\":\"types/database.QueryOptions.html#__type.maxTransactionSize\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"intermediateCommitCount\",\"url\":\"types/database.QueryOptions.html#__type.intermediateCommitCount\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"intermediateCommitSize\",\"url\":\"types/database.QueryOptions.html#__type.intermediateCommitSize\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"skipInaccessibleCollections\",\"url\":\"types/database.QueryOptions.html#__type.skipInaccessibleCollections\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"satelliteSyncWait\",\"url\":\"types/database.QueryOptions.html#__type.satelliteSyncWait\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":4194304,\"name\":\"ExplainOptions\",\"url\":\"types/database.ExplainOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ExplainOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.ExplainOptions\"},{\"kind\":1024,\"name\":\"optimizer\",\"url\":\"types/database.ExplainOptions.html#__type.optimizer\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ExplainOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ExplainOptions.html#__type.optimizer.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"database.ExplainOptions.__type.optimizer\"},{\"kind\":1024,\"name\":\"rules\",\"url\":\"types/database.ExplainOptions.html#__type.optimizer.__type-1.rules\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ExplainOptions.__type.optimizer.__type\"},{\"kind\":1024,\"name\":\"maxNumberOfPlans\",\"url\":\"types/database.ExplainOptions.html#__type.maxNumberOfPlans\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ExplainOptions.__type\"},{\"kind\":1024,\"name\":\"allPlans\",\"url\":\"types/database.ExplainOptions.html#__type.allPlans\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ExplainOptions.__type\"},{\"kind\":4194304,\"name\":\"TransactionDetails\",\"url\":\"types/database.TransactionDetails.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.TransactionDetails.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.TransactionDetails\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"types/database.TransactionDetails.html#__type.id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.TransactionDetails.__type\"},{\"kind\":1024,\"name\":\"state\",\"url\":\"types/database.TransactionDetails.html#__type.state\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.TransactionDetails.__type\"},{\"kind\":4194304,\"name\":\"ExplainPlan\",\"url\":\"types/database.ExplainPlan.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ExplainPlan.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.ExplainPlan\"},{\"kind\":1024,\"name\":\"nodes\",\"url\":\"types/database.ExplainPlan.html#__type.nodes\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ExplainPlan.__type\"},{\"kind\":1024,\"name\":\"rules\",\"url\":\"types/database.ExplainPlan.html#__type.rules\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ExplainPlan.__type\"},{\"kind\":1024,\"name\":\"collections\",\"url\":\"types/database.ExplainPlan.html#__type.collections\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ExplainPlan.__type\"},{\"kind\":1024,\"name\":\"variables\",\"url\":\"types/database.ExplainPlan.html#__type.variables\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ExplainPlan.__type\"},{\"kind\":1024,\"name\":\"estimatedCost\",\"url\":\"types/database.ExplainPlan.html#__type.estimatedCost\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ExplainPlan.__type\"},{\"kind\":1024,\"name\":\"estimatedNrItems\",\"url\":\"types/database.ExplainPlan.html#__type.estimatedNrItems\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ExplainPlan.__type\"},{\"kind\":1024,\"name\":\"isModificationQuery\",\"url\":\"types/database.ExplainPlan.html#__type.isModificationQuery\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ExplainPlan.__type\"},{\"kind\":4194304,\"name\":\"ExplainStats\",\"url\":\"types/database.ExplainStats.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ExplainStats.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.ExplainStats\"},{\"kind\":1024,\"name\":\"rulesExecuted\",\"url\":\"types/database.ExplainStats.html#__type.rulesExecuted\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ExplainStats.__type\"},{\"kind\":1024,\"name\":\"rulesSkipped\",\"url\":\"types/database.ExplainStats.html#__type.rulesSkipped\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ExplainStats.__type\"},{\"kind\":1024,\"name\":\"plansCreated\",\"url\":\"types/database.ExplainStats.html#__type.plansCreated\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ExplainStats.__type\"},{\"kind\":1024,\"name\":\"peakMemoryUsage\",\"url\":\"types/database.ExplainStats.html#__type.peakMemoryUsage\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ExplainStats.__type\"},{\"kind\":1024,\"name\":\"executionTime\",\"url\":\"types/database.ExplainStats.html#__type.executionTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ExplainStats.__type\"},{\"kind\":4194304,\"name\":\"SingleExplainResult\",\"url\":\"types/database.SingleExplainResult.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.SingleExplainResult.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.SingleExplainResult\"},{\"kind\":1024,\"name\":\"plan\",\"url\":\"types/database.SingleExplainResult.html#__type.plan\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SingleExplainResult.__type\"},{\"kind\":1024,\"name\":\"cacheable\",\"url\":\"types/database.SingleExplainResult.html#__type.cacheable\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SingleExplainResult.__type\"},{\"kind\":1024,\"name\":\"warnings\",\"url\":\"types/database.SingleExplainResult.html#__type.warnings\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SingleExplainResult.__type\"},{\"kind\":1024,\"name\":\"stats\",\"url\":\"types/database.SingleExplainResult.html#__type.stats\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SingleExplainResult.__type\"},{\"kind\":4194304,\"name\":\"MultiExplainResult\",\"url\":\"types/database.MultiExplainResult.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.MultiExplainResult.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.MultiExplainResult\"},{\"kind\":1024,\"name\":\"plans\",\"url\":\"types/database.MultiExplainResult.html#__type.plans\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.MultiExplainResult.__type\"},{\"kind\":1024,\"name\":\"cacheable\",\"url\":\"types/database.MultiExplainResult.html#__type.cacheable\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.MultiExplainResult.__type\"},{\"kind\":1024,\"name\":\"warnings\",\"url\":\"types/database.MultiExplainResult.html#__type.warnings\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.MultiExplainResult.__type\"},{\"kind\":1024,\"name\":\"stats\",\"url\":\"types/database.MultiExplainResult.html#__type.stats\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.MultiExplainResult.__type\"},{\"kind\":4194304,\"name\":\"AstNode\",\"url\":\"types/database.AstNode.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.AstNode.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.AstNode\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/database.AstNode.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.AstNode.__type\"},{\"kind\":1024,\"name\":\"subNodes\",\"url\":\"types/database.AstNode.html#__type.subNodes\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.AstNode.__type\"},{\"kind\":4194304,\"name\":\"ParseResult\",\"url\":\"types/database.ParseResult.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ParseResult.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.ParseResult\"},{\"kind\":1024,\"name\":\"parsed\",\"url\":\"types/database.ParseResult.html#__type.parsed\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ParseResult.__type\"},{\"kind\":1024,\"name\":\"collections\",\"url\":\"types/database.ParseResult.html#__type.collections\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ParseResult.__type\"},{\"kind\":1024,\"name\":\"bindVars\",\"url\":\"types/database.ParseResult.html#__type.bindVars\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ParseResult.__type\"},{\"kind\":1024,\"name\":\"ast\",\"url\":\"types/database.ParseResult.html#__type.ast\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ParseResult.__type\"},{\"kind\":4194304,\"name\":\"QueryOptimizerRule\",\"url\":\"types/database.QueryOptimizerRule.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.QueryOptimizerRule.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.QueryOptimizerRule\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/database.QueryOptimizerRule.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptimizerRule.__type\"},{\"kind\":1024,\"name\":\"flags\",\"url\":\"types/database.QueryOptimizerRule.html#__type.flags\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptimizerRule.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.QueryOptimizerRule.html#__type.flags.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"database.QueryOptimizerRule.__type.flags\"},{\"kind\":1024,\"name\":\"hidden\",\"url\":\"types/database.QueryOptimizerRule.html#__type.flags.__type-1.hidden\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptimizerRule.__type.flags.__type\"},{\"kind\":1024,\"name\":\"clusterOnly\",\"url\":\"types/database.QueryOptimizerRule.html#__type.flags.__type-1.clusterOnly\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptimizerRule.__type.flags.__type\"},{\"kind\":1024,\"name\":\"canBeDisabled\",\"url\":\"types/database.QueryOptimizerRule.html#__type.flags.__type-1.canBeDisabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptimizerRule.__type.flags.__type\"},{\"kind\":1024,\"name\":\"canCreateAdditionalPlans\",\"url\":\"types/database.QueryOptimizerRule.html#__type.flags.__type-1.canCreateAdditionalPlans\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptimizerRule.__type.flags.__type\"},{\"kind\":1024,\"name\":\"disabledByDefault\",\"url\":\"types/database.QueryOptimizerRule.html#__type.flags.__type-1.disabledByDefault\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptimizerRule.__type.flags.__type\"},{\"kind\":1024,\"name\":\"enterpriseOnly\",\"url\":\"types/database.QueryOptimizerRule.html#__type.flags.__type-1.enterpriseOnly\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptimizerRule.__type.flags.__type\"},{\"kind\":4194304,\"name\":\"QueryTracking\",\"url\":\"types/database.QueryTracking.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.QueryTracking.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.QueryTracking\"},{\"kind\":1024,\"name\":\"enabled\",\"url\":\"types/database.QueryTracking.html#__type.enabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryTracking.__type\"},{\"kind\":1024,\"name\":\"maxQueryStringLength\",\"url\":\"types/database.QueryTracking.html#__type.maxQueryStringLength\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryTracking.__type\"},{\"kind\":1024,\"name\":\"maxSlowQueries\",\"url\":\"types/database.QueryTracking.html#__type.maxSlowQueries\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryTracking.__type\"},{\"kind\":1024,\"name\":\"slowQueryThreshold\",\"url\":\"types/database.QueryTracking.html#__type.slowQueryThreshold\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryTracking.__type\"},{\"kind\":1024,\"name\":\"trackBindVars\",\"url\":\"types/database.QueryTracking.html#__type.trackBindVars\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryTracking.__type\"},{\"kind\":1024,\"name\":\"trackSlowQueries\",\"url\":\"types/database.QueryTracking.html#__type.trackSlowQueries\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryTracking.__type\"},{\"kind\":4194304,\"name\":\"QueryTrackingOptions\",\"url\":\"types/database.QueryTrackingOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.QueryTrackingOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.QueryTrackingOptions\"},{\"kind\":1024,\"name\":\"enabled\",\"url\":\"types/database.QueryTrackingOptions.html#__type.enabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryTrackingOptions.__type\"},{\"kind\":1024,\"name\":\"maxQueryStringLength\",\"url\":\"types/database.QueryTrackingOptions.html#__type.maxQueryStringLength\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryTrackingOptions.__type\"},{\"kind\":1024,\"name\":\"maxSlowQueries\",\"url\":\"types/database.QueryTrackingOptions.html#__type.maxSlowQueries\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryTrackingOptions.__type\"},{\"kind\":1024,\"name\":\"slowQueryThreshold\",\"url\":\"types/database.QueryTrackingOptions.html#__type.slowQueryThreshold\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryTrackingOptions.__type\"},{\"kind\":1024,\"name\":\"trackBindVars\",\"url\":\"types/database.QueryTrackingOptions.html#__type.trackBindVars\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryTrackingOptions.__type\"},{\"kind\":1024,\"name\":\"trackSlowQueries\",\"url\":\"types/database.QueryTrackingOptions.html#__type.trackSlowQueries\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryTrackingOptions.__type\"},{\"kind\":4194304,\"name\":\"QueryInfo\",\"url\":\"types/database.QueryInfo.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.QueryInfo.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.QueryInfo\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"types/database.QueryInfo.html#__type.id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryInfo.__type\"},{\"kind\":1024,\"name\":\"database\",\"url\":\"types/database.QueryInfo.html#__type.database\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryInfo.__type\"},{\"kind\":1024,\"name\":\"user\",\"url\":\"types/database.QueryInfo.html#__type.user\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryInfo.__type\"},{\"kind\":1024,\"name\":\"query\",\"url\":\"types/database.QueryInfo.html#__type.query\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryInfo.__type\"},{\"kind\":1024,\"name\":\"bindVars\",\"url\":\"types/database.QueryInfo.html#__type.bindVars\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryInfo.__type\"},{\"kind\":1024,\"name\":\"started\",\"url\":\"types/database.QueryInfo.html#__type.started\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryInfo.__type\"},{\"kind\":1024,\"name\":\"runTime\",\"url\":\"types/database.QueryInfo.html#__type.runTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryInfo.__type\"},{\"kind\":1024,\"name\":\"peakMemoryUsage\",\"url\":\"types/database.QueryInfo.html#__type.peakMemoryUsage\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryInfo.__type\"},{\"kind\":1024,\"name\":\"state\",\"url\":\"types/database.QueryInfo.html#__type.state\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryInfo.__type\"},{\"kind\":1024,\"name\":\"stream\",\"url\":\"types/database.QueryInfo.html#__type.stream\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryInfo.__type\"},{\"kind\":4194304,\"name\":\"ClusterImbalanceInfo\",\"url\":\"types/database.ClusterImbalanceInfo.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ClusterImbalanceInfo.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.ClusterImbalanceInfo\"},{\"kind\":1024,\"name\":\"leader\",\"url\":\"types/database.ClusterImbalanceInfo.html#__type.leader\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ClusterImbalanceInfo.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ClusterImbalanceInfo.html#__type.leader.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"database.ClusterImbalanceInfo.__type.leader\"},{\"kind\":1024,\"name\":\"weightUsed\",\"url\":\"types/database.ClusterImbalanceInfo.html#__type.leader.__type-1.weightUsed\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ClusterImbalanceInfo.__type.leader.__type\"},{\"kind\":1024,\"name\":\"targetWeight\",\"url\":\"types/database.ClusterImbalanceInfo.html#__type.leader.__type-1.targetWeight\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ClusterImbalanceInfo.__type.leader.__type\"},{\"kind\":1024,\"name\":\"numberShards\",\"url\":\"types/database.ClusterImbalanceInfo.html#__type.leader.__type-1.numberShards\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ClusterImbalanceInfo.__type.leader.__type\"},{\"kind\":1024,\"name\":\"leaderDupl\",\"url\":\"types/database.ClusterImbalanceInfo.html#__type.leader.__type-1.leaderDupl\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ClusterImbalanceInfo.__type.leader.__type\"},{\"kind\":1024,\"name\":\"totalWeight\",\"url\":\"types/database.ClusterImbalanceInfo.html#__type.leader.__type-1.totalWeight\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ClusterImbalanceInfo.__type.leader.__type\"},{\"kind\":1024,\"name\":\"imbalance\",\"url\":\"types/database.ClusterImbalanceInfo.html#__type.leader.__type-1.imbalance\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ClusterImbalanceInfo.__type.leader.__type\"},{\"kind\":1024,\"name\":\"totalShards\",\"url\":\"types/database.ClusterImbalanceInfo.html#__type.leader.__type-1.totalShards\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ClusterImbalanceInfo.__type.leader.__type\"},{\"kind\":1024,\"name\":\"shards\",\"url\":\"types/database.ClusterImbalanceInfo.html#__type.shards\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ClusterImbalanceInfo.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ClusterImbalanceInfo.html#__type.shards.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"database.ClusterImbalanceInfo.__type.shards\"},{\"kind\":1024,\"name\":\"sizeUsed\",\"url\":\"types/database.ClusterImbalanceInfo.html#__type.shards.__type-2.sizeUsed\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ClusterImbalanceInfo.__type.shards.__type\"},{\"kind\":1024,\"name\":\"targetSize\",\"url\":\"types/database.ClusterImbalanceInfo.html#__type.shards.__type-2.targetSize\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ClusterImbalanceInfo.__type.shards.__type\"},{\"kind\":1024,\"name\":\"numberShards\",\"url\":\"types/database.ClusterImbalanceInfo.html#__type.shards.__type-2.numberShards-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ClusterImbalanceInfo.__type.shards.__type\"},{\"kind\":1024,\"name\":\"totalUsed\",\"url\":\"types/database.ClusterImbalanceInfo.html#__type.shards.__type-2.totalUsed\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ClusterImbalanceInfo.__type.shards.__type\"},{\"kind\":1024,\"name\":\"totalShards\",\"url\":\"types/database.ClusterImbalanceInfo.html#__type.shards.__type-2.totalShards-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ClusterImbalanceInfo.__type.shards.__type\"},{\"kind\":1024,\"name\":\"totalShardsFromSystemCollections\",\"url\":\"types/database.ClusterImbalanceInfo.html#__type.shards.__type-2.totalShardsFromSystemCollections\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ClusterImbalanceInfo.__type.shards.__type\"},{\"kind\":1024,\"name\":\"imbalance\",\"url\":\"types/database.ClusterImbalanceInfo.html#__type.shards.__type-2.imbalance-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ClusterImbalanceInfo.__type.shards.__type\"},{\"kind\":4194304,\"name\":\"ClusterRebalanceState\",\"url\":\"types/database.ClusterRebalanceState.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":4194304,\"name\":\"ClusterRebalanceOptions\",\"url\":\"types/database.ClusterRebalanceOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ClusterRebalanceOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.ClusterRebalanceOptions\"},{\"kind\":1024,\"name\":\"maximumNumberOfMoves\",\"url\":\"types/database.ClusterRebalanceOptions.html#__type.maximumNumberOfMoves\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ClusterRebalanceOptions.__type\"},{\"kind\":1024,\"name\":\"leaderChanges\",\"url\":\"types/database.ClusterRebalanceOptions.html#__type.leaderChanges\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ClusterRebalanceOptions.__type\"},{\"kind\":1024,\"name\":\"moveLeaders\",\"url\":\"types/database.ClusterRebalanceOptions.html#__type.moveLeaders\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ClusterRebalanceOptions.__type\"},{\"kind\":1024,\"name\":\"moveFollowers\",\"url\":\"types/database.ClusterRebalanceOptions.html#__type.moveFollowers\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ClusterRebalanceOptions.__type\"},{\"kind\":1024,\"name\":\"excludeSystemCollections\",\"url\":\"types/database.ClusterRebalanceOptions.html#__type.excludeSystemCollections\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ClusterRebalanceOptions.__type\"},{\"kind\":1024,\"name\":\"piFactor\",\"url\":\"types/database.ClusterRebalanceOptions.html#__type.piFactor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ClusterRebalanceOptions.__type\"},{\"kind\":1024,\"name\":\"databasesExcluded\",\"url\":\"types/database.ClusterRebalanceOptions.html#__type.databasesExcluded\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ClusterRebalanceOptions.__type\"},{\"kind\":4194304,\"name\":\"ClusterRebalanceMove\",\"url\":\"types/database.ClusterRebalanceMove.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ClusterRebalanceMove.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.ClusterRebalanceMove\"},{\"kind\":1024,\"name\":\"from\",\"url\":\"types/database.ClusterRebalanceMove.html#__type.from\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ClusterRebalanceMove.__type\"},{\"kind\":1024,\"name\":\"to\",\"url\":\"types/database.ClusterRebalanceMove.html#__type.to\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ClusterRebalanceMove.__type\"},{\"kind\":1024,\"name\":\"shard\",\"url\":\"types/database.ClusterRebalanceMove.html#__type.shard\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ClusterRebalanceMove.__type\"},{\"kind\":1024,\"name\":\"collection\",\"url\":\"types/database.ClusterRebalanceMove.html#__type.collection\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ClusterRebalanceMove.__type\"},{\"kind\":1024,\"name\":\"isLeader\",\"url\":\"types/database.ClusterRebalanceMove.html#__type.isLeader\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ClusterRebalanceMove.__type\"},{\"kind\":4194304,\"name\":\"ClusterRebalanceResult\",\"url\":\"types/database.ClusterRebalanceResult.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ClusterRebalanceResult.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.ClusterRebalanceResult\"},{\"kind\":1024,\"name\":\"imbalanceBefore\",\"url\":\"types/database.ClusterRebalanceResult.html#__type.imbalanceBefore\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ClusterRebalanceResult.__type\"},{\"kind\":1024,\"name\":\"imbalanceAfter\",\"url\":\"types/database.ClusterRebalanceResult.html#__type.imbalanceAfter\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ClusterRebalanceResult.__type\"},{\"kind\":1024,\"name\":\"moves\",\"url\":\"types/database.ClusterRebalanceResult.html#__type.moves\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ClusterRebalanceResult.__type\"},{\"kind\":4194304,\"name\":\"CreateDatabaseUser\",\"url\":\"types/database.CreateDatabaseUser.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.CreateDatabaseUser.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.CreateDatabaseUser\"},{\"kind\":1024,\"name\":\"username\",\"url\":\"types/database.CreateDatabaseUser.html#__type.username\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.CreateDatabaseUser.__type\"},{\"kind\":1024,\"name\":\"passwd\",\"url\":\"types/database.CreateDatabaseUser.html#__type.passwd\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.CreateDatabaseUser.__type\"},{\"kind\":1024,\"name\":\"active\",\"url\":\"types/database.CreateDatabaseUser.html#__type.active\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.CreateDatabaseUser.__type\"},{\"kind\":1024,\"name\":\"extra\",\"url\":\"types/database.CreateDatabaseUser.html#__type.extra\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.CreateDatabaseUser.__type\"},{\"kind\":4194304,\"name\":\"CreateDatabaseOptions\",\"url\":\"types/database.CreateDatabaseOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.CreateDatabaseOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.CreateDatabaseOptions\"},{\"kind\":1024,\"name\":\"users\",\"url\":\"types/database.CreateDatabaseOptions.html#__type.users\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.CreateDatabaseOptions.__type\"},{\"kind\":1024,\"name\":\"sharding\",\"url\":\"types/database.CreateDatabaseOptions.html#__type.sharding\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.CreateDatabaseOptions.__type\"},{\"kind\":1024,\"name\":\"replicationFactor\",\"url\":\"types/database.CreateDatabaseOptions.html#__type.replicationFactor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.CreateDatabaseOptions.__type\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"types/database.CreateDatabaseOptions.html#__type.writeConcern\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.CreateDatabaseOptions.__type\"},{\"kind\":4194304,\"name\":\"DatabaseInfo\",\"url\":\"types/database.DatabaseInfo.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.DatabaseInfo.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.DatabaseInfo\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/database.DatabaseInfo.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.DatabaseInfo.__type\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"types/database.DatabaseInfo.html#__type.id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.DatabaseInfo.__type\"},{\"kind\":1024,\"name\":\"path\",\"url\":\"types/database.DatabaseInfo.html#__type.path\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.DatabaseInfo.__type\"},{\"kind\":1024,\"name\":\"isSystem\",\"url\":\"types/database.DatabaseInfo.html#__type.isSystem\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.DatabaseInfo.__type\"},{\"kind\":1024,\"name\":\"sharding\",\"url\":\"types/database.DatabaseInfo.html#__type.sharding\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.DatabaseInfo.__type\"},{\"kind\":1024,\"name\":\"replicationFactor\",\"url\":\"types/database.DatabaseInfo.html#__type.replicationFactor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.DatabaseInfo.__type\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"types/database.DatabaseInfo.html#__type.writeConcern\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.DatabaseInfo.__type\"},{\"kind\":4194304,\"name\":\"VersionInfo\",\"url\":\"types/database.VersionInfo.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.VersionInfo.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.VersionInfo\"},{\"kind\":1024,\"name\":\"server\",\"url\":\"types/database.VersionInfo.html#__type.server\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.VersionInfo.__type\"},{\"kind\":1024,\"name\":\"license\",\"url\":\"types/database.VersionInfo.html#__type.license\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.VersionInfo.__type\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"types/database.VersionInfo.html#__type.version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.VersionInfo.__type\"},{\"kind\":1024,\"name\":\"details\",\"url\":\"types/database.VersionInfo.html#__type.details\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.VersionInfo.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.VersionInfo.html#__type.details.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"database.VersionInfo.__type.details\"},{\"kind\":4194304,\"name\":\"AqlUserFunction\",\"url\":\"types/database.AqlUserFunction.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.AqlUserFunction.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.AqlUserFunction\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/database.AqlUserFunction.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.AqlUserFunction.__type\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"types/database.AqlUserFunction.html#__type.code\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.AqlUserFunction.__type\"},{\"kind\":1024,\"name\":\"isDeterministic\",\"url\":\"types/database.AqlUserFunction.html#__type.isDeterministic\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.AqlUserFunction.__type\"},{\"kind\":4194304,\"name\":\"InstallServiceOptions\",\"url\":\"types/database.InstallServiceOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.InstallServiceOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.InstallServiceOptions\"},{\"kind\":1024,\"name\":\"configuration\",\"url\":\"types/database.InstallServiceOptions.html#__type.configuration\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.InstallServiceOptions.__type\"},{\"kind\":1024,\"name\":\"dependencies\",\"url\":\"types/database.InstallServiceOptions.html#__type.dependencies\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.InstallServiceOptions.__type\"},{\"kind\":1024,\"name\":\"development\",\"url\":\"types/database.InstallServiceOptions.html#__type.development\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.InstallServiceOptions.__type\"},{\"kind\":1024,\"name\":\"legacy\",\"url\":\"types/database.InstallServiceOptions.html#__type.legacy\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.InstallServiceOptions.__type\"},{\"kind\":1024,\"name\":\"setup\",\"url\":\"types/database.InstallServiceOptions.html#__type.setup\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.InstallServiceOptions.__type\"},{\"kind\":4194304,\"name\":\"ReplaceServiceOptions\",\"url\":\"types/database.ReplaceServiceOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ReplaceServiceOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.ReplaceServiceOptions\"},{\"kind\":1024,\"name\":\"configuration\",\"url\":\"types/database.ReplaceServiceOptions.html#__type.configuration\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ReplaceServiceOptions.__type\"},{\"kind\":1024,\"name\":\"dependencies\",\"url\":\"types/database.ReplaceServiceOptions.html#__type.dependencies\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ReplaceServiceOptions.__type\"},{\"kind\":1024,\"name\":\"development\",\"url\":\"types/database.ReplaceServiceOptions.html#__type.development\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ReplaceServiceOptions.__type\"},{\"kind\":1024,\"name\":\"legacy\",\"url\":\"types/database.ReplaceServiceOptions.html#__type.legacy\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ReplaceServiceOptions.__type\"},{\"kind\":1024,\"name\":\"setup\",\"url\":\"types/database.ReplaceServiceOptions.html#__type.setup\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ReplaceServiceOptions.__type\"},{\"kind\":1024,\"name\":\"teardown\",\"url\":\"types/database.ReplaceServiceOptions.html#__type.teardown\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ReplaceServiceOptions.__type\"},{\"kind\":1024,\"name\":\"force\",\"url\":\"types/database.ReplaceServiceOptions.html#__type.force\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ReplaceServiceOptions.__type\"},{\"kind\":4194304,\"name\":\"UpgradeServiceOptions\",\"url\":\"types/database.UpgradeServiceOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.UpgradeServiceOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.UpgradeServiceOptions\"},{\"kind\":1024,\"name\":\"configuration\",\"url\":\"types/database.UpgradeServiceOptions.html#__type.configuration\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.UpgradeServiceOptions.__type\"},{\"kind\":1024,\"name\":\"dependencies\",\"url\":\"types/database.UpgradeServiceOptions.html#__type.dependencies\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.UpgradeServiceOptions.__type\"},{\"kind\":1024,\"name\":\"development\",\"url\":\"types/database.UpgradeServiceOptions.html#__type.development\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.UpgradeServiceOptions.__type\"},{\"kind\":1024,\"name\":\"legacy\",\"url\":\"types/database.UpgradeServiceOptions.html#__type.legacy\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.UpgradeServiceOptions.__type\"},{\"kind\":1024,\"name\":\"setup\",\"url\":\"types/database.UpgradeServiceOptions.html#__type.setup\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.UpgradeServiceOptions.__type\"},{\"kind\":1024,\"name\":\"teardown\",\"url\":\"types/database.UpgradeServiceOptions.html#__type.teardown\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.UpgradeServiceOptions.__type\"},{\"kind\":1024,\"name\":\"force\",\"url\":\"types/database.UpgradeServiceOptions.html#__type.force\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.UpgradeServiceOptions.__type\"},{\"kind\":4194304,\"name\":\"UninstallServiceOptions\",\"url\":\"types/database.UninstallServiceOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.UninstallServiceOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.UninstallServiceOptions\"},{\"kind\":1024,\"name\":\"teardown\",\"url\":\"types/database.UninstallServiceOptions.html#__type.teardown\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.UninstallServiceOptions.__type\"},{\"kind\":1024,\"name\":\"force\",\"url\":\"types/database.UninstallServiceOptions.html#__type.force\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.UninstallServiceOptions.__type\"},{\"kind\":4194304,\"name\":\"ServiceSummary\",\"url\":\"types/database.ServiceSummary.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ServiceSummary.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.ServiceSummary\"},{\"kind\":1024,\"name\":\"mount\",\"url\":\"types/database.ServiceSummary.html#__type.mount\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceSummary.__type\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/database.ServiceSummary.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceSummary.__type\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"types/database.ServiceSummary.html#__type.version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceSummary.__type\"},{\"kind\":1024,\"name\":\"provides\",\"url\":\"types/database.ServiceSummary.html#__type.provides\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceSummary.__type\"},{\"kind\":1024,\"name\":\"development\",\"url\":\"types/database.ServiceSummary.html#__type.development\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceSummary.__type\"},{\"kind\":1024,\"name\":\"legacy\",\"url\":\"types/database.ServiceSummary.html#__type.legacy\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceSummary.__type\"},{\"kind\":4194304,\"name\":\"ServiceInfo\",\"url\":\"types/database.ServiceInfo.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ServiceInfo.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.ServiceInfo\"},{\"kind\":1024,\"name\":\"mount\",\"url\":\"types/database.ServiceInfo.html#__type.mount\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceInfo.__type\"},{\"kind\":1024,\"name\":\"path\",\"url\":\"types/database.ServiceInfo.html#__type.path\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceInfo.__type\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/database.ServiceInfo.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceInfo.__type\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"types/database.ServiceInfo.html#__type.version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceInfo.__type\"},{\"kind\":1024,\"name\":\"development\",\"url\":\"types/database.ServiceInfo.html#__type.development\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceInfo.__type\"},{\"kind\":1024,\"name\":\"legacy\",\"url\":\"types/database.ServiceInfo.html#__type.legacy\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceInfo.__type\"},{\"kind\":1024,\"name\":\"manifest\",\"url\":\"types/database.ServiceInfo.html#__type.manifest\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceInfo.__type\"},{\"kind\":1024,\"name\":\"checksum\",\"url\":\"types/database.ServiceInfo.html#__type.checksum\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceInfo.__type\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"types/database.ServiceInfo.html#__type.options\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceInfo.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ServiceInfo.html#__type.options.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"database.ServiceInfo.__type.options\"},{\"kind\":1024,\"name\":\"configuration\",\"url\":\"types/database.ServiceInfo.html#__type.options.__type-1.configuration\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceInfo.__type.options.__type\"},{\"kind\":1024,\"name\":\"dependencies\",\"url\":\"types/database.ServiceInfo.html#__type.options.__type-1.dependencies\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceInfo.__type.options.__type\"},{\"kind\":4194304,\"name\":\"ServiceConfiguration\",\"url\":\"types/database.ServiceConfiguration.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ServiceConfiguration.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.ServiceConfiguration\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/database.ServiceConfiguration.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceConfiguration.__type\"},{\"kind\":1024,\"name\":\"currentRaw\",\"url\":\"types/database.ServiceConfiguration.html#__type.currentRaw\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceConfiguration.__type\"},{\"kind\":1024,\"name\":\"current\",\"url\":\"types/database.ServiceConfiguration.html#__type.current\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceConfiguration.__type\"},{\"kind\":1024,\"name\":\"title\",\"url\":\"types/database.ServiceConfiguration.html#__type.title\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceConfiguration.__type\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"types/database.ServiceConfiguration.html#__type.description\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceConfiguration.__type\"},{\"kind\":1024,\"name\":\"required\",\"url\":\"types/database.ServiceConfiguration.html#__type.required\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceConfiguration.__type\"},{\"kind\":1024,\"name\":\"default\",\"url\":\"types/database.ServiceConfiguration.html#__type.default\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceConfiguration.__type\"},{\"kind\":4194304,\"name\":\"SingleServiceDependency\",\"url\":\"types/database.SingleServiceDependency.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.SingleServiceDependency.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.SingleServiceDependency\"},{\"kind\":1024,\"name\":\"multiple\",\"url\":\"types/database.SingleServiceDependency.html#__type.multiple\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SingleServiceDependency.__type\"},{\"kind\":1024,\"name\":\"current\",\"url\":\"types/database.SingleServiceDependency.html#__type.current\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SingleServiceDependency.__type\"},{\"kind\":1024,\"name\":\"title\",\"url\":\"types/database.SingleServiceDependency.html#__type.title\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SingleServiceDependency.__type\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/database.SingleServiceDependency.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SingleServiceDependency.__type\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"types/database.SingleServiceDependency.html#__type.version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SingleServiceDependency.__type\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"types/database.SingleServiceDependency.html#__type.description\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SingleServiceDependency.__type\"},{\"kind\":1024,\"name\":\"required\",\"url\":\"types/database.SingleServiceDependency.html#__type.required\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SingleServiceDependency.__type\"},{\"kind\":4194304,\"name\":\"MultiServiceDependency\",\"url\":\"types/database.MultiServiceDependency.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.MultiServiceDependency.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.MultiServiceDependency\"},{\"kind\":1024,\"name\":\"multiple\",\"url\":\"types/database.MultiServiceDependency.html#__type.multiple\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.MultiServiceDependency.__type\"},{\"kind\":1024,\"name\":\"current\",\"url\":\"types/database.MultiServiceDependency.html#__type.current\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.MultiServiceDependency.__type\"},{\"kind\":1024,\"name\":\"title\",\"url\":\"types/database.MultiServiceDependency.html#__type.title\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.MultiServiceDependency.__type\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/database.MultiServiceDependency.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.MultiServiceDependency.__type\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"types/database.MultiServiceDependency.html#__type.version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.MultiServiceDependency.__type\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"types/database.MultiServiceDependency.html#__type.description\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.MultiServiceDependency.__type\"},{\"kind\":1024,\"name\":\"required\",\"url\":\"types/database.MultiServiceDependency.html#__type.required\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.MultiServiceDependency.__type\"},{\"kind\":4194304,\"name\":\"ServiceTestStats\",\"url\":\"types/database.ServiceTestStats.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ServiceTestStats.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.ServiceTestStats\"},{\"kind\":1024,\"name\":\"tests\",\"url\":\"types/database.ServiceTestStats.html#__type.tests\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestStats.__type\"},{\"kind\":1024,\"name\":\"passes\",\"url\":\"types/database.ServiceTestStats.html#__type.passes\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestStats.__type\"},{\"kind\":1024,\"name\":\"failures\",\"url\":\"types/database.ServiceTestStats.html#__type.failures\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestStats.__type\"},{\"kind\":1024,\"name\":\"pending\",\"url\":\"types/database.ServiceTestStats.html#__type.pending\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestStats.__type\"},{\"kind\":1024,\"name\":\"duration\",\"url\":\"types/database.ServiceTestStats.html#__type.duration\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestStats.__type\"},{\"kind\":4194304,\"name\":\"ServiceTestStreamTest\",\"url\":\"types/database.ServiceTestStreamTest.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ServiceTestStreamTest.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.ServiceTestStreamTest\"},{\"kind\":1024,\"name\":\"title\",\"url\":\"types/database.ServiceTestStreamTest.html#__type.title\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestStreamTest.__type\"},{\"kind\":1024,\"name\":\"fullTitle\",\"url\":\"types/database.ServiceTestStreamTest.html#__type.fullTitle\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestStreamTest.__type\"},{\"kind\":1024,\"name\":\"duration\",\"url\":\"types/database.ServiceTestStreamTest.html#__type.duration\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestStreamTest.__type\"},{\"kind\":1024,\"name\":\"err\",\"url\":\"types/database.ServiceTestStreamTest.html#__type.err\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestStreamTest.__type\"},{\"kind\":4194304,\"name\":\"ServiceTestStreamReport\",\"url\":\"types/database.ServiceTestStreamReport.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":4194304,\"name\":\"ServiceTestSuiteTest\",\"url\":\"types/database.ServiceTestSuiteTest.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ServiceTestSuiteTest.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.ServiceTestSuiteTest\"},{\"kind\":1024,\"name\":\"result\",\"url\":\"types/database.ServiceTestSuiteTest.html#__type.result\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestSuiteTest.__type\"},{\"kind\":1024,\"name\":\"title\",\"url\":\"types/database.ServiceTestSuiteTest.html#__type.title\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestSuiteTest.__type\"},{\"kind\":1024,\"name\":\"duration\",\"url\":\"types/database.ServiceTestSuiteTest.html#__type.duration\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestSuiteTest.__type\"},{\"kind\":1024,\"name\":\"err\",\"url\":\"types/database.ServiceTestSuiteTest.html#__type.err\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestSuiteTest.__type\"},{\"kind\":4194304,\"name\":\"ServiceTestSuite\",\"url\":\"types/database.ServiceTestSuite.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ServiceTestSuite.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.ServiceTestSuite\"},{\"kind\":1024,\"name\":\"title\",\"url\":\"types/database.ServiceTestSuite.html#__type.title\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestSuite.__type\"},{\"kind\":1024,\"name\":\"suites\",\"url\":\"types/database.ServiceTestSuite.html#__type.suites\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestSuite.__type\"},{\"kind\":1024,\"name\":\"tests\",\"url\":\"types/database.ServiceTestSuite.html#__type.tests\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestSuite.__type\"},{\"kind\":4194304,\"name\":\"ServiceTestSuiteReport\",\"url\":\"types/database.ServiceTestSuiteReport.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ServiceTestSuiteReport.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.ServiceTestSuiteReport\"},{\"kind\":1024,\"name\":\"stats\",\"url\":\"types/database.ServiceTestSuiteReport.html#__type.stats\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestSuiteReport.__type\"},{\"kind\":1024,\"name\":\"suites\",\"url\":\"types/database.ServiceTestSuiteReport.html#__type.suites\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestSuiteReport.__type\"},{\"kind\":1024,\"name\":\"tests\",\"url\":\"types/database.ServiceTestSuiteReport.html#__type.tests\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestSuiteReport.__type\"},{\"kind\":4194304,\"name\":\"ServiceTestXunitTest\",\"url\":\"types/database.ServiceTestXunitTest.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":4194304,\"name\":\"ServiceTestXunitReport\",\"url\":\"types/database.ServiceTestXunitReport.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":4194304,\"name\":\"ServiceTestTapReport\",\"url\":\"types/database.ServiceTestTapReport.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":4194304,\"name\":\"ServiceTestDefaultTest\",\"url\":\"types/database.ServiceTestDefaultTest.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ServiceTestDefaultTest.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.ServiceTestDefaultTest\"},{\"kind\":1024,\"name\":\"title\",\"url\":\"types/database.ServiceTestDefaultTest.html#__type.title\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestDefaultTest.__type\"},{\"kind\":1024,\"name\":\"fullTitle\",\"url\":\"types/database.ServiceTestDefaultTest.html#__type.fullTitle\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestDefaultTest.__type\"},{\"kind\":1024,\"name\":\"duration\",\"url\":\"types/database.ServiceTestDefaultTest.html#__type.duration\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestDefaultTest.__type\"},{\"kind\":1024,\"name\":\"err\",\"url\":\"types/database.ServiceTestDefaultTest.html#__type.err\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestDefaultTest.__type\"},{\"kind\":4194304,\"name\":\"ServiceTestDefaultReport\",\"url\":\"types/database.ServiceTestDefaultReport.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ServiceTestDefaultReport.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.ServiceTestDefaultReport\"},{\"kind\":1024,\"name\":\"stats\",\"url\":\"types/database.ServiceTestDefaultReport.html#__type.stats\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestDefaultReport.__type\"},{\"kind\":1024,\"name\":\"tests\",\"url\":\"types/database.ServiceTestDefaultReport.html#__type.tests\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestDefaultReport.__type\"},{\"kind\":1024,\"name\":\"pending\",\"url\":\"types/database.ServiceTestDefaultReport.html#__type.pending\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestDefaultReport.__type\"},{\"kind\":1024,\"name\":\"failures\",\"url\":\"types/database.ServiceTestDefaultReport.html#__type.failures\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestDefaultReport.__type\"},{\"kind\":1024,\"name\":\"passes\",\"url\":\"types/database.ServiceTestDefaultReport.html#__type.passes\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestDefaultReport.__type\"},{\"kind\":4194304,\"name\":\"SwaggerJson\",\"url\":\"types/database.SwaggerJson.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.SwaggerJson.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.SwaggerJson\"},{\"kind\":1024,\"name\":\"info\",\"url\":\"types/database.SwaggerJson.html#__type.info\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SwaggerJson.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.SwaggerJson.html#__type.info.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"database.SwaggerJson.__type.info\"},{\"kind\":1024,\"name\":\"title\",\"url\":\"types/database.SwaggerJson.html#__type.info.__type-1.title\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SwaggerJson.__type.info.__type\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"types/database.SwaggerJson.html#__type.info.__type-1.description\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SwaggerJson.__type.info.__type\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"types/database.SwaggerJson.html#__type.info.__type-1.version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SwaggerJson.__type.info.__type\"},{\"kind\":1024,\"name\":\"license\",\"url\":\"types/database.SwaggerJson.html#__type.info.__type-1.license\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SwaggerJson.__type.info.__type\"},{\"kind\":1024,\"name\":\"path\",\"url\":\"types/database.SwaggerJson.html#__type.path\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SwaggerJson.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.SwaggerJson.html#__type.path.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"database.SwaggerJson.__type.path\"},{\"kind\":4194304,\"name\":\"AccessLevel\",\"url\":\"types/database.AccessLevel.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":4194304,\"name\":\"ArangoUser\",\"url\":\"types/database.ArangoUser.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ArangoUser.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.ArangoUser\"},{\"kind\":1024,\"name\":\"user\",\"url\":\"types/database.ArangoUser.html#__type.user\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ArangoUser.__type\"},{\"kind\":1024,\"name\":\"active\",\"url\":\"types/database.ArangoUser.html#__type.active\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ArangoUser.__type\"},{\"kind\":1024,\"name\":\"extra\",\"url\":\"types/database.ArangoUser.html#__type.extra\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ArangoUser.__type\"},{\"kind\":4194304,\"name\":\"CreateUserOptions\",\"url\":\"types/database.CreateUserOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.CreateUserOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.CreateUserOptions\"},{\"kind\":1024,\"name\":\"user\",\"url\":\"types/database.CreateUserOptions.html#__type.user\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.CreateUserOptions.__type\"},{\"kind\":1024,\"name\":\"passwd\",\"url\":\"types/database.CreateUserOptions.html#__type.passwd\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.CreateUserOptions.__type\"},{\"kind\":1024,\"name\":\"active\",\"url\":\"types/database.CreateUserOptions.html#__type.active\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.CreateUserOptions.__type\"},{\"kind\":1024,\"name\":\"extra\",\"url\":\"types/database.CreateUserOptions.html#__type.extra\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.CreateUserOptions.__type\"},{\"kind\":4194304,\"name\":\"UserOptions\",\"url\":\"types/database.UserOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.UserOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.UserOptions\"},{\"kind\":1024,\"name\":\"passwd\",\"url\":\"types/database.UserOptions.html#__type.passwd\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.UserOptions.__type\"},{\"kind\":1024,\"name\":\"active\",\"url\":\"types/database.UserOptions.html#__type.active\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.UserOptions.__type\"},{\"kind\":1024,\"name\":\"extra\",\"url\":\"types/database.UserOptions.html#__type.extra\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.UserOptions.__type\"},{\"kind\":4194304,\"name\":\"UserAccessLevelOptions\",\"url\":\"types/database.UserAccessLevelOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.UserAccessLevelOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.UserAccessLevelOptions\"},{\"kind\":1024,\"name\":\"database\",\"url\":\"types/database.UserAccessLevelOptions.html#__type.database\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.UserAccessLevelOptions.__type\"},{\"kind\":1024,\"name\":\"collection\",\"url\":\"types/database.UserAccessLevelOptions.html#__type.collection\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.UserAccessLevelOptions.__type\"},{\"kind\":4194304,\"name\":\"QueueTimeMetrics\",\"url\":\"types/database.QueueTimeMetrics.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.QueueTimeMetrics.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.QueueTimeMetrics\"},{\"kind\":1024,\"name\":\"getLatest\",\"url\":\"types/database.QueueTimeMetrics.html#__type.getLatest\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueueTimeMetrics.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.QueueTimeMetrics.html#__type.getLatest.__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"database.QueueTimeMetrics.__type.getLatest\"},{\"kind\":1024,\"name\":\"getValues\",\"url\":\"types/database.QueueTimeMetrics.html#__type.getValues\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueueTimeMetrics.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.QueueTimeMetrics.html#__type.getValues.__type-5\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"database.QueueTimeMetrics.__type.getValues\"},{\"kind\":1024,\"name\":\"getAvg\",\"url\":\"types/database.QueueTimeMetrics.html#__type.getAvg\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueueTimeMetrics.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.QueueTimeMetrics.html#__type.getAvg.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"database.QueueTimeMetrics.__type.getAvg\"},{\"kind\":4194304,\"name\":\"HotBackupOptions\",\"url\":\"types/database.HotBackupOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.HotBackupOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.HotBackupOptions\"},{\"kind\":1024,\"name\":\"allowInconsistent\",\"url\":\"types/database.HotBackupOptions.html#__type.allowInconsistent\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.HotBackupOptions.__type\"},{\"kind\":1024,\"name\":\"force\",\"url\":\"types/database.HotBackupOptions.html#__type.force\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.HotBackupOptions.__type\"},{\"kind\":1024,\"name\":\"label\",\"url\":\"types/database.HotBackupOptions.html#__type.label\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.HotBackupOptions.__type\"},{\"kind\":1024,\"name\":\"timeout\",\"url\":\"types/database.HotBackupOptions.html#__type.timeout\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.HotBackupOptions.__type\"},{\"kind\":4194304,\"name\":\"HotBackupResult\",\"url\":\"types/database.HotBackupResult.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.HotBackupResult.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.HotBackupResult\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"types/database.HotBackupResult.html#__type.id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.HotBackupResult.__type\"},{\"kind\":1024,\"name\":\"potentiallyInconsistent\",\"url\":\"types/database.HotBackupResult.html#__type.potentiallyInconsistent\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.HotBackupResult.__type\"},{\"kind\":1024,\"name\":\"sizeInBytes\",\"url\":\"types/database.HotBackupResult.html#__type.sizeInBytes\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.HotBackupResult.__type\"},{\"kind\":1024,\"name\":\"datetime\",\"url\":\"types/database.HotBackupResult.html#__type.datetime\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.HotBackupResult.__type\"},{\"kind\":1024,\"name\":\"nrDBServers\",\"url\":\"types/database.HotBackupResult.html#__type.nrDBServers\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.HotBackupResult.__type\"},{\"kind\":1024,\"name\":\"nrFiles\",\"url\":\"types/database.HotBackupResult.html#__type.nrFiles\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.HotBackupResult.__type\"},{\"kind\":4194304,\"name\":\"HotBackupList\",\"url\":\"types/database.HotBackupList.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.HotBackupList.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.HotBackupList\"},{\"kind\":1024,\"name\":\"server\",\"url\":\"types/database.HotBackupList.html#__type.server\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.HotBackupList.__type\"},{\"kind\":1024,\"name\":\"list\",\"url\":\"types/database.HotBackupList.html#__type.list\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.HotBackupList.__type\"},{\"kind\":8,\"name\":\"LogLevel\",\"url\":\"enums/database.LogLevel.html\",\"classes\":\"tsd-kind-enum tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":16,\"name\":\"FATAL\",\"url\":\"enums/database.LogLevel.html#FATAL\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"database.LogLevel\"},{\"kind\":16,\"name\":\"ERROR\",\"url\":\"enums/database.LogLevel.html#ERROR\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"database.LogLevel\"},{\"kind\":16,\"name\":\"WARNING\",\"url\":\"enums/database.LogLevel.html#WARNING\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"database.LogLevel\"},{\"kind\":16,\"name\":\"INFO\",\"url\":\"enums/database.LogLevel.html#INFO\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"database.LogLevel\"},{\"kind\":16,\"name\":\"DEBUG\",\"url\":\"enums/database.LogLevel.html#DEBUG\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"database.LogLevel\"},{\"kind\":4194304,\"name\":\"LogLevelLabel\",\"url\":\"types/database.LogLevelLabel.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":4194304,\"name\":\"LogLevelSetting\",\"url\":\"types/database.LogLevelSetting.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":4194304,\"name\":\"LogSortDirection\",\"url\":\"types/database.LogSortDirection.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":4194304,\"name\":\"LogEntriesOptions\",\"url\":\"types/database.LogEntriesOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.LogEntriesOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.LogEntriesOptions\"},{\"kind\":1024,\"name\":\"upto\",\"url\":\"types/database.LogEntriesOptions.html#__type.upto\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.LogEntriesOptions.__type\"},{\"kind\":1024,\"name\":\"level\",\"url\":\"types/database.LogEntriesOptions.html#__type.level\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.LogEntriesOptions.__type\"},{\"kind\":1024,\"name\":\"start\",\"url\":\"types/database.LogEntriesOptions.html#__type.start\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.LogEntriesOptions.__type\"},{\"kind\":1024,\"name\":\"size\",\"url\":\"types/database.LogEntriesOptions.html#__type.size\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.LogEntriesOptions.__type\"},{\"kind\":1024,\"name\":\"offset\",\"url\":\"types/database.LogEntriesOptions.html#__type.offset\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.LogEntriesOptions.__type\"},{\"kind\":1024,\"name\":\"search\",\"url\":\"types/database.LogEntriesOptions.html#__type.search\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.LogEntriesOptions.__type\"},{\"kind\":1024,\"name\":\"sort\",\"url\":\"types/database.LogEntriesOptions.html#__type.sort\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.LogEntriesOptions.__type\"},{\"kind\":4194304,\"name\":\"LogMessage\",\"url\":\"types/database.LogMessage.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.LogMessage.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.LogMessage\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"types/database.LogMessage.html#__type.id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.LogMessage.__type\"},{\"kind\":1024,\"name\":\"topic\",\"url\":\"types/database.LogMessage.html#__type.topic\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.LogMessage.__type\"},{\"kind\":1024,\"name\":\"level\",\"url\":\"types/database.LogMessage.html#__type.level\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.LogMessage.__type\"},{\"kind\":1024,\"name\":\"date\",\"url\":\"types/database.LogMessage.html#__type.date\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.LogMessage.__type\"},{\"kind\":1024,\"name\":\"message\",\"url\":\"types/database.LogMessage.html#__type.message\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.LogMessage.__type\"},{\"kind\":4194304,\"name\":\"LogEntries\",\"url\":\"types/database.LogEntries.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.LogEntries.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.LogEntries\"},{\"kind\":1024,\"name\":\"totalAmount\",\"url\":\"types/database.LogEntries.html#__type.totalAmount\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.LogEntries.__type\"},{\"kind\":1024,\"name\":\"lid\",\"url\":\"types/database.LogEntries.html#__type.lid\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.LogEntries.__type\"},{\"kind\":1024,\"name\":\"topic\",\"url\":\"types/database.LogEntries.html#__type.topic\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.LogEntries.__type\"},{\"kind\":1024,\"name\":\"level\",\"url\":\"types/database.LogEntries.html#__type.level\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.LogEntries.__type\"},{\"kind\":1024,\"name\":\"timestamp\",\"url\":\"types/database.LogEntries.html#__type.timestamp\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.LogEntries.__type\"},{\"kind\":1024,\"name\":\"text\",\"url\":\"types/database.LogEntries.html#__type.text\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.LogEntries.__type\"},{\"kind\":128,\"name\":\"Database\",\"url\":\"classes/database.Database.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/database.Database.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/database.Database.html#name\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"version\",\"url\":\"classes/database.Database.html#version\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"time\",\"url\":\"classes/database.Database.html#time\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"route\",\"url\":\"classes/database.Database.html#route\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"createJob\",\"url\":\"classes/database.Database.html#createJob\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"acquireHostList\",\"url\":\"classes/database.Database.html#acquireHostList\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"close\",\"url\":\"classes/database.Database.html#close\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"shutdown\",\"url\":\"classes/database.Database.html#shutdown\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"waitForPropagation\",\"url\":\"classes/database.Database.html#waitForPropagation\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":262144,\"name\":\"queueTime\",\"url\":\"classes/database.Database.html#queueTime\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"setResponseQueueTimeSamples\",\"url\":\"classes/database.Database.html#setResponseQueueTimeSamples\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"useBasicAuth\",\"url\":\"classes/database.Database.html#useBasicAuth\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"useBearerAuth\",\"url\":\"classes/database.Database.html#useBearerAuth\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"login\",\"url\":\"classes/database.Database.html#login\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"renewAuthToken\",\"url\":\"classes/database.Database.html#renewAuthToken\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"getClusterImbalance\",\"url\":\"classes/database.Database.html#getClusterImbalance\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"computeClusterRebalance\",\"url\":\"classes/database.Database.html#computeClusterRebalance\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"executeClusterRebalance\",\"url\":\"classes/database.Database.html#executeClusterRebalance\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"rebalanceCluster\",\"url\":\"classes/database.Database.html#rebalanceCluster\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"database\",\"url\":\"classes/database.Database.html#database\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"get\",\"url\":\"classes/database.Database.html#get\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"exists\",\"url\":\"classes/database.Database.html#exists\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"createDatabase\",\"url\":\"classes/database.Database.html#createDatabase\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"listDatabases\",\"url\":\"classes/database.Database.html#listDatabases\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"listUserDatabases\",\"url\":\"classes/database.Database.html#listUserDatabases\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"databases\",\"url\":\"classes/database.Database.html#databases\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"userDatabases\",\"url\":\"classes/database.Database.html#userDatabases\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"dropDatabase\",\"url\":\"classes/database.Database.html#dropDatabase\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"collection\",\"url\":\"classes/database.Database.html#collection\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"createCollection\",\"url\":\"classes/database.Database.html#createCollection\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"createEdgeCollection\",\"url\":\"classes/database.Database.html#createEdgeCollection\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"renameCollection\",\"url\":\"classes/database.Database.html#renameCollection\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"listCollections\",\"url\":\"classes/database.Database.html#listCollections\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"collections\",\"url\":\"classes/database.Database.html#collections\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"graph\",\"url\":\"classes/database.Database.html#graph\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"createGraph\",\"url\":\"classes/database.Database.html#createGraph\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"listGraphs\",\"url\":\"classes/database.Database.html#listGraphs\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"graphs\",\"url\":\"classes/database.Database.html#graphs\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"view\",\"url\":\"classes/database.Database.html#view\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"createView\",\"url\":\"classes/database.Database.html#createView\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"renameView\",\"url\":\"classes/database.Database.html#renameView\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"listViews\",\"url\":\"classes/database.Database.html#listViews\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"views\",\"url\":\"classes/database.Database.html#views\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"analyzer\",\"url\":\"classes/database.Database.html#analyzer\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"createAnalyzer\",\"url\":\"classes/database.Database.html#createAnalyzer\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"listAnalyzers\",\"url\":\"classes/database.Database.html#listAnalyzers\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"analyzers\",\"url\":\"classes/database.Database.html#analyzers\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"listUsers\",\"url\":\"classes/database.Database.html#listUsers\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"getUser\",\"url\":\"classes/database.Database.html#getUser\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"createUser\",\"url\":\"classes/database.Database.html#createUser\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"updateUser\",\"url\":\"classes/database.Database.html#updateUser\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"replaceUser\",\"url\":\"classes/database.Database.html#replaceUser\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"removeUser\",\"url\":\"classes/database.Database.html#removeUser\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"getUserAccessLevel\",\"url\":\"classes/database.Database.html#getUserAccessLevel\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"setUserAccessLevel\",\"url\":\"classes/database.Database.html#setUserAccessLevel\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"clearUserAccessLevel\",\"url\":\"classes/database.Database.html#clearUserAccessLevel\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"getUserDatabases\",\"url\":\"classes/database.Database.html#getUserDatabases\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"executeTransaction\",\"url\":\"classes/database.Database.html#executeTransaction\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"transaction\",\"url\":\"classes/database.Database.html#transaction\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"beginTransaction\",\"url\":\"classes/database.Database.html#beginTransaction\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"withTransaction\",\"url\":\"classes/database.Database.html#withTransaction\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"listTransactions\",\"url\":\"classes/database.Database.html#listTransactions\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"transactions\",\"url\":\"classes/database.Database.html#transactions\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"query\",\"url\":\"classes/database.Database.html#query\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"explain\",\"url\":\"classes/database.Database.html#explain\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"parse\",\"url\":\"classes/database.Database.html#parse\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"queryRules\",\"url\":\"classes/database.Database.html#queryRules\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"queryTracking\",\"url\":\"classes/database.Database.html#queryTracking\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"listRunningQueries\",\"url\":\"classes/database.Database.html#listRunningQueries\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"listSlowQueries\",\"url\":\"classes/database.Database.html#listSlowQueries\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"clearSlowQueries\",\"url\":\"classes/database.Database.html#clearSlowQueries\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"killQuery\",\"url\":\"classes/database.Database.html#killQuery\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"listFunctions\",\"url\":\"classes/database.Database.html#listFunctions\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"createFunction\",\"url\":\"classes/database.Database.html#createFunction\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"dropFunction\",\"url\":\"classes/database.Database.html#dropFunction\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"listServices\",\"url\":\"classes/database.Database.html#listServices\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"installService\",\"url\":\"classes/database.Database.html#installService\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"replaceService\",\"url\":\"classes/database.Database.html#replaceService\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"upgradeService\",\"url\":\"classes/database.Database.html#upgradeService\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"uninstallService\",\"url\":\"classes/database.Database.html#uninstallService\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"getService\",\"url\":\"classes/database.Database.html#getService\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"getServiceConfiguration\",\"url\":\"classes/database.Database.html#getServiceConfiguration\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"replaceServiceConfiguration\",\"url\":\"classes/database.Database.html#replaceServiceConfiguration\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"updateServiceConfiguration\",\"url\":\"classes/database.Database.html#updateServiceConfiguration\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"getServiceDependencies\",\"url\":\"classes/database.Database.html#getServiceDependencies\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"replaceServiceDependencies\",\"url\":\"classes/database.Database.html#replaceServiceDependencies\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"updateServiceDependencies\",\"url\":\"classes/database.Database.html#updateServiceDependencies\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"setServiceDevelopmentMode\",\"url\":\"classes/database.Database.html#setServiceDevelopmentMode\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"listServiceScripts\",\"url\":\"classes/database.Database.html#listServiceScripts\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"runServiceScript\",\"url\":\"classes/database.Database.html#runServiceScript\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"runServiceTests\",\"url\":\"classes/database.Database.html#runServiceTests\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"getServiceReadme\",\"url\":\"classes/database.Database.html#getServiceReadme\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"getServiceDocumentation\",\"url\":\"classes/database.Database.html#getServiceDocumentation\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"downloadService\",\"url\":\"classes/database.Database.html#downloadService\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"commitLocalServiceState\",\"url\":\"classes/database.Database.html#commitLocalServiceState\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"createHotBackup\",\"url\":\"classes/database.Database.html#createHotBackup\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"listHotBackups\",\"url\":\"classes/database.Database.html#listHotBackups\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"restoreHotBackup\",\"url\":\"classes/database.Database.html#restoreHotBackup\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"deleteHotBackup\",\"url\":\"classes/database.Database.html#deleteHotBackup\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"getLogEntries\",\"url\":\"classes/database.Database.html#getLogEntries\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"getLogMessages\",\"url\":\"classes/database.Database.html#getLogMessages\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"getLogLevel\",\"url\":\"classes/database.Database.html#getLogLevel\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"setLogLevel\",\"url\":\"classes/database.Database.html#setLogLevel\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"job\",\"url\":\"classes/database.Database.html#job\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"listPendingJobs\",\"url\":\"classes/database.Database.html#listPendingJobs\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"listCompletedJobs\",\"url\":\"classes/database.Database.html#listCompletedJobs\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"deleteExpiredJobResults\",\"url\":\"classes/database.Database.html#deleteExpiredJobResults\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"deleteAllJobResults\",\"url\":\"classes/database.Database.html#deleteAllJobResults\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2,\"name\":\"documents\",\"url\":\"modules/documents.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":4194304,\"name\":\"DocumentMetadata\",\"url\":\"types/documents.DocumentMetadata.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"documents\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/documents.DocumentMetadata.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"documents.DocumentMetadata\"},{\"kind\":1024,\"name\":\"_key\",\"url\":\"types/documents.DocumentMetadata.html#__type._key\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"documents.DocumentMetadata.__type\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"types/documents.DocumentMetadata.html#__type._id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"documents.DocumentMetadata.__type\"},{\"kind\":1024,\"name\":\"_rev\",\"url\":\"types/documents.DocumentMetadata.html#__type._rev\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"documents.DocumentMetadata.__type\"},{\"kind\":4194304,\"name\":\"EdgeMetadata\",\"url\":\"types/documents.EdgeMetadata.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"documents\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/documents.EdgeMetadata.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"documents.EdgeMetadata\"},{\"kind\":1024,\"name\":\"_from\",\"url\":\"types/documents.EdgeMetadata.html#__type._from\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"documents.EdgeMetadata.__type\"},{\"kind\":1024,\"name\":\"_to\",\"url\":\"types/documents.EdgeMetadata.html#__type._to\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"documents.EdgeMetadata.__type\"},{\"kind\":4194304,\"name\":\"DocumentData\",\"url\":\"types/documents.DocumentData.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"documents\"},{\"kind\":4194304,\"name\":\"EdgeData\",\"url\":\"types/documents.EdgeData.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"documents\"},{\"kind\":4194304,\"name\":\"Document\",\"url\":\"types/documents.Document.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"documents\"},{\"kind\":4194304,\"name\":\"Edge\",\"url\":\"types/documents.Edge.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"documents\"},{\"kind\":4194304,\"name\":\"Patch\",\"url\":\"types/documents.Patch.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"documents\"},{\"kind\":4194304,\"name\":\"ObjectWithId\",\"url\":\"types/documents.ObjectWithId.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"documents\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/documents.ObjectWithId.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"documents.ObjectWithId\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"types/documents.ObjectWithId.html#__type._id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"documents.ObjectWithId.__type\"},{\"kind\":4194304,\"name\":\"ObjectWithKey\",\"url\":\"types/documents.ObjectWithKey.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"documents\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/documents.ObjectWithKey.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"documents.ObjectWithKey\"},{\"kind\":1024,\"name\":\"_key\",\"url\":\"types/documents.ObjectWithKey.html#__type._key\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"documents.ObjectWithKey.__type\"},{\"kind\":4194304,\"name\":\"DocumentSelector\",\"url\":\"types/documents.DocumentSelector.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"documents\"},{\"kind\":2,\"name\":\"error\",\"url\":\"modules/error.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"isArangoError\",\"url\":\"functions/error.isArangoError.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"error\"},{\"kind\":64,\"name\":\"isSystemError\",\"url\":\"functions/error.isSystemError.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"error\"},{\"kind\":256,\"name\":\"SystemError\",\"url\":\"interfaces/error.SystemError.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"error\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"interfaces/error.SystemError.html#code\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"error.SystemError\"},{\"kind\":1024,\"name\":\"errno\",\"url\":\"interfaces/error.SystemError.html#errno\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"error.SystemError\"},{\"kind\":1024,\"name\":\"syscall\",\"url\":\"interfaces/error.SystemError.html#syscall\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"error.SystemError\"},{\"kind\":128,\"name\":\"ArangoError\",\"url\":\"classes/error.ArangoError.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"error\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"classes/error.ArangoError.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"error.ArangoError\"},{\"kind\":1024,\"name\":\"errorNum\",\"url\":\"classes/error.ArangoError.html#errorNum\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"error.ArangoError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/error.ArangoError.html#code\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"error.ArangoError\"},{\"kind\":1024,\"name\":\"response\",\"url\":\"classes/error.ArangoError.html#response\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"error.ArangoError\"},{\"kind\":2048,\"name\":\"toJSON\",\"url\":\"classes/error.ArangoError.html#toJSON\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"error.ArangoError\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/error.ArangoError.html#toJSON.toJSON-1.__type-2\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"error.ArangoError.toJSON.toJSON\"},{\"kind\":1024,\"name\":\"error\",\"url\":\"classes/error.ArangoError.html#toJSON.toJSON-1.__type-2.error\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"error.ArangoError.toJSON.toJSON.__type\"},{\"kind\":1024,\"name\":\"errorMessage\",\"url\":\"classes/error.ArangoError.html#toJSON.toJSON-1.__type-2.errorMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"error.ArangoError.toJSON.toJSON.__type\"},{\"kind\":1024,\"name\":\"errorNum\",\"url\":\"classes/error.ArangoError.html#toJSON.toJSON-1.__type-2.errorNum-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"error.ArangoError.toJSON.toJSON.__type\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/error.ArangoError.html#toJSON.toJSON-1.__type-2.code-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"error.ArangoError.toJSON.toJSON.__type\"},{\"kind\":128,\"name\":\"HttpError\",\"url\":\"classes/error.HttpError.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"error\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"classes/error.HttpError.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"error.HttpError\"},{\"kind\":1024,\"name\":\"response\",\"url\":\"classes/error.HttpError.html#response\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"error.HttpError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/error.HttpError.html#code\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"error.HttpError\"},{\"kind\":2048,\"name\":\"toJSON\",\"url\":\"classes/error.HttpError.html#toJSON\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"error.HttpError\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/error.HttpError.html#toJSON.toJSON-1.__type-2\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"error.HttpError.toJSON.toJSON\"},{\"kind\":1024,\"name\":\"error\",\"url\":\"classes/error.HttpError.html#toJSON.toJSON-1.__type-2.error\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"error.HttpError.toJSON.toJSON.__type\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/error.HttpError.html#toJSON.toJSON-1.__type-2.code-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"error.HttpError.toJSON.toJSON.__type\"},{\"kind\":2,\"name\":\"foxx-manifest\",\"url\":\"modules/foxx_manifest.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":4194304,\"name\":\"FoxxManifest\",\"url\":\"types/foxx_manifest.FoxxManifest.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"foxx-manifest\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"foxx-manifest.FoxxManifest\"},{\"kind\":1024,\"name\":\"configuration\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type.configuration\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.FoxxManifest.__type\"},{\"kind\":1024,\"name\":\"defaultDocument\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type.defaultDocument\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.FoxxManifest.__type\"},{\"kind\":1024,\"name\":\"dependencies\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type.dependencies\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.FoxxManifest.__type\"},{\"kind\":1024,\"name\":\"provides\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type.provides\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.FoxxManifest.__type\"},{\"kind\":1024,\"name\":\"engines\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type.engines\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.FoxxManifest.__type\"},{\"kind\":1024,\"name\":\"files\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type.files\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.FoxxManifest.__type\"},{\"kind\":1024,\"name\":\"lib\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type.lib\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.FoxxManifest.__type\"},{\"kind\":1024,\"name\":\"main\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type.main\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.FoxxManifest.__type\"},{\"kind\":1024,\"name\":\"scripts\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type.scripts\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.FoxxManifest.__type\"},{\"kind\":1024,\"name\":\"tests\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type.tests\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.FoxxManifest.__type\"},{\"kind\":1024,\"name\":\"author\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type.author\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.FoxxManifest.__type\"},{\"kind\":1024,\"name\":\"contributors\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type.contributors\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.FoxxManifest.__type\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type.description\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.FoxxManifest.__type\"},{\"kind\":1024,\"name\":\"keywords\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type.keywords\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.FoxxManifest.__type\"},{\"kind\":1024,\"name\":\"license\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type.license\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.FoxxManifest.__type\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.FoxxManifest.__type\"},{\"kind\":1024,\"name\":\"thumbnail\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type.thumbnail\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.FoxxManifest.__type\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type.version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.FoxxManifest.__type\"},{\"kind\":4194304,\"name\":\"Configuration\",\"url\":\"types/foxx_manifest.Configuration.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"foxx-manifest\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/foxx_manifest.Configuration.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"foxx-manifest.Configuration\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"types/foxx_manifest.Configuration.html#__type.description\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.Configuration.__type\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/foxx_manifest.Configuration.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.Configuration.__type\"},{\"kind\":1024,\"name\":\"default\",\"url\":\"types/foxx_manifest.Configuration.html#__type.default\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.Configuration.__type\"},{\"kind\":1024,\"name\":\"required\",\"url\":\"types/foxx_manifest.Configuration.html#__type.required\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.Configuration.__type\"},{\"kind\":4194304,\"name\":\"Dependency\",\"url\":\"types/foxx_manifest.Dependency.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"foxx-manifest\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/foxx_manifest.Dependency.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"foxx-manifest.Dependency\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/foxx_manifest.Dependency.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.Dependency.__type\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"types/foxx_manifest.Dependency.html#__type.version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.Dependency.__type\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"types/foxx_manifest.Dependency.html#__type.description\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.Dependency.__type\"},{\"kind\":1024,\"name\":\"required\",\"url\":\"types/foxx_manifest.Dependency.html#__type.required\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.Dependency.__type\"},{\"kind\":1024,\"name\":\"multiple\",\"url\":\"types/foxx_manifest.Dependency.html#__type.multiple\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.Dependency.__type\"},{\"kind\":4194304,\"name\":\"File\",\"url\":\"types/foxx_manifest.File.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"foxx-manifest\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/foxx_manifest.File.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"foxx-manifest.File\"},{\"kind\":1024,\"name\":\"path\",\"url\":\"types/foxx_manifest.File.html#__type.path\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.File.__type\"},{\"kind\":1024,\"name\":\"gzip\",\"url\":\"types/foxx_manifest.File.html#__type.gzip\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.File.__type\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/foxx_manifest.File.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.File.__type\"},{\"kind\":2,\"name\":\"graph\",\"url\":\"modules/graph.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"isArangoGraph\",\"url\":\"functions/graph.isArangoGraph.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"graph\"},{\"kind\":4194304,\"name\":\"GraphCollectionReadOptions\",\"url\":\"types/graph.GraphCollectionReadOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"graph\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/graph.GraphCollectionReadOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"graph.GraphCollectionReadOptions\"},{\"kind\":1024,\"name\":\"rev\",\"url\":\"types/graph.GraphCollectionReadOptions.html#__type.rev\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphCollectionReadOptions.__type\"},{\"kind\":1024,\"name\":\"graceful\",\"url\":\"types/graph.GraphCollectionReadOptions.html#__type.graceful\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphCollectionReadOptions.__type\"},{\"kind\":1024,\"name\":\"allowDirtyRead\",\"url\":\"types/graph.GraphCollectionReadOptions.html#__type.allowDirtyRead\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphCollectionReadOptions.__type\"},{\"kind\":4194304,\"name\":\"GraphCollectionInsertOptions\",\"url\":\"types/graph.GraphCollectionInsertOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"graph\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/graph.GraphCollectionInsertOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"graph.GraphCollectionInsertOptions\"},{\"kind\":1024,\"name\":\"waitForSync\",\"url\":\"types/graph.GraphCollectionInsertOptions.html#__type.waitForSync\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphCollectionInsertOptions.__type\"},{\"kind\":1024,\"name\":\"returnNew\",\"url\":\"types/graph.GraphCollectionInsertOptions.html#__type.returnNew\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphCollectionInsertOptions.__type\"},{\"kind\":4194304,\"name\":\"GraphCollectionReplaceOptions\",\"url\":\"types/graph.GraphCollectionReplaceOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"graph\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/graph.GraphCollectionReplaceOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"graph.GraphCollectionReplaceOptions\"},{\"kind\":1024,\"name\":\"rev\",\"url\":\"types/graph.GraphCollectionReplaceOptions.html#__type.rev\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphCollectionReplaceOptions.__type\"},{\"kind\":1024,\"name\":\"waitForSync\",\"url\":\"types/graph.GraphCollectionReplaceOptions.html#__type.waitForSync\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphCollectionReplaceOptions.__type\"},{\"kind\":1024,\"name\":\"keepNull\",\"url\":\"types/graph.GraphCollectionReplaceOptions.html#__type.keepNull\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphCollectionReplaceOptions.__type\"},{\"kind\":1024,\"name\":\"returnOld\",\"url\":\"types/graph.GraphCollectionReplaceOptions.html#__type.returnOld\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphCollectionReplaceOptions.__type\"},{\"kind\":1024,\"name\":\"returnNew\",\"url\":\"types/graph.GraphCollectionReplaceOptions.html#__type.returnNew\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphCollectionReplaceOptions.__type\"},{\"kind\":4194304,\"name\":\"GraphCollectionRemoveOptions\",\"url\":\"types/graph.GraphCollectionRemoveOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"graph\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/graph.GraphCollectionRemoveOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"graph.GraphCollectionRemoveOptions\"},{\"kind\":1024,\"name\":\"rev\",\"url\":\"types/graph.GraphCollectionRemoveOptions.html#__type.rev\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphCollectionRemoveOptions.__type\"},{\"kind\":1024,\"name\":\"waitForSync\",\"url\":\"types/graph.GraphCollectionRemoveOptions.html#__type.waitForSync\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphCollectionRemoveOptions.__type\"},{\"kind\":1024,\"name\":\"returnOld\",\"url\":\"types/graph.GraphCollectionRemoveOptions.html#__type.returnOld\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphCollectionRemoveOptions.__type\"},{\"kind\":4194304,\"name\":\"EdgeDefinition\",\"url\":\"types/graph.EdgeDefinition.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"graph\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/graph.EdgeDefinition.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"graph.EdgeDefinition\"},{\"kind\":1024,\"name\":\"collection\",\"url\":\"types/graph.EdgeDefinition.html#__type.collection\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.EdgeDefinition.__type\"},{\"kind\":1024,\"name\":\"from\",\"url\":\"types/graph.EdgeDefinition.html#__type.from\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.EdgeDefinition.__type\"},{\"kind\":1024,\"name\":\"to\",\"url\":\"types/graph.EdgeDefinition.html#__type.to\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.EdgeDefinition.__type\"},{\"kind\":4194304,\"name\":\"EdgeDefinitionOptions\",\"url\":\"types/graph.EdgeDefinitionOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"graph\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/graph.EdgeDefinitionOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"graph.EdgeDefinitionOptions\"},{\"kind\":1024,\"name\":\"collection\",\"url\":\"types/graph.EdgeDefinitionOptions.html#__type.collection\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.EdgeDefinitionOptions.__type\"},{\"kind\":1024,\"name\":\"from\",\"url\":\"types/graph.EdgeDefinitionOptions.html#__type.from\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.EdgeDefinitionOptions.__type\"},{\"kind\":1024,\"name\":\"to\",\"url\":\"types/graph.EdgeDefinitionOptions.html#__type.to\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.EdgeDefinitionOptions.__type\"},{\"kind\":4194304,\"name\":\"GraphInfo\",\"url\":\"types/graph.GraphInfo.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"graph\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/graph.GraphInfo.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"graph.GraphInfo\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/graph.GraphInfo.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphInfo.__type\"},{\"kind\":1024,\"name\":\"edgeDefinitions\",\"url\":\"types/graph.GraphInfo.html#__type.edgeDefinitions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphInfo.__type\"},{\"kind\":1024,\"name\":\"orphanCollections\",\"url\":\"types/graph.GraphInfo.html#__type.orphanCollections\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphInfo.__type\"},{\"kind\":1024,\"name\":\"numberOfShards\",\"url\":\"types/graph.GraphInfo.html#__type.numberOfShards\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphInfo.__type\"},{\"kind\":1024,\"name\":\"replicationFactor\",\"url\":\"types/graph.GraphInfo.html#__type.replicationFactor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphInfo.__type\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"types/graph.GraphInfo.html#__type.writeConcern\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphInfo.__type\"},{\"kind\":1024,\"name\":\"isSatellite\",\"url\":\"types/graph.GraphInfo.html#__type.isSatellite\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphInfo.__type\"},{\"kind\":1024,\"name\":\"isSmart\",\"url\":\"types/graph.GraphInfo.html#__type.isSmart\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphInfo.__type\"},{\"kind\":1024,\"name\":\"smartGraphAttribute\",\"url\":\"types/graph.GraphInfo.html#__type.smartGraphAttribute\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphInfo.__type\"},{\"kind\":1024,\"name\":\"isDisjoint\",\"url\":\"types/graph.GraphInfo.html#__type.isDisjoint\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphInfo.__type\"},{\"kind\":4194304,\"name\":\"CreateGraphOptions\",\"url\":\"types/graph.CreateGraphOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"graph\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/graph.CreateGraphOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"graph.CreateGraphOptions\"},{\"kind\":1024,\"name\":\"waitForSync\",\"url\":\"types/graph.CreateGraphOptions.html#__type.waitForSync\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.CreateGraphOptions.__type\"},{\"kind\":1024,\"name\":\"orphanCollections\",\"url\":\"types/graph.CreateGraphOptions.html#__type.orphanCollections\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.CreateGraphOptions.__type\"},{\"kind\":1024,\"name\":\"numberOfShards\",\"url\":\"types/graph.CreateGraphOptions.html#__type.numberOfShards\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.CreateGraphOptions.__type\"},{\"kind\":1024,\"name\":\"replicationFactor\",\"url\":\"types/graph.CreateGraphOptions.html#__type.replicationFactor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.CreateGraphOptions.__type\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"types/graph.CreateGraphOptions.html#__type.writeConcern\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.CreateGraphOptions.__type\"},{\"kind\":1024,\"name\":\"isSmart\",\"url\":\"types/graph.CreateGraphOptions.html#__type.isSmart\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.CreateGraphOptions.__type\"},{\"kind\":1024,\"name\":\"smartGraphAttribute\",\"url\":\"types/graph.CreateGraphOptions.html#__type.smartGraphAttribute\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.CreateGraphOptions.__type\"},{\"kind\":1024,\"name\":\"isDisjoint\",\"url\":\"types/graph.CreateGraphOptions.html#__type.isDisjoint\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.CreateGraphOptions.__type\"},{\"kind\":1024,\"name\":\"satellites\",\"url\":\"types/graph.CreateGraphOptions.html#__type.satellites\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.CreateGraphOptions.__type\"},{\"kind\":4194304,\"name\":\"AddVertexCollectionOptions\",\"url\":\"types/graph.AddVertexCollectionOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"graph\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/graph.AddVertexCollectionOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"graph.AddVertexCollectionOptions\"},{\"kind\":1024,\"name\":\"satellites\",\"url\":\"types/graph.AddVertexCollectionOptions.html#__type.satellites\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.AddVertexCollectionOptions.__type\"},{\"kind\":4194304,\"name\":\"AddEdgeDefinitionOptions\",\"url\":\"types/graph.AddEdgeDefinitionOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"graph\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/graph.AddEdgeDefinitionOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"graph.AddEdgeDefinitionOptions\"},{\"kind\":1024,\"name\":\"satellites\",\"url\":\"types/graph.AddEdgeDefinitionOptions.html#__type.satellites\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.AddEdgeDefinitionOptions.__type\"},{\"kind\":4194304,\"name\":\"ReplaceEdgeDefinitionOptions\",\"url\":\"types/graph.ReplaceEdgeDefinitionOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"graph\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/graph.ReplaceEdgeDefinitionOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"graph.ReplaceEdgeDefinitionOptions\"},{\"kind\":1024,\"name\":\"satellites\",\"url\":\"types/graph.ReplaceEdgeDefinitionOptions.html#__type.satellites\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.ReplaceEdgeDefinitionOptions.__type\"},{\"kind\":128,\"name\":\"GraphVertexCollection\",\"url\":\"classes/graph.GraphVertexCollection.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"graph\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/graph.GraphVertexCollection.html#name\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"graph.GraphVertexCollection\"},{\"kind\":262144,\"name\":\"collection\",\"url\":\"classes/graph.GraphVertexCollection.html#collection\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"graph.GraphVertexCollection\"},{\"kind\":262144,\"name\":\"graph\",\"url\":\"classes/graph.GraphVertexCollection.html#graph\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"graph.GraphVertexCollection\"},{\"kind\":2048,\"name\":\"vertexExists\",\"url\":\"classes/graph.GraphVertexCollection.html#vertexExists\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.GraphVertexCollection\"},{\"kind\":2048,\"name\":\"vertex\",\"url\":\"classes/graph.GraphVertexCollection.html#vertex\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.GraphVertexCollection\"},{\"kind\":2048,\"name\":\"save\",\"url\":\"classes/graph.GraphVertexCollection.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.GraphVertexCollection\"},{\"kind\":2048,\"name\":\"replace\",\"url\":\"classes/graph.GraphVertexCollection.html#replace\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.GraphVertexCollection\"},{\"kind\":2048,\"name\":\"update\",\"url\":\"classes/graph.GraphVertexCollection.html#update\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.GraphVertexCollection\"},{\"kind\":2048,\"name\":\"remove\",\"url\":\"classes/graph.GraphVertexCollection.html#remove\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.GraphVertexCollection\"},{\"kind\":128,\"name\":\"GraphEdgeCollection\",\"url\":\"classes/graph.GraphEdgeCollection.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"graph\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/graph.GraphEdgeCollection.html#name\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"graph.GraphEdgeCollection\"},{\"kind\":262144,\"name\":\"collection\",\"url\":\"classes/graph.GraphEdgeCollection.html#collection\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"graph.GraphEdgeCollection\"},{\"kind\":262144,\"name\":\"graph\",\"url\":\"classes/graph.GraphEdgeCollection.html#graph\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"graph.GraphEdgeCollection\"},{\"kind\":2048,\"name\":\"edgeExists\",\"url\":\"classes/graph.GraphEdgeCollection.html#edgeExists\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.GraphEdgeCollection\"},{\"kind\":2048,\"name\":\"edge\",\"url\":\"classes/graph.GraphEdgeCollection.html#edge\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.GraphEdgeCollection\"},{\"kind\":2048,\"name\":\"save\",\"url\":\"classes/graph.GraphEdgeCollection.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.GraphEdgeCollection\"},{\"kind\":2048,\"name\":\"replace\",\"url\":\"classes/graph.GraphEdgeCollection.html#replace\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.GraphEdgeCollection\"},{\"kind\":2048,\"name\":\"update\",\"url\":\"classes/graph.GraphEdgeCollection.html#update\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.GraphEdgeCollection\"},{\"kind\":2048,\"name\":\"remove\",\"url\":\"classes/graph.GraphEdgeCollection.html#remove\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.GraphEdgeCollection\"},{\"kind\":128,\"name\":\"Graph\",\"url\":\"classes/graph.Graph.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"graph\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/graph.Graph.html#name\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"graph.Graph\"},{\"kind\":2048,\"name\":\"exists\",\"url\":\"classes/graph.Graph.html#exists\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.Graph\"},{\"kind\":2048,\"name\":\"get\",\"url\":\"classes/graph.Graph.html#get\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.Graph\"},{\"kind\":2048,\"name\":\"create\",\"url\":\"classes/graph.Graph.html#create\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.Graph\"},{\"kind\":2048,\"name\":\"drop\",\"url\":\"classes/graph.Graph.html#drop\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.Graph\"},{\"kind\":2048,\"name\":\"vertexCollection\",\"url\":\"classes/graph.Graph.html#vertexCollection\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.Graph\"},{\"kind\":2048,\"name\":\"listVertexCollections\",\"url\":\"classes/graph.Graph.html#listVertexCollections\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.Graph\"},{\"kind\":2048,\"name\":\"vertexCollections\",\"url\":\"classes/graph.Graph.html#vertexCollections\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.Graph\"},{\"kind\":2048,\"name\":\"addVertexCollection\",\"url\":\"classes/graph.Graph.html#addVertexCollection\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.Graph\"},{\"kind\":2048,\"name\":\"removeVertexCollection\",\"url\":\"classes/graph.Graph.html#removeVertexCollection\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.Graph\"},{\"kind\":2048,\"name\":\"edgeCollection\",\"url\":\"classes/graph.Graph.html#edgeCollection\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.Graph\"},{\"kind\":2048,\"name\":\"listEdgeCollections\",\"url\":\"classes/graph.Graph.html#listEdgeCollections\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.Graph\"},{\"kind\":2048,\"name\":\"edgeCollections\",\"url\":\"classes/graph.Graph.html#edgeCollections\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.Graph\"},{\"kind\":2048,\"name\":\"addEdgeDefinition\",\"url\":\"classes/graph.Graph.html#addEdgeDefinition\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.Graph\"},{\"kind\":2048,\"name\":\"replaceEdgeDefinition\",\"url\":\"classes/graph.Graph.html#replaceEdgeDefinition\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.Graph\"},{\"kind\":2048,\"name\":\"removeEdgeDefinition\",\"url\":\"classes/graph.Graph.html#removeEdgeDefinition\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.Graph\"},{\"kind\":2048,\"name\":\"traversal\",\"url\":\"classes/graph.Graph.html#traversal\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.Graph\"},{\"kind\":2,\"name\":\"index\",\"url\":\"modules/index.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"arangojs\",\"url\":\"functions/index.arangojs.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"default\",\"url\":\"modules/index.html#default\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"kind\":2,\"name\":\"indexes\",\"url\":\"modules/indexes.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":4194304,\"name\":\"EnsurePersistentIndexOptions\",\"url\":\"types/indexes.EnsurePersistentIndexOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/indexes.EnsurePersistentIndexOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"indexes.EnsurePersistentIndexOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/indexes.EnsurePersistentIndexOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsurePersistentIndexOptions.__type\"},{\"kind\":1024,\"name\":\"fields\",\"url\":\"types/indexes.EnsurePersistentIndexOptions.html#__type.fields\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsurePersistentIndexOptions.__type\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/indexes.EnsurePersistentIndexOptions.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsurePersistentIndexOptions.__type\"},{\"kind\":1024,\"name\":\"unique\",\"url\":\"types/indexes.EnsurePersistentIndexOptions.html#__type.unique\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsurePersistentIndexOptions.__type\"},{\"kind\":1024,\"name\":\"sparse\",\"url\":\"types/indexes.EnsurePersistentIndexOptions.html#__type.sparse\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsurePersistentIndexOptions.__type\"},{\"kind\":1024,\"name\":\"deduplicate\",\"url\":\"types/indexes.EnsurePersistentIndexOptions.html#__type.deduplicate\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsurePersistentIndexOptions.__type\"},{\"kind\":1024,\"name\":\"estimates\",\"url\":\"types/indexes.EnsurePersistentIndexOptions.html#__type.estimates\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsurePersistentIndexOptions.__type\"},{\"kind\":1024,\"name\":\"inBackground\",\"url\":\"types/indexes.EnsurePersistentIndexOptions.html#__type.inBackground\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsurePersistentIndexOptions.__type\"},{\"kind\":1024,\"name\":\"cacheEnabled\",\"url\":\"types/indexes.EnsurePersistentIndexOptions.html#__type.cacheEnabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsurePersistentIndexOptions.__type\"},{\"kind\":1024,\"name\":\"storedValues\",\"url\":\"types/indexes.EnsurePersistentIndexOptions.html#__type.storedValues\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsurePersistentIndexOptions.__type\"},{\"kind\":4194304,\"name\":\"EnsureGeoIndexOptions\",\"url\":\"types/indexes.EnsureGeoIndexOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":4194304,\"name\":\"EnsureFulltextIndexOptions\",\"url\":\"types/indexes.EnsureFulltextIndexOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/indexes.EnsureFulltextIndexOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"indexes.EnsureFulltextIndexOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/indexes.EnsureFulltextIndexOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureFulltextIndexOptions.__type\"},{\"kind\":1024,\"name\":\"fields\",\"url\":\"types/indexes.EnsureFulltextIndexOptions.html#__type.fields\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureFulltextIndexOptions.__type\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/indexes.EnsureFulltextIndexOptions.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureFulltextIndexOptions.__type\"},{\"kind\":1024,\"name\":\"minLength\",\"url\":\"types/indexes.EnsureFulltextIndexOptions.html#__type.minLength\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureFulltextIndexOptions.__type\"},{\"kind\":1024,\"name\":\"inBackground\",\"url\":\"types/indexes.EnsureFulltextIndexOptions.html#__type.inBackground\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureFulltextIndexOptions.__type\"},{\"kind\":4194304,\"name\":\"EnsureTtlIndexOptions\",\"url\":\"types/indexes.EnsureTtlIndexOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/indexes.EnsureTtlIndexOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"indexes.EnsureTtlIndexOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/indexes.EnsureTtlIndexOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureTtlIndexOptions.__type\"},{\"kind\":1024,\"name\":\"fields\",\"url\":\"types/indexes.EnsureTtlIndexOptions.html#__type.fields\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureTtlIndexOptions.__type\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/indexes.EnsureTtlIndexOptions.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureTtlIndexOptions.__type\"},{\"kind\":1024,\"name\":\"expireAfter\",\"url\":\"types/indexes.EnsureTtlIndexOptions.html#__type.expireAfter\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureTtlIndexOptions.__type\"},{\"kind\":1024,\"name\":\"inBackground\",\"url\":\"types/indexes.EnsureTtlIndexOptions.html#__type.inBackground\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureTtlIndexOptions.__type\"},{\"kind\":4194304,\"name\":\"EnsureMdiIndexOptions\",\"url\":\"types/indexes.EnsureMdiIndexOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/indexes.EnsureMdiIndexOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"indexes.EnsureMdiIndexOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/indexes.EnsureMdiIndexOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureMdiIndexOptions.__type\"},{\"kind\":1024,\"name\":\"fields\",\"url\":\"types/indexes.EnsureMdiIndexOptions.html#__type.fields\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureMdiIndexOptions.__type\"},{\"kind\":1024,\"name\":\"fieldValueTypes\",\"url\":\"types/indexes.EnsureMdiIndexOptions.html#__type.fieldValueTypes\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureMdiIndexOptions.__type\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/indexes.EnsureMdiIndexOptions.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureMdiIndexOptions.__type\"},{\"kind\":1024,\"name\":\"unique\",\"url\":\"types/indexes.EnsureMdiIndexOptions.html#__type.unique\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureMdiIndexOptions.__type\"},{\"kind\":1024,\"name\":\"inBackground\",\"url\":\"types/indexes.EnsureMdiIndexOptions.html#__type.inBackground\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureMdiIndexOptions.__type\"},{\"kind\":4194304,\"name\":\"InvertedIndexNestedFieldOptions\",\"url\":\"types/indexes.InvertedIndexNestedFieldOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/indexes.InvertedIndexNestedFieldOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"indexes.InvertedIndexNestedFieldOptions\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/indexes.InvertedIndexNestedFieldOptions.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexNestedFieldOptions.__type\"},{\"kind\":1024,\"name\":\"analyzer\",\"url\":\"types/indexes.InvertedIndexNestedFieldOptions.html#__type.analyzer\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexNestedFieldOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/indexes.InvertedIndexNestedFieldOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexNestedFieldOptions.__type\"},{\"kind\":1024,\"name\":\"searchField\",\"url\":\"types/indexes.InvertedIndexNestedFieldOptions.html#__type.searchField\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexNestedFieldOptions.__type\"},{\"kind\":1024,\"name\":\"nested\",\"url\":\"types/indexes.InvertedIndexNestedFieldOptions.html#__type.nested\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexNestedFieldOptions.__type\"},{\"kind\":4194304,\"name\":\"InvertedIndexFieldOptions\",\"url\":\"types/indexes.InvertedIndexFieldOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/indexes.InvertedIndexFieldOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"indexes.InvertedIndexFieldOptions\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/indexes.InvertedIndexFieldOptions.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexFieldOptions.__type\"},{\"kind\":1024,\"name\":\"analyzer\",\"url\":\"types/indexes.InvertedIndexFieldOptions.html#__type.analyzer\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexFieldOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/indexes.InvertedIndexFieldOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexFieldOptions.__type\"},{\"kind\":1024,\"name\":\"includeAllFields\",\"url\":\"types/indexes.InvertedIndexFieldOptions.html#__type.includeAllFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexFieldOptions.__type\"},{\"kind\":1024,\"name\":\"searchField\",\"url\":\"types/indexes.InvertedIndexFieldOptions.html#__type.searchField\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexFieldOptions.__type\"},{\"kind\":1024,\"name\":\"trackListPositions\",\"url\":\"types/indexes.InvertedIndexFieldOptions.html#__type.trackListPositions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexFieldOptions.__type\"},{\"kind\":1024,\"name\":\"nested\",\"url\":\"types/indexes.InvertedIndexFieldOptions.html#__type.nested\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexFieldOptions.__type\"},{\"kind\":1024,\"name\":\"cache\",\"url\":\"types/indexes.InvertedIndexFieldOptions.html#__type.cache\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexFieldOptions.__type\"},{\"kind\":4194304,\"name\":\"InvertedIndexStoredValueOptions\",\"url\":\"types/indexes.InvertedIndexStoredValueOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/indexes.InvertedIndexStoredValueOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"indexes.InvertedIndexStoredValueOptions\"},{\"kind\":1024,\"name\":\"fields\",\"url\":\"types/indexes.InvertedIndexStoredValueOptions.html#__type.fields\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexStoredValueOptions.__type\"},{\"kind\":1024,\"name\":\"compression\",\"url\":\"types/indexes.InvertedIndexStoredValueOptions.html#__type.compression\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexStoredValueOptions.__type\"},{\"kind\":1024,\"name\":\"cache\",\"url\":\"types/indexes.InvertedIndexStoredValueOptions.html#__type.cache\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexStoredValueOptions.__type\"},{\"kind\":4194304,\"name\":\"InvertedIndexPrimarySortFieldOptions\",\"url\":\"types/indexes.InvertedIndexPrimarySortFieldOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/indexes.InvertedIndexPrimarySortFieldOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"indexes.InvertedIndexPrimarySortFieldOptions\"},{\"kind\":1024,\"name\":\"field\",\"url\":\"types/indexes.InvertedIndexPrimarySortFieldOptions.html#__type.field\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexPrimarySortFieldOptions.__type\"},{\"kind\":1024,\"name\":\"direction\",\"url\":\"types/indexes.InvertedIndexPrimarySortFieldOptions.html#__type.direction\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexPrimarySortFieldOptions.__type\"},{\"kind\":4194304,\"name\":\"EnsureInvertedIndexOptions\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"indexes.EnsureInvertedIndexOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"fields\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.fields\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"searchField\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.searchField\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"storedValues\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.storedValues\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"primarySort\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.primarySort\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.primarySort.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type.primarySort\"},{\"kind\":1024,\"name\":\"fields\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.primarySort.__type-1.fields-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type.primarySort.__type\"},{\"kind\":1024,\"name\":\"compression\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.primarySort.__type-1.compression\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type.primarySort.__type\"},{\"kind\":1024,\"name\":\"cache\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.primarySort.__type-1.cache-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type.primarySort.__type\"},{\"kind\":1024,\"name\":\"primaryKeyCache\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.primaryKeyCache\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"analyzer\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.analyzer\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"includeAllFields\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.includeAllFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"trackListPositions\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.trackListPositions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"parallelism\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.parallelism\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"cleanupIntervalStep\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.cleanupIntervalStep\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"commitIntervalMsec\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.commitIntervalMsec\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"consolidationIntervalMsec\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.consolidationIntervalMsec\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"consolidationPolicy\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.consolidationPolicy\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"writeBufferIdle\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.writeBufferIdle\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"writeBufferActive\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.writeBufferActive\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"writeBufferSizeMax\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.writeBufferSizeMax\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"inBackground\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.inBackground\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"cache\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.cache\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"optimizeTopK\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.optimizeTopK\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":4194304,\"name\":\"GenericIndex\",\"url\":\"types/indexes.GenericIndex.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/indexes.GenericIndex.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"indexes.GenericIndex\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/indexes.GenericIndex.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.GenericIndex.__type\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"types/indexes.GenericIndex.html#__type.id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.GenericIndex.__type\"},{\"kind\":1024,\"name\":\"sparse\",\"url\":\"types/indexes.GenericIndex.html#__type.sparse\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.GenericIndex.__type\"},{\"kind\":1024,\"name\":\"unique\",\"url\":\"types/indexes.GenericIndex.html#__type.unique\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.GenericIndex.__type\"},{\"kind\":4194304,\"name\":\"PersistentIndex\",\"url\":\"types/indexes.PersistentIndex.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":4194304,\"name\":\"PrimaryIndex\",\"url\":\"types/indexes.PrimaryIndex.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":4194304,\"name\":\"FulltextIndex\",\"url\":\"types/indexes.FulltextIndex.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":4194304,\"name\":\"GeoIndex\",\"url\":\"types/indexes.GeoIndex.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":4194304,\"name\":\"TtlIndex\",\"url\":\"types/indexes.TtlIndex.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":4194304,\"name\":\"MdiIndex\",\"url\":\"types/indexes.MdiIndex.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":4194304,\"name\":\"InvertedIndexNestedField\",\"url\":\"types/indexes.InvertedIndexNestedField.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/indexes.InvertedIndexNestedField.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"indexes.InvertedIndexNestedField\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/indexes.InvertedIndexNestedField.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexNestedField.__type\"},{\"kind\":1024,\"name\":\"analyzer\",\"url\":\"types/indexes.InvertedIndexNestedField.html#__type.analyzer\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexNestedField.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/indexes.InvertedIndexNestedField.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexNestedField.__type\"},{\"kind\":1024,\"name\":\"searchField\",\"url\":\"types/indexes.InvertedIndexNestedField.html#__type.searchField\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexNestedField.__type\"},{\"kind\":1024,\"name\":\"nested\",\"url\":\"types/indexes.InvertedIndexNestedField.html#__type.nested\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexNestedField.__type\"},{\"kind\":4194304,\"name\":\"InvertedIndex\",\"url\":\"types/indexes.InvertedIndex.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":4194304,\"name\":\"Index\",\"url\":\"types/indexes.Index.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":4194304,\"name\":\"ObjectWithId\",\"url\":\"types/indexes.ObjectWithId.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/indexes.ObjectWithId.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"indexes.ObjectWithId\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"types/indexes.ObjectWithId.html#__type.id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.ObjectWithId.__type\"},{\"kind\":4194304,\"name\":\"ObjectWithName\",\"url\":\"types/indexes.ObjectWithName.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/indexes.ObjectWithName.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"indexes.ObjectWithName\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/indexes.ObjectWithName.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.ObjectWithName.__type\"},{\"kind\":4194304,\"name\":\"IndexSelector\",\"url\":\"types/indexes.IndexSelector.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":2,\"name\":\"job\",\"url\":\"modules/job.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":128,\"name\":\"Job\",\"url\":\"classes/job.Job.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"job\"},{\"kind\":262144,\"name\":\"isLoaded\",\"url\":\"classes/job.Job.html#isLoaded\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"job.Job\"},{\"kind\":262144,\"name\":\"result\",\"url\":\"classes/job.Job.html#result\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"job.Job\"},{\"kind\":2048,\"name\":\"load\",\"url\":\"classes/job.Job.html#load\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"job.Job\"},{\"kind\":2048,\"name\":\"cancel\",\"url\":\"classes/job.Job.html#cancel\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"job.Job\"},{\"kind\":2048,\"name\":\"deleteResult\",\"url\":\"classes/job.Job.html#deleteResult\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"job.Job\"},{\"kind\":2048,\"name\":\"getCompleted\",\"url\":\"classes/job.Job.html#getCompleted\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"job.Job\"},{\"kind\":2,\"name\":\"route\",\"url\":\"modules/route.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":128,\"name\":\"Route\",\"url\":\"classes/route.Route.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"route\"},{\"kind\":2048,\"name\":\"route\",\"url\":\"classes/route.Route.html#route\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"route.Route\"},{\"kind\":2048,\"name\":\"request\",\"url\":\"classes/route.Route.html#request\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"route.Route\"},{\"kind\":2048,\"name\":\"delete\",\"url\":\"classes/route.Route.html#delete\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"route.Route\"},{\"kind\":2048,\"name\":\"get\",\"url\":\"classes/route.Route.html#get\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"route.Route\"},{\"kind\":2048,\"name\":\"head\",\"url\":\"classes/route.Route.html#head\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"route.Route\"},{\"kind\":2048,\"name\":\"patch\",\"url\":\"classes/route.Route.html#patch\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"route.Route\"},{\"kind\":2048,\"name\":\"post\",\"url\":\"classes/route.Route.html#post\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"route.Route\"},{\"kind\":2048,\"name\":\"put\",\"url\":\"classes/route.Route.html#put\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"route.Route\"},{\"kind\":2,\"name\":\"transaction\",\"url\":\"modules/transaction.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"isArangoTransaction\",\"url\":\"functions/transaction.isArangoTransaction.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"transaction\"},{\"kind\":4194304,\"name\":\"TransactionCommitOptions\",\"url\":\"types/transaction.TransactionCommitOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"transaction\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/transaction.TransactionCommitOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"transaction.TransactionCommitOptions\"},{\"kind\":1024,\"name\":\"allowDirtyRead\",\"url\":\"types/transaction.TransactionCommitOptions.html#__type.allowDirtyRead\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"transaction.TransactionCommitOptions.__type\"},{\"kind\":4194304,\"name\":\"TransactionAbortOptions\",\"url\":\"types/transaction.TransactionAbortOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"transaction\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/transaction.TransactionAbortOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"transaction.TransactionAbortOptions\"},{\"kind\":1024,\"name\":\"allowDirtyRead\",\"url\":\"types/transaction.TransactionAbortOptions.html#__type.allowDirtyRead\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"transaction.TransactionAbortOptions.__type\"},{\"kind\":4194304,\"name\":\"TransactionStatus\",\"url\":\"types/transaction.TransactionStatus.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"transaction\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/transaction.TransactionStatus.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"transaction.TransactionStatus\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"types/transaction.TransactionStatus.html#__type.id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"transaction.TransactionStatus.__type\"},{\"kind\":1024,\"name\":\"status\",\"url\":\"types/transaction.TransactionStatus.html#__type.status\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"transaction.TransactionStatus.__type\"},{\"kind\":128,\"name\":\"Transaction\",\"url\":\"classes/transaction.Transaction.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"transaction\"},{\"kind\":262144,\"name\":\"id\",\"url\":\"classes/transaction.Transaction.html#id\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"transaction.Transaction\"},{\"kind\":2048,\"name\":\"exists\",\"url\":\"classes/transaction.Transaction.html#exists\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"transaction.Transaction\"},{\"kind\":2048,\"name\":\"get\",\"url\":\"classes/transaction.Transaction.html#get\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"transaction.Transaction\"},{\"kind\":2048,\"name\":\"commit\",\"url\":\"classes/transaction.Transaction.html#commit\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"transaction.Transaction\"},{\"kind\":2048,\"name\":\"abort\",\"url\":\"classes/transaction.Transaction.html#abort\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"transaction.Transaction\"},{\"kind\":2048,\"name\":\"step\",\"url\":\"classes/transaction.Transaction.html#step\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"transaction.Transaction\"},{\"kind\":2,\"name\":\"view\",\"url\":\"modules/view.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"isArangoView\",\"url\":\"functions/view.isArangoView.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":4194304,\"name\":\"Direction\",\"url\":\"types/view.Direction.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":4194304,\"name\":\"BytesAccumConsolidationPolicy\",\"url\":\"types/view.BytesAccumConsolidationPolicy.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/view.BytesAccumConsolidationPolicy.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"view.BytesAccumConsolidationPolicy\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/view.BytesAccumConsolidationPolicy.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.BytesAccumConsolidationPolicy.__type\"},{\"kind\":1024,\"name\":\"threshold\",\"url\":\"types/view.BytesAccumConsolidationPolicy.html#__type.threshold\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.BytesAccumConsolidationPolicy.__type\"},{\"kind\":4194304,\"name\":\"TierConsolidationPolicy\",\"url\":\"types/view.TierConsolidationPolicy.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/view.TierConsolidationPolicy.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"view.TierConsolidationPolicy\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/view.TierConsolidationPolicy.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.TierConsolidationPolicy.__type\"},{\"kind\":1024,\"name\":\"segmentsBytesFloor\",\"url\":\"types/view.TierConsolidationPolicy.html#__type.segmentsBytesFloor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.TierConsolidationPolicy.__type\"},{\"kind\":1024,\"name\":\"segmentsBytesMax\",\"url\":\"types/view.TierConsolidationPolicy.html#__type.segmentsBytesMax\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.TierConsolidationPolicy.__type\"},{\"kind\":1024,\"name\":\"segmentsMax\",\"url\":\"types/view.TierConsolidationPolicy.html#__type.segmentsMax\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.TierConsolidationPolicy.__type\"},{\"kind\":1024,\"name\":\"segmentsMin\",\"url\":\"types/view.TierConsolidationPolicy.html#__type.segmentsMin\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.TierConsolidationPolicy.__type\"},{\"kind\":1024,\"name\":\"minScore\",\"url\":\"types/view.TierConsolidationPolicy.html#__type.minScore\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.TierConsolidationPolicy.__type\"},{\"kind\":4194304,\"name\":\"Compression\",\"url\":\"types/view.Compression.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":4194304,\"name\":\"CreateViewOptions\",\"url\":\"types/view.CreateViewOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":4194304,\"name\":\"ViewPropertiesOptions\",\"url\":\"types/view.ViewPropertiesOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":4194304,\"name\":\"ViewPatchPropertiesOptions\",\"url\":\"types/view.ViewPatchPropertiesOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":4194304,\"name\":\"ArangoSearchViewLinkOptions\",\"url\":\"types/view.ArangoSearchViewLinkOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/view.ArangoSearchViewLinkOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"view.ArangoSearchViewLinkOptions\"},{\"kind\":1024,\"name\":\"analyzers\",\"url\":\"types/view.ArangoSearchViewLinkOptions.html#__type.analyzers\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewLinkOptions.__type\"},{\"kind\":1024,\"name\":\"fields\",\"url\":\"types/view.ArangoSearchViewLinkOptions.html#__type.fields\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewLinkOptions.__type\"},{\"kind\":1024,\"name\":\"includeAllFields\",\"url\":\"types/view.ArangoSearchViewLinkOptions.html#__type.includeAllFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewLinkOptions.__type\"},{\"kind\":1024,\"name\":\"nested\",\"url\":\"types/view.ArangoSearchViewLinkOptions.html#__type.nested\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewLinkOptions.__type\"},{\"kind\":1024,\"name\":\"trackListPositions\",\"url\":\"types/view.ArangoSearchViewLinkOptions.html#__type.trackListPositions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewLinkOptions.__type\"},{\"kind\":1024,\"name\":\"storeValues\",\"url\":\"types/view.ArangoSearchViewLinkOptions.html#__type.storeValues\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewLinkOptions.__type\"},{\"kind\":1024,\"name\":\"inBackground\",\"url\":\"types/view.ArangoSearchViewLinkOptions.html#__type.inBackground\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewLinkOptions.__type\"},{\"kind\":1024,\"name\":\"cache\",\"url\":\"types/view.ArangoSearchViewLinkOptions.html#__type.cache\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewLinkOptions.__type\"},{\"kind\":4194304,\"name\":\"ArangoSearchViewPropertiesOptions\",\"url\":\"types/view.ArangoSearchViewPropertiesOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/view.ArangoSearchViewPropertiesOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"view.ArangoSearchViewPropertiesOptions\"},{\"kind\":1024,\"name\":\"cleanupIntervalStep\",\"url\":\"types/view.ArangoSearchViewPropertiesOptions.html#__type.cleanupIntervalStep\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewPropertiesOptions.__type\"},{\"kind\":1024,\"name\":\"consolidationIntervalMsec\",\"url\":\"types/view.ArangoSearchViewPropertiesOptions.html#__type.consolidationIntervalMsec\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewPropertiesOptions.__type\"},{\"kind\":1024,\"name\":\"commitIntervalMsec\",\"url\":\"types/view.ArangoSearchViewPropertiesOptions.html#__type.commitIntervalMsec\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewPropertiesOptions.__type\"},{\"kind\":1024,\"name\":\"consolidationPolicy\",\"url\":\"types/view.ArangoSearchViewPropertiesOptions.html#__type.consolidationPolicy\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewPropertiesOptions.__type\"},{\"kind\":1024,\"name\":\"links\",\"url\":\"types/view.ArangoSearchViewPropertiesOptions.html#__type.links\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewPropertiesOptions.__type\"},{\"kind\":4194304,\"name\":\"ArangoSearchViewPatchPropertiesOptions\",\"url\":\"types/view.ArangoSearchViewPatchPropertiesOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":256,\"name\":\"ArangoSearchViewStoredValueOptions\",\"url\":\"interfaces/view.ArangoSearchViewStoredValueOptions.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":1024,\"name\":\"fields\",\"url\":\"interfaces/view.ArangoSearchViewStoredValueOptions.html#fields\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"view.ArangoSearchViewStoredValueOptions\"},{\"kind\":1024,\"name\":\"compression\",\"url\":\"interfaces/view.ArangoSearchViewStoredValueOptions.html#compression\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"view.ArangoSearchViewStoredValueOptions\"},{\"kind\":1024,\"name\":\"cache\",\"url\":\"interfaces/view.ArangoSearchViewStoredValueOptions.html#cache\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"view.ArangoSearchViewStoredValueOptions\"},{\"kind\":4194304,\"name\":\"CreateArangoSearchViewOptions\",\"url\":\"types/view.CreateArangoSearchViewOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":4194304,\"name\":\"SearchAliasViewIndexOptions\",\"url\":\"types/view.SearchAliasViewIndexOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/view.SearchAliasViewIndexOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"view.SearchAliasViewIndexOptions\"},{\"kind\":1024,\"name\":\"collection\",\"url\":\"types/view.SearchAliasViewIndexOptions.html#__type.collection\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.SearchAliasViewIndexOptions.__type\"},{\"kind\":1024,\"name\":\"index\",\"url\":\"types/view.SearchAliasViewIndexOptions.html#__type.index\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.SearchAliasViewIndexOptions.__type\"},{\"kind\":4194304,\"name\":\"SearchAliasViewPropertiesOptions\",\"url\":\"types/view.SearchAliasViewPropertiesOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/view.SearchAliasViewPropertiesOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"view.SearchAliasViewPropertiesOptions\"},{\"kind\":1024,\"name\":\"indexes\",\"url\":\"types/view.SearchAliasViewPropertiesOptions.html#__type.indexes\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.SearchAliasViewPropertiesOptions.__type\"},{\"kind\":4194304,\"name\":\"SearchAliasViewPatchIndexOptions\",\"url\":\"types/view.SearchAliasViewPatchIndexOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":4194304,\"name\":\"SearchAliasViewPatchPropertiesOptions\",\"url\":\"types/view.SearchAliasViewPatchPropertiesOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/view.SearchAliasViewPatchPropertiesOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"view.SearchAliasViewPatchPropertiesOptions\"},{\"kind\":1024,\"name\":\"indexes\",\"url\":\"types/view.SearchAliasViewPatchPropertiesOptions.html#__type.indexes\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.SearchAliasViewPatchPropertiesOptions.__type\"},{\"kind\":4194304,\"name\":\"CreateSearchAliasViewOptions\",\"url\":\"types/view.CreateSearchAliasViewOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":4194304,\"name\":\"GenericViewDescription\",\"url\":\"types/view.GenericViewDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/view.GenericViewDescription.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"view.GenericViewDescription\"},{\"kind\":1024,\"name\":\"globallyUniqueId\",\"url\":\"types/view.GenericViewDescription.html#__type.globallyUniqueId\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.GenericViewDescription.__type\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"types/view.GenericViewDescription.html#__type.id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.GenericViewDescription.__type\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/view.GenericViewDescription.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.GenericViewDescription.__type\"},{\"kind\":4194304,\"name\":\"ViewDescription\",\"url\":\"types/view.ViewDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":4194304,\"name\":\"ArangoSearchViewDescription\",\"url\":\"types/view.ArangoSearchViewDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":4194304,\"name\":\"SearchAliasViewDescription\",\"url\":\"types/view.SearchAliasViewDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":4194304,\"name\":\"ViewProperties\",\"url\":\"types/view.ViewProperties.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":4194304,\"name\":\"ArangoSearchViewLink\",\"url\":\"types/view.ArangoSearchViewLink.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/view.ArangoSearchViewLink.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"view.ArangoSearchViewLink\"},{\"kind\":1024,\"name\":\"analyzers\",\"url\":\"types/view.ArangoSearchViewLink.html#__type.analyzers\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewLink.__type\"},{\"kind\":1024,\"name\":\"fields\",\"url\":\"types/view.ArangoSearchViewLink.html#__type.fields\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewLink.__type\"},{\"kind\":1024,\"name\":\"includeAllFields\",\"url\":\"types/view.ArangoSearchViewLink.html#__type.includeAllFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewLink.__type\"},{\"kind\":1024,\"name\":\"nested\",\"url\":\"types/view.ArangoSearchViewLink.html#__type.nested\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewLink.__type\"},{\"kind\":1024,\"name\":\"trackListPositions\",\"url\":\"types/view.ArangoSearchViewLink.html#__type.trackListPositions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewLink.__type\"},{\"kind\":1024,\"name\":\"storeValues\",\"url\":\"types/view.ArangoSearchViewLink.html#__type.storeValues\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewLink.__type\"},{\"kind\":1024,\"name\":\"cache\",\"url\":\"types/view.ArangoSearchViewLink.html#__type.cache\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewLink.__type\"},{\"kind\":4194304,\"name\":\"ArangoSearchViewProperties\",\"url\":\"types/view.ArangoSearchViewProperties.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":4194304,\"name\":\"SearchAliasViewProperties\",\"url\":\"types/view.SearchAliasViewProperties.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":128,\"name\":\"View\",\"url\":\"classes/view.View.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/view.View.html#name\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"view.View\"},{\"kind\":2048,\"name\":\"get\",\"url\":\"classes/view.View.html#get\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"view.View\"},{\"kind\":2048,\"name\":\"exists\",\"url\":\"classes/view.View.html#exists\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"view.View\"},{\"kind\":2048,\"name\":\"create\",\"url\":\"classes/view.View.html#create\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"view.View\"},{\"kind\":2048,\"name\":\"rename\",\"url\":\"classes/view.View.html#rename\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"view.View\"},{\"kind\":2048,\"name\":\"properties\",\"url\":\"classes/view.View.html#properties\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"view.View\"},{\"kind\":2048,\"name\":\"updateProperties\",\"url\":\"classes/view.View.html#updateProperties\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"view.View\"},{\"kind\":2048,\"name\":\"replaceProperties\",\"url\":\"classes/view.View.html#replaceProperties\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"view.View\"},{\"kind\":2048,\"name\":\"drop\",\"url\":\"classes/view.View.html#drop\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"view.View\"},{\"kind\":8388608,\"name\":\"aql\",\"url\":\"modules/index.html#aql\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"Database\",\"url\":\"modules/index.html#Database\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[[\"name/0\",[0,51.603]],[\"comment/0\",[]],[\"name/1\",[1,70.066]],[\"comment/1\",[]],[\"name/2\",[2,70.066]],[\"comment/2\",[]],[\"name/3\",[3,70.066]],[\"comment/3\",[]],[\"name/4\",[4,70.066]],[\"comment/4\",[]],[\"name/5\",[5,21.151]],[\"comment/5\",[]],[\"name/6\",[6,37.869]],[\"comment/6\",[]],[\"name/7\",[7,42.127]],[\"comment/7\",[]],[\"name/8\",[8,42.979]],[\"comment/8\",[]],[\"name/9\",[9,70.066]],[\"comment/9\",[]],[\"name/10\",[5,21.151]],[\"comment/10\",[]],[\"name/11\",[6,37.869]],[\"comment/11\",[]],[\"name/12\",[7,42.127]],[\"comment/12\",[]],[\"name/13\",[8,42.979]],[\"comment/13\",[]],[\"name/14\",[10,70.066]],[\"comment/14\",[]],[\"name/15\",[5,21.151]],[\"comment/15\",[]],[\"name/16\",[6,37.869]],[\"comment/16\",[]],[\"name/17\",[7,42.127]],[\"comment/17\",[]],[\"name/18\",[8,42.979]],[\"comment/18\",[]],[\"name/19\",[5,21.151]],[\"comment/19\",[]],[\"name/20\",[11,70.066]],[\"comment/20\",[]],[\"name/21\",[12,70.066]],[\"comment/21\",[]],[\"name/22\",[5,21.151]],[\"comment/22\",[]],[\"name/23\",[6,37.869]],[\"comment/23\",[]],[\"name/24\",[7,42.127]],[\"comment/24\",[]],[\"name/25\",[8,42.979]],[\"comment/25\",[]],[\"name/26\",[5,21.151]],[\"comment/26\",[]],[\"name/27\",[13,59.077]],[\"comment/27\",[]],[\"name/28\",[14,70.066]],[\"comment/28\",[]],[\"name/29\",[5,21.151]],[\"comment/29\",[]],[\"name/30\",[6,37.869]],[\"comment/30\",[]],[\"name/31\",[7,42.127]],[\"comment/31\",[]],[\"name/32\",[8,42.979]],[\"comment/32\",[]],[\"name/33\",[5,21.151]],[\"comment/33\",[]],[\"name/34\",[13,59.077]],[\"comment/34\",[]],[\"name/35\",[15,61.591]],[\"comment/35\",[]],[\"name/36\",[16,64.957]],[\"comment/36\",[]],[\"name/37\",[17,70.066]],[\"comment/37\",[]],[\"name/38\",[5,21.151]],[\"comment/38\",[]],[\"name/39\",[6,37.869]],[\"comment/39\",[]],[\"name/40\",[7,42.127]],[\"comment/40\",[]],[\"name/41\",[8,42.979]],[\"comment/41\",[]],[\"name/42\",[5,21.151]],[\"comment/42\",[]],[\"name/43\",[18,64.957]],[\"comment/43\",[]],[\"name/44\",[19,64.957]],[\"comment/44\",[]],[\"name/45\",[20,64.957]],[\"comment/45\",[]],[\"name/46\",[21,70.066]],[\"comment/46\",[]],[\"name/47\",[5,21.151]],[\"comment/47\",[]],[\"name/48\",[6,37.869]],[\"comment/48\",[]],[\"name/49\",[7,42.127]],[\"comment/49\",[]],[\"name/50\",[8,42.979]],[\"comment/50\",[]],[\"name/51\",[5,21.151]],[\"comment/51\",[]],[\"name/52\",[13,59.077]],[\"comment/52\",[]],[\"name/53\",[15,61.591]],[\"comment/53\",[]],[\"name/54\",[22,64.957]],[\"comment/54\",[]],[\"name/55\",[23,70.066]],[\"comment/55\",[]],[\"name/56\",[16,64.957]],[\"comment/56\",[]],[\"name/57\",[24,70.066]],[\"comment/57\",[]],[\"name/58\",[25,70.066]],[\"comment/58\",[]],[\"name/59\",[5,21.151]],[\"comment/59\",[]],[\"name/60\",[19,64.957]],[\"comment/60\",[]],[\"name/61\",[18,64.957]],[\"comment/61\",[]],[\"name/62\",[20,64.957]],[\"comment/62\",[]],[\"name/63\",[26,70.066]],[\"comment/63\",[]],[\"name/64\",[5,21.151]],[\"comment/64\",[]],[\"name/65\",[6,37.869]],[\"comment/65\",[]],[\"name/66\",[7,42.127]],[\"comment/66\",[]],[\"name/67\",[8,42.979]],[\"comment/67\",[]],[\"name/68\",[5,21.151]],[\"comment/68\",[]],[\"name/69\",[27,70.066]],[\"comment/69\",[]],[\"name/70\",[15,61.591]],[\"comment/70\",[]],[\"name/71\",[28,70.066]],[\"comment/71\",[]],[\"name/72\",[5,21.151]],[\"comment/72\",[]],[\"name/73\",[6,37.869]],[\"comment/73\",[]],[\"name/74\",[7,42.127]],[\"comment/74\",[]],[\"name/75\",[8,42.979]],[\"comment/75\",[]],[\"name/76\",[5,21.151]],[\"comment/76\",[]],[\"name/77\",[29,70.066]],[\"comment/77\",[]],[\"name/78\",[30,70.066]],[\"comment/78\",[]],[\"name/79\",[31,55.399]],[\"comment/79\",[]],[\"name/80\",[32,59.077]],[\"comment/80\",[]],[\"name/81\",[33,64.957]],[\"comment/81\",[]],[\"name/82\",[34,70.066]],[\"comment/82\",[]],[\"name/83\",[35,70.066]],[\"comment/83\",[]],[\"name/84\",[5,21.151]],[\"comment/84\",[]],[\"name/85\",[6,37.869]],[\"comment/85\",[]],[\"name/86\",[7,42.127]],[\"comment/86\",[]],[\"name/87\",[8,42.979]],[\"comment/87\",[]],[\"name/88\",[5,21.151]],[\"comment/88\",[]],[\"name/89\",[36,70.066]],[\"comment/89\",[]],[\"name/90\",[37,70.066]],[\"comment/90\",[]],[\"name/91\",[5,21.151]],[\"comment/91\",[]],[\"name/92\",[6,37.869]],[\"comment/92\",[]],[\"name/93\",[7,42.127]],[\"comment/93\",[]],[\"name/94\",[8,42.979]],[\"comment/94\",[]],[\"name/95\",[5,21.151]],[\"comment/95\",[]],[\"name/96\",[22,64.957]],[\"comment/96\",[]],[\"name/97\",[38,70.066]],[\"comment/97\",[]],[\"name/98\",[39,70.066]],[\"comment/98\",[]],[\"name/99\",[5,21.151]],[\"comment/99\",[]],[\"name/100\",[6,37.869]],[\"comment/100\",[]],[\"name/101\",[7,42.127]],[\"comment/101\",[]],[\"name/102\",[8,42.979]],[\"comment/102\",[]],[\"name/103\",[5,21.151]],[\"comment/103\",[]],[\"name/104\",[13,59.077]],[\"comment/104\",[]],[\"name/105\",[40,70.066]],[\"comment/105\",[]],[\"name/106\",[5,21.151]],[\"comment/106\",[]],[\"name/107\",[6,37.869]],[\"comment/107\",[]],[\"name/108\",[7,42.127]],[\"comment/108\",[]],[\"name/109\",[8,42.979]],[\"comment/109\",[]],[\"name/110\",[5,21.151]],[\"comment/110\",[]],[\"name/111\",[0,51.603]],[\"comment/111\",[]],[\"name/112\",[41,70.066]],[\"comment/112\",[]],[\"name/113\",[42,70.066]],[\"comment/113\",[]],[\"name/114\",[5,21.151]],[\"comment/114\",[]],[\"name/115\",[6,37.869]],[\"comment/115\",[]],[\"name/116\",[7,42.127]],[\"comment/116\",[]],[\"name/117\",[8,42.979]],[\"comment/117\",[]],[\"name/118\",[5,21.151]],[\"comment/118\",[]],[\"name/119\",[43,64.957]],[\"comment/119\",[]],[\"name/120\",[44,64.957]],[\"comment/120\",[]],[\"name/121\",[45,64.957]],[\"comment/121\",[]],[\"name/122\",[46,70.066]],[\"comment/122\",[]],[\"name/123\",[5,21.151]],[\"comment/123\",[]],[\"name/124\",[6,37.869]],[\"comment/124\",[]],[\"name/125\",[7,42.127]],[\"comment/125\",[]],[\"name/126\",[8,42.979]],[\"comment/126\",[]],[\"name/127\",[5,21.151]],[\"comment/127\",[]],[\"name/128\",[43,64.957]],[\"comment/128\",[]],[\"name/129\",[44,64.957]],[\"comment/129\",[]],[\"name/130\",[47,70.066]],[\"comment/130\",[]],[\"name/131\",[5,21.151]],[\"comment/131\",[]],[\"name/132\",[6,37.869]],[\"comment/132\",[]],[\"name/133\",[7,42.127]],[\"comment/133\",[]],[\"name/134\",[8,42.979]],[\"comment/134\",[]],[\"name/135\",[5,21.151]],[\"comment/135\",[]],[\"name/136\",[48,70.066]],[\"comment/136\",[]],[\"name/137\",[0,51.603]],[\"comment/137\",[]],[\"name/138\",[49,70.066]],[\"comment/138\",[]],[\"name/139\",[5,21.151]],[\"comment/139\",[]],[\"name/140\",[6,37.869]],[\"comment/140\",[]],[\"name/141\",[7,42.127]],[\"comment/141\",[]],[\"name/142\",[8,42.979]],[\"comment/142\",[]],[\"name/143\",[5,21.151]],[\"comment/143\",[]],[\"name/144\",[6,37.869]],[\"comment/144\",[]],[\"name/145\",[50,59.077]],[\"comment/145\",[]],[\"name/146\",[5,21.151]],[\"comment/146\",[]],[\"name/147\",[51,64.957]],[\"comment/147\",[]],[\"name/148\",[52,61.591]],[\"comment/148\",[]],[\"name/149\",[53,61.591]],[\"comment/149\",[]],[\"name/150\",[54,70.066]],[\"comment/150\",[]],[\"name/151\",[5,21.151]],[\"comment/151\",[]],[\"name/152\",[6,37.869]],[\"comment/152\",[]],[\"name/153\",[7,42.127]],[\"comment/153\",[]],[\"name/154\",[8,42.979]],[\"comment/154\",[]],[\"name/155\",[5,21.151]],[\"comment/155\",[]],[\"name/156\",[55,70.066]],[\"comment/156\",[]],[\"name/157\",[56,70.066]],[\"comment/157\",[]],[\"name/158\",[50,59.077]],[\"comment/158\",[]],[\"name/159\",[5,21.151]],[\"comment/159\",[]],[\"name/160\",[57,70.066]],[\"comment/160\",[]],[\"name/161\",[52,61.591]],[\"comment/161\",[]],[\"name/162\",[53,61.591]],[\"comment/162\",[]],[\"name/163\",[58,70.066]],[\"comment/163\",[]],[\"name/164\",[5,21.151]],[\"comment/164\",[]],[\"name/165\",[6,37.869]],[\"comment/165\",[]],[\"name/166\",[7,42.127]],[\"comment/166\",[]],[\"name/167\",[8,42.979]],[\"comment/167\",[]],[\"name/168\",[5,21.151]],[\"comment/168\",[]],[\"name/169\",[6,37.869]],[\"comment/169\",[]],[\"name/170\",[50,59.077]],[\"comment/170\",[]],[\"name/171\",[5,21.151]],[\"comment/171\",[]],[\"name/172\",[51,64.957]],[\"comment/172\",[]],[\"name/173\",[52,61.591]],[\"comment/173\",[]],[\"name/174\",[53,61.591]],[\"comment/174\",[]],[\"name/175\",[59,70.066]],[\"comment/175\",[]],[\"name/176\",[60,70.066]],[\"comment/176\",[]],[\"name/177\",[5,21.151]],[\"comment/177\",[]],[\"name/178\",[61,38.14]],[\"comment/178\",[]],[\"name/179\",[7,42.127]],[\"comment/179\",[]],[\"name/180\",[62,70.066]],[\"comment/180\",[]],[\"name/181\",[63,70.066]],[\"comment/181\",[]],[\"name/182\",[64,70.066]],[\"comment/182\",[]],[\"name/183\",[65,70.066]],[\"comment/183\",[]],[\"name/184\",[66,70.066]],[\"comment/184\",[]],[\"name/185\",[67,70.066]],[\"comment/185\",[]],[\"name/186\",[68,70.066]],[\"comment/186\",[]],[\"name/187\",[69,70.066]],[\"comment/187\",[]],[\"name/188\",[70,70.066]],[\"comment/188\",[]],[\"name/189\",[71,70.066]],[\"comment/189\",[]],[\"name/190\",[72,70.066]],[\"comment/190\",[]],[\"name/191\",[73,70.066]],[\"comment/191\",[]],[\"name/192\",[74,70.066]],[\"comment/192\",[]],[\"name/193\",[75,70.066]],[\"comment/193\",[]],[\"name/194\",[76,70.066]],[\"comment/194\",[]],[\"name/195\",[77,70.066]],[\"comment/195\",[]],[\"name/196\",[78,70.066]],[\"comment/196\",[]],[\"name/197\",[79,70.066]],[\"comment/197\",[]],[\"name/198\",[80,70.066]],[\"comment/198\",[]],[\"name/199\",[81,70.066]],[\"comment/199\",[]],[\"name/200\",[0,51.603]],[\"comment/200\",[]],[\"name/201\",[61,38.14]],[\"comment/201\",[]],[\"name/202\",[82,53.968]],[\"comment/202\",[]],[\"name/203\",[83,52.716]],[\"comment/203\",[]],[\"name/204\",[84,57.07]],[\"comment/204\",[]],[\"name/205\",[85,57.07]],[\"comment/205\",[]],[\"name/206\",[86,61.591]],[\"comment/206\",[]],[\"name/207\",[87,70.066]],[\"comment/207\",[]],[\"name/208\",[88,70.066]],[\"comment/208\",[]],[\"name/209\",[86,61.591]],[\"comment/209\",[]],[\"name/210\",[89,70.066]],[\"comment/210\",[]],[\"name/211\",[90,70.066]],[\"comment/211\",[]],[\"name/212\",[91,70.066]],[\"comment/212\",[]],[\"name/213\",[92,61.591]],[\"comment/213\",[]],[\"name/214\",[93,61.591]],[\"comment/214\",[]],[\"name/215\",[6,37.869]],[\"comment/215\",[]],[\"name/216\",[94,70.066]],[\"comment/216\",[]],[\"name/217\",[95,70.066]],[\"comment/217\",[]],[\"name/218\",[96,51.603]],[\"comment/218\",[]],[\"name/219\",[97,70.066]],[\"comment/219\",[]],[\"name/220\",[98,70.066]],[\"comment/220\",[]],[\"name/221\",[99,70.066]],[\"comment/221\",[]],[\"name/222\",[61,38.14]],[\"comment/222\",[]],[\"name/223\",[100,70.066]],[\"comment/223\",[]],[\"name/224\",[101,70.066]],[\"comment/224\",[]],[\"name/225\",[102,70.066]],[\"comment/225\",[]],[\"name/226\",[103,70.066]],[\"comment/226\",[]],[\"name/227\",[104,70.066]],[\"comment/227\",[]],[\"name/228\",[105,70.066]],[\"comment/228\",[]],[\"name/229\",[106,70.066]],[\"comment/229\",[]],[\"name/230\",[107,70.066]],[\"comment/230\",[]],[\"name/231\",[108,64.957]],[\"comment/231\",[]],[\"name/232\",[109,70.066]],[\"comment/232\",[]],[\"name/233\",[110,70.066]],[\"comment/233\",[]],[\"name/234\",[111,61.591]],[\"comment/234\",[]],[\"name/235\",[112,70.066]],[\"comment/235\",[]],[\"name/236\",[113,70.066]],[\"comment/236\",[]],[\"name/237\",[114,70.066]],[\"comment/237\",[]],[\"name/238\",[115,70.066]],[\"comment/238\",[]],[\"name/239\",[5,21.151]],[\"comment/239\",[]],[\"name/240\",[116,53.968]],[\"comment/240\",[]],[\"name/241\",[117,64.957]],[\"comment/241\",[]],[\"name/242\",[118,61.591]],[\"comment/242\",[]],[\"name/243\",[119,70.066]],[\"comment/243\",[]],[\"name/244\",[120,70.066]],[\"comment/244\",[]],[\"name/245\",[5,21.151]],[\"comment/245\",[]],[\"name/246\",[61,38.14]],[\"comment/246\",[]],[\"name/247\",[121,64.957]],[\"comment/247\",[]],[\"name/248\",[122,61.591]],[\"comment/248\",[]],[\"name/249\",[123,64.957]],[\"comment/249\",[]],[\"name/250\",[31,55.399]],[\"comment/250\",[]],[\"name/251\",[124,61.591]],[\"comment/251\",[]],[\"name/252\",[125,70.066]],[\"comment/252\",[]],[\"name/253\",[5,21.151]],[\"comment/253\",[]],[\"name/254\",[61,38.14]],[\"comment/254\",[]],[\"name/255\",[126,64.957]],[\"comment/255\",[]],[\"name/256\",[127,64.957]],[\"comment/256\",[]],[\"name/257\",[6,37.869]],[\"comment/257\",[]],[\"name/258\",[128,70.066]],[\"comment/258\",[]],[\"name/259\",[5,21.151]],[\"comment/259\",[]],[\"name/260\",[6,37.869]],[\"comment/260\",[]],[\"name/261\",[129,64.957]],[\"comment/261\",[]],[\"name/262\",[130,64.957]],[\"comment/262\",[]],[\"name/263\",[131,61.591]],[\"comment/263\",[]],[\"name/264\",[132,70.066]],[\"comment/264\",[]],[\"name/265\",[133,70.066]],[\"comment/265\",[]],[\"name/266\",[5,21.151]],[\"comment/266\",[]],[\"name/267\",[6,37.869]],[\"comment/267\",[]],[\"name/268\",[134,64.957]],[\"comment/268\",[]],[\"name/269\",[135,57.07]],[\"comment/269\",[]],[\"name/270\",[136,61.591]],[\"comment/270\",[]],[\"name/271\",[137,70.066]],[\"comment/271\",[]],[\"name/272\",[5,21.151]],[\"comment/272\",[]],[\"name/273\",[138,70.066]],[\"comment/273\",[]],[\"name/274\",[139,46.081]],[\"comment/274\",[]],[\"name/275\",[140,64.957]],[\"comment/275\",[]],[\"name/276\",[141,61.591]],[\"comment/276\",[]],[\"name/277\",[142,53.968]],[\"comment/277\",[]],[\"name/278\",[143,59.077]],[\"comment/278\",[]],[\"name/279\",[144,64.957]],[\"comment/279\",[]],[\"name/280\",[145,53.968]],[\"comment/280\",[]],[\"name/281\",[111,61.591]],[\"comment/281\",[]],[\"name/282\",[146,64.957]],[\"comment/282\",[]],[\"name/283\",[147,64.957]],[\"comment/283\",[]],[\"name/284\",[148,59.077]],[\"comment/284\",[]],[\"name/285\",[149,61.591]],[\"comment/285\",[]],[\"name/286\",[150,59.077]],[\"comment/286\",[]],[\"name/287\",[151,70.066]],[\"comment/287\",[]],[\"name/288\",[152,61.591]],[\"comment/288\",[]],[\"name/289\",[153,61.591]],[\"comment/289\",[]],[\"name/290\",[154,70.066]],[\"comment/290\",[]],[\"name/291\",[5,21.151]],[\"comment/291\",[]],[\"name/292\",[61,38.14]],[\"comment/292\",[]],[\"name/293\",[121,64.957]],[\"comment/293\",[]],[\"name/294\",[122,61.591]],[\"comment/294\",[]],[\"name/295\",[123,64.957]],[\"comment/295\",[]],[\"name/296\",[31,55.399]],[\"comment/296\",[]],[\"name/297\",[124,61.591]],[\"comment/297\",[]],[\"name/298\",[155,70.066]],[\"comment/298\",[]],[\"name/299\",[5,21.151]],[\"comment/299\",[]],[\"name/300\",[134,64.957]],[\"comment/300\",[]],[\"name/301\",[135,57.07]],[\"comment/301\",[]],[\"name/302\",[136,61.591]],[\"comment/302\",[]],[\"name/303\",[156,70.066]],[\"comment/303\",[]],[\"name/304\",[5,21.151]],[\"comment/304\",[]],[\"name/305\",[139,46.081]],[\"comment/305\",[]],[\"name/306\",[145,53.968]],[\"comment/306\",[]],[\"name/307\",[142,53.968]],[\"comment/307\",[]],[\"name/308\",[141,61.591]],[\"comment/308\",[]],[\"name/309\",[149,61.591]],[\"comment/309\",[]],[\"name/310\",[150,59.077]],[\"comment/310\",[]],[\"name/311\",[157,70.066]],[\"comment/311\",[]],[\"name/312\",[5,21.151]],[\"comment/312\",[]],[\"name/313\",[158,70.066]],[\"comment/313\",[]],[\"name/314\",[159,70.066]],[\"comment/314\",[]],[\"name/315\",[160,70.066]],[\"comment/315\",[]],[\"name/316\",[5,21.151]],[\"comment/316\",[]],[\"name/317\",[161,64.957]],[\"comment/317\",[]],[\"name/318\",[162,70.066]],[\"comment/318\",[]],[\"name/319\",[5,21.151]],[\"comment/319\",[]],[\"name/320\",[6,37.869]],[\"comment/320\",[]],[\"name/321\",[129,64.957]],[\"comment/321\",[]],[\"name/322\",[130,64.957]],[\"comment/322\",[]],[\"name/323\",[131,61.591]],[\"comment/323\",[]],[\"name/324\",[163,70.066]],[\"comment/324\",[]],[\"name/325\",[5,21.151]],[\"comment/325\",[]],[\"name/326\",[139,46.081]],[\"comment/326\",[]],[\"name/327\",[140,64.957]],[\"comment/327\",[]],[\"name/328\",[141,61.591]],[\"comment/328\",[]],[\"name/329\",[164,70.066]],[\"comment/329\",[]],[\"name/330\",[165,70.066]],[\"comment/330\",[]],[\"name/331\",[143,59.077]],[\"comment/331\",[]],[\"name/332\",[144,64.957]],[\"comment/332\",[]],[\"name/333\",[145,53.968]],[\"comment/333\",[]],[\"name/334\",[142,53.968]],[\"comment/334\",[]],[\"name/335\",[111,61.591]],[\"comment/335\",[]],[\"name/336\",[146,64.957]],[\"comment/336\",[]],[\"name/337\",[147,64.957]],[\"comment/337\",[]],[\"name/338\",[148,59.077]],[\"comment/338\",[]],[\"name/339\",[149,61.591]],[\"comment/339\",[]],[\"name/340\",[150,59.077]],[\"comment/340\",[]],[\"name/341\",[166,70.066]],[\"comment/341\",[]],[\"name/342\",[5,21.151]],[\"comment/342\",[]],[\"name/343\",[167,57.07]],[\"comment/343\",[]],[\"name/344\",[168,64.957]],[\"comment/344\",[]],[\"name/345\",[169,70.066]],[\"comment/345\",[]],[\"name/346\",[5,21.151]],[\"comment/346\",[]],[\"name/347\",[170,64.957]],[\"comment/347\",[]],[\"name/348\",[171,51.603]],[\"comment/348\",[]],[\"name/349\",[167,57.07]],[\"comment/349\",[]],[\"name/350\",[168,64.957]],[\"comment/350\",[]],[\"name/351\",[172,70.066]],[\"comment/351\",[]],[\"name/352\",[5,21.151]],[\"comment/352\",[]],[\"name/353\",[171,51.603]],[\"comment/353\",[]],[\"name/354\",[173,70.066]],[\"comment/354\",[]],[\"name/355\",[5,21.151]],[\"comment/355\",[]],[\"name/356\",[139,46.081]],[\"comment/356\",[]],[\"name/357\",[174,57.07]],[\"comment/357\",[]],[\"name/358\",[175,57.07]],[\"comment/358\",[]],[\"name/359\",[176,53.968]],[\"comment/359\",[]],[\"name/360\",[177,70.066]],[\"comment/360\",[]],[\"name/361\",[178,61.591]],[\"comment/361\",[]],[\"name/362\",[179,59.077]],[\"comment/362\",[]],[\"name/363\",[180,61.591]],[\"comment/363\",[]],[\"name/364\",[181,70.066]],[\"comment/364\",[]],[\"name/365\",[5,21.151]],[\"comment/365\",[]],[\"name/366\",[139,46.081]],[\"comment/366\",[]],[\"name/367\",[174,57.07]],[\"comment/367\",[]],[\"name/368\",[175,57.07]],[\"comment/368\",[]],[\"name/369\",[182,64.957]],[\"comment/369\",[]],[\"name/370\",[176,53.968]],[\"comment/370\",[]],[\"name/371\",[167,57.07]],[\"comment/371\",[]],[\"name/372\",[179,59.077]],[\"comment/372\",[]],[\"name/373\",[180,61.591]],[\"comment/373\",[]],[\"name/374\",[183,70.066]],[\"comment/374\",[]],[\"name/375\",[5,21.151]],[\"comment/375\",[]],[\"name/376\",[139,46.081]],[\"comment/376\",[]],[\"name/377\",[174,57.07]],[\"comment/377\",[]],[\"name/378\",[175,57.07]],[\"comment/378\",[]],[\"name/379\",[182,64.957]],[\"comment/379\",[]],[\"name/380\",[176,53.968]],[\"comment/380\",[]],[\"name/381\",[31,55.399]],[\"comment/381\",[]],[\"name/382\",[178,61.591]],[\"comment/382\",[]],[\"name/383\",[167,57.07]],[\"comment/383\",[]],[\"name/384\",[179,59.077]],[\"comment/384\",[]],[\"name/385\",[180,61.591]],[\"comment/385\",[]],[\"name/386\",[184,70.066]],[\"comment/386\",[]],[\"name/387\",[5,21.151]],[\"comment/387\",[]],[\"name/388\",[139,46.081]],[\"comment/388\",[]],[\"name/389\",[176,53.968]],[\"comment/389\",[]],[\"name/390\",[174,57.07]],[\"comment/390\",[]],[\"name/391\",[167,57.07]],[\"comment/391\",[]],[\"name/392\",[179,59.077]],[\"comment/392\",[]],[\"name/393\",[185,70.066]],[\"comment/393\",[]],[\"name/394\",[5,21.151]],[\"comment/394\",[]],[\"name/395\",[186,70.066]],[\"comment/395\",[]],[\"name/396\",[187,70.066]],[\"comment/396\",[]],[\"name/397\",[122,61.591]],[\"comment/397\",[]],[\"name/398\",[139,46.081]],[\"comment/398\",[]],[\"name/399\",[188,70.066]],[\"comment/399\",[]],[\"name/400\",[189,70.066]],[\"comment/400\",[]],[\"name/401\",[190,61.591]],[\"comment/401\",[]],[\"name/402\",[191,70.066]],[\"comment/402\",[]],[\"name/403\",[5,21.151]],[\"comment/403\",[]],[\"name/404\",[171,51.603]],[\"comment/404\",[]],[\"name/405\",[192,70.066]],[\"comment/405\",[]],[\"name/406\",[5,21.151]],[\"comment/406\",[]],[\"name/407\",[193,61.591]],[\"comment/407\",[]],[\"name/408\",[194,57.07]],[\"comment/408\",[]],[\"name/409\",[32,59.077]],[\"comment/409\",[]],[\"name/410\",[195,61.591]],[\"comment/410\",[]],[\"name/411\",[196,70.066]],[\"comment/411\",[]],[\"name/412\",[5,21.151]],[\"comment/412\",[]],[\"name/413\",[193,61.591]],[\"comment/413\",[]],[\"name/414\",[194,57.07]],[\"comment/414\",[]],[\"name/415\",[32,59.077]],[\"comment/415\",[]],[\"name/416\",[195,61.591]],[\"comment/416\",[]],[\"name/417\",[197,61.591]],[\"comment/417\",[]],[\"name/418\",[198,70.066]],[\"comment/418\",[]],[\"name/419\",[5,21.151]],[\"comment/419\",[]],[\"name/420\",[31,55.399]],[\"comment/420\",[]],[\"name/421\",[139,46.081]],[\"comment/421\",[]],[\"name/422\",[194,57.07]],[\"comment/422\",[]],[\"name/423\",[178,61.591]],[\"comment/423\",[]],[\"name/424\",[199,70.066]],[\"comment/424\",[]],[\"name/425\",[5,21.151]],[\"comment/425\",[]],[\"name/426\",[139,46.081]],[\"comment/426\",[]],[\"name/427\",[194,57.07]],[\"comment/427\",[]],[\"name/428\",[200,70.066]],[\"comment/428\",[]],[\"name/429\",[201,70.066]],[\"comment/429\",[]],[\"name/430\",[5,21.151]],[\"comment/430\",[]],[\"name/431\",[176,53.968]],[\"comment/431\",[]],[\"name/432\",[174,57.07]],[\"comment/432\",[]],[\"name/433\",[139,46.081]],[\"comment/433\",[]],[\"name/434\",[202,70.066]],[\"comment/434\",[]],[\"name/435\",[5,21.151]],[\"comment/435\",[]],[\"name/436\",[203,55.399]],[\"comment/436\",[]],[\"name/437\",[194,57.07]],[\"comment/437\",[]],[\"name/438\",[193,61.591]],[\"comment/438\",[]],[\"name/439\",[204,70.066]],[\"comment/439\",[]],[\"name/440\",[5,21.151]],[\"comment/440\",[]],[\"name/441\",[205,70.066]],[\"comment/441\",[]],[\"name/442\",[206,70.066]],[\"comment/442\",[]],[\"name/443\",[207,64.957]],[\"comment/443\",[]],[\"name/444\",[208,70.066]],[\"comment/444\",[]],[\"name/445\",[209,70.066]],[\"comment/445\",[]],[\"name/446\",[210,61.591]],[\"comment/446\",[]],[\"name/447\",[211,70.066]],[\"comment/447\",[]],[\"name/448\",[212,70.066]],[\"comment/448\",[]],[\"name/449\",[213,70.066]],[\"comment/449\",[]],[\"name/450\",[214,70.066]],[\"comment/450\",[]],[\"name/451\",[5,21.151]],[\"comment/451\",[]],[\"name/452\",[215,70.066]],[\"comment/452\",[]],[\"name/453\",[216,61.591]],[\"comment/453\",[]],[\"name/454\",[217,70.066]],[\"comment/454\",[]],[\"name/455\",[218,70.066]],[\"comment/455\",[]],[\"name/456\",[219,70.066]],[\"comment/456\",[]],[\"name/457\",[220,70.066]],[\"comment/457\",[]],[\"name/458\",[5,21.151]],[\"comment/458\",[]],[\"name/459\",[116,53.968]],[\"comment/459\",[]],[\"name/460\",[221,70.066]],[\"comment/460\",[]],[\"name/461\",[222,70.066]],[\"comment/461\",[]],[\"name/462\",[223,70.066]],[\"comment/462\",[]],[\"name/463\",[224,64.957]],[\"comment/463\",[]],[\"name/464\",[225,64.957]],[\"comment/464\",[]],[\"name/465\",[190,61.591]],[\"comment/465\",[]],[\"name/466\",[226,70.066]],[\"comment/466\",[]],[\"name/467\",[5,21.151]],[\"comment/467\",[]],[\"name/468\",[216,61.591]],[\"comment/468\",[]],[\"name/469\",[227,55.399]],[\"comment/469\",[]],[\"name/470\",[5,21.151]],[\"comment/470\",[]],[\"name/471\",[228,64.957]],[\"comment/471\",[]],[\"name/472\",[229,64.957]],[\"comment/472\",[]],[\"name/473\",[230,70.066]],[\"comment/473\",[]],[\"name/474\",[5,21.151]],[\"comment/474\",[]],[\"name/475\",[108,64.957]],[\"comment/475\",[]],[\"name/476\",[231,70.066]],[\"comment/476\",[]],[\"name/477\",[5,21.151]],[\"comment/477\",[]],[\"name/478\",[232,70.066]],[\"comment/478\",[]],[\"name/479\",[233,70.066]],[\"comment/479\",[]],[\"name/480\",[5,21.151]],[\"comment/480\",[]],[\"name/481\",[224,64.957]],[\"comment/481\",[]],[\"name/482\",[234,70.066]],[\"comment/482\",[]],[\"name/483\",[5,21.151]],[\"comment/483\",[]],[\"name/484\",[235,70.066]],[\"comment/484\",[]],[\"name/485\",[225,64.957]],[\"comment/485\",[]],[\"name/486\",[236,70.066]],[\"comment/486\",[]],[\"name/487\",[237,70.066]],[\"comment/487\",[]],[\"name/488\",[82,53.968]],[\"comment/488\",[]],[\"name/489\",[83,52.716]],[\"comment/489\",[]],[\"name/490\",[84,57.07]],[\"comment/490\",[]],[\"name/491\",[8,42.979]],[\"comment/491\",[]],[\"name/492\",[238,57.07]],[\"comment/492\",[]],[\"name/493\",[239,64.957]],[\"comment/493\",[]],[\"name/494\",[240,64.957]],[\"comment/494\",[]],[\"name/495\",[241,64.957]],[\"comment/495\",[]],[\"name/496\",[242,61.591]],[\"comment/496\",[]],[\"name/497\",[243,64.957]],[\"comment/497\",[]],[\"name/498\",[244,61.591]],[\"comment/498\",[]],[\"name/499\",[245,64.957]],[\"comment/499\",[]],[\"name/500\",[85,57.07]],[\"comment/500\",[]],[\"name/501\",[246,64.957]],[\"comment/501\",[]],[\"name/502\",[247,64.957]],[\"comment/502\",[]],[\"name/503\",[248,64.957]],[\"comment/503\",[]],[\"name/504\",[249,61.591]],[\"comment/504\",[]],[\"name/505\",[250,61.591]],[\"comment/505\",[]],[\"name/506\",[251,59.077]],[\"comment/506\",[]],[\"name/507\",[252,64.957]],[\"comment/507\",[]],[\"name/508\",[253,59.077]],[\"comment/508\",[]],[\"name/509\",[254,64.957]],[\"comment/509\",[]],[\"name/510\",[255,59.077]],[\"comment/510\",[]],[\"name/511\",[256,64.957]],[\"comment/511\",[]],[\"name/512\",[257,59.077]],[\"comment/512\",[]],[\"name/513\",[258,64.957]],[\"comment/513\",[]],[\"name/514\",[259,64.957]],[\"comment/514\",[]],[\"name/515\",[260,61.591]],[\"comment/515\",[]],[\"name/516\",[261,59.077]],[\"comment/516\",[]],[\"name/517\",[262,64.957]],[\"comment/517\",[]],[\"name/518\",[263,64.957]],[\"comment/518\",[]],[\"name/519\",[264,64.957]],[\"comment/519\",[]],[\"name/520\",[265,64.957]],[\"comment/520\",[]],[\"name/521\",[266,64.957]],[\"comment/521\",[]],[\"name/522\",[267,64.957]],[\"comment/522\",[]],[\"name/523\",[268,64.957]],[\"comment/523\",[]],[\"name/524\",[269,64.957]],[\"comment/524\",[]],[\"name/525\",[270,64.957]],[\"comment/525\",[]],[\"name/526\",[271,57.07]],[\"comment/526\",[]],[\"name/527\",[203,55.399]],[\"comment/527\",[]],[\"name/528\",[272,64.957]],[\"comment/528\",[]],[\"name/529\",[273,64.957]],[\"comment/529\",[]],[\"name/530\",[274,64.957]],[\"comment/530\",[]],[\"name/531\",[61,38.14]],[\"comment/531\",[]],[\"name/532\",[275,64.957]],[\"comment/532\",[]],[\"name/533\",[249,61.591]],[\"comment/533\",[]],[\"name/534\",[250,61.591]],[\"comment/534\",[]],[\"name/535\",[251,59.077]],[\"comment/535\",[]],[\"name/536\",[252,64.957]],[\"comment/536\",[]],[\"name/537\",[253,59.077]],[\"comment/537\",[]],[\"name/538\",[254,64.957]],[\"comment/538\",[]],[\"name/539\",[255,59.077]],[\"comment/539\",[]],[\"name/540\",[256,64.957]],[\"comment/540\",[]],[\"name/541\",[257,59.077]],[\"comment/541\",[]],[\"name/542\",[258,64.957]],[\"comment/542\",[]],[\"name/543\",[259,64.957]],[\"comment/543\",[]],[\"name/544\",[261,59.077]],[\"comment/544\",[]],[\"name/545\",[262,64.957]],[\"comment/545\",[]],[\"name/546\",[263,64.957]],[\"comment/546\",[]],[\"name/547\",[264,64.957]],[\"comment/547\",[]],[\"name/548\",[268,64.957]],[\"comment/548\",[]],[\"name/549\",[270,64.957]],[\"comment/549\",[]],[\"name/550\",[216,61.591]],[\"comment/550\",[]],[\"name/551\",[276,70.066]],[\"comment/551\",[]],[\"name/552\",[277,70.066]],[\"comment/552\",[]],[\"name/553\",[278,64.957]],[\"comment/553\",[]],[\"name/554\",[82,53.968]],[\"comment/554\",[]],[\"name/555\",[83,52.716]],[\"comment/555\",[]],[\"name/556\",[84,57.07]],[\"comment/556\",[]],[\"name/557\",[8,42.979]],[\"comment/557\",[]],[\"name/558\",[238,57.07]],[\"comment/558\",[]],[\"name/559\",[239,64.957]],[\"comment/559\",[]],[\"name/560\",[240,64.957]],[\"comment/560\",[]],[\"name/561\",[241,64.957]],[\"comment/561\",[]],[\"name/562\",[242,61.591]],[\"comment/562\",[]],[\"name/563\",[243,64.957]],[\"comment/563\",[]],[\"name/564\",[244,61.591]],[\"comment/564\",[]],[\"name/565\",[245,64.957]],[\"comment/565\",[]],[\"name/566\",[85,57.07]],[\"comment/566\",[]],[\"name/567\",[246,64.957]],[\"comment/567\",[]],[\"name/568\",[247,64.957]],[\"comment/568\",[]],[\"name/569\",[248,64.957]],[\"comment/569\",[]],[\"name/570\",[260,61.591]],[\"comment/570\",[]],[\"name/571\",[265,64.957]],[\"comment/571\",[]],[\"name/572\",[266,64.957]],[\"comment/572\",[]],[\"name/573\",[267,64.957]],[\"comment/573\",[]],[\"name/574\",[269,64.957]],[\"comment/574\",[]],[\"name/575\",[271,57.07]],[\"comment/575\",[]],[\"name/576\",[203,55.399]],[\"comment/576\",[]],[\"name/577\",[272,64.957]],[\"comment/577\",[]],[\"name/578\",[273,64.957]],[\"comment/578\",[]],[\"name/579\",[274,64.957]],[\"comment/579\",[]],[\"name/580\",[61,38.14]],[\"comment/580\",[]],[\"name/581\",[279,70.066]],[\"comment/581\",[]],[\"name/582\",[280,64.957]],[\"comment/582\",[]],[\"name/583\",[281,61.591]],[\"comment/583\",[]],[\"name/584\",[282,70.066]],[\"comment/584\",[]],[\"name/585\",[283,70.066]],[\"comment/585\",[]],[\"name/586\",[5,21.151]],[\"comment/586\",[]],[\"name/587\",[116,53.968]],[\"comment/587\",[]],[\"name/588\",[284,53.968]],[\"comment/588\",[]],[\"name/589\",[285,70.066]],[\"comment/589\",[]],[\"name/590\",[286,70.066]],[\"comment/590\",[]],[\"name/591\",[5,21.151]],[\"comment/591\",[]],[\"name/592\",[287,64.957]],[\"comment/592\",[]],[\"name/593\",[288,70.066]],[\"comment/593\",[]],[\"name/594\",[289,70.066]],[\"comment/594\",[]],[\"name/595\",[5,21.151]],[\"comment/595\",[]],[\"name/596\",[290,70.066]],[\"comment/596\",[]],[\"name/597\",[291,70.066]],[\"comment/597\",[]],[\"name/598\",[5,21.151]],[\"comment/598\",[]],[\"name/599\",[292,70.066]],[\"comment/599\",[]],[\"name/600\",[293,59.077]],[\"comment/600\",[]],[\"name/601\",[294,70.066]],[\"comment/601\",[]],[\"name/602\",[5,21.151]],[\"comment/602\",[]],[\"name/603\",[295,70.066]],[\"comment/603\",[]],[\"name/604\",[296,70.066]],[\"comment/604\",[]],[\"name/605\",[297,70.066]],[\"comment/605\",[]],[\"name/606\",[298,70.066]],[\"comment/606\",[]],[\"name/607\",[5,21.151]],[\"comment/607\",[]],[\"name/608\",[299,70.066]],[\"comment/608\",[]],[\"name/609\",[5,21.151]],[\"comment/609\",[]],[\"name/610\",[300,70.066]],[\"comment/610\",[]],[\"name/611\",[5,21.151]],[\"comment/611\",[]],[\"name/612\",[301,70.066]],[\"comment/612\",[]],[\"name/613\",[5,21.151]],[\"comment/613\",[]],[\"name/614\",[302,70.066]],[\"comment/614\",[]],[\"name/615\",[303,70.066]],[\"comment/615\",[]],[\"name/616\",[304,70.066]],[\"comment/616\",[]],[\"name/617\",[305,70.066]],[\"comment/617\",[]],[\"name/618\",[171,51.603]],[\"comment/618\",[]],[\"name/619\",[306,61.591]],[\"comment/619\",[]],[\"name/620\",[281,61.591]],[\"comment/620\",[]],[\"name/621\",[293,59.077]],[\"comment/621\",[]],[\"name/622\",[307,70.066]],[\"comment/622\",[]],[\"name/623\",[308,57.07]],[\"comment/623\",[]],[\"name/624\",[309,70.066]],[\"comment/624\",[]],[\"name/625\",[310,64.957]],[\"comment/625\",[]],[\"name/626\",[311,70.066]],[\"comment/626\",[]],[\"name/627\",[5,21.151]],[\"comment/627\",[]],[\"name/628\",[312,70.066]],[\"comment/628\",[]],[\"name/629\",[313,70.066]],[\"comment/629\",[]],[\"name/630\",[314,70.066]],[\"comment/630\",[]],[\"name/631\",[315,70.066]],[\"comment/631\",[]],[\"name/632\",[280,64.957]],[\"comment/632\",[]],[\"name/633\",[316,70.066]],[\"comment/633\",[]],[\"name/634\",[306,61.591]],[\"comment/634\",[]],[\"name/635\",[317,70.066]],[\"comment/635\",[]],[\"name/636\",[310,64.957]],[\"comment/636\",[]],[\"name/637\",[281,61.591]],[\"comment/637\",[]],[\"name/638\",[318,70.066]],[\"comment/638\",[]],[\"name/639\",[319,70.066]],[\"comment/639\",[]],[\"name/640\",[320,70.066]],[\"comment/640\",[]],[\"name/641\",[321,70.066]],[\"comment/641\",[]],[\"name/642\",[322,61.591]],[\"comment/642\",[]],[\"name/643\",[323,64.957]],[\"comment/643\",[]],[\"name/644\",[324,64.957]],[\"comment/644\",[]],[\"name/645\",[227,55.399]],[\"comment/645\",[]],[\"name/646\",[325,70.066]],[\"comment/646\",[]],[\"name/647\",[326,70.066]],[\"comment/647\",[]],[\"name/648\",[327,70.066]],[\"comment/648\",[]],[\"name/649\",[328,70.066]],[\"comment/649\",[]],[\"name/650\",[329,70.066]],[\"comment/650\",[]],[\"name/651\",[330,70.066]],[\"comment/651\",[]],[\"name/652\",[331,70.066]],[\"comment/652\",[]],[\"name/653\",[332,70.066]],[\"comment/653\",[]],[\"name/654\",[228,64.957]],[\"comment/654\",[]],[\"name/655\",[229,64.957]],[\"comment/655\",[]],[\"name/656\",[333,61.591]],[\"comment/656\",[]],[\"name/657\",[334,64.957]],[\"comment/657\",[]],[\"name/658\",[335,64.957]],[\"comment/658\",[]],[\"name/659\",[336,70.066]],[\"comment/659\",[]],[\"name/660\",[337,64.957]],[\"comment/660\",[]],[\"name/661\",[338,70.066]],[\"comment/661\",[]],[\"name/662\",[339,70.066]],[\"comment/662\",[]],[\"name/663\",[340,55.399]],[\"comment/663\",[]],[\"name/664\",[238,57.07]],[\"comment/664\",[]],[\"name/665\",[341,70.066]],[\"comment/665\",[]],[\"name/666\",[342,64.957]],[\"comment/666\",[]],[\"name/667\",[343,70.066]],[\"comment/667\",[]],[\"name/668\",[261,59.077]],[\"comment/668\",[]],[\"name/669\",[344,64.957]],[\"comment/669\",[]],[\"name/670\",[345,64.957]],[\"comment/670\",[]],[\"name/671\",[346,64.957]],[\"comment/671\",[]],[\"name/672\",[347,64.957]],[\"comment/672\",[]],[\"name/673\",[348,64.957]],[\"comment/673\",[]],[\"name/674\",[349,64.957]],[\"comment/674\",[]],[\"name/675\",[350,64.957]],[\"comment/675\",[]],[\"name/676\",[351,70.066]],[\"comment/676\",[]],[\"name/677\",[352,70.066]],[\"comment/677\",[]],[\"name/678\",[340,55.399]],[\"comment/678\",[]],[\"name/679\",[238,57.07]],[\"comment/679\",[]],[\"name/680\",[342,64.957]],[\"comment/680\",[]],[\"name/681\",[261,59.077]],[\"comment/681\",[]],[\"name/682\",[344,64.957]],[\"comment/682\",[]],[\"name/683\",[345,64.957]],[\"comment/683\",[]],[\"name/684\",[346,64.957]],[\"comment/684\",[]],[\"name/685\",[347,64.957]],[\"comment/685\",[]],[\"name/686\",[348,64.957]],[\"comment/686\",[]],[\"name/687\",[349,64.957]],[\"comment/687\",[]],[\"name/688\",[350,64.957]],[\"comment/688\",[]],[\"name/689\",[353,55.399]],[\"comment/689\",[]],[\"name/690\",[354,70.066]],[\"comment/690\",[]],[\"name/691\",[355,70.066]],[\"comment/691\",[]],[\"name/692\",[5,21.151]],[\"comment/692\",[]],[\"name/693\",[356,70.066]],[\"comment/693\",[]],[\"name/694\",[357,70.066]],[\"comment/694\",[]],[\"name/695\",[358,70.066]],[\"comment/695\",[]],[\"name/696\",[359,70.066]],[\"comment/696\",[]],[\"name/697\",[5,21.151]],[\"comment/697\",[]],[\"name/698\",[360,70.066]],[\"comment/698\",[]],[\"name/699\",[171,51.603]],[\"comment/699\",[]],[\"name/700\",[139,46.081]],[\"comment/700\",[]],[\"name/701\",[361,70.066]],[\"comment/701\",[]],[\"name/702\",[362,64.957]],[\"comment/702\",[]],[\"name/703\",[363,70.066]],[\"comment/703\",[]],[\"name/704\",[5,21.151]],[\"comment/704\",[]],[\"name/705\",[171,51.603]],[\"comment/705\",[]],[\"name/706\",[364,70.066]],[\"comment/706\",[]],[\"name/707\",[293,59.077]],[\"comment/707\",[]],[\"name/708\",[306,61.591]],[\"comment/708\",[]],[\"name/709\",[238,57.07]],[\"comment/709\",[]],[\"name/710\",[32,59.077]],[\"comment/710\",[]],[\"name/711\",[365,52.716]],[\"comment/711\",[]],[\"name/712\",[33,64.957]],[\"comment/712\",[]],[\"name/713\",[366,70.066]],[\"comment/713\",[]],[\"name/714\",[195,61.591]],[\"comment/714\",[]],[\"name/715\",[124,61.591]],[\"comment/715\",[]],[\"name/716\",[324,64.957]],[\"comment/716\",[]],[\"name/717\",[197,61.591]],[\"comment/717\",[]],[\"name/718\",[367,70.066]],[\"comment/718\",[]],[\"name/719\",[335,64.957]],[\"comment/719\",[]],[\"name/720\",[368,70.066]],[\"comment/720\",[]],[\"name/721\",[369,64.957]],[\"comment/721\",[]],[\"name/722\",[5,21.151]],[\"comment/722\",[]],[\"name/723\",[370,61.591]],[\"comment/723\",[]],[\"name/724\",[371,70.066]],[\"comment/724\",[]],[\"name/725\",[372,70.066]],[\"comment/725\",[]],[\"name/726\",[362,64.957]],[\"comment/726\",[]],[\"name/727\",[373,70.066]],[\"comment/727\",[]],[\"name/728\",[374,70.066]],[\"comment/728\",[]],[\"name/729\",[375,70.066]],[\"comment/729\",[]],[\"name/730\",[376,70.066]],[\"comment/730\",[]],[\"name/731\",[377,70.066]],[\"comment/731\",[]],[\"name/732\",[5,21.151]],[\"comment/732\",[]],[\"name/733\",[369,64.957]],[\"comment/733\",[]],[\"name/734\",[5,21.151]],[\"comment/734\",[]],[\"name/735\",[370,61.591]],[\"comment/735\",[]],[\"name/736\",[378,70.066]],[\"comment/736\",[]],[\"name/737\",[379,70.066]],[\"comment/737\",[]],[\"name/738\",[380,70.066]],[\"comment/738\",[]],[\"name/739\",[5,21.151]],[\"comment/739\",[]],[\"name/740\",[381,50.602]],[\"comment/740\",[]],[\"name/741\",[382,64.957]],[\"comment/741\",[]],[\"name/742\",[383,70.066]],[\"comment/742\",[]],[\"name/743\",[5,21.151]],[\"comment/743\",[]],[\"name/744\",[337,64.957]],[\"comment/744\",[]],[\"name/745\",[370,61.591]],[\"comment/745\",[]],[\"name/746\",[384,61.591]],[\"comment/746\",[]],[\"name/747\",[385,70.066]],[\"comment/747\",[]],[\"name/748\",[386,70.066]],[\"comment/748\",[]],[\"name/749\",[387,70.066]],[\"comment/749\",[]],[\"name/750\",[388,70.066]],[\"comment/750\",[]],[\"name/751\",[389,70.066]],[\"comment/751\",[]],[\"name/752\",[5,21.151]],[\"comment/752\",[]],[\"name/753\",[390,70.066]],[\"comment/753\",[]],[\"name/754\",[391,70.066]],[\"comment/754\",[]],[\"name/755\",[392,70.066]],[\"comment/755\",[]],[\"name/756\",[333,61.591]],[\"comment/756\",[]],[\"name/757\",[334,64.957]],[\"comment/757\",[]],[\"name/758\",[393,70.066]],[\"comment/758\",[]],[\"name/759\",[5,21.151]],[\"comment/759\",[]],[\"name/760\",[323,64.957]],[\"comment/760\",[]],[\"name/761\",[394,64.957]],[\"comment/761\",[]],[\"name/762\",[322,61.591]],[\"comment/762\",[]],[\"name/763\",[227,55.399]],[\"comment/763\",[]],[\"name/764\",[395,70.066]],[\"comment/764\",[]],[\"name/765\",[5,21.151]],[\"comment/765\",[]],[\"name/766\",[396,70.066]],[\"comment/766\",[]],[\"name/767\",[394,64.957]],[\"comment/767\",[]],[\"name/768\",[322,61.591]],[\"comment/768\",[]],[\"name/769\",[227,55.399]],[\"comment/769\",[]],[\"name/770\",[397,70.066]],[\"comment/770\",[]],[\"name/771\",[5,21.151]],[\"comment/771\",[]],[\"name/772\",[6,37.869]],[\"comment/772\",[]],[\"name/773\",[398,70.066]],[\"comment/773\",[]],[\"name/774\",[399,70.066]],[\"comment/774\",[]],[\"name/775\",[5,21.151]],[\"comment/775\",[]],[\"name/776\",[400,70.066]],[\"comment/776\",[]],[\"name/777\",[384,61.591]],[\"comment/777\",[]],[\"name/778\",[93,61.591]],[\"comment/778\",[]],[\"name/779\",[401,70.066]],[\"comment/779\",[]],[\"name/780\",[402,70.066]],[\"comment/780\",[]],[\"name/781\",[5,21.151]],[\"comment/781\",[]],[\"name/782\",[61,38.14]],[\"comment/782\",[]],[\"name/783\",[403,70.066]],[\"comment/783\",[]],[\"name/784\",[5,21.151]],[\"comment/784\",[]],[\"name/785\",[404,70.066]],[\"comment/785\",[]],[\"name/786\",[405,70.066]],[\"comment/786\",[]],[\"name/787\",[406,70.066]],[\"comment/787\",[]],[\"name/788\",[407,70.066]],[\"comment/788\",[]],[\"name/789\",[408,70.066]],[\"comment/789\",[]],[\"name/790\",[409,70.066]],[\"comment/790\",[]],[\"name/791\",[410,64.957]],[\"comment/791\",[]],[\"name/792\",[5,21.151]],[\"comment/792\",[]],[\"name/793\",[411,64.957]],[\"comment/793\",[]],[\"name/794\",[412,64.957]],[\"comment/794\",[]],[\"name/795\",[413,64.957]],[\"comment/795\",[]],[\"name/796\",[414,64.957]],[\"comment/796\",[]],[\"name/797\",[415,64.957]],[\"comment/797\",[]],[\"name/798\",[416,64.957]],[\"comment/798\",[]],[\"name/799\",[417,70.066]],[\"comment/799\",[]],[\"name/800\",[5,21.151]],[\"comment/800\",[]],[\"name/801\",[411,64.957]],[\"comment/801\",[]],[\"name/802\",[412,64.957]],[\"comment/802\",[]],[\"name/803\",[413,64.957]],[\"comment/803\",[]],[\"name/804\",[414,64.957]],[\"comment/804\",[]],[\"name/805\",[415,64.957]],[\"comment/805\",[]],[\"name/806\",[416,64.957]],[\"comment/806\",[]],[\"name/807\",[418,70.066]],[\"comment/807\",[]],[\"name/808\",[5,21.151]],[\"comment/808\",[]],[\"name/809\",[381,50.602]],[\"comment/809\",[]],[\"name/810\",[353,55.399]],[\"comment/810\",[]],[\"name/811\",[419,61.591]],[\"comment/811\",[]],[\"name/812\",[92,61.591]],[\"comment/812\",[]],[\"name/813\",[93,61.591]],[\"comment/813\",[]],[\"name/814\",[420,70.066]],[\"comment/814\",[]],[\"name/815\",[421,70.066]],[\"comment/815\",[]],[\"name/816\",[333,61.591]],[\"comment/816\",[]],[\"name/817\",[382,64.957]],[\"comment/817\",[]],[\"name/818\",[197,61.591]],[\"comment/818\",[]],[\"name/819\",[422,70.066]],[\"comment/819\",[]],[\"name/820\",[5,21.151]],[\"comment/820\",[]],[\"name/821\",[423,70.066]],[\"comment/821\",[]],[\"name/822\",[5,21.151]],[\"comment/822\",[]],[\"name/823\",[424,70.066]],[\"comment/823\",[]],[\"name/824\",[425,70.066]],[\"comment/824\",[]],[\"name/825\",[426,64.957]],[\"comment/825\",[]],[\"name/826\",[427,70.066]],[\"comment/826\",[]],[\"name/827\",[428,70.066]],[\"comment/827\",[]],[\"name/828\",[429,64.957]],[\"comment/828\",[]],[\"name/829\",[430,64.957]],[\"comment/829\",[]],[\"name/830\",[431,70.066]],[\"comment/830\",[]],[\"name/831\",[5,21.151]],[\"comment/831\",[]],[\"name/832\",[432,70.066]],[\"comment/832\",[]],[\"name/833\",[433,70.066]],[\"comment/833\",[]],[\"name/834\",[426,64.957]],[\"comment/834\",[]],[\"name/835\",[434,70.066]],[\"comment/835\",[]],[\"name/836\",[430,64.957]],[\"comment/836\",[]],[\"name/837\",[435,70.066]],[\"comment/837\",[]],[\"name/838\",[429,64.957]],[\"comment/838\",[]],[\"name/839\",[436,70.066]],[\"comment/839\",[]],[\"name/840\",[437,70.066]],[\"comment/840\",[]],[\"name/841\",[5,21.151]],[\"comment/841\",[]],[\"name/842\",[438,70.066]],[\"comment/842\",[]],[\"name/843\",[439,70.066]],[\"comment/843\",[]],[\"name/844\",[440,70.066]],[\"comment/844\",[]],[\"name/845\",[441,70.066]],[\"comment/845\",[]],[\"name/846\",[442,70.066]],[\"comment/846\",[]],[\"name/847\",[443,70.066]],[\"comment/847\",[]],[\"name/848\",[444,70.066]],[\"comment/848\",[]],[\"name/849\",[445,70.066]],[\"comment/849\",[]],[\"name/850\",[5,21.151]],[\"comment/850\",[]],[\"name/851\",[446,61.591]],[\"comment/851\",[]],[\"name/852\",[447,61.591]],[\"comment/852\",[]],[\"name/853\",[448,70.066]],[\"comment/853\",[]],[\"name/854\",[96,51.603]],[\"comment/854\",[]],[\"name/855\",[449,70.066]],[\"comment/855\",[]],[\"name/856\",[450,70.066]],[\"comment/856\",[]],[\"name/857\",[5,21.151]],[\"comment/857\",[]],[\"name/858\",[451,70.066]],[\"comment/858\",[]],[\"name/859\",[452,70.066]],[\"comment/859\",[]],[\"name/860\",[453,70.066]],[\"comment/860\",[]],[\"name/861\",[454,70.066]],[\"comment/861\",[]],[\"name/862\",[5,21.151]],[\"comment/862\",[]],[\"name/863\",[287,64.957]],[\"comment/863\",[]],[\"name/864\",[455,61.591]],[\"comment/864\",[]],[\"name/865\",[456,59.077]],[\"comment/865\",[]],[\"name/866\",[340,55.399]],[\"comment/866\",[]],[\"name/867\",[457,70.066]],[\"comment/867\",[]],[\"name/868\",[5,21.151]],[\"comment/868\",[]],[\"name/869\",[458,70.066]],[\"comment/869\",[]],[\"name/870\",[459,64.957]],[\"comment/870\",[]],[\"name/871\",[145,53.968]],[\"comment/871\",[]],[\"name/872\",[142,53.968]],[\"comment/872\",[]],[\"name/873\",[460,70.066]],[\"comment/873\",[]],[\"name/874\",[5,21.151]],[\"comment/874\",[]],[\"name/875\",[61,38.14]],[\"comment/875\",[]],[\"name/876\",[381,50.602]],[\"comment/876\",[]],[\"name/877\",[308,57.07]],[\"comment/877\",[]],[\"name/878\",[161,64.957]],[\"comment/878\",[]],[\"name/879\",[459,64.957]],[\"comment/879\",[]],[\"name/880\",[145,53.968]],[\"comment/880\",[]],[\"name/881\",[142,53.968]],[\"comment/881\",[]],[\"name/882\",[461,70.066]],[\"comment/882\",[]],[\"name/883\",[5,21.151]],[\"comment/883\",[]],[\"name/884\",[462,64.957]],[\"comment/884\",[]],[\"name/885\",[463,61.591]],[\"comment/885\",[]],[\"name/886\",[464,51.603]],[\"comment/886\",[]],[\"name/887\",[190,61.591]],[\"comment/887\",[]],[\"name/888\",[5,21.151]],[\"comment/888\",[]],[\"name/889\",[465,70.066]],[\"comment/889\",[]],[\"name/890\",[5,21.151]],[\"comment/890\",[]],[\"name/891\",[61,38.14]],[\"comment/891\",[]],[\"name/892\",[284,53.968]],[\"comment/892\",[]],[\"name/893\",[466,70.066]],[\"comment/893\",[]],[\"name/894\",[467,70.066]],[\"comment/894\",[]],[\"name/895\",[5,21.151]],[\"comment/895\",[]],[\"name/896\",[468,55.399]],[\"comment/896\",[]],[\"name/897\",[469,57.07]],[\"comment/897\",[]],[\"name/898\",[470,57.07]],[\"comment/898\",[]],[\"name/899\",[471,57.07]],[\"comment/899\",[]],[\"name/900\",[472,61.591]],[\"comment/900\",[]],[\"name/901\",[473,70.066]],[\"comment/901\",[]],[\"name/902\",[5,21.151]],[\"comment/902\",[]],[\"name/903\",[468,55.399]],[\"comment/903\",[]],[\"name/904\",[469,57.07]],[\"comment/904\",[]],[\"name/905\",[470,57.07]],[\"comment/905\",[]],[\"name/906\",[471,57.07]],[\"comment/906\",[]],[\"name/907\",[472,61.591]],[\"comment/907\",[]],[\"name/908\",[474,61.591]],[\"comment/908\",[]],[\"name/909\",[475,59.077]],[\"comment/909\",[]],[\"name/910\",[476,70.066]],[\"comment/910\",[]],[\"name/911\",[5,21.151]],[\"comment/911\",[]],[\"name/912\",[468,55.399]],[\"comment/912\",[]],[\"name/913\",[469,57.07]],[\"comment/913\",[]],[\"name/914\",[470,57.07]],[\"comment/914\",[]],[\"name/915\",[471,57.07]],[\"comment/915\",[]],[\"name/916\",[472,61.591]],[\"comment/916\",[]],[\"name/917\",[474,61.591]],[\"comment/917\",[]],[\"name/918\",[475,59.077]],[\"comment/918\",[]],[\"name/919\",[477,70.066]],[\"comment/919\",[]],[\"name/920\",[5,21.151]],[\"comment/920\",[]],[\"name/921\",[474,61.591]],[\"comment/921\",[]],[\"name/922\",[475,59.077]],[\"comment/922\",[]],[\"name/923\",[478,70.066]],[\"comment/923\",[]],[\"name/924\",[5,21.151]],[\"comment/924\",[]],[\"name/925\",[479,64.957]],[\"comment/925\",[]],[\"name/926\",[61,38.14]],[\"comment/926\",[]],[\"name/927\",[464,51.603]],[\"comment/927\",[]],[\"name/928\",[480,64.957]],[\"comment/928\",[]],[\"name/929\",[470,57.07]],[\"comment/929\",[]],[\"name/930\",[471,57.07]],[\"comment/930\",[]],[\"name/931\",[481,70.066]],[\"comment/931\",[]],[\"name/932\",[5,21.151]],[\"comment/932\",[]],[\"name/933\",[479,64.957]],[\"comment/933\",[]],[\"name/934\",[308,57.07]],[\"comment/934\",[]],[\"name/935\",[61,38.14]],[\"comment/935\",[]],[\"name/936\",[464,51.603]],[\"comment/936\",[]],[\"name/937\",[470,57.07]],[\"comment/937\",[]],[\"name/938\",[471,57.07]],[\"comment/938\",[]],[\"name/939\",[482,64.957]],[\"comment/939\",[]],[\"name/940\",[242,61.591]],[\"comment/940\",[]],[\"name/941\",[50,59.077]],[\"comment/941\",[]],[\"name/942\",[5,21.151]],[\"comment/942\",[]],[\"name/943\",[468,55.399]],[\"comment/943\",[]],[\"name/944\",[469,57.07]],[\"comment/944\",[]],[\"name/945\",[483,70.066]],[\"comment/945\",[]],[\"name/946\",[5,21.151]],[\"comment/946\",[]],[\"name/947\",[6,37.869]],[\"comment/947\",[]],[\"name/948\",[484,70.066]],[\"comment/948\",[]],[\"name/949\",[485,61.591]],[\"comment/949\",[]],[\"name/950\",[486,52.716]],[\"comment/950\",[]],[\"name/951\",[487,53.968]],[\"comment/951\",[]],[\"name/952\",[488,57.07]],[\"comment/952\",[]],[\"name/953\",[489,61.591]],[\"comment/953\",[]],[\"name/954\",[490,70.066]],[\"comment/954\",[]],[\"name/955\",[5,21.151]],[\"comment/955\",[]],[\"name/956\",[491,61.591]],[\"comment/956\",[]],[\"name/957\",[485,61.591]],[\"comment/957\",[]],[\"name/958\",[486,52.716]],[\"comment/958\",[]],[\"name/959\",[61,38.14]],[\"comment/959\",[]],[\"name/960\",[464,51.603]],[\"comment/960\",[]],[\"name/961\",[487,53.968]],[\"comment/961\",[]],[\"name/962\",[488,57.07]],[\"comment/962\",[]],[\"name/963\",[492,70.066]],[\"comment/963\",[]],[\"name/964\",[5,21.151]],[\"comment/964\",[]],[\"name/965\",[491,61.591]],[\"comment/965\",[]],[\"name/966\",[485,61.591]],[\"comment/966\",[]],[\"name/967\",[486,52.716]],[\"comment/967\",[]],[\"name/968\",[61,38.14]],[\"comment/968\",[]],[\"name/969\",[464,51.603]],[\"comment/969\",[]],[\"name/970\",[487,53.968]],[\"comment/970\",[]],[\"name/971\",[488,57.07]],[\"comment/971\",[]],[\"name/972\",[493,70.066]],[\"comment/972\",[]],[\"name/973\",[5,21.151]],[\"comment/973\",[]],[\"name/974\",[494,57.07]],[\"comment/974\",[]],[\"name/975\",[495,64.957]],[\"comment/975\",[]],[\"name/976\",[496,64.957]],[\"comment/976\",[]],[\"name/977\",[497,64.957]],[\"comment/977\",[]],[\"name/978\",[498,59.077]],[\"comment/978\",[]],[\"name/979\",[499,70.066]],[\"comment/979\",[]],[\"name/980\",[5,21.151]],[\"comment/980\",[]],[\"name/981\",[486,52.716]],[\"comment/981\",[]],[\"name/982\",[500,64.957]],[\"comment/982\",[]],[\"name/983\",[498,59.077]],[\"comment/983\",[]],[\"name/984\",[501,61.591]],[\"comment/984\",[]],[\"name/985\",[502,70.066]],[\"comment/985\",[]],[\"name/986\",[503,70.066]],[\"comment/986\",[]],[\"name/987\",[5,21.151]],[\"comment/987\",[]],[\"name/988\",[504,64.957]],[\"comment/988\",[]],[\"name/989\",[486,52.716]],[\"comment/989\",[]],[\"name/990\",[498,59.077]],[\"comment/990\",[]],[\"name/991\",[501,61.591]],[\"comment/991\",[]],[\"name/992\",[505,70.066]],[\"comment/992\",[]],[\"name/993\",[5,21.151]],[\"comment/993\",[]],[\"name/994\",[486,52.716]],[\"comment/994\",[]],[\"name/995\",[506,64.957]],[\"comment/995\",[]],[\"name/996\",[494,57.07]],[\"comment/996\",[]],[\"name/997\",[507,70.066]],[\"comment/997\",[]],[\"name/998\",[5,21.151]],[\"comment/998\",[]],[\"name/999\",[227,55.399]],[\"comment/999\",[]],[\"name/1000\",[506,64.957]],[\"comment/1000\",[]],[\"name/1001\",[494,57.07]],[\"comment/1001\",[]],[\"name/1002\",[508,70.066]],[\"comment/1002\",[]],[\"name/1003\",[509,70.066]],[\"comment/1003\",[]],[\"name/1004\",[510,70.066]],[\"comment/1004\",[]],[\"name/1005\",[511,70.066]],[\"comment/1005\",[]],[\"name/1006\",[5,21.151]],[\"comment/1006\",[]],[\"name/1007\",[486,52.716]],[\"comment/1007\",[]],[\"name/1008\",[500,64.957]],[\"comment/1008\",[]],[\"name/1009\",[498,59.077]],[\"comment/1009\",[]],[\"name/1010\",[501,61.591]],[\"comment/1010\",[]],[\"name/1011\",[512,70.066]],[\"comment/1011\",[]],[\"name/1012\",[5,21.151]],[\"comment/1012\",[]],[\"name/1013\",[227,55.399]],[\"comment/1013\",[]],[\"name/1014\",[494,57.07]],[\"comment/1014\",[]],[\"name/1015\",[497,64.957]],[\"comment/1015\",[]],[\"name/1016\",[496,64.957]],[\"comment/1016\",[]],[\"name/1017\",[495,64.957]],[\"comment/1017\",[]],[\"name/1018\",[513,70.066]],[\"comment/1018\",[]],[\"name/1019\",[5,21.151]],[\"comment/1019\",[]],[\"name/1020\",[514,64.957]],[\"comment/1020\",[]],[\"name/1021\",[5,21.151]],[\"comment/1021\",[]],[\"name/1022\",[486,52.716]],[\"comment/1022\",[]],[\"name/1023\",[487,53.968]],[\"comment/1023\",[]],[\"name/1024\",[464,51.603]],[\"comment/1024\",[]],[\"name/1025\",[463,61.591]],[\"comment/1025\",[]],[\"name/1026\",[308,57.07]],[\"comment/1026\",[]],[\"name/1027\",[5,21.151]],[\"comment/1027\",[]],[\"name/1028\",[515,70.066]],[\"comment/1028\",[]],[\"name/1029\",[516,70.066]],[\"comment/1029\",[]],[\"name/1030\",[5,21.151]],[\"comment/1030\",[]],[\"name/1031\",[419,61.591]],[\"comment/1031\",[]],[\"name/1032\",[456,59.077]],[\"comment/1032\",[]],[\"name/1033\",[340,55.399]],[\"comment/1033\",[]],[\"name/1034\",[517,70.066]],[\"comment/1034\",[]],[\"name/1035\",[5,21.151]],[\"comment/1035\",[]],[\"name/1036\",[419,61.591]],[\"comment/1036\",[]],[\"name/1037\",[455,61.591]],[\"comment/1037\",[]],[\"name/1038\",[456,59.077]],[\"comment/1038\",[]],[\"name/1039\",[340,55.399]],[\"comment/1039\",[]],[\"name/1040\",[518,70.066]],[\"comment/1040\",[]],[\"name/1041\",[5,21.151]],[\"comment/1041\",[]],[\"name/1042\",[455,61.591]],[\"comment/1042\",[]],[\"name/1043\",[456,59.077]],[\"comment/1043\",[]],[\"name/1044\",[340,55.399]],[\"comment/1044\",[]],[\"name/1045\",[519,70.066]],[\"comment/1045\",[]],[\"name/1046\",[5,21.151]],[\"comment/1046\",[]],[\"name/1047\",[353,55.399]],[\"comment/1047\",[]],[\"name/1048\",[96,51.603]],[\"comment/1048\",[]],[\"name/1049\",[520,70.066]],[\"comment/1049\",[]],[\"name/1050\",[5,21.151]],[\"comment/1050\",[]],[\"name/1051\",[521,70.066]],[\"comment/1051\",[]],[\"name/1052\",[5,21.151]],[\"comment/1052\",[]],[\"name/1053\",[522,70.066]],[\"comment/1053\",[]],[\"name/1054\",[5,21.151]],[\"comment/1054\",[]],[\"name/1055\",[523,70.066]],[\"comment/1055\",[]],[\"name/1056\",[5,21.151]],[\"comment/1056\",[]],[\"name/1057\",[524,70.066]],[\"comment/1057\",[]],[\"name/1058\",[5,21.151]],[\"comment/1058\",[]],[\"name/1059\",[525,70.066]],[\"comment/1059\",[]],[\"name/1060\",[475,59.077]],[\"comment/1060\",[]],[\"name/1061\",[526,70.066]],[\"comment/1061\",[]],[\"name/1062\",[293,59.077]],[\"comment/1062\",[]],[\"name/1063\",[527,70.066]],[\"comment/1063\",[]],[\"name/1064\",[5,21.151]],[\"comment/1064\",[]],[\"name/1065\",[381,50.602]],[\"comment/1065\",[]],[\"name/1066\",[528,70.066]],[\"comment/1066\",[]],[\"name/1067\",[529,70.066]],[\"comment/1067\",[]],[\"name/1068\",[530,70.066]],[\"comment/1068\",[]],[\"name/1069\",[531,70.066]],[\"comment/1069\",[]],[\"name/1070\",[532,70.066]],[\"comment/1070\",[]],[\"name/1071\",[533,70.066]],[\"comment/1071\",[]],[\"name/1072\",[5,21.151]],[\"comment/1072\",[]],[\"name/1073\",[462,64.957]],[\"comment/1073\",[]],[\"name/1074\",[260,61.591]],[\"comment/1074\",[]],[\"name/1075\",[534,70.066]],[\"comment/1075\",[]],[\"name/1076\",[535,70.066]],[\"comment/1076\",[]],[\"name/1077\",[116,53.968]],[\"comment/1077\",[]],[\"name/1078\",[536,70.066]],[\"comment/1078\",[]],[\"name/1079\",[514,64.957]],[\"comment/1079\",[]],[\"name/1080\",[537,70.066]],[\"comment/1080\",[]],[\"name/1081\",[538,70.066]],[\"comment/1081\",[]],[\"name/1082\",[539,70.066]],[\"comment/1082\",[]],[\"name/1083\",[540,70.066]],[\"comment/1083\",[]],[\"name/1084\",[541,70.066]],[\"comment/1084\",[]],[\"name/1085\",[5,21.151]],[\"comment/1085\",[]],[\"name/1086\",[542,70.066]],[\"comment/1086\",[]],[\"name/1087\",[135,57.07]],[\"comment/1087\",[]],[\"name/1088\",[543,70.066]],[\"comment/1088\",[]],[\"name/1089\",[544,70.066]],[\"comment/1089\",[]],[\"name/1090\",[131,61.591]],[\"comment/1090\",[]],[\"name/1091\",[545,70.066]],[\"comment/1091\",[]],[\"name/1092\",[207,64.957]],[\"comment/1092\",[]],[\"name/1093\",[546,70.066]],[\"comment/1093\",[]],[\"name/1094\",[5,21.151]],[\"comment/1094\",[]],[\"name/1095\",[381,50.602]],[\"comment/1095\",[]],[\"name/1096\",[547,64.957]],[\"comment/1096\",[]],[\"name/1097\",[135,57.07]],[\"comment/1097\",[]],[\"name/1098\",[548,70.066]],[\"comment/1098\",[]],[\"name/1099\",[136,61.591]],[\"comment/1099\",[]],[\"name/1100\",[549,70.066]],[\"comment/1100\",[]],[\"name/1101\",[5,21.151]],[\"comment/1101\",[]],[\"name/1102\",[550,70.066]],[\"comment/1102\",[]],[\"name/1103\",[551,70.066]],[\"comment/1103\",[]],[\"name/1104\",[547,64.957]],[\"comment/1104\",[]],[\"name/1105\",[135,57.07]],[\"comment/1105\",[]],[\"name/1106\",[552,70.066]],[\"comment/1106\",[]],[\"name/1107\",[553,70.066]],[\"comment/1107\",[]],[\"name/1108\",[353,55.399]],[\"comment/1108\",[]],[\"name/1109\",[554,70.066]],[\"comment/1109\",[]],[\"name/1110\",[61,38.14]],[\"comment/1110\",[]],[\"name/1111\",[464,51.603]],[\"comment/1111\",[]],[\"name/1112\",[555,70.066]],[\"comment/1112\",[]],[\"name/1113\",[556,59.077]],[\"comment/1113\",[]],[\"name/1114\",[557,70.066]],[\"comment/1114\",[]],[\"name/1115\",[558,70.066]],[\"comment/1115\",[]],[\"name/1116\",[559,70.066]],[\"comment/1116\",[]],[\"name/1117\",[560,70.066]],[\"comment/1117\",[]],[\"name/1118\",[561,70.066]],[\"comment/1118\",[]],[\"name/1119\",[562,70.066]],[\"comment/1119\",[]],[\"name/1120\",[563,70.066]],[\"comment/1120\",[]],[\"name/1121\",[564,70.066]],[\"comment/1121\",[]],[\"name/1122\",[565,70.066]],[\"comment/1122\",[]],[\"name/1123\",[566,70.066]],[\"comment/1123\",[]],[\"name/1124\",[567,70.066]],[\"comment/1124\",[]],[\"name/1125\",[568,70.066]],[\"comment/1125\",[]],[\"name/1126\",[569,70.066]],[\"comment/1126\",[]],[\"name/1127\",[570,70.066]],[\"comment/1127\",[]],[\"name/1128\",[571,70.066]],[\"comment/1128\",[]],[\"name/1129\",[353,55.399]],[\"comment/1129\",[]],[\"name/1130\",[83,52.716]],[\"comment/1130\",[]],[\"name/1131\",[82,53.968]],[\"comment/1131\",[]],[\"name/1132\",[572,70.066]],[\"comment/1132\",[]],[\"name/1133\",[573,70.066]],[\"comment/1133\",[]],[\"name/1134\",[574,70.066]],[\"comment/1134\",[]],[\"name/1135\",[575,70.066]],[\"comment/1135\",[]],[\"name/1136\",[576,70.066]],[\"comment/1136\",[]],[\"name/1137\",[577,70.066]],[\"comment/1137\",[]],[\"name/1138\",[96,51.603]],[\"comment/1138\",[]],[\"name/1139\",[578,70.066]],[\"comment/1139\",[]],[\"name/1140\",[579,70.066]],[\"comment/1140\",[]],[\"name/1141\",[580,70.066]],[\"comment/1141\",[]],[\"name/1142\",[581,70.066]],[\"comment/1142\",[]],[\"name/1143\",[384,61.591]],[\"comment/1143\",[]],[\"name/1144\",[582,57.07]],[\"comment/1144\",[]],[\"name/1145\",[583,70.066]],[\"comment/1145\",[]],[\"name/1146\",[584,70.066]],[\"comment/1146\",[]],[\"name/1147\",[585,70.066]],[\"comment/1147\",[]],[\"name/1148\",[586,61.591]],[\"comment/1148\",[]],[\"name/1149\",[587,70.066]],[\"comment/1149\",[]],[\"name/1150\",[588,70.066]],[\"comment/1150\",[]],[\"name/1151\",[589,70.066]],[\"comment/1151\",[]],[\"name/1152\",[590,70.066]],[\"comment/1152\",[]],[\"name/1153\",[0,51.603]],[\"comment/1153\",[]],[\"name/1154\",[591,70.066]],[\"comment/1154\",[]],[\"name/1155\",[592,70.066]],[\"comment/1155\",[]],[\"name/1156\",[593,61.591]],[\"comment/1156\",[]],[\"name/1157\",[594,70.066]],[\"comment/1157\",[]],[\"name/1158\",[595,70.066]],[\"comment/1158\",[]],[\"name/1159\",[596,70.066]],[\"comment/1159\",[]],[\"name/1160\",[597,70.066]],[\"comment/1160\",[]],[\"name/1161\",[598,70.066]],[\"comment/1161\",[]],[\"name/1162\",[599,70.066]],[\"comment/1162\",[]],[\"name/1163\",[600,70.066]],[\"comment/1163\",[]],[\"name/1164\",[601,70.066]],[\"comment/1164\",[]],[\"name/1165\",[602,70.066]],[\"comment/1165\",[]],[\"name/1166\",[603,70.066]],[\"comment/1166\",[]],[\"name/1167\",[604,70.066]],[\"comment/1167\",[]],[\"name/1168\",[605,61.591]],[\"comment/1168\",[]],[\"name/1169\",[606,70.066]],[\"comment/1169\",[]],[\"name/1170\",[607,70.066]],[\"comment/1170\",[]],[\"name/1171\",[608,70.066]],[\"comment/1171\",[]],[\"name/1172\",[609,70.066]],[\"comment/1172\",[]],[\"name/1173\",[92,61.591]],[\"comment/1173\",[]],[\"name/1174\",[610,70.066]],[\"comment/1174\",[]],[\"name/1175\",[611,70.066]],[\"comment/1175\",[]],[\"name/1176\",[612,70.066]],[\"comment/1176\",[]],[\"name/1177\",[410,64.957]],[\"comment/1177\",[]],[\"name/1178\",[613,70.066]],[\"comment/1178\",[]],[\"name/1179\",[614,70.066]],[\"comment/1179\",[]],[\"name/1180\",[615,70.066]],[\"comment/1180\",[]],[\"name/1181\",[616,70.066]],[\"comment/1181\",[]],[\"name/1182\",[617,70.066]],[\"comment/1182\",[]],[\"name/1183\",[618,70.066]],[\"comment/1183\",[]],[\"name/1184\",[619,70.066]],[\"comment/1184\",[]],[\"name/1185\",[620,70.066]],[\"comment/1185\",[]],[\"name/1186\",[621,70.066]],[\"comment/1186\",[]],[\"name/1187\",[622,70.066]],[\"comment/1187\",[]],[\"name/1188\",[623,70.066]],[\"comment/1188\",[]],[\"name/1189\",[624,70.066]],[\"comment/1189\",[]],[\"name/1190\",[625,70.066]],[\"comment/1190\",[]],[\"name/1191\",[626,70.066]],[\"comment/1191\",[]],[\"name/1192\",[627,70.066]],[\"comment/1192\",[]],[\"name/1193\",[628,70.066]],[\"comment/1193\",[]],[\"name/1194\",[629,70.066]],[\"comment/1194\",[]],[\"name/1195\",[630,70.066]],[\"comment/1195\",[]],[\"name/1196\",[631,70.066]],[\"comment/1196\",[]],[\"name/1197\",[632,70.066]],[\"comment/1197\",[]],[\"name/1198\",[633,70.066]],[\"comment/1198\",[]],[\"name/1199\",[634,70.066]],[\"comment/1199\",[]],[\"name/1200\",[635,70.066]],[\"comment/1200\",[]],[\"name/1201\",[636,70.066]],[\"comment/1201\",[]],[\"name/1202\",[637,70.066]],[\"comment/1202\",[]],[\"name/1203\",[638,70.066]],[\"comment/1203\",[]],[\"name/1204\",[639,70.066]],[\"comment/1204\",[]],[\"name/1205\",[640,70.066]],[\"comment/1205\",[]],[\"name/1206\",[641,70.066]],[\"comment/1206\",[]],[\"name/1207\",[642,70.066]],[\"comment/1207\",[]],[\"name/1208\",[643,70.066]],[\"comment/1208\",[]],[\"name/1209\",[644,70.066]],[\"comment/1209\",[]],[\"name/1210\",[645,70.066]],[\"comment/1210\",[]],[\"name/1211\",[646,70.066]],[\"comment/1211\",[]],[\"name/1212\",[647,70.066]],[\"comment/1212\",[]],[\"name/1213\",[648,61.591]],[\"comment/1213\",[]],[\"name/1214\",[649,70.066]],[\"comment/1214\",[]],[\"name/1215\",[650,70.066]],[\"comment/1215\",[]],[\"name/1216\",[651,70.066]],[\"comment/1216\",[]],[\"name/1217\",[652,70.066]],[\"comment/1217\",[]],[\"name/1218\",[250,61.591]],[\"comment/1218\",[]],[\"name/1219\",[653,70.066]],[\"comment/1219\",[]],[\"name/1220\",[5,21.151]],[\"comment/1220\",[]],[\"name/1221\",[654,64.957]],[\"comment/1221\",[]],[\"name/1222\",[655,64.957]],[\"comment/1222\",[]],[\"name/1223\",[656,70.066]],[\"comment/1223\",[]],[\"name/1224\",[657,70.066]],[\"comment/1224\",[]],[\"name/1225\",[5,21.151]],[\"comment/1225\",[]],[\"name/1226\",[658,70.066]],[\"comment/1226\",[]],[\"name/1227\",[659,70.066]],[\"comment/1227\",[]],[\"name/1228\",[660,70.066]],[\"comment/1228\",[]],[\"name/1229\",[661,70.066]],[\"comment/1229\",[]],[\"name/1230\",[249,61.591]],[\"comment/1230\",[]],[\"name/1231\",[662,64.957]],[\"comment/1231\",[]],[\"name/1232\",[663,64.957]],[\"comment/1232\",[]],[\"name/1233\",[664,64.957]],[\"comment/1233\",[]],[\"name/1234\",[5,21.151]],[\"comment/1234\",[]],[\"name/1235\",[655,64.957]],[\"comment/1235\",[]],[\"name/1236\",[665,70.066]],[\"comment/1236\",[]],[\"name/1237\",[5,21.151]],[\"comment/1237\",[]],[\"name/1238\",[654,64.957]],[\"comment/1238\",[]],[\"name/1239\",[666,70.066]],[\"comment/1239\",[]],[\"name/1240\",[116,53.968]],[\"comment/1240\",[]],[\"name/1241\",[667,70.066]],[\"comment/1241\",[]],[\"name/1242\",[668,70.066]],[\"comment/1242\",[]],[\"name/1243\",[669,70.066]],[\"comment/1243\",[]],[\"name/1244\",[284,53.968]],[\"comment/1244\",[]],[\"name/1245\",[670,70.066]],[\"comment/1245\",[]],[\"name/1246\",[671,70.066]],[\"comment/1246\",[]],[\"name/1247\",[672,70.066]],[\"comment/1247\",[]],[\"name/1248\",[61,38.14]],[\"comment/1248\",[]],[\"name/1249\",[118,61.591]],[\"comment/1249\",[]],[\"name/1250\",[284,53.968]],[\"comment/1250\",[]],[\"name/1251\",[673,64.957]],[\"comment/1251\",[]],[\"name/1252\",[674,64.957]],[\"comment/1252\",[]],[\"name/1253\",[5,21.151]],[\"comment/1253\",[]],[\"name/1254\",[116,53.968]],[\"comment/1254\",[]],[\"name/1255\",[117,64.957]],[\"comment/1255\",[]],[\"name/1256\",[118,61.591]],[\"comment/1256\",[]],[\"name/1257\",[284,53.968]],[\"comment/1257\",[]],[\"name/1258\",[675,70.066]],[\"comment/1258\",[]],[\"name/1259\",[61,38.14]],[\"comment/1259\",[]],[\"name/1260\",[673,64.957]],[\"comment/1260\",[]],[\"name/1261\",[284,53.968]],[\"comment/1261\",[]],[\"name/1262\",[674,64.957]],[\"comment/1262\",[]],[\"name/1263\",[5,21.151]],[\"comment/1263\",[]],[\"name/1264\",[116,53.968]],[\"comment/1264\",[]],[\"name/1265\",[284,53.968]],[\"comment/1265\",[]],[\"name/1266\",[482,46.103,676,49.73]],[\"comment/1266\",[]],[\"name/1267\",[677,70.066]],[\"comment/1267\",[]],[\"name/1268\",[5,21.151]],[\"comment/1268\",[]],[\"name/1269\",[468,55.399]],[\"comment/1269\",[]],[\"name/1270\",[678,70.066]],[\"comment/1270\",[]],[\"name/1271\",[469,57.07]],[\"comment/1271\",[]],[\"name/1272\",[480,64.957]],[\"comment/1272\",[]],[\"name/1273\",[679,70.066]],[\"comment/1273\",[]],[\"name/1274\",[680,70.066]],[\"comment/1274\",[]],[\"name/1275\",[681,70.066]],[\"comment/1275\",[]],[\"name/1276\",[682,70.066]],[\"comment/1276\",[]],[\"name/1277\",[683,70.066]],[\"comment/1277\",[]],[\"name/1278\",[494,57.07]],[\"comment/1278\",[]],[\"name/1279\",[684,70.066]],[\"comment/1279\",[]],[\"name/1280\",[685,70.066]],[\"comment/1280\",[]],[\"name/1281\",[487,53.968]],[\"comment/1281\",[]],[\"name/1282\",[686,70.066]],[\"comment/1282\",[]],[\"name/1283\",[463,61.591]],[\"comment/1283\",[]],[\"name/1284\",[61,38.14]],[\"comment/1284\",[]],[\"name/1285\",[687,70.066]],[\"comment/1285\",[]],[\"name/1286\",[464,51.603]],[\"comment/1286\",[]],[\"name/1287\",[468,55.399]],[\"comment/1287\",[]],[\"name/1288\",[5,21.151]],[\"comment/1288\",[]],[\"name/1289\",[487,53.968]],[\"comment/1289\",[]],[\"name/1290\",[6,37.869]],[\"comment/1290\",[]],[\"name/1291\",[489,61.591]],[\"comment/1291\",[]],[\"name/1292\",[488,57.07]],[\"comment/1292\",[]],[\"name/1293\",[688,70.066]],[\"comment/1293\",[]],[\"name/1294\",[5,21.151]],[\"comment/1294\",[]],[\"name/1295\",[61,38.14]],[\"comment/1295\",[]],[\"name/1296\",[464,51.603]],[\"comment/1296\",[]],[\"name/1297\",[487,53.968]],[\"comment/1297\",[]],[\"name/1298\",[488,57.07]],[\"comment/1298\",[]],[\"name/1299\",[491,61.591]],[\"comment/1299\",[]],[\"name/1300\",[689,70.066]],[\"comment/1300\",[]],[\"name/1301\",[5,21.151]],[\"comment/1301\",[]],[\"name/1302\",[308,57.07]],[\"comment/1302\",[]],[\"name/1303\",[690,70.066]],[\"comment/1303\",[]],[\"name/1304\",[6,37.869]],[\"comment/1304\",[]],[\"name/1305\",[582,57.07]],[\"comment/1305\",[]],[\"name/1306\",[691,70.066]],[\"comment/1306\",[]],[\"name/1307\",[692,70.066]],[\"comment/1307\",[]],[\"name/1308\",[5,21.151]],[\"comment/1308\",[]],[\"name/1309\",[693,61.591]],[\"comment/1309\",[]],[\"name/1310\",[170,64.957]],[\"comment/1310\",[]],[\"name/1311\",[171,51.603]],[\"comment/1311\",[]],[\"name/1312\",[694,70.066]],[\"comment/1312\",[]],[\"name/1313\",[5,21.151]],[\"comment/1313\",[]],[\"name/1314\",[139,46.081]],[\"comment/1314\",[]],[\"name/1315\",[175,57.07]],[\"comment/1315\",[]],[\"name/1316\",[695,70.066]],[\"comment/1316\",[]],[\"name/1317\",[5,21.151]],[\"comment/1317\",[]],[\"name/1318\",[693,61.591]],[\"comment/1318\",[]],[\"name/1319\",[139,46.081]],[\"comment/1319\",[]],[\"name/1320\",[31,55.399]],[\"comment/1320\",[]],[\"name/1321\",[176,53.968]],[\"comment/1321\",[]],[\"name/1322\",[175,57.07]],[\"comment/1322\",[]],[\"name/1323\",[696,70.066]],[\"comment/1323\",[]],[\"name/1324\",[5,21.151]],[\"comment/1324\",[]],[\"name/1325\",[693,61.591]],[\"comment/1325\",[]],[\"name/1326\",[139,46.081]],[\"comment/1326\",[]],[\"name/1327\",[176,53.968]],[\"comment/1327\",[]],[\"name/1328\",[697,70.066]],[\"comment/1328\",[]],[\"name/1329\",[5,21.151]],[\"comment/1329\",[]],[\"name/1330\",[96,51.603]],[\"comment/1330\",[]],[\"name/1331\",[446,61.591]],[\"comment/1331\",[]],[\"name/1332\",[447,61.591]],[\"comment/1332\",[]],[\"name/1333\",[698,70.066]],[\"comment/1333\",[]],[\"name/1334\",[5,21.151]],[\"comment/1334\",[]],[\"name/1335\",[96,51.603]],[\"comment/1335\",[]],[\"name/1336\",[446,61.591]],[\"comment/1336\",[]],[\"name/1337\",[447,61.591]],[\"comment/1337\",[]],[\"name/1338\",[699,70.066]],[\"comment/1338\",[]],[\"name/1339\",[5,21.151]],[\"comment/1339\",[]],[\"name/1340\",[61,38.14]],[\"comment/1340\",[]],[\"name/1341\",[700,70.066]],[\"comment/1341\",[]],[\"name/1342\",[701,64.957]],[\"comment/1342\",[]],[\"name/1343\",[143,59.077]],[\"comment/1343\",[]],[\"name/1344\",[145,53.968]],[\"comment/1344\",[]],[\"name/1345\",[142,53.968]],[\"comment/1345\",[]],[\"name/1346\",[702,70.066]],[\"comment/1346\",[]],[\"name/1347\",[152,61.591]],[\"comment/1347\",[]],[\"name/1348\",[148,59.077]],[\"comment/1348\",[]],[\"name/1349\",[153,61.591]],[\"comment/1349\",[]],[\"name/1350\",[703,70.066]],[\"comment/1350\",[]],[\"name/1351\",[5,21.151]],[\"comment/1351\",[]],[\"name/1352\",[139,46.081]],[\"comment/1352\",[]],[\"name/1353\",[701,64.957]],[\"comment/1353\",[]],[\"name/1354\",[143,59.077]],[\"comment/1354\",[]],[\"name/1355\",[145,53.968]],[\"comment/1355\",[]],[\"name/1356\",[142,53.968]],[\"comment/1356\",[]],[\"name/1357\",[152,61.591]],[\"comment/1357\",[]],[\"name/1358\",[148,59.077]],[\"comment/1358\",[]],[\"name/1359\",[153,61.591]],[\"comment/1359\",[]],[\"name/1360\",[704,59.077]],[\"comment/1360\",[]],[\"name/1361\",[705,70.066]],[\"comment/1361\",[]],[\"name/1362\",[5,21.151]],[\"comment/1362\",[]],[\"name/1363\",[704,59.077]],[\"comment/1363\",[]],[\"name/1364\",[706,70.066]],[\"comment/1364\",[]],[\"name/1365\",[5,21.151]],[\"comment/1365\",[]],[\"name/1366\",[704,59.077]],[\"comment/1366\",[]],[\"name/1367\",[707,70.066]],[\"comment/1367\",[]],[\"name/1368\",[5,21.151]],[\"comment/1368\",[]],[\"name/1369\",[704,59.077]],[\"comment/1369\",[]],[\"name/1370\",[708,70.066]],[\"comment/1370\",[]],[\"name/1371\",[61,38.14]],[\"comment/1371\",[]],[\"name/1372\",[96,51.603]],[\"comment/1372\",[]],[\"name/1373\",[582,57.07]],[\"comment/1373\",[]],[\"name/1374\",[709,70.066]],[\"comment/1374\",[]],[\"name/1375\",[710,70.066]],[\"comment/1375\",[]],[\"name/1376\",[251,59.077]],[\"comment/1376\",[]],[\"name/1377\",[253,59.077]],[\"comment/1377\",[]],[\"name/1378\",[255,59.077]],[\"comment/1378\",[]],[\"name/1379\",[257,59.077]],[\"comment/1379\",[]],[\"name/1380\",[711,70.066]],[\"comment/1380\",[]],[\"name/1381\",[61,38.14]],[\"comment/1381\",[]],[\"name/1382\",[96,51.603]],[\"comment/1382\",[]],[\"name/1383\",[582,57.07]],[\"comment/1383\",[]],[\"name/1384\",[712,70.066]],[\"comment/1384\",[]],[\"name/1385\",[662,64.957]],[\"comment/1385\",[]],[\"name/1386\",[251,59.077]],[\"comment/1386\",[]],[\"name/1387\",[253,59.077]],[\"comment/1387\",[]],[\"name/1388\",[255,59.077]],[\"comment/1388\",[]],[\"name/1389\",[257,59.077]],[\"comment/1389\",[]],[\"name/1390\",[582,57.07]],[\"comment/1390\",[]],[\"name/1391\",[61,38.14]],[\"comment/1391\",[]],[\"name/1392\",[82,53.968]],[\"comment/1392\",[]],[\"name/1393\",[83,52.716]],[\"comment/1393\",[]],[\"name/1394\",[84,57.07]],[\"comment/1394\",[]],[\"name/1395\",[85,57.07]],[\"comment/1395\",[]],[\"name/1396\",[713,70.066]],[\"comment/1396\",[]],[\"name/1397\",[714,70.066]],[\"comment/1397\",[]],[\"name/1398\",[715,70.066]],[\"comment/1398\",[]],[\"name/1399\",[716,70.066]],[\"comment/1399\",[]],[\"name/1400\",[717,70.066]],[\"comment/1400\",[]],[\"name/1401\",[275,64.957]],[\"comment/1401\",[]],[\"name/1402\",[718,70.066]],[\"comment/1402\",[]],[\"name/1403\",[719,70.066]],[\"comment/1403\",[]],[\"name/1404\",[720,70.066]],[\"comment/1404\",[]],[\"name/1405\",[721,70.066]],[\"comment/1405\",[]],[\"name/1406\",[722,70.066]],[\"comment/1406\",[]],[\"name/1407\",[278,64.957]],[\"comment/1407\",[]],[\"name/1408\",[203,55.399]],[\"comment/1408\",[]],[\"name/1409\",[723,70.066]],[\"comment/1409\",[]],[\"name/1410\",[489,61.591]],[\"comment/1410\",[]],[\"name/1411\",[271,57.07]],[\"comment/1411\",[]],[\"name/1412\",[724,70.066]],[\"comment/1412\",[]],[\"name/1413\",[5,21.151]],[\"comment/1413\",[]],[\"name/1414\",[6,37.869]],[\"comment/1414\",[]],[\"name/1415\",[725,50.602]],[\"comment/1415\",[]],[\"name/1416\",[61,38.14]],[\"comment/1416\",[]],[\"name/1417\",[726,61.591]],[\"comment/1417\",[]],[\"name/1418\",[727,64.957]],[\"comment/1418\",[]],[\"name/1419\",[728,70.066]],[\"comment/1419\",[]],[\"name/1420\",[729,70.066]],[\"comment/1420\",[]],[\"name/1421\",[730,55.399]],[\"comment/1421\",[]],[\"name/1422\",[150,59.077]],[\"comment/1422\",[]],[\"name/1423\",[731,64.957]],[\"comment/1423\",[]],[\"name/1424\",[732,70.066]],[\"comment/1424\",[]],[\"name/1425\",[733,70.066]],[\"comment/1425\",[]],[\"name/1426\",[5,21.151]],[\"comment/1426\",[]],[\"name/1427\",[6,37.869]],[\"comment/1427\",[]],[\"name/1428\",[725,50.602]],[\"comment/1428\",[]],[\"name/1429\",[61,38.14]],[\"comment/1429\",[]],[\"name/1430\",[734,70.066]],[\"comment/1430\",[]],[\"name/1431\",[730,55.399]],[\"comment/1431\",[]],[\"name/1432\",[735,70.066]],[\"comment/1432\",[]],[\"name/1433\",[5,21.151]],[\"comment/1433\",[]],[\"name/1434\",[6,37.869]],[\"comment/1434\",[]],[\"name/1435\",[725,50.602]],[\"comment/1435\",[]],[\"name/1436\",[61,38.14]],[\"comment/1436\",[]],[\"name/1437\",[736,70.066]],[\"comment/1437\",[]],[\"name/1438\",[730,55.399]],[\"comment/1438\",[]],[\"name/1439\",[737,70.066]],[\"comment/1439\",[]],[\"name/1440\",[5,21.151]],[\"comment/1440\",[]],[\"name/1441\",[6,37.869]],[\"comment/1441\",[]],[\"name/1442\",[725,50.602]],[\"comment/1442\",[]],[\"name/1443\",[738,70.066]],[\"comment/1443\",[]],[\"name/1444\",[61,38.14]],[\"comment/1444\",[]],[\"name/1445\",[726,61.591]],[\"comment/1445\",[]],[\"name/1446\",[730,55.399]],[\"comment/1446\",[]],[\"name/1447\",[739,70.066]],[\"comment/1447\",[]],[\"name/1448\",[5,21.151]],[\"comment/1448\",[]],[\"name/1449\",[61,38.14]],[\"comment/1449\",[]],[\"name/1450\",[0,51.603]],[\"comment/1450\",[]],[\"name/1451\",[7,42.127]],[\"comment/1451\",[]],[\"name/1452\",[740,59.077]],[\"comment/1452\",[]],[\"name/1453\",[741,57.07]],[\"comment/1453\",[]],[\"name/1454\",[742,70.066]],[\"comment/1454\",[]],[\"name/1455\",[5,21.151]],[\"comment/1455\",[]],[\"name/1456\",[61,38.14]],[\"comment/1456\",[]],[\"name/1457\",[0,51.603]],[\"comment/1457\",[]],[\"name/1458\",[7,42.127]],[\"comment/1458\",[]],[\"name/1459\",[743,59.077]],[\"comment/1459\",[]],[\"name/1460\",[740,59.077]],[\"comment/1460\",[]],[\"name/1461\",[744,59.077]],[\"comment/1461\",[]],[\"name/1462\",[741,57.07]],[\"comment/1462\",[]],[\"name/1463\",[365,52.716]],[\"comment/1463\",[]],[\"name/1464\",[745,70.066]],[\"comment/1464\",[]],[\"name/1465\",[5,21.151]],[\"comment/1465\",[]],[\"name/1466\",[725,50.602]],[\"comment/1466\",[]],[\"name/1467\",[746,59.077]],[\"comment/1467\",[]],[\"name/1468\",[365,52.716]],[\"comment/1468\",[]],[\"name/1469\",[747,70.066]],[\"comment/1469\",[]],[\"name/1470\",[5,21.151]],[\"comment/1470\",[]],[\"name/1471\",[748,70.066]],[\"comment/1471\",[]],[\"name/1472\",[210,61.591]],[\"comment/1472\",[]],[\"name/1473\",[749,70.066]],[\"comment/1473\",[]],[\"name/1474\",[5,21.151]],[\"comment/1474\",[]],[\"name/1475\",[6,37.869]],[\"comment/1475\",[]],[\"name/1476\",[725,50.602]],[\"comment/1476\",[]],[\"name/1477\",[61,38.14]],[\"comment/1477\",[]],[\"name/1478\",[740,59.077]],[\"comment/1478\",[]],[\"name/1479\",[731,64.957]],[\"comment/1479\",[]],[\"name/1480\",[750,70.066]],[\"comment/1480\",[]],[\"name/1481\",[5,21.151]],[\"comment/1481\",[]],[\"name/1482\",[725,50.602]],[\"comment/1482\",[]],[\"name/1483\",[746,59.077]],[\"comment/1483\",[]],[\"name/1484\",[365,52.716]],[\"comment/1484\",[]],[\"name/1485\",[751,70.066]],[\"comment/1485\",[]],[\"name/1486\",[0,51.603]],[\"comment/1486\",[]],[\"name/1487\",[7,42.127]],[\"comment/1487\",[]],[\"name/1488\",[743,59.077]],[\"comment/1488\",[]],[\"name/1489\",[744,59.077]],[\"comment/1489\",[]],[\"name/1490\",[752,70.066]],[\"comment/1490\",[]],[\"name/1491\",[753,64.957]],[\"comment/1491\",[]],[\"name/1492\",[754,64.957]],[\"comment/1492\",[]],[\"name/1493\",[755,64.957]],[\"comment/1493\",[]],[\"name/1494\",[756,64.957]],[\"comment/1494\",[]],[\"name/1495\",[757,70.066]],[\"comment/1495\",[]],[\"name/1496\",[758,70.066]],[\"comment/1496\",[]],[\"name/1497\",[759,70.066]],[\"comment/1497\",[]],[\"name/1498\",[730,55.399]],[\"comment/1498\",[]],[\"name/1499\",[365,52.716]],[\"comment/1499\",[]],[\"name/1500\",[760,70.066]],[\"comment/1500\",[]],[\"name/1501\",[761,70.066]],[\"comment/1501\",[]],[\"name/1502\",[5,21.151]],[\"comment/1502\",[]],[\"name/1503\",[61,38.14]],[\"comment/1503\",[]],[\"name/1504\",[381,50.602]],[\"comment/1504\",[]],[\"name/1505\",[727,64.957]],[\"comment/1505\",[]],[\"name/1506\",[726,61.591]],[\"comment/1506\",[]],[\"name/1507\",[762,70.066]],[\"comment/1507\",[]],[\"name/1508\",[763,70.066]],[\"comment/1508\",[]],[\"name/1509\",[764,70.066]],[\"comment/1509\",[]],[\"name/1510\",[765,70.066]],[\"comment/1510\",[]],[\"name/1511\",[766,70.066]],[\"comment/1511\",[]],[\"name/1512\",[767,70.066]],[\"comment/1512\",[]],[\"name/1513\",[768,70.066]],[\"comment/1513\",[]],[\"name/1514\",[5,21.151]],[\"comment/1514\",[]],[\"name/1515\",[61,38.14]],[\"comment/1515\",[]],[\"name/1516\",[0,51.603]],[\"comment/1516\",[]],[\"name/1517\",[7,42.127]],[\"comment/1517\",[]],[\"name/1518\",[740,59.077]],[\"comment/1518\",[]],[\"name/1519\",[741,57.07]],[\"comment/1519\",[]],[\"name/1520\",[769,70.066]],[\"comment/1520\",[]],[\"name/1521\",[203,55.399]],[\"comment/1521\",[]],[\"name/1522\",[664,64.957]],[\"comment/1522\",[]],[\"name/1523\",[5,21.151]],[\"comment/1523\",[]],[\"name/1524\",[381,50.602]],[\"comment/1524\",[]],[\"name/1525\",[770,70.066]],[\"comment/1525\",[]],[\"name/1526\",[5,21.151]],[\"comment/1526\",[]],[\"name/1527\",[61,38.14]],[\"comment/1527\",[]],[\"name/1528\",[771,70.066]],[\"comment/1528\",[]],[\"name/1529\",[648,61.591]],[\"comment/1529\",[]],[\"name/1530\",[648,61.591]],[\"comment/1530\",[]],[\"name/1531\",[772,70.066]],[\"comment/1531\",[]],[\"name/1532\",[504,64.957]],[\"comment/1532\",[]],[\"name/1533\",[773,70.066]],[\"comment/1533\",[]],[\"name/1534\",[774,70.066]],[\"comment/1534\",[]],[\"name/1535\",[775,70.066]],[\"comment/1535\",[]],[\"name/1536\",[776,70.066]],[\"comment/1536\",[]],[\"name/1537\",[556,59.077]],[\"comment/1537\",[]],[\"name/1538\",[556,59.077]],[\"comment/1538\",[]],[\"name/1539\",[556,59.077]],[\"comment/1539\",[]],[\"name/1540\",[777,70.066]],[\"comment/1540\",[]],[\"name/1541\",[778,70.066]],[\"comment/1541\",[]],[\"name/1542\",[83,52.716]],[\"comment/1542\",[]],[\"name/1543\",[779,70.066]],[\"comment/1543\",[]],[\"name/1544\",[663,64.957]],[\"comment/1544\",[]],[\"name/1545\",[780,70.066]],[\"comment/1545\",[]],[\"name/1546\",[781,70.066]],[\"comment/1546\",[]],[\"name/1547\",[605,61.591]],[\"comment/1547\",[]],[\"name/1548\",[782,70.066]],[\"comment/1548\",[]],[\"name/1549\",[783,70.066]],[\"comment/1549\",[]],[\"name/1550\",[5,21.151]],[\"comment/1550\",[]],[\"name/1551\",[171,51.603]],[\"comment/1551\",[]],[\"name/1552\",[784,70.066]],[\"comment/1552\",[]],[\"name/1553\",[5,21.151]],[\"comment/1553\",[]],[\"name/1554\",[171,51.603]],[\"comment/1554\",[]],[\"name/1555\",[785,70.066]],[\"comment/1555\",[]],[\"name/1556\",[5,21.151]],[\"comment/1556\",[]],[\"name/1557\",[381,50.602]],[\"comment/1557\",[]],[\"name/1558\",[127,64.957]],[\"comment/1558\",[]],[\"name/1559\",[605,61.591]],[\"comment/1559\",[]],[\"name/1560\",[381,50.602]],[\"comment/1560\",[]],[\"name/1561\",[82,53.968]],[\"comment/1561\",[]],[\"name/1562\",[83,52.716]],[\"comment/1562\",[]],[\"name/1563\",[786,70.066]],[\"comment/1563\",[]],[\"name/1564\",[787,70.066]],[\"comment/1564\",[]],[\"name/1565\",[788,70.066]],[\"comment/1565\",[]],[\"name/1566\",[586,61.591]],[\"comment/1566\",[]],[\"name/1567\",[789,70.066]],[\"comment/1567\",[]],[\"name/1568\",[210,61.591]],[\"comment/1568\",[]],[\"name/1569\",[790,70.066]],[\"comment/1569\",[]],[\"name/1570\",[5,21.151]],[\"comment/1570\",[]],[\"name/1571\",[6,37.869]],[\"comment/1571\",[]],[\"name/1572\",[45,64.957]],[\"comment/1572\",[]],[\"name/1573\",[791,70.066]],[\"comment/1573\",[]],[\"name/1574\",[5,21.151]],[\"comment/1574\",[]],[\"name/1575\",[6,37.869]],[\"comment/1575\",[]],[\"name/1576\",[792,70.066]],[\"comment/1576\",[]],[\"name/1577\",[793,70.066]],[\"comment/1577\",[]],[\"name/1578\",[794,70.066]],[\"comment/1578\",[]],[\"name/1579\",[795,70.066]],[\"comment/1579\",[]],[\"name/1580\",[796,70.066]],[\"comment/1580\",[]],[\"name/1581\",[746,59.077]],[\"comment/1581\",[]],[\"name/1582\",[797,70.066]],[\"comment/1582\",[]],[\"name/1583\",[798,70.066]],[\"comment/1583\",[]],[\"name/1584\",[799,70.066]],[\"comment/1584\",[]],[\"name/1585\",[800,70.066]],[\"comment/1585\",[]],[\"name/1586\",[5,21.151]],[\"comment/1586\",[]],[\"name/1587\",[593,61.591]],[\"comment/1587\",[]],[\"name/1588\",[725,50.602]],[\"comment/1588\",[]],[\"name/1589\",[743,59.077]],[\"comment/1589\",[]],[\"name/1590\",[741,57.07]],[\"comment/1590\",[]],[\"name/1591\",[744,59.077]],[\"comment/1591\",[]],[\"name/1592\",[801,64.957]],[\"comment/1592\",[]],[\"name/1593\",[730,55.399]],[\"comment/1593\",[]],[\"name/1594\",[365,52.716]],[\"comment/1594\",[]],[\"name/1595\",[802,70.066]],[\"comment/1595\",[]],[\"name/1596\",[5,21.151]],[\"comment/1596\",[]],[\"name/1597\",[753,64.957]],[\"comment/1597\",[]],[\"name/1598\",[755,64.957]],[\"comment/1598\",[]],[\"name/1599\",[754,64.957]],[\"comment/1599\",[]],[\"name/1600\",[756,64.957]],[\"comment/1600\",[]],[\"name/1601\",[803,70.066]],[\"comment/1601\",[]],[\"name/1602\",[804,70.066]],[\"comment/1602\",[]],[\"name/1603\",[805,70.066]],[\"comment/1603\",[]],[\"name/1604\",[725,50.602]],[\"comment/1604\",[]],[\"name/1605\",[746,59.077]],[\"comment/1605\",[]],[\"name/1606\",[365,52.716]],[\"comment/1606\",[]],[\"name/1607\",[806,70.066]],[\"comment/1607\",[]],[\"name/1608\",[807,70.066]],[\"comment/1608\",[]],[\"name/1609\",[5,21.151]],[\"comment/1609\",[]],[\"name/1610\",[96,51.603]],[\"comment/1610\",[]],[\"name/1611\",[203,55.399]],[\"comment/1611\",[]],[\"name/1612\",[808,70.066]],[\"comment/1612\",[]],[\"name/1613\",[5,21.151]],[\"comment/1613\",[]],[\"name/1614\",[271,57.07]],[\"comment/1614\",[]],[\"name/1615\",[809,70.066]],[\"comment/1615\",[]],[\"name/1616\",[810,70.066]],[\"comment/1616\",[]],[\"name/1617\",[5,21.151]],[\"comment/1617\",[]],[\"name/1618\",[271,57.07]],[\"comment/1618\",[]],[\"name/1619\",[811,70.066]],[\"comment/1619\",[]],[\"name/1620\",[812,70.066]],[\"comment/1620\",[]],[\"name/1621\",[5,21.151]],[\"comment/1621\",[]],[\"name/1622\",[126,64.957]],[\"comment/1622\",[]],[\"name/1623\",[381,50.602]],[\"comment/1623\",[]],[\"name/1624\",[61,38.14]],[\"comment/1624\",[]],[\"name/1625\",[813,70.066]],[\"comment/1625\",[]],[\"name/1626\",[814,70.066]],[\"comment/1626\",[]],[\"name/1627\",[815,70.066]],[\"comment/1627\",[]],[\"name/1628\",[816,70.066]],[\"comment/1628\",[]],[\"name/1629\",[817,70.066]],[\"comment/1629\",[]],[\"name/1630\",[5,21.151]],[\"comment/1630\",[]],[\"name/1631\",[593,61.591]],[\"comment/1631\",[]],[\"name/1632\",[725,50.602]],[\"comment/1632\",[]],[\"name/1633\",[743,59.077]],[\"comment/1633\",[]],[\"name/1634\",[741,57.07]],[\"comment/1634\",[]],[\"name/1635\",[744,59.077]],[\"comment/1635\",[]],[\"name/1636\",[801,64.957]],[\"comment/1636\",[]],[\"name/1637\",[365,52.716]],[\"comment/1637\",[]],[\"name/1638\",[818,70.066]],[\"comment/1638\",[]],[\"name/1639\",[819,70.066]],[\"comment/1639\",[]],[\"name/1640\",[586,61.591]],[\"comment/1640\",[]],[\"name/1641\",[61,38.14]],[\"comment/1641\",[]],[\"name/1642\",[83,52.716]],[\"comment/1642\",[]],[\"name/1643\",[82,53.968]],[\"comment/1643\",[]],[\"name/1644\",[84,57.07]],[\"comment/1644\",[]],[\"name/1645\",[244,61.591]],[\"comment/1645\",[]],[\"name/1646\",[8,42.979]],[\"comment/1646\",[]],[\"name/1647\",[820,70.066]],[\"comment/1647\",[]],[\"name/1648\",[821,70.066]],[\"comment/1648\",[]],[\"name/1649\",[85,57.07]],[\"comment/1649\",[]],[\"name/1650\",[86,61.591]],[\"comment/1650\",[]],[\"name/1651\",[353,55.399]],[\"comment/1651\",[]]],\"invertedIndex\":[[\"__type\",{\"_index\":5,\"name\":{\"5\":{},\"10\":{},\"15\":{},\"19\":{},\"22\":{},\"26\":{},\"29\":{},\"33\":{},\"38\":{},\"42\":{},\"47\":{},\"51\":{},\"59\":{},\"64\":{},\"68\":{},\"72\":{},\"76\":{},\"84\":{},\"88\":{},\"91\":{},\"95\":{},\"99\":{},\"103\":{},\"106\":{},\"110\":{},\"114\":{},\"118\":{},\"123\":{},\"127\":{},\"131\":{},\"135\":{},\"139\":{},\"143\":{},\"146\":{},\"151\":{},\"155\":{},\"159\":{},\"164\":{},\"168\":{},\"171\":{},\"177\":{},\"239\":{},\"245\":{},\"253\":{},\"259\":{},\"266\":{},\"272\":{},\"291\":{},\"299\":{},\"304\":{},\"312\":{},\"316\":{},\"319\":{},\"325\":{},\"342\":{},\"346\":{},\"352\":{},\"355\":{},\"365\":{},\"375\":{},\"387\":{},\"394\":{},\"403\":{},\"406\":{},\"412\":{},\"419\":{},\"425\":{},\"430\":{},\"435\":{},\"440\":{},\"451\":{},\"458\":{},\"467\":{},\"470\":{},\"474\":{},\"477\":{},\"480\":{},\"483\":{},\"586\":{},\"591\":{},\"595\":{},\"598\":{},\"602\":{},\"607\":{},\"609\":{},\"611\":{},\"613\":{},\"627\":{},\"692\":{},\"697\":{},\"704\":{},\"722\":{},\"732\":{},\"734\":{},\"739\":{},\"743\":{},\"752\":{},\"759\":{},\"765\":{},\"771\":{},\"775\":{},\"781\":{},\"784\":{},\"792\":{},\"800\":{},\"808\":{},\"820\":{},\"822\":{},\"831\":{},\"841\":{},\"850\":{},\"857\":{},\"862\":{},\"868\":{},\"874\":{},\"883\":{},\"888\":{},\"890\":{},\"895\":{},\"902\":{},\"911\":{},\"920\":{},\"924\":{},\"932\":{},\"942\":{},\"946\":{},\"955\":{},\"964\":{},\"973\":{},\"980\":{},\"987\":{},\"993\":{},\"998\":{},\"1006\":{},\"1012\":{},\"1019\":{},\"1021\":{},\"1027\":{},\"1030\":{},\"1035\":{},\"1041\":{},\"1046\":{},\"1050\":{},\"1052\":{},\"1054\":{},\"1056\":{},\"1058\":{},\"1064\":{},\"1072\":{},\"1085\":{},\"1094\":{},\"1101\":{},\"1220\":{},\"1225\":{},\"1234\":{},\"1237\":{},\"1253\":{},\"1263\":{},\"1268\":{},\"1288\":{},\"1294\":{},\"1301\":{},\"1308\":{},\"1313\":{},\"1317\":{},\"1324\":{},\"1329\":{},\"1334\":{},\"1339\":{},\"1351\":{},\"1362\":{},\"1365\":{},\"1368\":{},\"1413\":{},\"1426\":{},\"1433\":{},\"1440\":{},\"1448\":{},\"1455\":{},\"1465\":{},\"1470\":{},\"1474\":{},\"1481\":{},\"1502\":{},\"1514\":{},\"1523\":{},\"1526\":{},\"1550\":{},\"1553\":{},\"1556\":{},\"1570\":{},\"1574\":{},\"1586\":{},\"1596\":{},\"1609\":{},\"1613\":{},\"1617\":{},\"1621\":{},\"1630\":{}},\"comment\":{}}],[\"_from\",{\"_index\":658,\"name\":{\"1226\":{}},\"comment\":{}}],[\"_id\",{\"_index\":655,\"name\":{\"1222\":{},\"1235\":{}},\"comment\":{}}],[\"_key\",{\"_index\":654,\"name\":{\"1221\":{},\"1238\":{}},\"comment\":{}}],[\"_rev\",{\"_index\":656,\"name\":{\"1223\":{}},\"comment\":{}}],[\"_to\",{\"_index\":659,\"name\":{\"1227\":{}},\"comment\":{}}],[\"abort\",{\"_index\":787,\"name\":{\"1564\":{}},\"comment\":{}}],[\"accent\",{\"_index\":16,\"name\":{\"36\":{},\"56\":{}},\"comment\":{}}],[\"accesslevel\",{\"_index\":515,\"name\":{\"1028\":{}},\"comment\":{}}],[\"acquirehostlist\",{\"_index\":558,\"name\":{\"1115\":{}},\"comment\":{}}],[\"active\",{\"_index\":456,\"name\":{\"865\":{},\"1032\":{},\"1038\":{},\"1043\":{}},\"comment\":{}}],[\"addedgedefinition\",{\"_index\":720,\"name\":{\"1404\":{}},\"comment\":{}}],[\"addedgedefinitionoptions\",{\"_index\":706,\"name\":{\"1364\":{}},\"comment\":{}}],[\"addvertexcollection\",{\"_index\":716,\"name\":{\"1399\":{}},\"comment\":{}}],[\"addvertexcollectionoptions\",{\"_index\":705,\"name\":{\"1361\":{}},\"comment\":{}}],[\"after\",{\"_index\":300,\"name\":{\"610\":{}},\"comment\":{}}],[\"agent\",{\"_index\":317,\"name\":{\"635\":{}},\"comment\":{}}],[\"agentoptions\",{\"_index\":310,\"name\":{\"625\":{},\"636\":{}},\"comment\":{}}],[\"all\",{\"_index\":261,\"name\":{\"516\":{},\"544\":{},\"668\":{},\"681\":{}},\"comment\":{}}],[\"allowdirtyread\",{\"_index\":171,\"name\":{\"348\":{},\"353\":{},\"404\":{},\"618\":{},\"699\":{},\"705\":{},\"1311\":{},\"1551\":{},\"1554\":{}},\"comment\":{}}],[\"allowimplicit\",{\"_index\":360,\"name\":{\"698\":{}},\"comment\":{}}],[\"allowinconsistent\",{\"_index\":525,\"name\":{\"1059\":{}},\"comment\":{}}],[\"allowretry\",{\"_index\":364,\"name\":{\"706\":{}},\"comment\":{}}],[\"allowuserkeys\",{\"_index\":129,\"name\":{\"261\":{},\"321\":{}},\"comment\":{}}],[\"allplans\",{\"_index\":379,\"name\":{\"737\":{}},\"comment\":{}}],[\"analyzer\",{\"_index\":0,\"name\":{\"0\":{},\"111\":{},\"137\":{},\"200\":{},\"1153\":{},\"1450\":{},\"1457\":{},\"1486\":{},\"1516\":{}},\"comment\":{}}],[\"analyzerdescription\",{\"_index\":62,\"name\":{\"180\":{}},\"comment\":{}}],[\"analyzerfeature\",{\"_index\":2,\"name\":{\"2\":{}},\"comment\":{}}],[\"analyzers\",{\"_index\":593,\"name\":{\"1156\":{},\"1587\":{},\"1631\":{}},\"comment\":{}}],[\"any\",{\"_index\":262,\"name\":{\"517\":{},\"545\":{}},\"comment\":{}}],[\"aql\",{\"_index\":86,\"name\":{\"206\":{},\"209\":{},\"1650\":{}},\"comment\":{}}],[\"aqlanalyzerdescription\",{\"_index\":71,\"name\":{\"189\":{}},\"comment\":{}}],[\"aqlliteral\",{\"_index\":94,\"name\":{\"216\":{}},\"comment\":{}}],[\"aqlquery\",{\"_index\":91,\"name\":{\"212\":{}},\"comment\":{}}],[\"aqluserfunction\",{\"_index\":465,\"name\":{\"889\":{}},\"comment\":{}}],[\"aqlvalue\",{\"_index\":95,\"name\":{\"217\":{}},\"comment\":{}}],[\"arangoapiresponse\",{\"_index\":285,\"name\":{\"589\":{}},\"comment\":{}}],[\"arangocollection\",{\"_index\":99,\"name\":{\"221\":{}},\"comment\":{}}],[\"arangoerror\",{\"_index\":672,\"name\":{\"1247\":{}},\"comment\":{}}],[\"arangojs\",{\"_index\":723,\"name\":{\"1409\":{}},\"comment\":{}}],[\"arangoresponsemetadata\",{\"_index\":283,\"name\":{\"585\":{}},\"comment\":{}}],[\"arangosearchviewdescription\",{\"_index\":814,\"name\":{\"1626\":{}},\"comment\":{}}],[\"arangosearchviewlink\",{\"_index\":817,\"name\":{\"1629\":{}},\"comment\":{}}],[\"arangosearchviewlinkoptions\",{\"_index\":800,\"name\":{\"1585\":{}},\"comment\":{}}],[\"arangosearchviewpatchpropertiesoptions\",{\"_index\":804,\"name\":{\"1602\":{}},\"comment\":{}}],[\"arangosearchviewproperties\",{\"_index\":818,\"name\":{\"1638\":{}},\"comment\":{}}],[\"arangosearchviewpropertiesoptions\",{\"_index\":802,\"name\":{\"1595\":{}},\"comment\":{}}],[\"arangosearchviewstoredvalueoptions\",{\"_index\":805,\"name\":{\"1603\":{}},\"comment\":{}}],[\"arangouser\",{\"_index\":516,\"name\":{\"1029\":{}},\"comment\":{}}],[\"arangoversion\",{\"_index\":315,\"name\":{\"631\":{}},\"comment\":{}}],[\"arraycursor\",{\"_index\":351,\"name\":{\"676\":{}},\"comment\":{}}],[\"ast\",{\"_index\":401,\"name\":{\"779\":{}},\"comment\":{}}],[\"astnode\",{\"_index\":397,\"name\":{\"770\":{}},\"comment\":{}}],[\"asynciterator\",{\"_index\":350,\"name\":{\"675\":{},\"688\":{}},\"comment\":{}}],[\"auth\",{\"_index\":314,\"name\":{\"630\":{}},\"comment\":{}}],[\"author\",{\"_index\":684,\"name\":{\"1279\":{}},\"comment\":{}}],[\"basepath\",{\"_index\":307,\"name\":{\"622\":{}},\"comment\":{}}],[\"basicauthcredentials\",{\"_index\":286,\"name\":{\"590\":{}},\"comment\":{}}],[\"batchedarraycursor\",{\"_index\":338,\"name\":{\"661\":{}},\"comment\":{}}],[\"batches\",{\"_index\":352,\"name\":{\"677\":{}},\"comment\":{}}],[\"batchsize\",{\"_index\":32,\"name\":{\"80\":{},\"409\":{},\"415\":{},\"710\":{}},\"comment\":{}}],[\"bearerauthcredentials\",{\"_index\":289,\"name\":{\"594\":{}},\"comment\":{}}],[\"before\",{\"_index\":299,\"name\":{\"608\":{}},\"comment\":{}}],[\"beforesend\",{\"_index\":294,\"name\":{\"601\":{}},\"comment\":{}}],[\"begintransaction\",{\"_index\":606,\"name\":{\"1169\":{}},\"comment\":{}}],[\"bindvars\",{\"_index\":93,\"name\":{\"214\":{},\"778\":{},\"813\":{}},\"comment\":{}}],[\"body\",{\"_index\":303,\"name\":{\"615\":{}},\"comment\":{}}],[\"break\",{\"_index\":27,\"name\":{\"69\":{}},\"comment\":{}}],[\"byexample\",{\"_index\":263,\"name\":{\"518\":{},\"546\":{}},\"comment\":{}}],[\"bytesaccumconsolidationpolicy\",{\"_index\":790,\"name\":{\"1569\":{}},\"comment\":{}}],[\"cache\",{\"_index\":365,\"name\":{\"711\":{},\"1463\":{},\"1468\":{},\"1484\":{},\"1499\":{},\"1594\":{},\"1606\":{},\"1637\":{}},\"comment\":{}}],[\"cacheable\",{\"_index\":394,\"name\":{\"761\":{},\"767\":{}},\"comment\":{}}],[\"cacheenabled\",{\"_index\":150,\"name\":{\"286\":{},\"310\":{},\"340\":{},\"1422\":{}},\"comment\":{}}],[\"cachehits\",{\"_index\":326,\"name\":{\"647\":{}},\"comment\":{}}],[\"cachemisses\",{\"_index\":327,\"name\":{\"648\":{}},\"comment\":{}}],[\"canbedisabled\",{\"_index\":406,\"name\":{\"787\":{}},\"comment\":{}}],[\"cancel\",{\"_index\":774,\"name\":{\"1534\":{}},\"comment\":{}}],[\"cancreateadditionalplans\",{\"_index\":407,\"name\":{\"788\":{}},\"comment\":{}}],[\"case\",{\"_index\":15,\"name\":{\"35\":{},\"53\":{},\"70\":{}},\"comment\":{}}],[\"checksum\",{\"_index\":242,\"name\":{\"496\":{},\"562\":{},\"940\":{}},\"comment\":{}}],[\"classificationanalyzerdescription\",{\"_index\":76,\"name\":{\"194\":{}},\"comment\":{}}],[\"cleanupintervalstep\",{\"_index\":753,\"name\":{\"1491\":{},\"1597\":{}},\"comment\":{}}],[\"clearslowqueries\",{\"_index\":615,\"name\":{\"1180\":{}},\"comment\":{}}],[\"clearuseraccesslevel\",{\"_index\":602,\"name\":{\"1165\":{}},\"comment\":{}}],[\"close\",{\"_index\":559,\"name\":{\"1116\":{}},\"comment\":{}}],[\"clusterimbalanceinfo\",{\"_index\":422,\"name\":{\"819\":{}},\"comment\":{}}],[\"clusteronly\",{\"_index\":405,\"name\":{\"786\":{}},\"comment\":{}}],[\"clusterrebalancemove\",{\"_index\":445,\"name\":{\"849\":{}},\"comment\":{}}],[\"clusterrebalanceoptions\",{\"_index\":437,\"name\":{\"840\":{}},\"comment\":{}}],[\"clusterrebalanceresult\",{\"_index\":450,\"name\":{\"856\":{}},\"comment\":{}}],[\"clusterrebalancestate\",{\"_index\":436,\"name\":{\"839\":{}},\"comment\":{}}],[\"code\",{\"_index\":284,\"name\":{\"588\":{},\"892\":{},\"1244\":{},\"1250\":{},\"1257\":{},\"1261\":{},\"1265\":{}},\"comment\":{}}],[\"collapsepositions\",{\"_index\":30,\"name\":{\"78\":{}},\"comment\":{}}],[\"collationanalyzerdescription\",{\"_index\":74,\"name\":{\"192\":{}},\"comment\":{}}],[\"collection\",{\"_index\":96,\"name\":{\"218\":{},\"854\":{},\"1048\":{},\"1138\":{},\"1330\":{},\"1335\":{},\"1372\":{},\"1382\":{},\"1610\":{}},\"comment\":{}}],[\"collectionbatchreadoptions\",{\"_index\":172,\"name\":{\"351\":{}},\"comment\":{}}],[\"collectionchecksumoptions\",{\"_index\":157,\"name\":{\"311\":{}},\"comment\":{}}],[\"collectiondropoptions\",{\"_index\":160,\"name\":{\"315\":{}},\"comment\":{}}],[\"collectionedgesoptions\",{\"_index\":191,\"name\":{\"402\":{}},\"comment\":{}}],[\"collectionedgesresult\",{\"_index\":226,\"name\":{\"466\":{}},\"comment\":{}}],[\"collectionimportoptions\",{\"_index\":185,\"name\":{\"393\":{}},\"comment\":{}}],[\"collectionimportresult\",{\"_index\":220,\"name\":{\"457\":{}},\"comment\":{}}],[\"collectioninsertoptions\",{\"_index\":173,\"name\":{\"354\":{}},\"comment\":{}}],[\"collectionkeyoptions\",{\"_index\":162,\"name\":{\"318\":{}},\"comment\":{}}],[\"collectionkeyproperties\",{\"_index\":128,\"name\":{\"258\":{}},\"comment\":{}}],[\"collectionmetadata\",{\"_index\":125,\"name\":{\"252\":{}},\"comment\":{}}],[\"collectionproperties\",{\"_index\":137,\"name\":{\"271\":{}},\"comment\":{}}],[\"collectionpropertiesoptions\",{\"_index\":156,\"name\":{\"303\":{}},\"comment\":{}}],[\"collectionreadoptions\",{\"_index\":169,\"name\":{\"345\":{}},\"comment\":{}}],[\"collectionremoveoptions\",{\"_index\":184,\"name\":{\"386\":{}},\"comment\":{}}],[\"collectionreplaceoptions\",{\"_index\":181,\"name\":{\"364\":{}},\"comment\":{}}],[\"collections\",{\"_index\":384,\"name\":{\"746\":{},\"777\":{},\"1143\":{}},\"comment\":{}}],[\"collectionstatus\",{\"_index\":103,\"name\":{\"226\":{}},\"comment\":{}}],[\"collectiontostring\",{\"_index\":98,\"name\":{\"220\":{}},\"comment\":{}}],[\"collectiontype\",{\"_index\":100,\"name\":{\"223\":{}},\"comment\":{}}],[\"collectionupdateoptions\",{\"_index\":183,\"name\":{\"374\":{}},\"comment\":{}}],[\"commit\",{\"_index\":786,\"name\":{\"1563\":{}},\"comment\":{}}],[\"commitintervalmsec\",{\"_index\":754,\"name\":{\"1492\":{},\"1599\":{}},\"comment\":{}}],[\"commitlocalservicestate\",{\"_index\":639,\"name\":{\"1204\":{}},\"comment\":{}}],[\"compact\",{\"_index\":274,\"name\":{\"530\":{},\"579\":{}},\"comment\":{}}],[\"complete\",{\"_index\":189,\"name\":{\"400\":{}},\"comment\":{}}],[\"compression\",{\"_index\":746,\"name\":{\"1467\":{},\"1483\":{},\"1581\":{},\"1605\":{}},\"comment\":{}}],[\"computeclusterrebalance\",{\"_index\":569,\"name\":{\"1126\":{}},\"comment\":{}}],[\"computedvalueoptions\",{\"_index\":154,\"name\":{\"290\":{}},\"comment\":{}}],[\"computedvalueproperties\",{\"_index\":120,\"name\":{\"244\":{}},\"comment\":{}}],[\"computedvalues\",{\"_index\":149,\"name\":{\"285\":{},\"309\":{},\"339\":{}},\"comment\":{}}],[\"computeon\",{\"_index\":123,\"name\":{\"249\":{},\"295\":{}},\"comment\":{}}],[\"config\",{\"_index\":311,\"name\":{\"626\":{}},\"comment\":{}}],[\"configuration\",{\"_index\":468,\"name\":{\"896\":{},\"903\":{},\"912\":{},\"943\":{},\"1269\":{},\"1287\":{}},\"comment\":{}}],[\"connection\",{\"_index\":279,\"name\":{\"581\":{}},\"comment\":{}}],[\"consolidationintervalmsec\",{\"_index\":755,\"name\":{\"1493\":{},\"1598\":{}},\"comment\":{}}],[\"consolidationpolicy\",{\"_index\":756,\"name\":{\"1494\":{},\"1600\":{}},\"comment\":{}}],[\"constructor\",{\"_index\":554,\"name\":{\"1109\":{}},\"comment\":{}}],[\"contributors\",{\"_index\":685,\"name\":{\"1280\":{}},\"comment\":{}}],[\"count\",{\"_index\":238,\"name\":{\"492\":{},\"558\":{},\"664\":{},\"679\":{},\"709\":{}},\"comment\":{}}],[\"create\",{\"_index\":84,\"name\":{\"204\":{},\"490\":{},\"556\":{},\"1394\":{},\"1644\":{}},\"comment\":{}}],[\"createanalyzer\",{\"_index\":591,\"name\":{\"1154\":{}},\"comment\":{}}],[\"createanalyzeroptions\",{\"_index\":3,\"name\":{\"3\":{}},\"comment\":{}}],[\"createaqlanalyzeroptions\",{\"_index\":28,\"name\":{\"71\":{}},\"comment\":{}}],[\"createarangosearchviewoptions\",{\"_index\":806,\"name\":{\"1607\":{}},\"comment\":{}}],[\"createclassificationanalyzeroptions\",{\"_index\":42,\"name\":{\"113\":{}},\"comment\":{}}],[\"createcollationanalyzeroptions\",{\"_index\":39,\"name\":{\"98\":{}},\"comment\":{}}],[\"createcollection\",{\"_index\":578,\"name\":{\"1139\":{}},\"comment\":{}}],[\"createcollectionoptions\",{\"_index\":163,\"name\":{\"324\":{}},\"comment\":{}}],[\"created\",{\"_index\":221,\"name\":{\"460\":{}},\"comment\":{}}],[\"createdatabase\",{\"_index\":572,\"name\":{\"1132\":{}},\"comment\":{}}],[\"createdatabaseoptions\",{\"_index\":457,\"name\":{\"867\":{}},\"comment\":{}}],[\"createdatabaseuser\",{\"_index\":454,\"name\":{\"861\":{}},\"comment\":{}}],[\"createdelimiteranalyzeroptions\",{\"_index\":9,\"name\":{\"9\":{}},\"comment\":{}}],[\"createedgecollection\",{\"_index\":579,\"name\":{\"1140\":{}},\"comment\":{}}],[\"createfunction\",{\"_index\":618,\"name\":{\"1183\":{}},\"comment\":{}}],[\"creategeojsonanalyzeroptions\",{\"_index\":49,\"name\":{\"138\":{}},\"comment\":{}}],[\"creategeopointanalyzeroptions\",{\"_index\":54,\"name\":{\"150\":{}},\"comment\":{}}],[\"creategeos2analyzeroptions\",{\"_index\":58,\"name\":{\"163\":{}},\"comment\":{}}],[\"creategraph\",{\"_index\":583,\"name\":{\"1145\":{}},\"comment\":{}}],[\"creategraphoptions\",{\"_index\":703,\"name\":{\"1350\":{}},\"comment\":{}}],[\"createhotbackup\",{\"_index\":640,\"name\":{\"1205\":{}},\"comment\":{}}],[\"createidentityanalyzeroptions\",{\"_index\":4,\"name\":{\"4\":{}},\"comment\":{}}],[\"createjob\",{\"_index\":557,\"name\":{\"1114\":{}},\"comment\":{}}],[\"createminhashanalyzeroptions\",{\"_index\":40,\"name\":{\"105\":{}},\"comment\":{}}],[\"createmultidelimiteranalyzeroptions\",{\"_index\":10,\"name\":{\"14\":{}},\"comment\":{}}],[\"createnearestneighborsanalyzeroptions\",{\"_index\":46,\"name\":{\"122\":{}},\"comment\":{}}],[\"createngramanalyzeroptions\",{\"_index\":17,\"name\":{\"37\":{}},\"comment\":{}}],[\"createnormanalyzeroptions\",{\"_index\":14,\"name\":{\"28\":{}},\"comment\":{}}],[\"createpipelineanalyzeroptions\",{\"_index\":35,\"name\":{\"83\":{}},\"comment\":{}}],[\"createsearchaliasviewoptions\",{\"_index\":811,\"name\":{\"1619\":{}},\"comment\":{}}],[\"createsegmentationanalyzeroptions\",{\"_index\":26,\"name\":{\"63\":{}},\"comment\":{}}],[\"createstemanalyzeroptions\",{\"_index\":12,\"name\":{\"21\":{}},\"comment\":{}}],[\"createstopwordsanalyzeroptions\",{\"_index\":37,\"name\":{\"90\":{}},\"comment\":{}}],[\"createtextanalyzeroptions\",{\"_index\":21,\"name\":{\"46\":{}},\"comment\":{}}],[\"createuser\",{\"_index\":596,\"name\":{\"1159\":{}},\"comment\":{}}],[\"createuseroptions\",{\"_index\":517,\"name\":{\"1034\":{}},\"comment\":{}}],[\"createview\",{\"_index\":587,\"name\":{\"1149\":{}},\"comment\":{}}],[\"createviewoptions\",{\"_index\":797,\"name\":{\"1582\":{}},\"comment\":{}}],[\"createwildcardanalyzeroptions\",{\"_index\":47,\"name\":{\"130\":{}},\"comment\":{}}],[\"current\",{\"_index\":485,\"name\":{\"949\":{},\"957\":{},\"966\":{}},\"comment\":{}}],[\"currentraw\",{\"_index\":484,\"name\":{\"948\":{}},\"comment\":{}}],[\"cursor\",{\"_index\":320,\"name\":{\"640\":{}},\"comment\":{}}],[\"cursorextras\",{\"_index\":321,\"name\":{\"641\":{}},\"comment\":{}}],[\"cursorscreated\",{\"_index\":328,\"name\":{\"649\":{}},\"comment\":{}}],[\"cursorsrearmed\",{\"_index\":329,\"name\":{\"650\":{}},\"comment\":{}}],[\"cursorstats\",{\"_index\":325,\"name\":{\"646\":{}},\"comment\":{}}],[\"database\",{\"_index\":353,\"name\":{\"689\":{},\"810\":{},\"1047\":{},\"1108\":{},\"1129\":{},\"1651\":{}},\"comment\":{}}],[\"databaseinfo\",{\"_index\":460,\"name\":{\"873\":{}},\"comment\":{}}],[\"databasename\",{\"_index\":312,\"name\":{\"628\":{}},\"comment\":{}}],[\"databases\",{\"_index\":575,\"name\":{\"1135\":{}},\"comment\":{}}],[\"databasesexcluded\",{\"_index\":444,\"name\":{\"848\":{}},\"comment\":{}}],[\"date\",{\"_index\":548,\"name\":{\"1098\":{}},\"comment\":{}}],[\"datetime\",{\"_index\":530,\"name\":{\"1068\":{}},\"comment\":{}}],[\"debug\",{\"_index\":537,\"name\":{\"1080\":{}},\"comment\":{}}],[\"deduplicate\",{\"_index\":728,\"name\":{\"1419\":{}},\"comment\":{}}],[\"default\",{\"_index\":489,\"name\":{\"953\":{},\"1291\":{},\"1410\":{}},\"comment\":{}}],[\"defaultdocument\",{\"_index\":678,\"name\":{\"1270\":{}},\"comment\":{}}],[\"delete\",{\"_index\":778,\"name\":{\"1541\":{}},\"comment\":{}}],[\"deletealljobresults\",{\"_index\":652,\"name\":{\"1217\":{}},\"comment\":{}}],[\"deleted\",{\"_index\":108,\"name\":{\"231\":{},\"475\":{}},\"comment\":{}}],[\"deleteexpiredjobresults\",{\"_index\":651,\"name\":{\"1216\":{}},\"comment\":{}}],[\"deletehotbackup\",{\"_index\":643,\"name\":{\"1208\":{}},\"comment\":{}}],[\"deleteresult\",{\"_index\":775,\"name\":{\"1535\":{}},\"comment\":{}}],[\"delimiteranalyzerdescription\",{\"_index\":64,\"name\":{\"182\":{}},\"comment\":{}}],[\"delimiters\",{\"_index\":11,\"name\":{\"20\":{}},\"comment\":{}}],[\"dependencies\",{\"_index\":469,\"name\":{\"897\":{},\"904\":{},\"913\":{},\"944\":{},\"1271\":{}},\"comment\":{}}],[\"dependency\",{\"_index\":688,\"name\":{\"1293\":{}},\"comment\":{}}],[\"description\",{\"_index\":487,\"name\":{\"951\":{},\"961\":{},\"970\":{},\"1023\":{},\"1281\":{},\"1289\":{},\"1297\":{}},\"comment\":{}}],[\"details\",{\"_index\":190,\"name\":{\"401\":{},\"465\":{},\"887\":{}},\"comment\":{}}],[\"development\",{\"_index\":470,\"name\":{\"898\":{},\"905\":{},\"914\":{},\"929\":{},\"937\":{}},\"comment\":{}}],[\"direction\",{\"_index\":210,\"name\":{\"446\":{},\"1472\":{},\"1568\":{}},\"comment\":{}}],[\"disabledbydefault\",{\"_index\":408,\"name\":{\"789\":{}},\"comment\":{}}],[\"distributeshardslike\",{\"_index\":146,\"name\":{\"282\":{},\"336\":{}},\"comment\":{}}],[\"document\",{\"_index\":249,\"name\":{\"504\":{},\"533\":{},\"1230\":{}},\"comment\":{}}],[\"document_collection\",{\"_index\":101,\"name\":{\"224\":{}},\"comment\":{}}],[\"documentcollection\",{\"_index\":237,\"name\":{\"487\":{}},\"comment\":{}}],[\"documentdata\",{\"_index\":660,\"name\":{\"1228\":{}},\"comment\":{}}],[\"documentexists\",{\"_index\":248,\"name\":{\"503\":{},\"569\":{}},\"comment\":{}}],[\"documentexistsoptions\",{\"_index\":166,\"name\":{\"341\":{}},\"comment\":{}}],[\"documentid\",{\"_index\":247,\"name\":{\"502\":{},\"568\":{}},\"comment\":{}}],[\"documentmetadata\",{\"_index\":653,\"name\":{\"1219\":{}},\"comment\":{}}],[\"documentoperationfailure\",{\"_index\":115,\"name\":{\"238\":{}},\"comment\":{}}],[\"documentoperationmetadata\",{\"_index\":119,\"name\":{\"243\":{}},\"comment\":{}}],[\"documents\",{\"_index\":250,\"name\":{\"505\":{},\"534\":{},\"1218\":{}},\"comment\":{}}],[\"documentselector\",{\"_index\":666,\"name\":{\"1239\":{}},\"comment\":{}}],[\"downloadservice\",{\"_index\":638,\"name\":{\"1203\":{}},\"comment\":{}}],[\"drop\",{\"_index\":85,\"name\":{\"205\":{},\"500\":{},\"566\":{},\"1395\":{},\"1649\":{}},\"comment\":{}}],[\"dropdatabase\",{\"_index\":577,\"name\":{\"1137\":{}},\"comment\":{}}],[\"dropfunction\",{\"_index\":619,\"name\":{\"1184\":{}},\"comment\":{}}],[\"dropindex\",{\"_index\":273,\"name\":{\"529\":{},\"578\":{}},\"comment\":{}}],[\"duration\",{\"_index\":498,\"name\":{\"978\":{},\"983\":{},\"990\":{},\"1009\":{}},\"comment\":{}}],[\"edge\",{\"_index\":662,\"name\":{\"1231\":{},\"1385\":{}},\"comment\":{}}],[\"edge_collection\",{\"_index\":102,\"name\":{\"225\":{}},\"comment\":{}}],[\"edgecollection\",{\"_index\":275,\"name\":{\"532\":{},\"1401\":{}},\"comment\":{}}],[\"edgecollections\",{\"_index\":719,\"name\":{\"1403\":{}},\"comment\":{}}],[\"edgedata\",{\"_index\":661,\"name\":{\"1229\":{}},\"comment\":{}}],[\"edgedefinition\",{\"_index\":697,\"name\":{\"1328\":{}},\"comment\":{}}],[\"edgedefinitionoptions\",{\"_index\":698,\"name\":{\"1333\":{}},\"comment\":{}}],[\"edgedefinitions\",{\"_index\":700,\"name\":{\"1341\":{}},\"comment\":{}}],[\"edgeexists\",{\"_index\":712,\"name\":{\"1384\":{}},\"comment\":{}}],[\"edgemetadata\",{\"_index\":657,\"name\":{\"1224\":{}},\"comment\":{}}],[\"edgengram\",{\"_index\":25,\"name\":{\"58\":{}},\"comment\":{}}],[\"edges\",{\"_index\":216,\"name\":{\"453\":{},\"468\":{},\"550\":{}},\"comment\":{}}],[\"empty\",{\"_index\":223,\"name\":{\"462\":{}},\"comment\":{}}],[\"enabled\",{\"_index\":411,\"name\":{\"793\":{},\"801\":{}},\"comment\":{}}],[\"enforcereplicationfactor\",{\"_index\":165,\"name\":{\"330\":{}},\"comment\":{}}],[\"engines\",{\"_index\":679,\"name\":{\"1273\":{}},\"comment\":{}}],[\"ensurefulltextindexoptions\",{\"_index\":733,\"name\":{\"1425\":{}},\"comment\":{}}],[\"ensuregeoindexoptions\",{\"_index\":732,\"name\":{\"1424\":{}},\"comment\":{}}],[\"ensureindex\",{\"_index\":272,\"name\":{\"528\":{},\"577\":{}},\"comment\":{}}],[\"ensureinvertedindexoptions\",{\"_index\":749,\"name\":{\"1473\":{}},\"comment\":{}}],[\"ensuremdiindexoptions\",{\"_index\":737,\"name\":{\"1439\":{}},\"comment\":{}}],[\"ensurepersistentindexoptions\",{\"_index\":724,\"name\":{\"1412\":{}},\"comment\":{}}],[\"ensurettlindexoptions\",{\"_index\":735,\"name\":{\"1432\":{}},\"comment\":{}}],[\"enterpriseonly\",{\"_index\":409,\"name\":{\"790\":{}},\"comment\":{}}],[\"err\",{\"_index\":501,\"name\":{\"984\":{},\"991\":{},\"1010\":{}},\"comment\":{}}],[\"errno\",{\"_index\":670,\"name\":{\"1245\":{}},\"comment\":{}}],[\"error\",{\"_index\":116,\"name\":{\"240\":{},\"459\":{},\"587\":{},\"1077\":{},\"1240\":{},\"1254\":{},\"1264\":{}},\"comment\":{}}],[\"errormessage\",{\"_index\":117,\"name\":{\"241\":{},\"1255\":{}},\"comment\":{}}],[\"errornum\",{\"_index\":118,\"name\":{\"242\":{},\"1249\":{},\"1256\":{}},\"comment\":{}}],[\"errors\",{\"_index\":222,\"name\":{\"461\":{}},\"comment\":{}}],[\"estimatedcost\",{\"_index\":386,\"name\":{\"748\":{}},\"comment\":{}}],[\"estimatednritems\",{\"_index\":387,\"name\":{\"749\":{}},\"comment\":{}}],[\"estimates\",{\"_index\":729,\"name\":{\"1420\":{}},\"comment\":{}}],[\"excludesystemcollections\",{\"_index\":442,\"name\":{\"846\":{}},\"comment\":{}}],[\"exclusive\",{\"_index\":356,\"name\":{\"693\":{}},\"comment\":{}}],[\"executeclusterrebalance\",{\"_index\":570,\"name\":{\"1127\":{}},\"comment\":{}}],[\"executetransaction\",{\"_index\":604,\"name\":{\"1167\":{}},\"comment\":{}}],[\"executiontime\",{\"_index\":334,\"name\":{\"657\":{},\"757\":{}},\"comment\":{}}],[\"exists\",{\"_index\":82,\"name\":{\"202\":{},\"488\":{},\"554\":{},\"1131\":{},\"1392\":{},\"1561\":{},\"1643\":{}},\"comment\":{}}],[\"expander\",{\"_index\":209,\"name\":{\"445\":{}},\"comment\":{}}],[\"expectbinary\",{\"_index\":304,\"name\":{\"616\":{}},\"comment\":{}}],[\"expireafter\",{\"_index\":736,\"name\":{\"1437\":{}},\"comment\":{}}],[\"explain\",{\"_index\":610,\"name\":{\"1174\":{}},\"comment\":{}}],[\"explainoptions\",{\"_index\":377,\"name\":{\"731\":{}},\"comment\":{}}],[\"explainplan\",{\"_index\":383,\"name\":{\"742\":{}},\"comment\":{}}],[\"explainstats\",{\"_index\":389,\"name\":{\"751\":{}},\"comment\":{}}],[\"expression\",{\"_index\":121,\"name\":{\"247\":{},\"293\":{}},\"comment\":{}}],[\"extra\",{\"_index\":340,\"name\":{\"663\":{},\"678\":{},\"866\":{},\"1033\":{},\"1039\":{},\"1044\":{}},\"comment\":{}}],[\"failonwarning\",{\"_index\":124,\"name\":{\"251\":{},\"297\":{},\"715\":{}},\"comment\":{}}],[\"failures\",{\"_index\":496,\"name\":{\"976\":{},\"1016\":{}},\"comment\":{}}],[\"fatal\",{\"_index\":535,\"name\":{\"1076\":{}},\"comment\":{}}],[\"features\",{\"_index\":7,\"name\":{\"7\":{},\"12\":{},\"17\":{},\"24\":{},\"31\":{},\"40\":{},\"49\":{},\"66\":{},\"74\":{},\"86\":{},\"93\":{},\"101\":{},\"108\":{},\"116\":{},\"125\":{},\"133\":{},\"141\":{},\"153\":{},\"166\":{},\"179\":{},\"1451\":{},\"1458\":{},\"1487\":{},\"1517\":{}},\"comment\":{}}],[\"field\",{\"_index\":748,\"name\":{\"1471\":{}},\"comment\":{}}],[\"fields\",{\"_index\":725,\"name\":{\"1415\":{},\"1428\":{},\"1435\":{},\"1442\":{},\"1466\":{},\"1476\":{},\"1482\":{},\"1588\":{},\"1604\":{},\"1632\":{}},\"comment\":{}}],[\"fieldvaluetypes\",{\"_index\":738,\"name\":{\"1443\":{}},\"comment\":{}}],[\"figures\",{\"_index\":240,\"name\":{\"494\":{},\"560\":{}},\"comment\":{}}],[\"file\",{\"_index\":689,\"name\":{\"1300\":{}},\"comment\":{}}],[\"files\",{\"_index\":680,\"name\":{\"1274\":{}},\"comment\":{}}],[\"fillblockcache\",{\"_index\":368,\"name\":{\"720\":{}},\"comment\":{}}],[\"filter\",{\"_index\":206,\"name\":{\"442\":{}},\"comment\":{}}],[\"filtered\",{\"_index\":229,\"name\":{\"472\":{},\"655\":{}},\"comment\":{}}],[\"firstexample\",{\"_index\":264,\"name\":{\"519\":{},\"547\":{}},\"comment\":{}}],[\"flags\",{\"_index\":403,\"name\":{\"783\":{}},\"comment\":{}}],[\"flatmap\",{\"_index\":347,\"name\":{\"672\":{},\"685\":{}},\"comment\":{}}],[\"force\",{\"_index\":475,\"name\":{\"909\":{},\"918\":{},\"922\":{},\"1060\":{}},\"comment\":{}}],[\"foreach\",{\"_index\":345,\"name\":{\"670\":{},\"683\":{}},\"comment\":{}}],[\"format\",{\"_index\":59,\"name\":{\"175\":{}},\"comment\":{}}],[\"foxx\",{\"_index\":676,\"name\":{\"1266\":{}},\"comment\":{}}],[\"foxxmanifest\",{\"_index\":677,\"name\":{\"1267\":{}},\"comment\":{}}],[\"from\",{\"_index\":446,\"name\":{\"851\":{},\"1331\":{},\"1336\":{}},\"comment\":{}}],[\"fromprefix\",{\"_index\":186,\"name\":{\"395\":{}},\"comment\":{}}],[\"fullcount\",{\"_index\":335,\"name\":{\"658\":{},\"719\":{}},\"comment\":{}}],[\"fulltext\",{\"_index\":270,\"name\":{\"525\":{},\"549\":{}},\"comment\":{}}],[\"fulltextindex\",{\"_index\":764,\"name\":{\"1509\":{}},\"comment\":{}}],[\"fulltitle\",{\"_index\":500,\"name\":{\"982\":{},\"1008\":{}},\"comment\":{}}],[\"genericanalyzerdescription\",{\"_index\":60,\"name\":{\"176\":{}},\"comment\":{}}],[\"genericindex\",{\"_index\":761,\"name\":{\"1501\":{}},\"comment\":{}}],[\"genericviewdescription\",{\"_index\":812,\"name\":{\"1620\":{}},\"comment\":{}}],[\"geoindex\",{\"_index\":765,\"name\":{\"1510\":{}},\"comment\":{}}],[\"geojsonanalyzerdescription\",{\"_index\":79,\"name\":{\"197\":{}},\"comment\":{}}],[\"geopointanalyzerdescription\",{\"_index\":80,\"name\":{\"198\":{}},\"comment\":{}}],[\"geos2analyzerdescription\",{\"_index\":81,\"name\":{\"199\":{}},\"comment\":{}}],[\"get\",{\"_index\":83,\"name\":{\"203\":{},\"489\":{},\"555\":{},\"1130\":{},\"1393\":{},\"1542\":{},\"1562\":{},\"1642\":{}},\"comment\":{}}],[\"getavg\",{\"_index\":523,\"name\":{\"1055\":{}},\"comment\":{}}],[\"getclusterimbalance\",{\"_index\":568,\"name\":{\"1125\":{}},\"comment\":{}}],[\"getcompleted\",{\"_index\":776,\"name\":{\"1536\":{}},\"comment\":{}}],[\"getlatest\",{\"_index\":521,\"name\":{\"1051\":{}},\"comment\":{}}],[\"getlogentries\",{\"_index\":644,\"name\":{\"1209\":{}},\"comment\":{}}],[\"getloglevel\",{\"_index\":646,\"name\":{\"1211\":{}},\"comment\":{}}],[\"getlogmessages\",{\"_index\":645,\"name\":{\"1210\":{}},\"comment\":{}}],[\"getresponsibleshard\",{\"_index\":246,\"name\":{\"501\":{},\"567\":{}},\"comment\":{}}],[\"getservice\",{\"_index\":625,\"name\":{\"1190\":{}},\"comment\":{}}],[\"getserviceconfiguration\",{\"_index\":626,\"name\":{\"1191\":{}},\"comment\":{}}],[\"getservicedependencies\",{\"_index\":629,\"name\":{\"1194\":{}},\"comment\":{}}],[\"getservicedocumentation\",{\"_index\":637,\"name\":{\"1202\":{}},\"comment\":{}}],[\"getservicereadme\",{\"_index\":636,\"name\":{\"1201\":{}},\"comment\":{}}],[\"getuser\",{\"_index\":595,\"name\":{\"1158\":{}},\"comment\":{}}],[\"getuseraccesslevel\",{\"_index\":600,\"name\":{\"1163\":{}},\"comment\":{}}],[\"getuserdatabases\",{\"_index\":603,\"name\":{\"1166\":{}},\"comment\":{}}],[\"getvalues\",{\"_index\":522,\"name\":{\"1053\":{}},\"comment\":{}}],[\"globallyuniqueid\",{\"_index\":126,\"name\":{\"255\":{},\"1622\":{}},\"comment\":{}}],[\"graceful\",{\"_index\":170,\"name\":{\"347\":{},\"1310\":{}},\"comment\":{}}],[\"graph\",{\"_index\":582,\"name\":{\"1144\":{},\"1305\":{},\"1373\":{},\"1383\":{},\"1390\":{}},\"comment\":{}}],[\"graphcollectioninsertoptions\",{\"_index\":694,\"name\":{\"1312\":{}},\"comment\":{}}],[\"graphcollectionreadoptions\",{\"_index\":692,\"name\":{\"1307\":{}},\"comment\":{}}],[\"graphcollectionremoveoptions\",{\"_index\":696,\"name\":{\"1323\":{}},\"comment\":{}}],[\"graphcollectionreplaceoptions\",{\"_index\":695,\"name\":{\"1316\":{}},\"comment\":{}}],[\"graphedgecollection\",{\"_index\":711,\"name\":{\"1380\":{}},\"comment\":{}}],[\"graphinfo\",{\"_index\":699,\"name\":{\"1338\":{}},\"comment\":{}}],[\"graphs\",{\"_index\":585,\"name\":{\"1147\":{}},\"comment\":{}}],[\"graphvertexcollection\",{\"_index\":708,\"name\":{\"1370\":{}},\"comment\":{}}],[\"gzip\",{\"_index\":690,\"name\":{\"1303\":{}},\"comment\":{}}],[\"hasmore\",{\"_index\":341,\"name\":{\"665\":{}},\"comment\":{}}],[\"hasnext\",{\"_index\":342,\"name\":{\"666\":{},\"680\":{}},\"comment\":{}}],[\"head\",{\"_index\":779,\"name\":{\"1543\":{}},\"comment\":{}}],[\"headers\",{\"_index\":281,\"name\":{\"583\":{},\"620\":{},\"637\":{}},\"comment\":{}}],[\"hex\",{\"_index\":38,\"name\":{\"97\":{}},\"comment\":{}}],[\"hidden\",{\"_index\":404,\"name\":{\"785\":{}},\"comment\":{}}],[\"hotbackuplist\",{\"_index\":533,\"name\":{\"1071\":{}},\"comment\":{}}],[\"hotbackupoptions\",{\"_index\":524,\"name\":{\"1057\":{}},\"comment\":{}}],[\"hotbackupresult\",{\"_index\":527,\"name\":{\"1063\":{}},\"comment\":{}}],[\"httperror\",{\"_index\":675,\"name\":{\"1258\":{}},\"comment\":{}}],[\"httprequests\",{\"_index\":336,\"name\":{\"659\":{}},\"comment\":{}}],[\"id\",{\"_index\":381,\"name\":{\"740\":{},\"809\":{},\"876\":{},\"1065\":{},\"1095\":{},\"1504\":{},\"1524\":{},\"1557\":{},\"1560\":{},\"1623\":{}},\"comment\":{}}],[\"identityanalyzerdescription\",{\"_index\":63,\"name\":{\"181\":{}},\"comment\":{}}],[\"ifmatch\",{\"_index\":167,\"name\":{\"343\":{},\"349\":{},\"371\":{},\"383\":{},\"391\":{}},\"comment\":{}}],[\"ifnonematch\",{\"_index\":168,\"name\":{\"344\":{},\"350\":{}},\"comment\":{}}],[\"ignored\",{\"_index\":225,\"name\":{\"464\":{},\"485\":{}},\"comment\":{}}],[\"ignorerevs\",{\"_index\":182,\"name\":{\"369\":{},\"379\":{}},\"comment\":{}}],[\"imbalance\",{\"_index\":429,\"name\":{\"828\":{},\"838\":{}},\"comment\":{}}],[\"imbalanceafter\",{\"_index\":452,\"name\":{\"859\":{}},\"comment\":{}}],[\"imbalancebefore\",{\"_index\":451,\"name\":{\"858\":{}},\"comment\":{}}],[\"import\",{\"_index\":259,\"name\":{\"514\":{},\"543\":{}},\"comment\":{}}],[\"inbackground\",{\"_index\":730,\"name\":{\"1421\":{},\"1431\":{},\"1438\":{},\"1446\":{},\"1498\":{},\"1593\":{}},\"comment\":{}}],[\"includeallfields\",{\"_index\":743,\"name\":{\"1459\":{},\"1488\":{},\"1589\":{},\"1633\":{}},\"comment\":{}}],[\"increment\",{\"_index\":130,\"name\":{\"262\":{},\"322\":{}},\"comment\":{}}],[\"index\",{\"_index\":203,\"name\":{\"436\":{},\"527\":{},\"576\":{},\"1408\":{},\"1521\":{},\"1611\":{}},\"comment\":{}}],[\"indexes\",{\"_index\":271,\"name\":{\"526\":{},\"575\":{},\"1411\":{},\"1614\":{},\"1618\":{}},\"comment\":{}}],[\"indexselector\",{\"_index\":771,\"name\":{\"1528\":{}},\"comment\":{}}],[\"inedges\",{\"_index\":276,\"name\":{\"551\":{}},\"comment\":{}}],[\"info\",{\"_index\":514,\"name\":{\"1020\":{},\"1079\":{}},\"comment\":{}}],[\"init\",{\"_index\":205,\"name\":{\"441\":{}},\"comment\":{}}],[\"installservice\",{\"_index\":621,\"name\":{\"1186\":{}},\"comment\":{}}],[\"installserviceoptions\",{\"_index\":467,\"name\":{\"894\":{}},\"comment\":{}}],[\"intermediatecommitcount\",{\"_index\":373,\"name\":{\"727\":{}},\"comment\":{}}],[\"intermediatecommitsize\",{\"_index\":374,\"name\":{\"728\":{}},\"comment\":{}}],[\"invertedindex\",{\"_index\":769,\"name\":{\"1520\":{}},\"comment\":{}}],[\"invertedindexfieldoptions\",{\"_index\":742,\"name\":{\"1454\":{}},\"comment\":{}}],[\"invertedindexnestedfield\",{\"_index\":768,\"name\":{\"1513\":{}},\"comment\":{}}],[\"invertedindexnestedfieldoptions\",{\"_index\":739,\"name\":{\"1447\":{}},\"comment\":{}}],[\"invertedindexprimarysortfieldoptions\",{\"_index\":747,\"name\":{\"1469\":{}},\"comment\":{}}],[\"invertedindexstoredvalueoptions\",{\"_index\":745,\"name\":{\"1464\":{}},\"comment\":{}}],[\"isaqlliteral\",{\"_index\":88,\"name\":{\"208\":{}},\"comment\":{}}],[\"isaqlquery\",{\"_index\":87,\"name\":{\"207\":{}},\"comment\":{}}],[\"isarangoanalyzer\",{\"_index\":1,\"name\":{\"1\":{}},\"comment\":{}}],[\"isarangocollection\",{\"_index\":97,\"name\":{\"219\":{}},\"comment\":{}}],[\"isarangodatabase\",{\"_index\":354,\"name\":{\"690\":{}},\"comment\":{}}],[\"isarangoerror\",{\"_index\":667,\"name\":{\"1241\":{}},\"comment\":{}}],[\"isarangograph\",{\"_index\":691,\"name\":{\"1306\":{}},\"comment\":{}}],[\"isarangotransaction\",{\"_index\":782,\"name\":{\"1548\":{}},\"comment\":{}}],[\"isarangoview\",{\"_index\":789,\"name\":{\"1567\":{}},\"comment\":{}}],[\"isbinary\",{\"_index\":305,\"name\":{\"617\":{}},\"comment\":{}}],[\"isdeterministic\",{\"_index\":466,\"name\":{\"893\":{}},\"comment\":{}}],[\"isdisjoint\",{\"_index\":153,\"name\":{\"289\":{},\"1349\":{},\"1359\":{}},\"comment\":{}}],[\"isleader\",{\"_index\":449,\"name\":{\"855\":{}},\"comment\":{}}],[\"isloaded\",{\"_index\":772,\"name\":{\"1531\":{}},\"comment\":{}}],[\"ismodificationquery\",{\"_index\":388,\"name\":{\"750\":{}},\"comment\":{}}],[\"issatellite\",{\"_index\":702,\"name\":{\"1346\":{}},\"comment\":{}}],[\"issmart\",{\"_index\":152,\"name\":{\"288\":{},\"1347\":{},\"1357\":{}},\"comment\":{}}],[\"issystem\",{\"_index\":161,\"name\":{\"317\":{},\"878\":{}},\"comment\":{}}],[\"issystemerror\",{\"_index\":668,\"name\":{\"1242\":{}},\"comment\":{}}],[\"itemorder\",{\"_index\":211,\"name\":{\"447\":{}},\"comment\":{}}],[\"items\",{\"_index\":339,\"name\":{\"662\":{}},\"comment\":{}}],[\"job\",{\"_index\":648,\"name\":{\"1213\":{},\"1529\":{},\"1530\":{}},\"comment\":{}}],[\"join\",{\"_index\":90,\"name\":{\"211\":{}},\"comment\":{}}],[\"keepnull\",{\"_index\":31,\"name\":{\"79\":{},\"250\":{},\"296\":{},\"381\":{},\"420\":{},\"1320\":{}},\"comment\":{}}],[\"keygenerator\",{\"_index\":110,\"name\":{\"233\":{}},\"comment\":{}}],[\"keyoptions\",{\"_index\":140,\"name\":{\"275\":{},\"327\":{}},\"comment\":{}}],[\"keywords\",{\"_index\":686,\"name\":{\"1282\":{}},\"comment\":{}}],[\"kill\",{\"_index\":349,\"name\":{\"674\":{},\"687\":{}},\"comment\":{}}],[\"killquery\",{\"_index\":616,\"name\":{\"1181\":{}},\"comment\":{}}],[\"label\",{\"_index\":526,\"name\":{\"1061\":{}},\"comment\":{}}],[\"lastvalue\",{\"_index\":132,\"name\":{\"264\":{}},\"comment\":{}}],[\"latitude\",{\"_index\":55,\"name\":{\"156\":{}},\"comment\":{}}],[\"leader\",{\"_index\":423,\"name\":{\"821\":{}},\"comment\":{}}],[\"leaderchanges\",{\"_index\":439,\"name\":{\"843\":{}},\"comment\":{}}],[\"leaderdupl\",{\"_index\":427,\"name\":{\"826\":{}},\"comment\":{}}],[\"legacy\",{\"_index\":471,\"name\":{\"899\":{},\"906\":{},\"915\":{},\"930\":{},\"938\":{}},\"comment\":{}}],[\"level\",{\"_index\":135,\"name\":{\"269\":{},\"301\":{},\"1087\":{},\"1097\":{},\"1105\":{}},\"comment\":{}}],[\"lib\",{\"_index\":681,\"name\":{\"1275\":{}},\"comment\":{}}],[\"license\",{\"_index\":463,\"name\":{\"885\":{},\"1025\":{},\"1283\":{}},\"comment\":{}}],[\"lid\",{\"_index\":551,\"name\":{\"1103\":{}},\"comment\":{}}],[\"limit\",{\"_index\":194,\"name\":{\"408\":{},\"414\":{},\"422\":{},\"427\":{},\"437\":{}},\"comment\":{}}],[\"links\",{\"_index\":803,\"name\":{\"1601\":{}},\"comment\":{}}],[\"list\",{\"_index\":260,\"name\":{\"515\":{},\"570\":{},\"1074\":{}},\"comment\":{}}],[\"listanalyzers\",{\"_index\":592,\"name\":{\"1155\":{}},\"comment\":{}}],[\"listcollections\",{\"_index\":581,\"name\":{\"1142\":{}},\"comment\":{}}],[\"listcompletedjobs\",{\"_index\":650,\"name\":{\"1215\":{}},\"comment\":{}}],[\"listdatabases\",{\"_index\":573,\"name\":{\"1133\":{}},\"comment\":{}}],[\"listedgecollections\",{\"_index\":718,\"name\":{\"1402\":{}},\"comment\":{}}],[\"listfunctions\",{\"_index\":617,\"name\":{\"1182\":{}},\"comment\":{}}],[\"listgraphs\",{\"_index\":584,\"name\":{\"1146\":{}},\"comment\":{}}],[\"listhotbackups\",{\"_index\":641,\"name\":{\"1206\":{}},\"comment\":{}}],[\"listpendingjobs\",{\"_index\":649,\"name\":{\"1214\":{}},\"comment\":{}}],[\"listrunningqueries\",{\"_index\":613,\"name\":{\"1178\":{}},\"comment\":{}}],[\"listservices\",{\"_index\":620,\"name\":{\"1185\":{}},\"comment\":{}}],[\"listservicescripts\",{\"_index\":633,\"name\":{\"1198\":{}},\"comment\":{}}],[\"listslowqueries\",{\"_index\":614,\"name\":{\"1179\":{}},\"comment\":{}}],[\"listtransactions\",{\"_index\":608,\"name\":{\"1171\":{}},\"comment\":{}}],[\"listuserdatabases\",{\"_index\":574,\"name\":{\"1134\":{}},\"comment\":{}}],[\"listusers\",{\"_index\":594,\"name\":{\"1157\":{}},\"comment\":{}}],[\"listvertexcollections\",{\"_index\":714,\"name\":{\"1397\":{}},\"comment\":{}}],[\"listviews\",{\"_index\":589,\"name\":{\"1151\":{}},\"comment\":{}}],[\"literal\",{\"_index\":89,\"name\":{\"210\":{}},\"comment\":{}}],[\"load\",{\"_index\":773,\"name\":{\"1533\":{}},\"comment\":{}}],[\"loadall\",{\"_index\":343,\"name\":{\"667\":{}},\"comment\":{}}],[\"loadbalancingstrategy\",{\"_index\":280,\"name\":{\"582\":{},\"632\":{}},\"comment\":{}}],[\"loaded\",{\"_index\":106,\"name\":{\"229\":{}},\"comment\":{}}],[\"loadindexes\",{\"_index\":243,\"name\":{\"497\":{},\"563\":{}},\"comment\":{}}],[\"loading\",{\"_index\":109,\"name\":{\"232\":{}},\"comment\":{}}],[\"locale\",{\"_index\":13,\"name\":{\"27\":{},\"34\":{},\"52\":{},\"104\":{}},\"comment\":{}}],[\"locktimeout\",{\"_index\":361,\"name\":{\"701\":{}},\"comment\":{}}],[\"logentries\",{\"_index\":549,\"name\":{\"1100\":{}},\"comment\":{}}],[\"logentriesoptions\",{\"_index\":541,\"name\":{\"1084\":{}},\"comment\":{}}],[\"login\",{\"_index\":566,\"name\":{\"1123\":{}},\"comment\":{}}],[\"loglevel\",{\"_index\":534,\"name\":{\"1075\":{}},\"comment\":{}}],[\"loglevellabel\",{\"_index\":538,\"name\":{\"1081\":{}},\"comment\":{}}],[\"loglevelsetting\",{\"_index\":539,\"name\":{\"1082\":{}},\"comment\":{}}],[\"logmessage\",{\"_index\":546,\"name\":{\"1093\":{}},\"comment\":{}}],[\"logsortdirection\",{\"_index\":540,\"name\":{\"1083\":{}},\"comment\":{}}],[\"longitude\",{\"_index\":56,\"name\":{\"157\":{}},\"comment\":{}}],[\"lookupbykeys\",{\"_index\":268,\"name\":{\"523\":{},\"548\":{}},\"comment\":{}}],[\"main\",{\"_index\":682,\"name\":{\"1276\":{}},\"comment\":{}}],[\"manifest\",{\"_index\":482,\"name\":{\"939\":{},\"1266\":{}},\"comment\":{}}],[\"map\",{\"_index\":346,\"name\":{\"671\":{},\"684\":{}},\"comment\":{}}],[\"max\",{\"_index\":18,\"name\":{\"43\":{},\"61\":{}},\"comment\":{}}],[\"maxcells\",{\"_index\":51,\"name\":{\"147\":{},\"172\":{}},\"comment\":{}}],[\"maxdepth\",{\"_index\":218,\"name\":{\"455\":{}},\"comment\":{}}],[\"maximumnumberofmoves\",{\"_index\":438,\"name\":{\"842\":{}},\"comment\":{}}],[\"maxiterations\",{\"_index\":219,\"name\":{\"456\":{}},\"comment\":{}}],[\"maxlevel\",{\"_index\":53,\"name\":{\"149\":{},\"162\":{},\"174\":{}},\"comment\":{}}],[\"maxnodespercallstack\",{\"_index\":372,\"name\":{\"725\":{}},\"comment\":{}}],[\"maxnumberofplans\",{\"_index\":378,\"name\":{\"736\":{}},\"comment\":{}}],[\"maxplans\",{\"_index\":371,\"name\":{\"724\":{}},\"comment\":{}}],[\"maxquerystringlength\",{\"_index\":412,\"name\":{\"794\":{},\"802\":{}},\"comment\":{}}],[\"maxretries\",{\"_index\":316,\"name\":{\"633\":{}},\"comment\":{}}],[\"maxruntime\",{\"_index\":366,\"name\":{\"713\":{}},\"comment\":{}}],[\"maxslowqueries\",{\"_index\":413,\"name\":{\"795\":{},\"803\":{}},\"comment\":{}}],[\"maxsockets\",{\"_index\":292,\"name\":{\"599\":{}},\"comment\":{}}],[\"maxtransactionsize\",{\"_index\":362,\"name\":{\"702\":{},\"726\":{}},\"comment\":{}}],[\"maxwarningscount\",{\"_index\":367,\"name\":{\"718\":{}},\"comment\":{}}],[\"mdiindex\",{\"_index\":767,\"name\":{\"1512\":{}},\"comment\":{}}],[\"memorylimit\",{\"_index\":33,\"name\":{\"81\":{},\"712\":{}},\"comment\":{}}],[\"mergeobjects\",{\"_index\":178,\"name\":{\"361\":{},\"382\":{},\"423\":{}},\"comment\":{}}],[\"message\",{\"_index\":136,\"name\":{\"270\":{},\"302\":{},\"1099\":{}},\"comment\":{}}],[\"method\",{\"_index\":302,\"name\":{\"614\":{}},\"comment\":{}}],[\"min\",{\"_index\":19,\"name\":{\"44\":{},\"60\":{}},\"comment\":{}}],[\"mincells\",{\"_index\":57,\"name\":{\"160\":{}},\"comment\":{}}],[\"mindepth\",{\"_index\":217,\"name\":{\"454\":{}},\"comment\":{}}],[\"minhashanalyzerdescription\",{\"_index\":75,\"name\":{\"193\":{}},\"comment\":{}}],[\"minlength\",{\"_index\":734,\"name\":{\"1430\":{}},\"comment\":{}}],[\"minlevel\",{\"_index\":52,\"name\":{\"148\":{},\"161\":{},\"173\":{}},\"comment\":{}}],[\"minscore\",{\"_index\":796,\"name\":{\"1580\":{}},\"comment\":{}}],[\"model_location\",{\"_index\":43,\"name\":{\"119\":{},\"128\":{}},\"comment\":{}}],[\"mount\",{\"_index\":479,\"name\":{\"925\":{},\"933\":{}},\"comment\":{}}],[\"movefollowers\",{\"_index\":441,\"name\":{\"845\":{}},\"comment\":{}}],[\"moveleaders\",{\"_index\":440,\"name\":{\"844\":{}},\"comment\":{}}],[\"moves\",{\"_index\":453,\"name\":{\"860\":{}},\"comment\":{}}],[\"multidelimiteranalyzerdescription\",{\"_index\":65,\"name\":{\"183\":{}},\"comment\":{}}],[\"multiexplainresult\",{\"_index\":395,\"name\":{\"764\":{}},\"comment\":{}}],[\"multiple\",{\"_index\":491,\"name\":{\"956\":{},\"965\":{},\"1299\":{}},\"comment\":{}}],[\"multiservicedependency\",{\"_index\":492,\"name\":{\"963\":{}},\"comment\":{}}],[\"name\",{\"_index\":61,\"name\":{\"178\":{},\"201\":{},\"222\":{},\"246\":{},\"254\":{},\"292\":{},\"531\":{},\"580\":{},\"782\":{},\"875\":{},\"891\":{},\"926\":{},\"935\":{},\"959\":{},\"968\":{},\"1110\":{},\"1248\":{},\"1259\":{},\"1284\":{},\"1295\":{},\"1340\":{},\"1371\":{},\"1381\":{},\"1391\":{},\"1416\":{},\"1429\":{},\"1436\":{},\"1444\":{},\"1449\":{},\"1456\":{},\"1477\":{},\"1503\":{},\"1515\":{},\"1527\":{},\"1624\":{},\"1641\":{}},\"comment\":{}}],[\"nearestneighborsanalyzerdescription\",{\"_index\":77,\"name\":{\"195\":{}},\"comment\":{}}],[\"nested\",{\"_index\":741,\"name\":{\"1453\":{},\"1462\":{},\"1519\":{},\"1590\":{},\"1634\":{}},\"comment\":{}}],[\"newborn\",{\"_index\":104,\"name\":{\"227\":{}},\"comment\":{}}],[\"next\",{\"_index\":344,\"name\":{\"669\":{},\"682\":{}},\"comment\":{}}],[\"ngramanalyzerdescription\",{\"_index\":68,\"name\":{\"186\":{}},\"comment\":{}}],[\"ngramsize\",{\"_index\":48,\"name\":{\"136\":{}},\"comment\":{}}],[\"nodes\",{\"_index\":337,\"name\":{\"660\":{},\"744\":{}},\"comment\":{}}],[\"normanalyzerdescription\",{\"_index\":67,\"name\":{\"185\":{}},\"comment\":{}}],[\"nrdbservers\",{\"_index\":531,\"name\":{\"1069\":{}},\"comment\":{}}],[\"nrfiles\",{\"_index\":532,\"name\":{\"1070\":{}},\"comment\":{}}],[\"numberofshards\",{\"_index\":143,\"name\":{\"278\":{},\"331\":{},\"1343\":{},\"1354\":{}},\"comment\":{}}],[\"numbershards\",{\"_index\":426,\"name\":{\"825\":{},\"834\":{}},\"comment\":{}}],[\"numhashes\",{\"_index\":41,\"name\":{\"112\":{}},\"comment\":{}}],[\"objectwithid\",{\"_index\":664,\"name\":{\"1233\":{},\"1522\":{}},\"comment\":{}}],[\"objectwithkey\",{\"_index\":665,\"name\":{\"1236\":{}},\"comment\":{}}],[\"objectwithname\",{\"_index\":770,\"name\":{\"1525\":{}},\"comment\":{}}],[\"offset\",{\"_index\":131,\"name\":{\"263\":{},\"323\":{},\"1090\":{}},\"comment\":{}}],[\"old\",{\"_index\":236,\"name\":{\"486\":{}},\"comment\":{}}],[\"onduplicate\",{\"_index\":188,\"name\":{\"399\":{}},\"comment\":{}}],[\"optimizer\",{\"_index\":369,\"name\":{\"721\":{},\"733\":{}},\"comment\":{}}],[\"optimizetopk\",{\"_index\":760,\"name\":{\"1500\":{}},\"comment\":{}}],[\"options\",{\"_index\":50,\"name\":{\"145\":{},\"158\":{},\"170\":{},\"941\":{}},\"comment\":{}}],[\"order\",{\"_index\":213,\"name\":{\"449\":{}},\"comment\":{}}],[\"orphancollections\",{\"_index\":701,\"name\":{\"1342\":{},\"1353\":{}},\"comment\":{}}],[\"outedges\",{\"_index\":277,\"name\":{\"552\":{}},\"comment\":{}}],[\"overwrite\",{\"_index\":122,\"name\":{\"248\":{},\"294\":{},\"397\":{}},\"comment\":{}}],[\"overwritemode\",{\"_index\":177,\"name\":{\"360\":{}},\"comment\":{}}],[\"parallelism\",{\"_index\":752,\"name\":{\"1490\":{}},\"comment\":{}}],[\"params\",{\"_index\":282,\"name\":{\"584\":{}},\"comment\":{}}],[\"parse\",{\"_index\":611,\"name\":{\"1175\":{}},\"comment\":{}}],[\"parsed\",{\"_index\":400,\"name\":{\"776\":{}},\"comment\":{}}],[\"parseresult\",{\"_index\":399,\"name\":{\"774\":{}},\"comment\":{}}],[\"passes\",{\"_index\":495,\"name\":{\"975\":{},\"1017\":{}},\"comment\":{}}],[\"passwd\",{\"_index\":455,\"name\":{\"864\":{},\"1037\":{},\"1042\":{}},\"comment\":{}}],[\"password\",{\"_index\":288,\"name\":{\"593\":{}},\"comment\":{}}],[\"patch\",{\"_index\":663,\"name\":{\"1232\":{},\"1544\":{}},\"comment\":{}}],[\"path\",{\"_index\":308,\"name\":{\"623\":{},\"877\":{},\"934\":{},\"1026\":{},\"1302\":{}},\"comment\":{}}],[\"peakmemoryusage\",{\"_index\":333,\"name\":{\"656\":{},\"756\":{},\"816\":{}},\"comment\":{}}],[\"pending\",{\"_index\":497,\"name\":{\"977\":{},\"1015\":{}},\"comment\":{}}],[\"persistentindex\",{\"_index\":762,\"name\":{\"1507\":{}},\"comment\":{}}],[\"pifactor\",{\"_index\":443,\"name\":{\"847\":{}},\"comment\":{}}],[\"pipeline\",{\"_index\":36,\"name\":{\"89\":{}},\"comment\":{}}],[\"pipelineanalyzerdescription\",{\"_index\":72,\"name\":{\"190\":{}},\"comment\":{}}],[\"plan\",{\"_index\":323,\"name\":{\"643\":{},\"760\":{}},\"comment\":{}}],[\"plans\",{\"_index\":396,\"name\":{\"766\":{}},\"comment\":{}}],[\"planscreated\",{\"_index\":392,\"name\":{\"755\":{}},\"comment\":{}}],[\"post\",{\"_index\":780,\"name\":{\"1545\":{}},\"comment\":{}}],[\"potentiallyinconsistent\",{\"_index\":528,\"name\":{\"1066\":{}},\"comment\":{}}],[\"precapturestacktraces\",{\"_index\":318,\"name\":{\"638\":{}},\"comment\":{}}],[\"preserveoriginal\",{\"_index\":20,\"name\":{\"45\":{},\"62\":{}},\"comment\":{}}],[\"primaryindex\",{\"_index\":763,\"name\":{\"1508\":{}},\"comment\":{}}],[\"primarykeycache\",{\"_index\":751,\"name\":{\"1485\":{}},\"comment\":{}}],[\"primarysort\",{\"_index\":750,\"name\":{\"1480\":{}},\"comment\":{}}],[\"profile\",{\"_index\":324,\"name\":{\"644\":{},\"716\":{}},\"comment\":{}}],[\"properties\",{\"_index\":8,\"name\":{\"8\":{},\"13\":{},\"18\":{},\"25\":{},\"32\":{},\"41\":{},\"50\":{},\"67\":{},\"75\":{},\"87\":{},\"94\":{},\"102\":{},\"109\":{},\"117\":{},\"126\":{},\"134\":{},\"142\":{},\"154\":{},\"167\":{},\"491\":{},\"557\":{},\"1646\":{}},\"comment\":{}}],[\"provides\",{\"_index\":480,\"name\":{\"928\":{},\"1272\":{}},\"comment\":{}}],[\"put\",{\"_index\":781,\"name\":{\"1546\":{}},\"comment\":{}}],[\"qs\",{\"_index\":309,\"name\":{\"624\":{}},\"comment\":{}}],[\"query\",{\"_index\":92,\"name\":{\"213\":{},\"812\":{},\"1173\":{}},\"comment\":{}}],[\"queryinfo\",{\"_index\":418,\"name\":{\"807\":{}},\"comment\":{}}],[\"queryoptimizerrule\",{\"_index\":402,\"name\":{\"780\":{}},\"comment\":{}}],[\"queryoptions\",{\"_index\":363,\"name\":{\"703\":{}},\"comment\":{}}],[\"queryrules\",{\"_index\":612,\"name\":{\"1176\":{}},\"comment\":{}}],[\"querystring\",{\"_index\":29,\"name\":{\"77\":{}},\"comment\":{}}],[\"querytracking\",{\"_index\":410,\"name\":{\"791\":{},\"1177\":{}},\"comment\":{}}],[\"querytrackingoptions\",{\"_index\":417,\"name\":{\"799\":{}},\"comment\":{}}],[\"queuetime\",{\"_index\":562,\"name\":{\"1119\":{}},\"comment\":{}}],[\"queuetimemetrics\",{\"_index\":520,\"name\":{\"1049\":{}},\"comment\":{}}],[\"read\",{\"_index\":358,\"name\":{\"695\":{}},\"comment\":{}}],[\"rebalancecluster\",{\"_index\":571,\"name\":{\"1128\":{}},\"comment\":{}}],[\"recalculatecount\",{\"_index\":239,\"name\":{\"493\":{},\"559\":{}},\"comment\":{}}],[\"reduce\",{\"_index\":348,\"name\":{\"673\":{},\"686\":{}},\"comment\":{}}],[\"refillindexcaches\",{\"_index\":179,\"name\":{\"362\":{},\"372\":{},\"384\":{},\"392\":{}},\"comment\":{}}],[\"remove\",{\"_index\":257,\"name\":{\"512\":{},\"541\":{},\"1379\":{},\"1389\":{}},\"comment\":{}}],[\"removeall\",{\"_index\":258,\"name\":{\"513\":{},\"542\":{}},\"comment\":{}}],[\"removebyexample\",{\"_index\":265,\"name\":{\"520\":{},\"571\":{}},\"comment\":{}}],[\"removebykeys\",{\"_index\":269,\"name\":{\"524\":{},\"574\":{}},\"comment\":{}}],[\"removed\",{\"_index\":235,\"name\":{\"484\":{}},\"comment\":{}}],[\"removeedgedefinition\",{\"_index\":722,\"name\":{\"1406\":{}},\"comment\":{}}],[\"removeuser\",{\"_index\":599,\"name\":{\"1162\":{}},\"comment\":{}}],[\"removevertexcollection\",{\"_index\":717,\"name\":{\"1400\":{}},\"comment\":{}}],[\"rename\",{\"_index\":244,\"name\":{\"498\":{},\"564\":{},\"1645\":{}},\"comment\":{}}],[\"renamecollection\",{\"_index\":580,\"name\":{\"1141\":{}},\"comment\":{}}],[\"renameview\",{\"_index\":588,\"name\":{\"1150\":{}},\"comment\":{}}],[\"renewauthtoken\",{\"_index\":567,\"name\":{\"1124\":{}},\"comment\":{}}],[\"replace\",{\"_index\":253,\"name\":{\"508\":{},\"537\":{},\"1377\":{},\"1387\":{}},\"comment\":{}}],[\"replaceall\",{\"_index\":254,\"name\":{\"509\":{},\"538\":{}},\"comment\":{}}],[\"replacebyexample\",{\"_index\":266,\"name\":{\"521\":{},\"572\":{}},\"comment\":{}}],[\"replaced\",{\"_index\":232,\"name\":{\"478\":{}},\"comment\":{}}],[\"replaceedgedefinition\",{\"_index\":721,\"name\":{\"1405\":{}},\"comment\":{}}],[\"replaceedgedefinitionoptions\",{\"_index\":707,\"name\":{\"1367\":{}},\"comment\":{}}],[\"replaceproperties\",{\"_index\":821,\"name\":{\"1648\":{}},\"comment\":{}}],[\"replaceservice\",{\"_index\":622,\"name\":{\"1187\":{}},\"comment\":{}}],[\"replaceserviceconfiguration\",{\"_index\":627,\"name\":{\"1192\":{}},\"comment\":{}}],[\"replaceservicedependencies\",{\"_index\":630,\"name\":{\"1195\":{}},\"comment\":{}}],[\"replaceserviceoptions\",{\"_index\":473,\"name\":{\"901\":{}},\"comment\":{}}],[\"replaceuser\",{\"_index\":598,\"name\":{\"1161\":{}},\"comment\":{}}],[\"replicationfactor\",{\"_index\":145,\"name\":{\"280\":{},\"306\":{},\"333\":{},\"871\":{},\"880\":{},\"1344\":{},\"1355\":{}},\"comment\":{}}],[\"request\",{\"_index\":777,\"name\":{\"1540\":{}},\"comment\":{}}],[\"requestinterceptors\",{\"_index\":298,\"name\":{\"606\":{}},\"comment\":{}}],[\"requestoptions\",{\"_index\":301,\"name\":{\"612\":{}},\"comment\":{}}],[\"required\",{\"_index\":488,\"name\":{\"952\":{},\"962\":{},\"971\":{},\"1292\":{},\"1298\":{}},\"comment\":{}}],[\"response\",{\"_index\":673,\"name\":{\"1251\":{},\"1260\":{}},\"comment\":{}}],[\"responsequeuetimesamples\",{\"_index\":319,\"name\":{\"639\":{}},\"comment\":{}}],[\"restorehotbackup\",{\"_index\":642,\"name\":{\"1207\":{}},\"comment\":{}}],[\"result\",{\"_index\":504,\"name\":{\"988\":{},\"1532\":{}},\"comment\":{}}],[\"retryonconflict\",{\"_index\":306,\"name\":{\"619\":{},\"634\":{},\"708\":{}},\"comment\":{}}],[\"returnnew\",{\"_index\":175,\"name\":{\"358\":{},\"368\":{},\"378\":{},\"1315\":{},\"1322\":{}},\"comment\":{}}],[\"returnold\",{\"_index\":176,\"name\":{\"359\":{},\"370\":{},\"380\":{},\"389\":{},\"431\":{},\"1321\":{},\"1327\":{}},\"comment\":{}}],[\"returntype\",{\"_index\":34,\"name\":{\"82\":{}},\"comment\":{}}],[\"rev\",{\"_index\":693,\"name\":{\"1309\":{},\"1318\":{},\"1325\":{}},\"comment\":{}}],[\"revision\",{\"_index\":241,\"name\":{\"495\":{},\"561\":{}},\"comment\":{}}],[\"route\",{\"_index\":556,\"name\":{\"1113\":{},\"1537\":{},\"1538\":{},\"1539\":{}},\"comment\":{}}],[\"rule\",{\"_index\":134,\"name\":{\"268\":{},\"300\":{}},\"comment\":{}}],[\"rules\",{\"_index\":370,\"name\":{\"723\":{},\"735\":{},\"745\":{}},\"comment\":{}}],[\"rulesexecuted\",{\"_index\":390,\"name\":{\"753\":{}},\"comment\":{}}],[\"rulesskipped\",{\"_index\":391,\"name\":{\"754\":{}},\"comment\":{}}],[\"runservicescript\",{\"_index\":634,\"name\":{\"1199\":{}},\"comment\":{}}],[\"runservicetests\",{\"_index\":635,\"name\":{\"1200\":{}},\"comment\":{}}],[\"runtime\",{\"_index\":421,\"name\":{\"815\":{}},\"comment\":{}}],[\"satellites\",{\"_index\":704,\"name\":{\"1360\":{},\"1363\":{},\"1366\":{},\"1369\":{}},\"comment\":{}}],[\"satellitesyncwait\",{\"_index\":376,\"name\":{\"730\":{}},\"comment\":{}}],[\"save\",{\"_index\":251,\"name\":{\"506\":{},\"535\":{},\"1376\":{},\"1386\":{}},\"comment\":{}}],[\"saveall\",{\"_index\":252,\"name\":{\"507\":{},\"536\":{}},\"comment\":{}}],[\"scannedfull\",{\"_index\":332,\"name\":{\"653\":{}},\"comment\":{}}],[\"scannedindex\",{\"_index\":228,\"name\":{\"471\":{},\"654\":{}},\"comment\":{}}],[\"schema\",{\"_index\":141,\"name\":{\"276\":{},\"308\":{},\"328\":{}},\"comment\":{}}],[\"schemaoptions\",{\"_index\":155,\"name\":{\"298\":{}},\"comment\":{}}],[\"schemaproperties\",{\"_index\":133,\"name\":{\"265\":{}},\"comment\":{}}],[\"scripts\",{\"_index\":683,\"name\":{\"1277\":{}},\"comment\":{}}],[\"search\",{\"_index\":545,\"name\":{\"1091\":{}},\"comment\":{}}],[\"searchaliasviewdescription\",{\"_index\":815,\"name\":{\"1627\":{}},\"comment\":{}}],[\"searchaliasviewindexoptions\",{\"_index\":807,\"name\":{\"1608\":{}},\"comment\":{}}],[\"searchaliasviewpatchindexoptions\",{\"_index\":809,\"name\":{\"1615\":{}},\"comment\":{}}],[\"searchaliasviewpatchpropertiesoptions\",{\"_index\":810,\"name\":{\"1616\":{}},\"comment\":{}}],[\"searchaliasviewproperties\",{\"_index\":819,\"name\":{\"1639\":{}},\"comment\":{}}],[\"searchaliasviewpropertiesoptions\",{\"_index\":808,\"name\":{\"1612\":{}},\"comment\":{}}],[\"searchfield\",{\"_index\":740,\"name\":{\"1452\":{},\"1460\":{},\"1478\":{},\"1518\":{}},\"comment\":{}}],[\"segmentationanalyzerdescription\",{\"_index\":70,\"name\":{\"188\":{}},\"comment\":{}}],[\"segmentsbytesfloor\",{\"_index\":792,\"name\":{\"1576\":{}},\"comment\":{}}],[\"segmentsbytesmax\",{\"_index\":793,\"name\":{\"1577\":{}},\"comment\":{}}],[\"segmentsmax\",{\"_index\":794,\"name\":{\"1578\":{}},\"comment\":{}}],[\"segmentsmin\",{\"_index\":795,\"name\":{\"1579\":{}},\"comment\":{}}],[\"server\",{\"_index\":462,\"name\":{\"884\":{},\"1073\":{}},\"comment\":{}}],[\"serviceconfiguration\",{\"_index\":483,\"name\":{\"945\":{}},\"comment\":{}}],[\"serviceinfo\",{\"_index\":481,\"name\":{\"931\":{}},\"comment\":{}}],[\"servicesummary\",{\"_index\":478,\"name\":{\"923\":{}},\"comment\":{}}],[\"servicetestdefaultreport\",{\"_index\":512,\"name\":{\"1011\":{}},\"comment\":{}}],[\"servicetestdefaulttest\",{\"_index\":511,\"name\":{\"1005\":{}},\"comment\":{}}],[\"serviceteststats\",{\"_index\":493,\"name\":{\"972\":{}},\"comment\":{}}],[\"serviceteststreamreport\",{\"_index\":502,\"name\":{\"985\":{}},\"comment\":{}}],[\"serviceteststreamtest\",{\"_index\":499,\"name\":{\"979\":{}},\"comment\":{}}],[\"servicetestsuite\",{\"_index\":505,\"name\":{\"992\":{}},\"comment\":{}}],[\"servicetestsuitereport\",{\"_index\":507,\"name\":{\"997\":{}},\"comment\":{}}],[\"servicetestsuitetest\",{\"_index\":503,\"name\":{\"986\":{}},\"comment\":{}}],[\"servicetesttapreport\",{\"_index\":510,\"name\":{\"1004\":{}},\"comment\":{}}],[\"servicetestxunitreport\",{\"_index\":509,\"name\":{\"1003\":{}},\"comment\":{}}],[\"servicetestxunittest\",{\"_index\":508,\"name\":{\"1002\":{}},\"comment\":{}}],[\"setloglevel\",{\"_index\":647,\"name\":{\"1212\":{}},\"comment\":{}}],[\"setresponsequeuetimesamples\",{\"_index\":563,\"name\":{\"1120\":{}},\"comment\":{}}],[\"setservicedevelopmentmode\",{\"_index\":632,\"name\":{\"1197\":{}},\"comment\":{}}],[\"setup\",{\"_index\":472,\"name\":{\"900\":{},\"907\":{},\"916\":{}},\"comment\":{}}],[\"setuseraccesslevel\",{\"_index\":601,\"name\":{\"1164\":{}},\"comment\":{}}],[\"shard\",{\"_index\":448,\"name\":{\"853\":{}},\"comment\":{}}],[\"sharding\",{\"_index\":459,\"name\":{\"870\":{},\"879\":{}},\"comment\":{}}],[\"shardingstrategy\",{\"_index\":111,\"name\":{\"234\":{},\"281\":{},\"335\":{}},\"comment\":{}}],[\"shardkeys\",{\"_index\":144,\"name\":{\"279\":{},\"332\":{}},\"comment\":{}}],[\"shards\",{\"_index\":431,\"name\":{\"830\":{}},\"comment\":{}}],[\"shutdown\",{\"_index\":560,\"name\":{\"1117\":{}},\"comment\":{}}],[\"silent\",{\"_index\":174,\"name\":{\"357\":{},\"367\":{},\"377\":{},\"390\":{},\"432\":{}},\"comment\":{}}],[\"simplequeryalloptions\",{\"_index\":196,\"name\":{\"411\":{}},\"comment\":{}}],[\"simplequerybyexampleoptions\",{\"_index\":192,\"name\":{\"405\":{}},\"comment\":{}}],[\"simplequeryfulltextoptions\",{\"_index\":202,\"name\":{\"434\":{}},\"comment\":{}}],[\"simplequerylisttype\",{\"_index\":112,\"name\":{\"235\":{}},\"comment\":{}}],[\"simplequeryremovebyexampleoptions\",{\"_index\":199,\"name\":{\"424\":{}},\"comment\":{}}],[\"simplequeryremovebyexampleresult\",{\"_index\":230,\"name\":{\"473\":{}},\"comment\":{}}],[\"simplequeryremovebykeysoptions\",{\"_index\":201,\"name\":{\"429\":{}},\"comment\":{}}],[\"simplequeryremovebykeysresult\",{\"_index\":234,\"name\":{\"482\":{}},\"comment\":{}}],[\"simplequeryreplacebyexampleoptions\",{\"_index\":200,\"name\":{\"428\":{}},\"comment\":{}}],[\"simplequeryreplacebyexampleresult\",{\"_index\":231,\"name\":{\"476\":{}},\"comment\":{}}],[\"simplequeryupdatebyexampleoptions\",{\"_index\":198,\"name\":{\"418\":{}},\"comment\":{}}],[\"simplequeryupdatebyexampleresult\",{\"_index\":233,\"name\":{\"479\":{}},\"comment\":{}}],[\"singleexplainresult\",{\"_index\":393,\"name\":{\"758\":{}},\"comment\":{}}],[\"singleservicedependency\",{\"_index\":490,\"name\":{\"954\":{}},\"comment\":{}}],[\"size\",{\"_index\":544,\"name\":{\"1089\":{}},\"comment\":{}}],[\"sizeinbytes\",{\"_index\":529,\"name\":{\"1067\":{}},\"comment\":{}}],[\"sizeused\",{\"_index\":432,\"name\":{\"832\":{}},\"comment\":{}}],[\"skip\",{\"_index\":193,\"name\":{\"407\":{},\"413\":{},\"438\":{}},\"comment\":{}}],[\"skipinaccessiblecollections\",{\"_index\":375,\"name\":{\"729\":{}},\"comment\":{}}],[\"slowquerythreshold\",{\"_index\":414,\"name\":{\"796\":{},\"804\":{}},\"comment\":{}}],[\"smartgraphattribute\",{\"_index\":148,\"name\":{\"284\":{},\"338\":{},\"1348\":{},\"1358\":{}},\"comment\":{}}],[\"smartjoinattribute\",{\"_index\":147,\"name\":{\"283\":{},\"337\":{}},\"comment\":{}}],[\"sort\",{\"_index\":207,\"name\":{\"443\":{},\"1092\":{}},\"comment\":{}}],[\"sparse\",{\"_index\":727,\"name\":{\"1418\":{},\"1505\":{}},\"comment\":{}}],[\"start\",{\"_index\":543,\"name\":{\"1088\":{}},\"comment\":{}}],[\"started\",{\"_index\":420,\"name\":{\"814\":{}},\"comment\":{}}],[\"state\",{\"_index\":382,\"name\":{\"741\":{},\"817\":{}},\"comment\":{}}],[\"stats\",{\"_index\":227,\"name\":{\"469\":{},\"645\":{},\"763\":{},\"769\":{},\"999\":{},\"1013\":{}},\"comment\":{}}],[\"status\",{\"_index\":127,\"name\":{\"256\":{},\"1558\":{}},\"comment\":{}}],[\"statusstring\",{\"_index\":138,\"name\":{\"273\":{}},\"comment\":{}}],[\"stemanalyzerdescription\",{\"_index\":66,\"name\":{\"184\":{}},\"comment\":{}}],[\"stemming\",{\"_index\":24,\"name\":{\"57\":{}},\"comment\":{}}],[\"step\",{\"_index\":788,\"name\":{\"1565\":{}},\"comment\":{}}],[\"stopwords\",{\"_index\":22,\"name\":{\"54\":{},\"96\":{}},\"comment\":{}}],[\"stopwordsanalyzerdescription\",{\"_index\":73,\"name\":{\"191\":{}},\"comment\":{}}],[\"stopwordspath\",{\"_index\":23,\"name\":{\"55\":{}},\"comment\":{}}],[\"storedvalues\",{\"_index\":731,\"name\":{\"1423\":{},\"1479\":{}},\"comment\":{}}],[\"storevalues\",{\"_index\":801,\"name\":{\"1592\":{},\"1636\":{}},\"comment\":{}}],[\"strategy\",{\"_index\":212,\"name\":{\"448\":{}},\"comment\":{}}],[\"stream\",{\"_index\":197,\"name\":{\"417\":{},\"717\":{},\"818\":{}},\"comment\":{}}],[\"subnodes\",{\"_index\":398,\"name\":{\"773\":{}},\"comment\":{}}],[\"suites\",{\"_index\":506,\"name\":{\"995\":{},\"1000\":{}},\"comment\":{}}],[\"swaggerjson\",{\"_index\":513,\"name\":{\"1018\":{}},\"comment\":{}}],[\"syncbyrevision\",{\"_index\":151,\"name\":{\"287\":{}},\"comment\":{}}],[\"syscall\",{\"_index\":671,\"name\":{\"1246\":{}},\"comment\":{}}],[\"systemerror\",{\"_index\":669,\"name\":{\"1243\":{}},\"comment\":{}}],[\"targetsize\",{\"_index\":433,\"name\":{\"833\":{}},\"comment\":{}}],[\"targetweight\",{\"_index\":425,\"name\":{\"824\":{}},\"comment\":{}}],[\"teardown\",{\"_index\":474,\"name\":{\"908\":{},\"917\":{},\"921\":{}},\"comment\":{}}],[\"tests\",{\"_index\":494,\"name\":{\"974\":{},\"996\":{},\"1001\":{},\"1014\":{},\"1278\":{}},\"comment\":{}}],[\"text\",{\"_index\":553,\"name\":{\"1107\":{}},\"comment\":{}}],[\"textanalyzerdescription\",{\"_index\":69,\"name\":{\"187\":{}},\"comment\":{}}],[\"threshold\",{\"_index\":45,\"name\":{\"121\":{},\"1572\":{}},\"comment\":{}}],[\"thumbnail\",{\"_index\":687,\"name\":{\"1285\":{}},\"comment\":{}}],[\"tierconsolidationpolicy\",{\"_index\":791,\"name\":{\"1573\":{}},\"comment\":{}}],[\"time\",{\"_index\":555,\"name\":{\"1112\":{}},\"comment\":{}}],[\"timeout\",{\"_index\":293,\"name\":{\"600\":{},\"621\":{},\"707\":{},\"1062\":{}},\"comment\":{}}],[\"timestamp\",{\"_index\":552,\"name\":{\"1106\":{}},\"comment\":{}}],[\"title\",{\"_index\":486,\"name\":{\"950\":{},\"958\":{},\"967\":{},\"981\":{},\"989\":{},\"994\":{},\"1007\":{},\"1022\":{}},\"comment\":{}}],[\"to\",{\"_index\":447,\"name\":{\"852\":{},\"1332\":{},\"1337\":{}},\"comment\":{}}],[\"tojson\",{\"_index\":674,\"name\":{\"1252\":{},\"1262\":{}},\"comment\":{}}],[\"token\",{\"_index\":290,\"name\":{\"596\":{}},\"comment\":{}}],[\"top_k\",{\"_index\":44,\"name\":{\"120\":{},\"129\":{}},\"comment\":{}}],[\"topic\",{\"_index\":547,\"name\":{\"1096\":{},\"1104\":{}},\"comment\":{}}],[\"toprefix\",{\"_index\":187,\"name\":{\"396\":{}},\"comment\":{}}],[\"totalamount\",{\"_index\":550,\"name\":{\"1102\":{}},\"comment\":{}}],[\"totalshards\",{\"_index\":430,\"name\":{\"829\":{},\"836\":{}},\"comment\":{}}],[\"totalshardsfromsystemcollections\",{\"_index\":435,\"name\":{\"837\":{}},\"comment\":{}}],[\"totalused\",{\"_index\":434,\"name\":{\"835\":{}},\"comment\":{}}],[\"totalweight\",{\"_index\":428,\"name\":{\"827\":{}},\"comment\":{}}],[\"trackbindvars\",{\"_index\":415,\"name\":{\"797\":{},\"805\":{}},\"comment\":{}}],[\"tracklistpositions\",{\"_index\":744,\"name\":{\"1461\":{},\"1489\":{},\"1591\":{},\"1635\":{}},\"comment\":{}}],[\"trackslowqueries\",{\"_index\":416,\"name\":{\"798\":{},\"806\":{}},\"comment\":{}}],[\"transaction\",{\"_index\":605,\"name\":{\"1168\":{},\"1547\":{},\"1559\":{}},\"comment\":{}}],[\"transactionabortoptions\",{\"_index\":784,\"name\":{\"1552\":{}},\"comment\":{}}],[\"transactioncollections\",{\"_index\":355,\"name\":{\"691\":{}},\"comment\":{}}],[\"transactioncommitoptions\",{\"_index\":783,\"name\":{\"1549\":{}},\"comment\":{}}],[\"transactiondetails\",{\"_index\":380,\"name\":{\"738\":{}},\"comment\":{}}],[\"transactionoptions\",{\"_index\":359,\"name\":{\"696\":{}},\"comment\":{}}],[\"transactions\",{\"_index\":609,\"name\":{\"1172\":{}},\"comment\":{}}],[\"transactionstatus\",{\"_index\":785,\"name\":{\"1555\":{}},\"comment\":{}}],[\"traversal\",{\"_index\":278,\"name\":{\"553\":{},\"1407\":{}},\"comment\":{}}],[\"traversaloptions\",{\"_index\":204,\"name\":{\"439\":{}},\"comment\":{}}],[\"truncate\",{\"_index\":245,\"name\":{\"499\":{},\"565\":{}},\"comment\":{}}],[\"ttl\",{\"_index\":195,\"name\":{\"410\":{},\"416\":{},\"714\":{}},\"comment\":{}}],[\"ttlindex\",{\"_index\":766,\"name\":{\"1511\":{}},\"comment\":{}}],[\"type\",{\"_index\":6,\"name\":{\"6\":{},\"11\":{},\"16\":{},\"23\":{},\"30\":{},\"39\":{},\"48\":{},\"65\":{},\"73\":{},\"85\":{},\"92\":{},\"100\":{},\"107\":{},\"115\":{},\"124\":{},\"132\":{},\"140\":{},\"144\":{},\"152\":{},\"165\":{},\"169\":{},\"215\":{},\"257\":{},\"260\":{},\"267\":{},\"320\":{},\"772\":{},\"947\":{},\"1290\":{},\"1304\":{},\"1414\":{},\"1427\":{},\"1434\":{},\"1441\":{},\"1475\":{},\"1571\":{},\"1575\":{}},\"comment\":{}}],[\"uninstallservice\",{\"_index\":624,\"name\":{\"1189\":{}},\"comment\":{}}],[\"uninstallserviceoptions\",{\"_index\":477,\"name\":{\"919\":{}},\"comment\":{}}],[\"unique\",{\"_index\":726,\"name\":{\"1417\":{},\"1445\":{},\"1506\":{}},\"comment\":{}}],[\"uniqueness\",{\"_index\":214,\"name\":{\"450\":{}},\"comment\":{}}],[\"unloaded\",{\"_index\":105,\"name\":{\"228\":{}},\"comment\":{}}],[\"unloading\",{\"_index\":107,\"name\":{\"230\":{}},\"comment\":{}}],[\"update\",{\"_index\":255,\"name\":{\"510\":{},\"539\":{},\"1378\":{},\"1388\":{}},\"comment\":{}}],[\"updateall\",{\"_index\":256,\"name\":{\"511\":{},\"540\":{}},\"comment\":{}}],[\"updatebyexample\",{\"_index\":267,\"name\":{\"522\":{},\"573\":{}},\"comment\":{}}],[\"updated\",{\"_index\":224,\"name\":{\"463\":{},\"481\":{}},\"comment\":{}}],[\"updateproperties\",{\"_index\":820,\"name\":{\"1647\":{}},\"comment\":{}}],[\"updateserviceconfiguration\",{\"_index\":628,\"name\":{\"1193\":{}},\"comment\":{}}],[\"updateservicedependencies\",{\"_index\":631,\"name\":{\"1196\":{}},\"comment\":{}}],[\"updateuser\",{\"_index\":597,\"name\":{\"1160\":{}},\"comment\":{}}],[\"upgradeservice\",{\"_index\":623,\"name\":{\"1188\":{}},\"comment\":{}}],[\"upgradeserviceoptions\",{\"_index\":476,\"name\":{\"910\":{}},\"comment\":{}}],[\"upto\",{\"_index\":542,\"name\":{\"1086\":{}},\"comment\":{}}],[\"url\",{\"_index\":313,\"name\":{\"629\":{}},\"comment\":{}}],[\"usebasicauth\",{\"_index\":564,\"name\":{\"1121\":{}},\"comment\":{}}],[\"usebearerauth\",{\"_index\":565,\"name\":{\"1122\":{}},\"comment\":{}}],[\"user\",{\"_index\":419,\"name\":{\"811\":{},\"1031\":{},\"1036\":{}},\"comment\":{}}],[\"useraccessleveloptions\",{\"_index\":519,\"name\":{\"1045\":{}},\"comment\":{}}],[\"userdatabases\",{\"_index\":576,\"name\":{\"1136\":{}},\"comment\":{}}],[\"username\",{\"_index\":287,\"name\":{\"592\":{},\"863\":{}},\"comment\":{}}],[\"useroptions\",{\"_index\":518,\"name\":{\"1040\":{}},\"comment\":{}}],[\"users\",{\"_index\":458,\"name\":{\"869\":{}},\"comment\":{}}],[\"usexdr\",{\"_index\":296,\"name\":{\"604\":{}},\"comment\":{}}],[\"validationlevel\",{\"_index\":113,\"name\":{\"236\":{}},\"comment\":{}}],[\"variables\",{\"_index\":385,\"name\":{\"747\":{}},\"comment\":{}}],[\"version\",{\"_index\":464,\"name\":{\"886\":{},\"927\":{},\"936\":{},\"960\":{},\"969\":{},\"1024\":{},\"1111\":{},\"1286\":{},\"1296\":{}},\"comment\":{}}],[\"versionattribute\",{\"_index\":180,\"name\":{\"363\":{},\"373\":{},\"385\":{}},\"comment\":{}}],[\"versioninfo\",{\"_index\":461,\"name\":{\"882\":{}},\"comment\":{}}],[\"vertex\",{\"_index\":710,\"name\":{\"1375\":{}},\"comment\":{}}],[\"vertexcollection\",{\"_index\":713,\"name\":{\"1396\":{}},\"comment\":{}}],[\"vertexcollections\",{\"_index\":715,\"name\":{\"1398\":{}},\"comment\":{}}],[\"vertexexists\",{\"_index\":709,\"name\":{\"1374\":{}},\"comment\":{}}],[\"vertices\",{\"_index\":215,\"name\":{\"452\":{}},\"comment\":{}}],[\"view\",{\"_index\":586,\"name\":{\"1148\":{},\"1566\":{},\"1640\":{}},\"comment\":{}}],[\"viewdescription\",{\"_index\":813,\"name\":{\"1625\":{}},\"comment\":{}}],[\"viewpatchpropertiesoptions\",{\"_index\":799,\"name\":{\"1584\":{}},\"comment\":{}}],[\"viewproperties\",{\"_index\":816,\"name\":{\"1628\":{}},\"comment\":{}}],[\"viewpropertiesoptions\",{\"_index\":798,\"name\":{\"1583\":{}},\"comment\":{}}],[\"views\",{\"_index\":590,\"name\":{\"1152\":{}},\"comment\":{}}],[\"visitor\",{\"_index\":208,\"name\":{\"444\":{}},\"comment\":{}}],[\"waitforpropagation\",{\"_index\":561,\"name\":{\"1118\":{}},\"comment\":{}}],[\"waitforsync\",{\"_index\":139,\"name\":{\"274\":{},\"305\":{},\"326\":{},\"356\":{},\"366\":{},\"376\":{},\"388\":{},\"398\":{},\"421\":{},\"426\":{},\"433\":{},\"700\":{},\"1314\":{},\"1319\":{},\"1326\":{},\"1352\":{}},\"comment\":{}}],[\"waitforsyncreplication\",{\"_index\":164,\"name\":{\"329\":{}},\"comment\":{}}],[\"warning\",{\"_index\":536,\"name\":{\"1078\":{}},\"comment\":{}}],[\"warnings\",{\"_index\":322,\"name\":{\"642\":{},\"762\":{},\"768\":{}},\"comment\":{}}],[\"weightused\",{\"_index\":424,\"name\":{\"823\":{}},\"comment\":{}}],[\"wildcardanalyzerdescription\",{\"_index\":78,\"name\":{\"196\":{}},\"comment\":{}}],[\"withcredentials\",{\"_index\":297,\"name\":{\"605\":{}},\"comment\":{}}],[\"withdata\",{\"_index\":159,\"name\":{\"314\":{}},\"comment\":{}}],[\"withrevisions\",{\"_index\":158,\"name\":{\"313\":{}},\"comment\":{}}],[\"withtransaction\",{\"_index\":607,\"name\":{\"1170\":{}},\"comment\":{}}],[\"write\",{\"_index\":357,\"name\":{\"694\":{}},\"comment\":{}}],[\"writebufferactive\",{\"_index\":758,\"name\":{\"1496\":{}},\"comment\":{}}],[\"writebufferidle\",{\"_index\":757,\"name\":{\"1495\":{}},\"comment\":{}}],[\"writebuffersizemax\",{\"_index\":759,\"name\":{\"1497\":{}},\"comment\":{}}],[\"writeconcern\",{\"_index\":142,\"name\":{\"277\":{},\"307\":{},\"334\":{},\"872\":{},\"881\":{},\"1345\":{},\"1356\":{}},\"comment\":{}}],[\"writeoperation\",{\"_index\":114,\"name\":{\"237\":{}},\"comment\":{}}],[\"writesexecuted\",{\"_index\":330,\"name\":{\"651\":{}},\"comment\":{}}],[\"writesignored\",{\"_index\":331,\"name\":{\"652\":{}},\"comment\":{}}],[\"xhr\",{\"_index\":295,\"name\":{\"603\":{}},\"comment\":{}}],[\"xhroptions\",{\"_index\":291,\"name\":{\"597\":{}},\"comment\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file +window.searchData = JSON.parse("{\"kinds\":{\"2\":\"Module\",\"8\":\"Enumeration\",\"16\":\"Enumeration Member\",\"64\":\"Function\",\"128\":\"Class\",\"256\":\"Interface\",\"512\":\"Constructor\",\"1024\":\"Property\",\"2048\":\"Method\",\"65536\":\"Type literal\",\"262144\":\"Accessor\",\"4194304\":\"Type alias\",\"8388608\":\"Reference\"},\"rows\":[{\"kind\":2,\"name\":\"analyzer\",\"url\":\"modules/analyzer.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"isArangoAnalyzer\",\"url\":\"functions/analyzer.isArangoAnalyzer.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"AnalyzerFeature\",\"url\":\"types/analyzer.AnalyzerFeature.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"CreateAnalyzerOptions\",\"url\":\"types/analyzer.CreateAnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"CreateIdentityAnalyzerOptions\",\"url\":\"types/analyzer.CreateIdentityAnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateIdentityAnalyzerOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.CreateIdentityAnalyzerOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateIdentityAnalyzerOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateIdentityAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.CreateIdentityAnalyzerOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateIdentityAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/analyzer.CreateIdentityAnalyzerOptions.html#__type.properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateIdentityAnalyzerOptions.__type\"},{\"kind\":4194304,\"name\":\"CreateDelimiterAnalyzerOptions\",\"url\":\"types/analyzer.CreateDelimiterAnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateDelimiterAnalyzerOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.CreateDelimiterAnalyzerOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateDelimiterAnalyzerOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateDelimiterAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.CreateDelimiterAnalyzerOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateDelimiterAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/analyzer.CreateDelimiterAnalyzerOptions.html#__type.properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateDelimiterAnalyzerOptions.__type\"},{\"kind\":4194304,\"name\":\"CreateStemAnalyzerOptions\",\"url\":\"types/analyzer.CreateStemAnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateStemAnalyzerOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.CreateStemAnalyzerOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateStemAnalyzerOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateStemAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.CreateStemAnalyzerOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateStemAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/analyzer.CreateStemAnalyzerOptions.html#__type.properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateStemAnalyzerOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateStemAnalyzerOptions.html#__type.properties.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateStemAnalyzerOptions.__type.properties\"},{\"kind\":1024,\"name\":\"locale\",\"url\":\"types/analyzer.CreateStemAnalyzerOptions.html#__type.properties.__type-1.locale\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateStemAnalyzerOptions.__type.properties.__type\"},{\"kind\":4194304,\"name\":\"CreateNormAnalyzerOptions\",\"url\":\"types/analyzer.CreateNormAnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateNormAnalyzerOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.CreateNormAnalyzerOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateNormAnalyzerOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateNormAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.CreateNormAnalyzerOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateNormAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/analyzer.CreateNormAnalyzerOptions.html#__type.properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateNormAnalyzerOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateNormAnalyzerOptions.html#__type.properties.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateNormAnalyzerOptions.__type.properties\"},{\"kind\":1024,\"name\":\"locale\",\"url\":\"types/analyzer.CreateNormAnalyzerOptions.html#__type.properties.__type-1.locale\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateNormAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"case\",\"url\":\"types/analyzer.CreateNormAnalyzerOptions.html#__type.properties.__type-1.case\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateNormAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"accent\",\"url\":\"types/analyzer.CreateNormAnalyzerOptions.html#__type.properties.__type-1.accent\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateNormAnalyzerOptions.__type.properties.__type\"},{\"kind\":4194304,\"name\":\"CreateNgramAnalyzerOptions\",\"url\":\"types/analyzer.CreateNgramAnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateNgramAnalyzerOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.CreateNgramAnalyzerOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateNgramAnalyzerOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateNgramAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.CreateNgramAnalyzerOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateNgramAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/analyzer.CreateNgramAnalyzerOptions.html#__type.properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateNgramAnalyzerOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateNgramAnalyzerOptions.html#__type.properties.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateNgramAnalyzerOptions.__type.properties\"},{\"kind\":1024,\"name\":\"max\",\"url\":\"types/analyzer.CreateNgramAnalyzerOptions.html#__type.properties.__type-1.max\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateNgramAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"min\",\"url\":\"types/analyzer.CreateNgramAnalyzerOptions.html#__type.properties.__type-1.min\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateNgramAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"preserveOriginal\",\"url\":\"types/analyzer.CreateNgramAnalyzerOptions.html#__type.properties.__type-1.preserveOriginal\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateNgramAnalyzerOptions.__type.properties.__type\"},{\"kind\":4194304,\"name\":\"CreateTextAnalyzerOptions\",\"url\":\"types/analyzer.CreateTextAnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateTextAnalyzerOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.CreateTextAnalyzerOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateTextAnalyzerOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateTextAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.CreateTextAnalyzerOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateTextAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/analyzer.CreateTextAnalyzerOptions.html#__type.properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateTextAnalyzerOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateTextAnalyzerOptions.html#__type.properties.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateTextAnalyzerOptions.__type.properties\"},{\"kind\":1024,\"name\":\"locale\",\"url\":\"types/analyzer.CreateTextAnalyzerOptions.html#__type.properties.__type-1.locale\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateTextAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"case\",\"url\":\"types/analyzer.CreateTextAnalyzerOptions.html#__type.properties.__type-1.case\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateTextAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"stopwords\",\"url\":\"types/analyzer.CreateTextAnalyzerOptions.html#__type.properties.__type-1.stopwords\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateTextAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"stopwordsPath\",\"url\":\"types/analyzer.CreateTextAnalyzerOptions.html#__type.properties.__type-1.stopwordsPath\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateTextAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"accent\",\"url\":\"types/analyzer.CreateTextAnalyzerOptions.html#__type.properties.__type-1.accent\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateTextAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"stemming\",\"url\":\"types/analyzer.CreateTextAnalyzerOptions.html#__type.properties.__type-1.stemming\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateTextAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"edgeNgram\",\"url\":\"types/analyzer.CreateTextAnalyzerOptions.html#__type.properties.__type-1.edgeNgram\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateTextAnalyzerOptions.__type.properties.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateTextAnalyzerOptions.html#__type.properties.__type-1.edgeNgram.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateTextAnalyzerOptions.__type.properties.__type.edgeNgram\"},{\"kind\":1024,\"name\":\"min\",\"url\":\"types/analyzer.CreateTextAnalyzerOptions.html#__type.properties.__type-1.edgeNgram.__type-2.min\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateTextAnalyzerOptions.__type.properties.__type.edgeNgram.__type\"},{\"kind\":1024,\"name\":\"max\",\"url\":\"types/analyzer.CreateTextAnalyzerOptions.html#__type.properties.__type-1.edgeNgram.__type-2.max\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateTextAnalyzerOptions.__type.properties.__type.edgeNgram.__type\"},{\"kind\":1024,\"name\":\"preserveOriginal\",\"url\":\"types/analyzer.CreateTextAnalyzerOptions.html#__type.properties.__type-1.edgeNgram.__type-2.preserveOriginal\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateTextAnalyzerOptions.__type.properties.__type.edgeNgram.__type\"},{\"kind\":4194304,\"name\":\"CreateSegmentationAnalyzerOptions\",\"url\":\"types/analyzer.CreateSegmentationAnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateSegmentationAnalyzerOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.CreateSegmentationAnalyzerOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateSegmentationAnalyzerOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateSegmentationAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.CreateSegmentationAnalyzerOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateSegmentationAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/analyzer.CreateSegmentationAnalyzerOptions.html#__type.properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateSegmentationAnalyzerOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateSegmentationAnalyzerOptions.html#__type.properties.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateSegmentationAnalyzerOptions.__type.properties\"},{\"kind\":1024,\"name\":\"break\",\"url\":\"types/analyzer.CreateSegmentationAnalyzerOptions.html#__type.properties.__type-1.break\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateSegmentationAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"case\",\"url\":\"types/analyzer.CreateSegmentationAnalyzerOptions.html#__type.properties.__type-1.case\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateSegmentationAnalyzerOptions.__type.properties.__type\"},{\"kind\":4194304,\"name\":\"CreateAqlAnalyzerOptions\",\"url\":\"types/analyzer.CreateAqlAnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateAqlAnalyzerOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.CreateAqlAnalyzerOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateAqlAnalyzerOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateAqlAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.CreateAqlAnalyzerOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateAqlAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/analyzer.CreateAqlAnalyzerOptions.html#__type.properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateAqlAnalyzerOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateAqlAnalyzerOptions.html#__type.properties.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateAqlAnalyzerOptions.__type.properties\"},{\"kind\":1024,\"name\":\"queryString\",\"url\":\"types/analyzer.CreateAqlAnalyzerOptions.html#__type.properties.__type-1.queryString\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateAqlAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"collapsePositions\",\"url\":\"types/analyzer.CreateAqlAnalyzerOptions.html#__type.properties.__type-1.collapsePositions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateAqlAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"keepNull\",\"url\":\"types/analyzer.CreateAqlAnalyzerOptions.html#__type.properties.__type-1.keepNull\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateAqlAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"batchSize\",\"url\":\"types/analyzer.CreateAqlAnalyzerOptions.html#__type.properties.__type-1.batchSize\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateAqlAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"memoryLimit\",\"url\":\"types/analyzer.CreateAqlAnalyzerOptions.html#__type.properties.__type-1.memoryLimit\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateAqlAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"returnType\",\"url\":\"types/analyzer.CreateAqlAnalyzerOptions.html#__type.properties.__type-1.returnType\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateAqlAnalyzerOptions.__type.properties.__type\"},{\"kind\":4194304,\"name\":\"CreatePipelineAnalyzerOptions\",\"url\":\"types/analyzer.CreatePipelineAnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreatePipelineAnalyzerOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.CreatePipelineAnalyzerOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreatePipelineAnalyzerOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreatePipelineAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.CreatePipelineAnalyzerOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreatePipelineAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/analyzer.CreatePipelineAnalyzerOptions.html#__type.properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreatePipelineAnalyzerOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreatePipelineAnalyzerOptions.html#__type.properties.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreatePipelineAnalyzerOptions.__type.properties\"},{\"kind\":1024,\"name\":\"pipeline\",\"url\":\"types/analyzer.CreatePipelineAnalyzerOptions.html#__type.properties.__type-1.pipeline\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreatePipelineAnalyzerOptions.__type.properties.__type\"},{\"kind\":4194304,\"name\":\"CreateStopwordsAnalyzerOptions\",\"url\":\"types/analyzer.CreateStopwordsAnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateStopwordsAnalyzerOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.CreateStopwordsAnalyzerOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateStopwordsAnalyzerOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateStopwordsAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.CreateStopwordsAnalyzerOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateStopwordsAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/analyzer.CreateStopwordsAnalyzerOptions.html#__type.properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateStopwordsAnalyzerOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateStopwordsAnalyzerOptions.html#__type.properties.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateStopwordsAnalyzerOptions.__type.properties\"},{\"kind\":1024,\"name\":\"stopwords\",\"url\":\"types/analyzer.CreateStopwordsAnalyzerOptions.html#__type.properties.__type-1.stopwords\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateStopwordsAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"hex\",\"url\":\"types/analyzer.CreateStopwordsAnalyzerOptions.html#__type.properties.__type-1.hex\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateStopwordsAnalyzerOptions.__type.properties.__type\"},{\"kind\":4194304,\"name\":\"CreateCollationAnalyzerOptions\",\"url\":\"types/analyzer.CreateCollationAnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateCollationAnalyzerOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.CreateCollationAnalyzerOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateCollationAnalyzerOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateCollationAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.CreateCollationAnalyzerOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateCollationAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/analyzer.CreateCollationAnalyzerOptions.html#__type.properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateCollationAnalyzerOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateCollationAnalyzerOptions.html#__type.properties.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateCollationAnalyzerOptions.__type.properties\"},{\"kind\":1024,\"name\":\"locale\",\"url\":\"types/analyzer.CreateCollationAnalyzerOptions.html#__type.properties.__type-1.locale\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateCollationAnalyzerOptions.__type.properties.__type\"},{\"kind\":4194304,\"name\":\"CreateMinHashAnalyzerOptions\",\"url\":\"types/analyzer.CreateMinHashAnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateMinHashAnalyzerOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.CreateMinHashAnalyzerOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateMinHashAnalyzerOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateMinHashAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.CreateMinHashAnalyzerOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateMinHashAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/analyzer.CreateMinHashAnalyzerOptions.html#__type.properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateMinHashAnalyzerOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateMinHashAnalyzerOptions.html#__type.properties.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateMinHashAnalyzerOptions.__type.properties\"},{\"kind\":1024,\"name\":\"analyzer\",\"url\":\"types/analyzer.CreateMinHashAnalyzerOptions.html#__type.properties.__type-1.analyzer\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateMinHashAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"numHashes\",\"url\":\"types/analyzer.CreateMinHashAnalyzerOptions.html#__type.properties.__type-1.numHashes\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateMinHashAnalyzerOptions.__type.properties.__type\"},{\"kind\":4194304,\"name\":\"CreateClassificationAnalyzerOptions\",\"url\":\"types/analyzer.CreateClassificationAnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateClassificationAnalyzerOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.CreateClassificationAnalyzerOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateClassificationAnalyzerOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateClassificationAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.CreateClassificationAnalyzerOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateClassificationAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/analyzer.CreateClassificationAnalyzerOptions.html#__type.properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateClassificationAnalyzerOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateClassificationAnalyzerOptions.html#__type.properties.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateClassificationAnalyzerOptions.__type.properties\"},{\"kind\":1024,\"name\":\"model_location\",\"url\":\"types/analyzer.CreateClassificationAnalyzerOptions.html#__type.properties.__type-1.model_location\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateClassificationAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"top_k\",\"url\":\"types/analyzer.CreateClassificationAnalyzerOptions.html#__type.properties.__type-1.top_k\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateClassificationAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"threshold\",\"url\":\"types/analyzer.CreateClassificationAnalyzerOptions.html#__type.properties.__type-1.threshold\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateClassificationAnalyzerOptions.__type.properties.__type\"},{\"kind\":4194304,\"name\":\"CreateNearestNeighborsAnalyzerOptions\",\"url\":\"types/analyzer.CreateNearestNeighborsAnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateNearestNeighborsAnalyzerOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.CreateNearestNeighborsAnalyzerOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateNearestNeighborsAnalyzerOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateNearestNeighborsAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.CreateNearestNeighborsAnalyzerOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateNearestNeighborsAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/analyzer.CreateNearestNeighborsAnalyzerOptions.html#__type.properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateNearestNeighborsAnalyzerOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateNearestNeighborsAnalyzerOptions.html#__type.properties.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateNearestNeighborsAnalyzerOptions.__type.properties\"},{\"kind\":1024,\"name\":\"model_location\",\"url\":\"types/analyzer.CreateNearestNeighborsAnalyzerOptions.html#__type.properties.__type-1.model_location\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateNearestNeighborsAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"top_k\",\"url\":\"types/analyzer.CreateNearestNeighborsAnalyzerOptions.html#__type.properties.__type-1.top_k\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateNearestNeighborsAnalyzerOptions.__type.properties.__type\"},{\"kind\":4194304,\"name\":\"CreateGeoJsonAnalyzerOptions\",\"url\":\"types/analyzer.CreateGeoJsonAnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateGeoJsonAnalyzerOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.CreateGeoJsonAnalyzerOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateGeoJsonAnalyzerOptions.html#__type.type-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoJsonAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.CreateGeoJsonAnalyzerOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoJsonAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/analyzer.CreateGeoJsonAnalyzerOptions.html#__type.properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoJsonAnalyzerOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateGeoJsonAnalyzerOptions.html#__type.properties.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateGeoJsonAnalyzerOptions.__type.properties\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateGeoJsonAnalyzerOptions.html#__type.properties.__type-1.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoJsonAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"types/analyzer.CreateGeoJsonAnalyzerOptions.html#__type.properties.__type-1.options\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoJsonAnalyzerOptions.__type.properties.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateGeoJsonAnalyzerOptions.html#__type.properties.__type-1.options.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateGeoJsonAnalyzerOptions.__type.properties.__type.options\"},{\"kind\":1024,\"name\":\"maxCells\",\"url\":\"types/analyzer.CreateGeoJsonAnalyzerOptions.html#__type.properties.__type-1.options.__type-2.maxCells\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoJsonAnalyzerOptions.__type.properties.__type.options.__type\"},{\"kind\":1024,\"name\":\"minLevel\",\"url\":\"types/analyzer.CreateGeoJsonAnalyzerOptions.html#__type.properties.__type-1.options.__type-2.minLevel\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoJsonAnalyzerOptions.__type.properties.__type.options.__type\"},{\"kind\":1024,\"name\":\"maxLevel\",\"url\":\"types/analyzer.CreateGeoJsonAnalyzerOptions.html#__type.properties.__type-1.options.__type-2.maxLevel\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoJsonAnalyzerOptions.__type.properties.__type.options.__type\"},{\"kind\":4194304,\"name\":\"CreateGeoPointAnalyzerOptions\",\"url\":\"types/analyzer.CreateGeoPointAnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateGeoPointAnalyzerOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.CreateGeoPointAnalyzerOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateGeoPointAnalyzerOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoPointAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.CreateGeoPointAnalyzerOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoPointAnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/analyzer.CreateGeoPointAnalyzerOptions.html#__type.properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoPointAnalyzerOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateGeoPointAnalyzerOptions.html#__type.properties.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateGeoPointAnalyzerOptions.__type.properties\"},{\"kind\":1024,\"name\":\"latitude\",\"url\":\"types/analyzer.CreateGeoPointAnalyzerOptions.html#__type.properties.__type-1.latitude\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoPointAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"longitude\",\"url\":\"types/analyzer.CreateGeoPointAnalyzerOptions.html#__type.properties.__type-1.longitude\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoPointAnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"types/analyzer.CreateGeoPointAnalyzerOptions.html#__type.properties.__type-1.options\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoPointAnalyzerOptions.__type.properties.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateGeoPointAnalyzerOptions.html#__type.properties.__type-1.options.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateGeoPointAnalyzerOptions.__type.properties.__type.options\"},{\"kind\":1024,\"name\":\"minCells\",\"url\":\"types/analyzer.CreateGeoPointAnalyzerOptions.html#__type.properties.__type-1.options.__type-2.minCells\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoPointAnalyzerOptions.__type.properties.__type.options.__type\"},{\"kind\":1024,\"name\":\"minLevel\",\"url\":\"types/analyzer.CreateGeoPointAnalyzerOptions.html#__type.properties.__type-1.options.__type-2.minLevel\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoPointAnalyzerOptions.__type.properties.__type.options.__type\"},{\"kind\":1024,\"name\":\"maxLevel\",\"url\":\"types/analyzer.CreateGeoPointAnalyzerOptions.html#__type.properties.__type-1.options.__type-2.maxLevel\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoPointAnalyzerOptions.__type.properties.__type.options.__type\"},{\"kind\":4194304,\"name\":\"CreateGeoS2AnalyzerOptions\",\"url\":\"types/analyzer.CreateGeoS2AnalyzerOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateGeoS2AnalyzerOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.CreateGeoS2AnalyzerOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateGeoS2AnalyzerOptions.html#__type.type-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoS2AnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.CreateGeoS2AnalyzerOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoS2AnalyzerOptions.__type\"},{\"kind\":1024,\"name\":\"properties\",\"url\":\"types/analyzer.CreateGeoS2AnalyzerOptions.html#__type.properties\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoS2AnalyzerOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateGeoS2AnalyzerOptions.html#__type.properties.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateGeoS2AnalyzerOptions.__type.properties\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/analyzer.CreateGeoS2AnalyzerOptions.html#__type.properties.__type-1.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoS2AnalyzerOptions.__type.properties.__type\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"types/analyzer.CreateGeoS2AnalyzerOptions.html#__type.properties.__type-1.options\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoS2AnalyzerOptions.__type.properties.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.CreateGeoS2AnalyzerOptions.html#__type.properties.__type-1.options.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"analyzer.CreateGeoS2AnalyzerOptions.__type.properties.__type.options\"},{\"kind\":1024,\"name\":\"maxCells\",\"url\":\"types/analyzer.CreateGeoS2AnalyzerOptions.html#__type.properties.__type-1.options.__type-2.maxCells\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoS2AnalyzerOptions.__type.properties.__type.options.__type\"},{\"kind\":1024,\"name\":\"minLevel\",\"url\":\"types/analyzer.CreateGeoS2AnalyzerOptions.html#__type.properties.__type-1.options.__type-2.minLevel\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoS2AnalyzerOptions.__type.properties.__type.options.__type\"},{\"kind\":1024,\"name\":\"maxLevel\",\"url\":\"types/analyzer.CreateGeoS2AnalyzerOptions.html#__type.properties.__type-1.options.__type-2.maxLevel\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoS2AnalyzerOptions.__type.properties.__type.options.__type\"},{\"kind\":1024,\"name\":\"format\",\"url\":\"types/analyzer.CreateGeoS2AnalyzerOptions.html#__type.properties.__type-1.format\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.CreateGeoS2AnalyzerOptions.__type.properties.__type\"},{\"kind\":4194304,\"name\":\"GenericAnalyzerDescription\",\"url\":\"types/analyzer.GenericAnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/analyzer.GenericAnalyzerDescription.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"analyzer.GenericAnalyzerDescription\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/analyzer.GenericAnalyzerDescription.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.GenericAnalyzerDescription.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/analyzer.GenericAnalyzerDescription.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"analyzer.GenericAnalyzerDescription.__type\"},{\"kind\":4194304,\"name\":\"AnalyzerDescription\",\"url\":\"types/analyzer.AnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"IdentityAnalyzerDescription\",\"url\":\"types/analyzer.IdentityAnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"DelimiterAnalyzerDescription\",\"url\":\"types/analyzer.DelimiterAnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"StemAnalyzerDescription\",\"url\":\"types/analyzer.StemAnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"NormAnalyzerDescription\",\"url\":\"types/analyzer.NormAnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"NgramAnalyzerDescription\",\"url\":\"types/analyzer.NgramAnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"TextAnalyzerDescription\",\"url\":\"types/analyzer.TextAnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"SegmentationAnalyzerDescription\",\"url\":\"types/analyzer.SegmentationAnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"AqlAnalyzerDescription\",\"url\":\"types/analyzer.AqlAnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"PipelineAnalyzerDescription\",\"url\":\"types/analyzer.PipelineAnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"StopwordsAnalyzerDescription\",\"url\":\"types/analyzer.StopwordsAnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"CollationAnalyzerDescription\",\"url\":\"types/analyzer.CollationAnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"MinHashAnalyzerDescription\",\"url\":\"types/analyzer.MinHashAnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"ClassificationAnalyzerDescription\",\"url\":\"types/analyzer.ClassificationAnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"NearestNeighborsAnalyzerDescription\",\"url\":\"types/analyzer.NearestNeighborsAnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"GeoJsonAnalyzerDescription\",\"url\":\"types/analyzer.GeoJsonAnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"GeoPointAnalyzerDescription\",\"url\":\"types/analyzer.GeoPointAnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":4194304,\"name\":\"GeoS2AnalyzerDescription\",\"url\":\"types/analyzer.GeoS2AnalyzerDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":128,\"name\":\"Analyzer\",\"url\":\"classes/analyzer.Analyzer.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"analyzer\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/analyzer.Analyzer.html#name\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"analyzer.Analyzer\"},{\"kind\":2048,\"name\":\"exists\",\"url\":\"classes/analyzer.Analyzer.html#exists\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"analyzer.Analyzer\"},{\"kind\":2048,\"name\":\"get\",\"url\":\"classes/analyzer.Analyzer.html#get\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"analyzer.Analyzer\"},{\"kind\":2048,\"name\":\"create\",\"url\":\"classes/analyzer.Analyzer.html#create\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"analyzer.Analyzer\"},{\"kind\":2048,\"name\":\"drop\",\"url\":\"classes/analyzer.Analyzer.html#drop\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"analyzer.Analyzer\"},{\"kind\":2,\"name\":\"aql\",\"url\":\"modules/aql.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"isAqlQuery\",\"url\":\"functions/aql.isAqlQuery.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"aql\"},{\"kind\":64,\"name\":\"isAqlLiteral\",\"url\":\"functions/aql.isAqlLiteral.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"aql\"},{\"kind\":64,\"name\":\"aql\",\"url\":\"functions/aql.aql.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"aql\"},{\"kind\":64,\"name\":\"literal\",\"url\":\"functions/aql.literal.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"aql\"},{\"kind\":64,\"name\":\"join\",\"url\":\"functions/aql.join.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"aql\"},{\"kind\":256,\"name\":\"AqlQuery\",\"url\":\"interfaces/aql.AqlQuery.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"aql\"},{\"kind\":1024,\"name\":\"query\",\"url\":\"interfaces/aql.AqlQuery.html#query\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"aql.AqlQuery\"},{\"kind\":1024,\"name\":\"bindVars\",\"url\":\"interfaces/aql.AqlQuery.html#bindVars\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"aql.AqlQuery\"},{\"kind\":256,\"name\":\"AqlLiteral\",\"url\":\"interfaces/aql.AqlLiteral.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"aql\"},{\"kind\":4194304,\"name\":\"AqlValue\",\"url\":\"types/aql.AqlValue.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"aql\"},{\"kind\":2,\"name\":\"collection\",\"url\":\"modules/collection.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"isArangoCollection\",\"url\":\"functions/collection.isArangoCollection.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":64,\"name\":\"collectionToString\",\"url\":\"functions/collection.collectionToString.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":256,\"name\":\"ArangoCollection\",\"url\":\"interfaces/collection.ArangoCollection.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/collection.ArangoCollection.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"collection.ArangoCollection\"},{\"kind\":8,\"name\":\"CollectionType\",\"url\":\"enums/collection.CollectionType.html\",\"classes\":\"tsd-kind-enum tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":16,\"name\":\"DOCUMENT_COLLECTION\",\"url\":\"enums/collection.CollectionType.html#DOCUMENT_COLLECTION\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"collection.CollectionType\"},{\"kind\":16,\"name\":\"EDGE_COLLECTION\",\"url\":\"enums/collection.CollectionType.html#EDGE_COLLECTION\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"collection.CollectionType\"},{\"kind\":8,\"name\":\"CollectionStatus\",\"url\":\"enums/collection.CollectionStatus.html\",\"classes\":\"tsd-kind-enum tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":16,\"name\":\"NEWBORN\",\"url\":\"enums/collection.CollectionStatus.html#NEWBORN\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"collection.CollectionStatus\"},{\"kind\":16,\"name\":\"UNLOADED\",\"url\":\"enums/collection.CollectionStatus.html#UNLOADED\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"collection.CollectionStatus\"},{\"kind\":16,\"name\":\"LOADED\",\"url\":\"enums/collection.CollectionStatus.html#LOADED\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"collection.CollectionStatus\"},{\"kind\":16,\"name\":\"UNLOADING\",\"url\":\"enums/collection.CollectionStatus.html#UNLOADING\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"collection.CollectionStatus\"},{\"kind\":16,\"name\":\"DELETED\",\"url\":\"enums/collection.CollectionStatus.html#DELETED\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"collection.CollectionStatus\"},{\"kind\":16,\"name\":\"LOADING\",\"url\":\"enums/collection.CollectionStatus.html#LOADING\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"collection.CollectionStatus\"},{\"kind\":4194304,\"name\":\"KeyGenerator\",\"url\":\"types/collection.KeyGenerator.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":4194304,\"name\":\"ShardingStrategy\",\"url\":\"types/collection.ShardingStrategy.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":4194304,\"name\":\"SimpleQueryListType\",\"url\":\"types/collection.SimpleQueryListType.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":4194304,\"name\":\"ValidationLevel\",\"url\":\"types/collection.ValidationLevel.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":4194304,\"name\":\"WriteOperation\",\"url\":\"types/collection.WriteOperation.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":4194304,\"name\":\"ComputedValueProperties\",\"url\":\"types/collection.ComputedValueProperties.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.ComputedValueProperties.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.ComputedValueProperties\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/collection.ComputedValueProperties.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.ComputedValueProperties.__type\"},{\"kind\":1024,\"name\":\"expression\",\"url\":\"types/collection.ComputedValueProperties.html#__type.expression\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.ComputedValueProperties.__type\"},{\"kind\":1024,\"name\":\"overwrite\",\"url\":\"types/collection.ComputedValueProperties.html#__type.overwrite\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.ComputedValueProperties.__type\"},{\"kind\":1024,\"name\":\"computeOn\",\"url\":\"types/collection.ComputedValueProperties.html#__type.computeOn\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.ComputedValueProperties.__type\"},{\"kind\":1024,\"name\":\"keepNull\",\"url\":\"types/collection.ComputedValueProperties.html#__type.keepNull\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.ComputedValueProperties.__type\"},{\"kind\":1024,\"name\":\"failOnWarning\",\"url\":\"types/collection.ComputedValueProperties.html#__type.failOnWarning\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.ComputedValueProperties.__type\"},{\"kind\":4194304,\"name\":\"CollectionMetadata\",\"url\":\"types/collection.CollectionMetadata.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CollectionMetadata.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.CollectionMetadata\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/collection.CollectionMetadata.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionMetadata.__type\"},{\"kind\":1024,\"name\":\"globallyUniqueId\",\"url\":\"types/collection.CollectionMetadata.html#__type.globallyUniqueId\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionMetadata.__type\"},{\"kind\":1024,\"name\":\"status\",\"url\":\"types/collection.CollectionMetadata.html#__type.status\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionMetadata.__type\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/collection.CollectionMetadata.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionMetadata.__type\"},{\"kind\":4194304,\"name\":\"CollectionKeyProperties\",\"url\":\"types/collection.CollectionKeyProperties.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CollectionKeyProperties.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.CollectionKeyProperties\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/collection.CollectionKeyProperties.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionKeyProperties.__type\"},{\"kind\":1024,\"name\":\"allowUserKeys\",\"url\":\"types/collection.CollectionKeyProperties.html#__type.allowUserKeys\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionKeyProperties.__type\"},{\"kind\":1024,\"name\":\"increment\",\"url\":\"types/collection.CollectionKeyProperties.html#__type.increment\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionKeyProperties.__type\"},{\"kind\":1024,\"name\":\"offset\",\"url\":\"types/collection.CollectionKeyProperties.html#__type.offset\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionKeyProperties.__type\"},{\"kind\":1024,\"name\":\"lastValue\",\"url\":\"types/collection.CollectionKeyProperties.html#__type.lastValue\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionKeyProperties.__type\"},{\"kind\":4194304,\"name\":\"SchemaProperties\",\"url\":\"types/collection.SchemaProperties.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.SchemaProperties.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.SchemaProperties\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/collection.SchemaProperties.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SchemaProperties.__type\"},{\"kind\":1024,\"name\":\"rule\",\"url\":\"types/collection.SchemaProperties.html#__type.rule\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SchemaProperties.__type\"},{\"kind\":1024,\"name\":\"level\",\"url\":\"types/collection.SchemaProperties.html#__type.level\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SchemaProperties.__type\"},{\"kind\":1024,\"name\":\"message\",\"url\":\"types/collection.SchemaProperties.html#__type.message\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SchemaProperties.__type\"},{\"kind\":4194304,\"name\":\"CollectionProperties\",\"url\":\"types/collection.CollectionProperties.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CollectionProperties.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.CollectionProperties\"},{\"kind\":1024,\"name\":\"statusString\",\"url\":\"types/collection.CollectionProperties.html#__type.statusString\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionProperties.__type\"},{\"kind\":1024,\"name\":\"waitForSync\",\"url\":\"types/collection.CollectionProperties.html#__type.waitForSync\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionProperties.__type\"},{\"kind\":1024,\"name\":\"keyOptions\",\"url\":\"types/collection.CollectionProperties.html#__type.keyOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionProperties.__type\"},{\"kind\":1024,\"name\":\"schema\",\"url\":\"types/collection.CollectionProperties.html#__type.schema\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionProperties.__type\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"types/collection.CollectionProperties.html#__type.writeConcern\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionProperties.__type\"},{\"kind\":1024,\"name\":\"numberOfShards\",\"url\":\"types/collection.CollectionProperties.html#__type.numberOfShards\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionProperties.__type\"},{\"kind\":1024,\"name\":\"shardKeys\",\"url\":\"types/collection.CollectionProperties.html#__type.shardKeys\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionProperties.__type\"},{\"kind\":1024,\"name\":\"replicationFactor\",\"url\":\"types/collection.CollectionProperties.html#__type.replicationFactor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionProperties.__type\"},{\"kind\":1024,\"name\":\"shardingStrategy\",\"url\":\"types/collection.CollectionProperties.html#__type.shardingStrategy\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionProperties.__type\"},{\"kind\":1024,\"name\":\"distributeShardsLike\",\"url\":\"types/collection.CollectionProperties.html#__type.distributeShardsLike\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionProperties.__type\"},{\"kind\":1024,\"name\":\"smartJoinAttribute\",\"url\":\"types/collection.CollectionProperties.html#__type.smartJoinAttribute\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionProperties.__type\"},{\"kind\":1024,\"name\":\"smartGraphAttribute\",\"url\":\"types/collection.CollectionProperties.html#__type.smartGraphAttribute\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionProperties.__type\"},{\"kind\":1024,\"name\":\"computedValues\",\"url\":\"types/collection.CollectionProperties.html#__type.computedValues\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionProperties.__type\"},{\"kind\":1024,\"name\":\"cacheEnabled\",\"url\":\"types/collection.CollectionProperties.html#__type.cacheEnabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionProperties.__type\"},{\"kind\":1024,\"name\":\"syncByRevision\",\"url\":\"types/collection.CollectionProperties.html#__type.syncByRevision\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionProperties.__type\"},{\"kind\":1024,\"name\":\"isSmart\",\"url\":\"types/collection.CollectionProperties.html#__type.isSmart\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionProperties.__type\"},{\"kind\":1024,\"name\":\"isDisjoint\",\"url\":\"types/collection.CollectionProperties.html#__type.isDisjoint\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionProperties.__type\"},{\"kind\":4194304,\"name\":\"ComputedValueOptions\",\"url\":\"types/collection.ComputedValueOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.ComputedValueOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.ComputedValueOptions\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/collection.ComputedValueOptions.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.ComputedValueOptions.__type\"},{\"kind\":1024,\"name\":\"expression\",\"url\":\"types/collection.ComputedValueOptions.html#__type.expression\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.ComputedValueOptions.__type\"},{\"kind\":1024,\"name\":\"overwrite\",\"url\":\"types/collection.ComputedValueOptions.html#__type.overwrite\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.ComputedValueOptions.__type\"},{\"kind\":1024,\"name\":\"computeOn\",\"url\":\"types/collection.ComputedValueOptions.html#__type.computeOn\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.ComputedValueOptions.__type\"},{\"kind\":1024,\"name\":\"keepNull\",\"url\":\"types/collection.ComputedValueOptions.html#__type.keepNull\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.ComputedValueOptions.__type\"},{\"kind\":1024,\"name\":\"failOnWarning\",\"url\":\"types/collection.ComputedValueOptions.html#__type.failOnWarning\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.ComputedValueOptions.__type\"},{\"kind\":4194304,\"name\":\"SchemaOptions\",\"url\":\"types/collection.SchemaOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.SchemaOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.SchemaOptions\"},{\"kind\":1024,\"name\":\"rule\",\"url\":\"types/collection.SchemaOptions.html#__type.rule\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SchemaOptions.__type\"},{\"kind\":1024,\"name\":\"level\",\"url\":\"types/collection.SchemaOptions.html#__type.level\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SchemaOptions.__type\"},{\"kind\":1024,\"name\":\"message\",\"url\":\"types/collection.SchemaOptions.html#__type.message\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SchemaOptions.__type\"},{\"kind\":4194304,\"name\":\"CollectionPropertiesOptions\",\"url\":\"types/collection.CollectionPropertiesOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CollectionPropertiesOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.CollectionPropertiesOptions\"},{\"kind\":1024,\"name\":\"waitForSync\",\"url\":\"types/collection.CollectionPropertiesOptions.html#__type.waitForSync\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionPropertiesOptions.__type\"},{\"kind\":1024,\"name\":\"replicationFactor\",\"url\":\"types/collection.CollectionPropertiesOptions.html#__type.replicationFactor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionPropertiesOptions.__type\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"types/collection.CollectionPropertiesOptions.html#__type.writeConcern\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionPropertiesOptions.__type\"},{\"kind\":1024,\"name\":\"schema\",\"url\":\"types/collection.CollectionPropertiesOptions.html#__type.schema\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionPropertiesOptions.__type\"},{\"kind\":1024,\"name\":\"computedValues\",\"url\":\"types/collection.CollectionPropertiesOptions.html#__type.computedValues\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionPropertiesOptions.__type\"},{\"kind\":1024,\"name\":\"cacheEnabled\",\"url\":\"types/collection.CollectionPropertiesOptions.html#__type.cacheEnabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionPropertiesOptions.__type\"},{\"kind\":4194304,\"name\":\"CollectionChecksumOptions\",\"url\":\"types/collection.CollectionChecksumOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CollectionChecksumOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.CollectionChecksumOptions\"},{\"kind\":1024,\"name\":\"withRevisions\",\"url\":\"types/collection.CollectionChecksumOptions.html#__type.withRevisions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionChecksumOptions.__type\"},{\"kind\":1024,\"name\":\"withData\",\"url\":\"types/collection.CollectionChecksumOptions.html#__type.withData\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionChecksumOptions.__type\"},{\"kind\":4194304,\"name\":\"CollectionDropOptions\",\"url\":\"types/collection.CollectionDropOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CollectionDropOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.CollectionDropOptions\"},{\"kind\":1024,\"name\":\"isSystem\",\"url\":\"types/collection.CollectionDropOptions.html#__type.isSystem\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionDropOptions.__type\"},{\"kind\":4194304,\"name\":\"CollectionKeyOptions\",\"url\":\"types/collection.CollectionKeyOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CollectionKeyOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.CollectionKeyOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/collection.CollectionKeyOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionKeyOptions.__type\"},{\"kind\":1024,\"name\":\"allowUserKeys\",\"url\":\"types/collection.CollectionKeyOptions.html#__type.allowUserKeys\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionKeyOptions.__type\"},{\"kind\":1024,\"name\":\"increment\",\"url\":\"types/collection.CollectionKeyOptions.html#__type.increment\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionKeyOptions.__type\"},{\"kind\":1024,\"name\":\"offset\",\"url\":\"types/collection.CollectionKeyOptions.html#__type.offset\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionKeyOptions.__type\"},{\"kind\":4194304,\"name\":\"CreateCollectionOptions\",\"url\":\"types/collection.CreateCollectionOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CreateCollectionOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.CreateCollectionOptions\"},{\"kind\":1024,\"name\":\"waitForSync\",\"url\":\"types/collection.CreateCollectionOptions.html#__type.waitForSync\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CreateCollectionOptions.__type\"},{\"kind\":1024,\"name\":\"keyOptions\",\"url\":\"types/collection.CreateCollectionOptions.html#__type.keyOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CreateCollectionOptions.__type\"},{\"kind\":1024,\"name\":\"schema\",\"url\":\"types/collection.CreateCollectionOptions.html#__type.schema\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CreateCollectionOptions.__type\"},{\"kind\":1024,\"name\":\"waitForSyncReplication\",\"url\":\"types/collection.CreateCollectionOptions.html#__type.waitForSyncReplication\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CreateCollectionOptions.__type\"},{\"kind\":1024,\"name\":\"enforceReplicationFactor\",\"url\":\"types/collection.CreateCollectionOptions.html#__type.enforceReplicationFactor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CreateCollectionOptions.__type\"},{\"kind\":1024,\"name\":\"numberOfShards\",\"url\":\"types/collection.CreateCollectionOptions.html#__type.numberOfShards\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CreateCollectionOptions.__type\"},{\"kind\":1024,\"name\":\"shardKeys\",\"url\":\"types/collection.CreateCollectionOptions.html#__type.shardKeys\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CreateCollectionOptions.__type\"},{\"kind\":1024,\"name\":\"replicationFactor\",\"url\":\"types/collection.CreateCollectionOptions.html#__type.replicationFactor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CreateCollectionOptions.__type\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"types/collection.CreateCollectionOptions.html#__type.writeConcern\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CreateCollectionOptions.__type\"},{\"kind\":1024,\"name\":\"shardingStrategy\",\"url\":\"types/collection.CreateCollectionOptions.html#__type.shardingStrategy\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CreateCollectionOptions.__type\"},{\"kind\":1024,\"name\":\"distributeShardsLike\",\"url\":\"types/collection.CreateCollectionOptions.html#__type.distributeShardsLike\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CreateCollectionOptions.__type\"},{\"kind\":1024,\"name\":\"smartJoinAttribute\",\"url\":\"types/collection.CreateCollectionOptions.html#__type.smartJoinAttribute\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CreateCollectionOptions.__type\"},{\"kind\":1024,\"name\":\"smartGraphAttribute\",\"url\":\"types/collection.CreateCollectionOptions.html#__type.smartGraphAttribute\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CreateCollectionOptions.__type\"},{\"kind\":1024,\"name\":\"computedValues\",\"url\":\"types/collection.CreateCollectionOptions.html#__type.computedValues\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CreateCollectionOptions.__type\"},{\"kind\":1024,\"name\":\"cacheEnabled\",\"url\":\"types/collection.CreateCollectionOptions.html#__type.cacheEnabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CreateCollectionOptions.__type\"},{\"kind\":4194304,\"name\":\"DocumentExistsOptions\",\"url\":\"types/collection.DocumentExistsOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.DocumentExistsOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.DocumentExistsOptions\"},{\"kind\":1024,\"name\":\"ifMatch\",\"url\":\"types/collection.DocumentExistsOptions.html#__type.ifMatch\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.DocumentExistsOptions.__type\"},{\"kind\":1024,\"name\":\"ifNoneMatch\",\"url\":\"types/collection.DocumentExistsOptions.html#__type.ifNoneMatch\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.DocumentExistsOptions.__type\"},{\"kind\":4194304,\"name\":\"CollectionReadOptions\",\"url\":\"types/collection.CollectionReadOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CollectionReadOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.CollectionReadOptions\"},{\"kind\":1024,\"name\":\"graceful\",\"url\":\"types/collection.CollectionReadOptions.html#__type.graceful\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionReadOptions.__type\"},{\"kind\":1024,\"name\":\"allowDirtyRead\",\"url\":\"types/collection.CollectionReadOptions.html#__type.allowDirtyRead\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionReadOptions.__type\"},{\"kind\":1024,\"name\":\"ifMatch\",\"url\":\"types/collection.CollectionReadOptions.html#__type.ifMatch\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionReadOptions.__type\"},{\"kind\":1024,\"name\":\"ifNoneMatch\",\"url\":\"types/collection.CollectionReadOptions.html#__type.ifNoneMatch\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionReadOptions.__type\"},{\"kind\":4194304,\"name\":\"CollectionBatchReadOptions\",\"url\":\"types/collection.CollectionBatchReadOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CollectionBatchReadOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.CollectionBatchReadOptions\"},{\"kind\":1024,\"name\":\"allowDirtyRead\",\"url\":\"types/collection.CollectionBatchReadOptions.html#__type.allowDirtyRead\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionBatchReadOptions.__type\"},{\"kind\":4194304,\"name\":\"CollectionInsertOptions\",\"url\":\"types/collection.CollectionInsertOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CollectionInsertOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.CollectionInsertOptions\"},{\"kind\":1024,\"name\":\"waitForSync\",\"url\":\"types/collection.CollectionInsertOptions.html#__type.waitForSync\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionInsertOptions.__type\"},{\"kind\":1024,\"name\":\"silent\",\"url\":\"types/collection.CollectionInsertOptions.html#__type.silent\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionInsertOptions.__type\"},{\"kind\":1024,\"name\":\"returnNew\",\"url\":\"types/collection.CollectionInsertOptions.html#__type.returnNew\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionInsertOptions.__type\"},{\"kind\":1024,\"name\":\"returnOld\",\"url\":\"types/collection.CollectionInsertOptions.html#__type.returnOld\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionInsertOptions.__type\"},{\"kind\":1024,\"name\":\"overwriteMode\",\"url\":\"types/collection.CollectionInsertOptions.html#__type.overwriteMode\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionInsertOptions.__type\"},{\"kind\":1024,\"name\":\"mergeObjects\",\"url\":\"types/collection.CollectionInsertOptions.html#__type.mergeObjects\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionInsertOptions.__type\"},{\"kind\":1024,\"name\":\"refillIndexCaches\",\"url\":\"types/collection.CollectionInsertOptions.html#__type.refillIndexCaches\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionInsertOptions.__type\"},{\"kind\":4194304,\"name\":\"CollectionReplaceOptions\",\"url\":\"types/collection.CollectionReplaceOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CollectionReplaceOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.CollectionReplaceOptions\"},{\"kind\":1024,\"name\":\"waitForSync\",\"url\":\"types/collection.CollectionReplaceOptions.html#__type.waitForSync\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionReplaceOptions.__type\"},{\"kind\":1024,\"name\":\"silent\",\"url\":\"types/collection.CollectionReplaceOptions.html#__type.silent\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionReplaceOptions.__type\"},{\"kind\":1024,\"name\":\"returnNew\",\"url\":\"types/collection.CollectionReplaceOptions.html#__type.returnNew\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionReplaceOptions.__type\"},{\"kind\":1024,\"name\":\"ignoreRevs\",\"url\":\"types/collection.CollectionReplaceOptions.html#__type.ignoreRevs\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionReplaceOptions.__type\"},{\"kind\":1024,\"name\":\"returnOld\",\"url\":\"types/collection.CollectionReplaceOptions.html#__type.returnOld\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionReplaceOptions.__type\"},{\"kind\":1024,\"name\":\"ifMatch\",\"url\":\"types/collection.CollectionReplaceOptions.html#__type.ifMatch\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionReplaceOptions.__type\"},{\"kind\":1024,\"name\":\"refillIndexCaches\",\"url\":\"types/collection.CollectionReplaceOptions.html#__type.refillIndexCaches\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionReplaceOptions.__type\"},{\"kind\":4194304,\"name\":\"CollectionUpdateOptions\",\"url\":\"types/collection.CollectionUpdateOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CollectionUpdateOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.CollectionUpdateOptions\"},{\"kind\":1024,\"name\":\"waitForSync\",\"url\":\"types/collection.CollectionUpdateOptions.html#__type.waitForSync\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionUpdateOptions.__type\"},{\"kind\":1024,\"name\":\"silent\",\"url\":\"types/collection.CollectionUpdateOptions.html#__type.silent\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionUpdateOptions.__type\"},{\"kind\":1024,\"name\":\"returnNew\",\"url\":\"types/collection.CollectionUpdateOptions.html#__type.returnNew\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionUpdateOptions.__type\"},{\"kind\":1024,\"name\":\"ignoreRevs\",\"url\":\"types/collection.CollectionUpdateOptions.html#__type.ignoreRevs\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionUpdateOptions.__type\"},{\"kind\":1024,\"name\":\"returnOld\",\"url\":\"types/collection.CollectionUpdateOptions.html#__type.returnOld\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionUpdateOptions.__type\"},{\"kind\":1024,\"name\":\"keepNull\",\"url\":\"types/collection.CollectionUpdateOptions.html#__type.keepNull\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionUpdateOptions.__type\"},{\"kind\":1024,\"name\":\"mergeObjects\",\"url\":\"types/collection.CollectionUpdateOptions.html#__type.mergeObjects\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionUpdateOptions.__type\"},{\"kind\":1024,\"name\":\"ifMatch\",\"url\":\"types/collection.CollectionUpdateOptions.html#__type.ifMatch\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionUpdateOptions.__type\"},{\"kind\":1024,\"name\":\"refillIndexCaches\",\"url\":\"types/collection.CollectionUpdateOptions.html#__type.refillIndexCaches\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionUpdateOptions.__type\"},{\"kind\":4194304,\"name\":\"CollectionRemoveOptions\",\"url\":\"types/collection.CollectionRemoveOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CollectionRemoveOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.CollectionRemoveOptions\"},{\"kind\":1024,\"name\":\"waitForSync\",\"url\":\"types/collection.CollectionRemoveOptions.html#__type.waitForSync\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionRemoveOptions.__type\"},{\"kind\":1024,\"name\":\"returnOld\",\"url\":\"types/collection.CollectionRemoveOptions.html#__type.returnOld\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionRemoveOptions.__type\"},{\"kind\":1024,\"name\":\"silent\",\"url\":\"types/collection.CollectionRemoveOptions.html#__type.silent\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionRemoveOptions.__type\"},{\"kind\":1024,\"name\":\"ifMatch\",\"url\":\"types/collection.CollectionRemoveOptions.html#__type.ifMatch\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionRemoveOptions.__type\"},{\"kind\":1024,\"name\":\"refillIndexCaches\",\"url\":\"types/collection.CollectionRemoveOptions.html#__type.refillIndexCaches\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionRemoveOptions.__type\"},{\"kind\":4194304,\"name\":\"CollectionImportOptions\",\"url\":\"types/collection.CollectionImportOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CollectionImportOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.CollectionImportOptions\"},{\"kind\":1024,\"name\":\"fromPrefix\",\"url\":\"types/collection.CollectionImportOptions.html#__type.fromPrefix\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionImportOptions.__type\"},{\"kind\":1024,\"name\":\"toPrefix\",\"url\":\"types/collection.CollectionImportOptions.html#__type.toPrefix\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionImportOptions.__type\"},{\"kind\":1024,\"name\":\"overwrite\",\"url\":\"types/collection.CollectionImportOptions.html#__type.overwrite\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionImportOptions.__type\"},{\"kind\":1024,\"name\":\"waitForSync\",\"url\":\"types/collection.CollectionImportOptions.html#__type.waitForSync\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionImportOptions.__type\"},{\"kind\":1024,\"name\":\"onDuplicate\",\"url\":\"types/collection.CollectionImportOptions.html#__type.onDuplicate\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionImportOptions.__type\"},{\"kind\":1024,\"name\":\"complete\",\"url\":\"types/collection.CollectionImportOptions.html#__type.complete\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionImportOptions.__type\"},{\"kind\":1024,\"name\":\"details\",\"url\":\"types/collection.CollectionImportOptions.html#__type.details\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionImportOptions.__type\"},{\"kind\":4194304,\"name\":\"CollectionEdgesOptions\",\"url\":\"types/collection.CollectionEdgesOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CollectionEdgesOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.CollectionEdgesOptions\"},{\"kind\":1024,\"name\":\"allowDirtyRead\",\"url\":\"types/collection.CollectionEdgesOptions.html#__type.allowDirtyRead\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionEdgesOptions.__type\"},{\"kind\":4194304,\"name\":\"SimpleQueryByExampleOptions\",\"url\":\"types/collection.SimpleQueryByExampleOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.SimpleQueryByExampleOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.SimpleQueryByExampleOptions\"},{\"kind\":1024,\"name\":\"skip\",\"url\":\"types/collection.SimpleQueryByExampleOptions.html#__type.skip\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryByExampleOptions.__type\"},{\"kind\":1024,\"name\":\"limit\",\"url\":\"types/collection.SimpleQueryByExampleOptions.html#__type.limit\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryByExampleOptions.__type\"},{\"kind\":1024,\"name\":\"batchSize\",\"url\":\"types/collection.SimpleQueryByExampleOptions.html#__type.batchSize\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryByExampleOptions.__type\"},{\"kind\":1024,\"name\":\"ttl\",\"url\":\"types/collection.SimpleQueryByExampleOptions.html#__type.ttl\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryByExampleOptions.__type\"},{\"kind\":4194304,\"name\":\"SimpleQueryAllOptions\",\"url\":\"types/collection.SimpleQueryAllOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.SimpleQueryAllOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.SimpleQueryAllOptions\"},{\"kind\":1024,\"name\":\"skip\",\"url\":\"types/collection.SimpleQueryAllOptions.html#__type.skip\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryAllOptions.__type\"},{\"kind\":1024,\"name\":\"limit\",\"url\":\"types/collection.SimpleQueryAllOptions.html#__type.limit\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryAllOptions.__type\"},{\"kind\":1024,\"name\":\"batchSize\",\"url\":\"types/collection.SimpleQueryAllOptions.html#__type.batchSize\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryAllOptions.__type\"},{\"kind\":1024,\"name\":\"ttl\",\"url\":\"types/collection.SimpleQueryAllOptions.html#__type.ttl\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryAllOptions.__type\"},{\"kind\":1024,\"name\":\"stream\",\"url\":\"types/collection.SimpleQueryAllOptions.html#__type.stream\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryAllOptions.__type\"},{\"kind\":4194304,\"name\":\"SimpleQueryUpdateByExampleOptions\",\"url\":\"types/collection.SimpleQueryUpdateByExampleOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.SimpleQueryUpdateByExampleOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.SimpleQueryUpdateByExampleOptions\"},{\"kind\":1024,\"name\":\"keepNull\",\"url\":\"types/collection.SimpleQueryUpdateByExampleOptions.html#__type.keepNull\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryUpdateByExampleOptions.__type\"},{\"kind\":1024,\"name\":\"waitForSync\",\"url\":\"types/collection.SimpleQueryUpdateByExampleOptions.html#__type.waitForSync\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryUpdateByExampleOptions.__type\"},{\"kind\":1024,\"name\":\"limit\",\"url\":\"types/collection.SimpleQueryUpdateByExampleOptions.html#__type.limit\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryUpdateByExampleOptions.__type\"},{\"kind\":1024,\"name\":\"mergeObjects\",\"url\":\"types/collection.SimpleQueryUpdateByExampleOptions.html#__type.mergeObjects\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryUpdateByExampleOptions.__type\"},{\"kind\":4194304,\"name\":\"SimpleQueryRemoveByExampleOptions\",\"url\":\"types/collection.SimpleQueryRemoveByExampleOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.SimpleQueryRemoveByExampleOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.SimpleQueryRemoveByExampleOptions\"},{\"kind\":1024,\"name\":\"waitForSync\",\"url\":\"types/collection.SimpleQueryRemoveByExampleOptions.html#__type.waitForSync\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryRemoveByExampleOptions.__type\"},{\"kind\":1024,\"name\":\"limit\",\"url\":\"types/collection.SimpleQueryRemoveByExampleOptions.html#__type.limit\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryRemoveByExampleOptions.__type\"},{\"kind\":4194304,\"name\":\"SimpleQueryReplaceByExampleOptions\",\"url\":\"types/collection.SimpleQueryReplaceByExampleOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":4194304,\"name\":\"SimpleQueryRemoveByKeysOptions\",\"url\":\"types/collection.SimpleQueryRemoveByKeysOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.SimpleQueryRemoveByKeysOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.SimpleQueryRemoveByKeysOptions\"},{\"kind\":1024,\"name\":\"returnOld\",\"url\":\"types/collection.SimpleQueryRemoveByKeysOptions.html#__type.returnOld\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryRemoveByKeysOptions.__type\"},{\"kind\":1024,\"name\":\"silent\",\"url\":\"types/collection.SimpleQueryRemoveByKeysOptions.html#__type.silent\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryRemoveByKeysOptions.__type\"},{\"kind\":1024,\"name\":\"waitForSync\",\"url\":\"types/collection.SimpleQueryRemoveByKeysOptions.html#__type.waitForSync\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryRemoveByKeysOptions.__type\"},{\"kind\":4194304,\"name\":\"SimpleQueryFulltextOptions\",\"url\":\"types/collection.SimpleQueryFulltextOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.SimpleQueryFulltextOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.SimpleQueryFulltextOptions\"},{\"kind\":1024,\"name\":\"index\",\"url\":\"types/collection.SimpleQueryFulltextOptions.html#__type.index\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryFulltextOptions.__type\"},{\"kind\":1024,\"name\":\"limit\",\"url\":\"types/collection.SimpleQueryFulltextOptions.html#__type.limit\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryFulltextOptions.__type\"},{\"kind\":1024,\"name\":\"skip\",\"url\":\"types/collection.SimpleQueryFulltextOptions.html#__type.skip\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryFulltextOptions.__type\"},{\"kind\":4194304,\"name\":\"TraversalOptions\",\"url\":\"types/collection.TraversalOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.TraversalOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.TraversalOptions\"},{\"kind\":1024,\"name\":\"init\",\"url\":\"types/collection.TraversalOptions.html#__type.init\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.TraversalOptions.__type\"},{\"kind\":1024,\"name\":\"filter\",\"url\":\"types/collection.TraversalOptions.html#__type.filter\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.TraversalOptions.__type\"},{\"kind\":1024,\"name\":\"sort\",\"url\":\"types/collection.TraversalOptions.html#__type.sort\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.TraversalOptions.__type\"},{\"kind\":1024,\"name\":\"visitor\",\"url\":\"types/collection.TraversalOptions.html#__type.visitor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.TraversalOptions.__type\"},{\"kind\":1024,\"name\":\"expander\",\"url\":\"types/collection.TraversalOptions.html#__type.expander\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.TraversalOptions.__type\"},{\"kind\":1024,\"name\":\"direction\",\"url\":\"types/collection.TraversalOptions.html#__type.direction\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.TraversalOptions.__type\"},{\"kind\":1024,\"name\":\"itemOrder\",\"url\":\"types/collection.TraversalOptions.html#__type.itemOrder\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.TraversalOptions.__type\"},{\"kind\":1024,\"name\":\"strategy\",\"url\":\"types/collection.TraversalOptions.html#__type.strategy\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.TraversalOptions.__type\"},{\"kind\":1024,\"name\":\"order\",\"url\":\"types/collection.TraversalOptions.html#__type.order\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.TraversalOptions.__type\"},{\"kind\":1024,\"name\":\"uniqueness\",\"url\":\"types/collection.TraversalOptions.html#__type.uniqueness\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.TraversalOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.TraversalOptions.html#__type.uniqueness.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"collection.TraversalOptions.__type.uniqueness\"},{\"kind\":1024,\"name\":\"vertices\",\"url\":\"types/collection.TraversalOptions.html#__type.uniqueness.__type-1.vertices\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.TraversalOptions.__type.uniqueness.__type\"},{\"kind\":1024,\"name\":\"edges\",\"url\":\"types/collection.TraversalOptions.html#__type.uniqueness.__type-1.edges\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.TraversalOptions.__type.uniqueness.__type\"},{\"kind\":1024,\"name\":\"minDepth\",\"url\":\"types/collection.TraversalOptions.html#__type.minDepth\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.TraversalOptions.__type\"},{\"kind\":1024,\"name\":\"maxDepth\",\"url\":\"types/collection.TraversalOptions.html#__type.maxDepth\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.TraversalOptions.__type\"},{\"kind\":1024,\"name\":\"maxIterations\",\"url\":\"types/collection.TraversalOptions.html#__type.maxIterations\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.TraversalOptions.__type\"},{\"kind\":4194304,\"name\":\"CollectionImportResult\",\"url\":\"types/collection.CollectionImportResult.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CollectionImportResult.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.CollectionImportResult\"},{\"kind\":1024,\"name\":\"error\",\"url\":\"types/collection.CollectionImportResult.html#__type.error\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionImportResult.__type\"},{\"kind\":1024,\"name\":\"created\",\"url\":\"types/collection.CollectionImportResult.html#__type.created\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionImportResult.__type\"},{\"kind\":1024,\"name\":\"errors\",\"url\":\"types/collection.CollectionImportResult.html#__type.errors\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionImportResult.__type\"},{\"kind\":1024,\"name\":\"empty\",\"url\":\"types/collection.CollectionImportResult.html#__type.empty\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionImportResult.__type\"},{\"kind\":1024,\"name\":\"updated\",\"url\":\"types/collection.CollectionImportResult.html#__type.updated\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionImportResult.__type\"},{\"kind\":1024,\"name\":\"ignored\",\"url\":\"types/collection.CollectionImportResult.html#__type.ignored\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionImportResult.__type\"},{\"kind\":1024,\"name\":\"details\",\"url\":\"types/collection.CollectionImportResult.html#__type.details\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionImportResult.__type\"},{\"kind\":4194304,\"name\":\"CollectionEdgesResult\",\"url\":\"types/collection.CollectionEdgesResult.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CollectionEdgesResult.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.CollectionEdgesResult\"},{\"kind\":1024,\"name\":\"edges\",\"url\":\"types/collection.CollectionEdgesResult.html#__type.edges\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionEdgesResult.__type\"},{\"kind\":1024,\"name\":\"stats\",\"url\":\"types/collection.CollectionEdgesResult.html#__type.stats\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionEdgesResult.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.CollectionEdgesResult.html#__type.stats.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"collection.CollectionEdgesResult.__type.stats\"},{\"kind\":1024,\"name\":\"scannedIndex\",\"url\":\"types/collection.CollectionEdgesResult.html#__type.stats.__type-1.scannedIndex\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionEdgesResult.__type.stats.__type\"},{\"kind\":1024,\"name\":\"filtered\",\"url\":\"types/collection.CollectionEdgesResult.html#__type.stats.__type-1.filtered\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.CollectionEdgesResult.__type.stats.__type\"},{\"kind\":4194304,\"name\":\"SimpleQueryRemoveByExampleResult\",\"url\":\"types/collection.SimpleQueryRemoveByExampleResult.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.SimpleQueryRemoveByExampleResult.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.SimpleQueryRemoveByExampleResult\"},{\"kind\":1024,\"name\":\"deleted\",\"url\":\"types/collection.SimpleQueryRemoveByExampleResult.html#__type.deleted\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryRemoveByExampleResult.__type\"},{\"kind\":4194304,\"name\":\"SimpleQueryReplaceByExampleResult\",\"url\":\"types/collection.SimpleQueryReplaceByExampleResult.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.SimpleQueryReplaceByExampleResult.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.SimpleQueryReplaceByExampleResult\"},{\"kind\":1024,\"name\":\"replaced\",\"url\":\"types/collection.SimpleQueryReplaceByExampleResult.html#__type.replaced\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryReplaceByExampleResult.__type\"},{\"kind\":4194304,\"name\":\"SimpleQueryUpdateByExampleResult\",\"url\":\"types/collection.SimpleQueryUpdateByExampleResult.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.SimpleQueryUpdateByExampleResult.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.SimpleQueryUpdateByExampleResult\"},{\"kind\":1024,\"name\":\"updated\",\"url\":\"types/collection.SimpleQueryUpdateByExampleResult.html#__type.updated\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryUpdateByExampleResult.__type\"},{\"kind\":4194304,\"name\":\"SimpleQueryRemoveByKeysResult\",\"url\":\"types/collection.SimpleQueryRemoveByKeysResult.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/collection.SimpleQueryRemoveByKeysResult.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"collection.SimpleQueryRemoveByKeysResult\"},{\"kind\":1024,\"name\":\"removed\",\"url\":\"types/collection.SimpleQueryRemoveByKeysResult.html#__type.removed\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryRemoveByKeysResult.__type\"},{\"kind\":1024,\"name\":\"ignored\",\"url\":\"types/collection.SimpleQueryRemoveByKeysResult.html#__type.ignored\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryRemoveByKeysResult.__type\"},{\"kind\":1024,\"name\":\"old\",\"url\":\"types/collection.SimpleQueryRemoveByKeysResult.html#__type.old\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"collection.SimpleQueryRemoveByKeysResult.__type\"},{\"kind\":256,\"name\":\"DocumentCollection\",\"url\":\"interfaces/collection.DocumentCollection.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":2048,\"name\":\"exists\",\"url\":\"interfaces/collection.DocumentCollection.html#exists\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"get\",\"url\":\"interfaces/collection.DocumentCollection.html#get\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"create\",\"url\":\"interfaces/collection.DocumentCollection.html#create\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"properties\",\"url\":\"interfaces/collection.DocumentCollection.html#properties\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"count\",\"url\":\"interfaces/collection.DocumentCollection.html#count\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"recalculateCount\",\"url\":\"interfaces/collection.DocumentCollection.html#recalculateCount\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"figures\",\"url\":\"interfaces/collection.DocumentCollection.html#figures\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"revision\",\"url\":\"interfaces/collection.DocumentCollection.html#revision\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"checksum\",\"url\":\"interfaces/collection.DocumentCollection.html#checksum\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"loadIndexes\",\"url\":\"interfaces/collection.DocumentCollection.html#loadIndexes\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"rename\",\"url\":\"interfaces/collection.DocumentCollection.html#rename\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"truncate\",\"url\":\"interfaces/collection.DocumentCollection.html#truncate\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"drop\",\"url\":\"interfaces/collection.DocumentCollection.html#drop\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"getResponsibleShard\",\"url\":\"interfaces/collection.DocumentCollection.html#getResponsibleShard\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"documentId\",\"url\":\"interfaces/collection.DocumentCollection.html#documentId\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"documentExists\",\"url\":\"interfaces/collection.DocumentCollection.html#documentExists\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"document\",\"url\":\"interfaces/collection.DocumentCollection.html#document\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"documents\",\"url\":\"interfaces/collection.DocumentCollection.html#documents\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"save\",\"url\":\"interfaces/collection.DocumentCollection.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"saveAll\",\"url\":\"interfaces/collection.DocumentCollection.html#saveAll\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"replace\",\"url\":\"interfaces/collection.DocumentCollection.html#replace\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"replaceAll\",\"url\":\"interfaces/collection.DocumentCollection.html#replaceAll\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"update\",\"url\":\"interfaces/collection.DocumentCollection.html#update\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"updateAll\",\"url\":\"interfaces/collection.DocumentCollection.html#updateAll\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"remove\",\"url\":\"interfaces/collection.DocumentCollection.html#remove\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"removeAll\",\"url\":\"interfaces/collection.DocumentCollection.html#removeAll\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"import\",\"url\":\"interfaces/collection.DocumentCollection.html#import\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"list\",\"url\":\"interfaces/collection.DocumentCollection.html#list\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"all\",\"url\":\"interfaces/collection.DocumentCollection.html#all\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"any\",\"url\":\"interfaces/collection.DocumentCollection.html#any\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"byExample\",\"url\":\"interfaces/collection.DocumentCollection.html#byExample\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"firstExample\",\"url\":\"interfaces/collection.DocumentCollection.html#firstExample\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"removeByExample\",\"url\":\"interfaces/collection.DocumentCollection.html#removeByExample\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"replaceByExample\",\"url\":\"interfaces/collection.DocumentCollection.html#replaceByExample\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"updateByExample\",\"url\":\"interfaces/collection.DocumentCollection.html#updateByExample\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"lookupByKeys\",\"url\":\"interfaces/collection.DocumentCollection.html#lookupByKeys\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"removeByKeys\",\"url\":\"interfaces/collection.DocumentCollection.html#removeByKeys\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"fulltext\",\"url\":\"interfaces/collection.DocumentCollection.html#fulltext\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"indexes\",\"url\":\"interfaces/collection.DocumentCollection.html#indexes\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"index\",\"url\":\"interfaces/collection.DocumentCollection.html#index\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"ensureIndex\",\"url\":\"interfaces/collection.DocumentCollection.html#ensureIndex\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"dropIndex\",\"url\":\"interfaces/collection.DocumentCollection.html#dropIndex\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":2048,\"name\":\"compact\",\"url\":\"interfaces/collection.DocumentCollection.html#compact\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/collection.DocumentCollection.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"collection.DocumentCollection\"},{\"kind\":256,\"name\":\"EdgeCollection\",\"url\":\"interfaces/collection.EdgeCollection.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"collection\"},{\"kind\":2048,\"name\":\"document\",\"url\":\"interfaces/collection.EdgeCollection.html#document\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"documents\",\"url\":\"interfaces/collection.EdgeCollection.html#documents\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"save\",\"url\":\"interfaces/collection.EdgeCollection.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"saveAll\",\"url\":\"interfaces/collection.EdgeCollection.html#saveAll\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"replace\",\"url\":\"interfaces/collection.EdgeCollection.html#replace\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"replaceAll\",\"url\":\"interfaces/collection.EdgeCollection.html#replaceAll\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"update\",\"url\":\"interfaces/collection.EdgeCollection.html#update\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"updateAll\",\"url\":\"interfaces/collection.EdgeCollection.html#updateAll\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"remove\",\"url\":\"interfaces/collection.EdgeCollection.html#remove\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"removeAll\",\"url\":\"interfaces/collection.EdgeCollection.html#removeAll\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"import\",\"url\":\"interfaces/collection.EdgeCollection.html#import\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"all\",\"url\":\"interfaces/collection.EdgeCollection.html#all\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"any\",\"url\":\"interfaces/collection.EdgeCollection.html#any\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"byExample\",\"url\":\"interfaces/collection.EdgeCollection.html#byExample\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"firstExample\",\"url\":\"interfaces/collection.EdgeCollection.html#firstExample\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"lookupByKeys\",\"url\":\"interfaces/collection.EdgeCollection.html#lookupByKeys\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"fulltext\",\"url\":\"interfaces/collection.EdgeCollection.html#fulltext\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"edges\",\"url\":\"interfaces/collection.EdgeCollection.html#edges\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"inEdges\",\"url\":\"interfaces/collection.EdgeCollection.html#inEdges\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"outEdges\",\"url\":\"interfaces/collection.EdgeCollection.html#outEdges\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"traversal\",\"url\":\"interfaces/collection.EdgeCollection.html#traversal\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"exists\",\"url\":\"interfaces/collection.EdgeCollection.html#exists\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"get\",\"url\":\"interfaces/collection.EdgeCollection.html#get\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"create\",\"url\":\"interfaces/collection.EdgeCollection.html#create\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"properties\",\"url\":\"interfaces/collection.EdgeCollection.html#properties\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"count\",\"url\":\"interfaces/collection.EdgeCollection.html#count\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"recalculateCount\",\"url\":\"interfaces/collection.EdgeCollection.html#recalculateCount\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"figures\",\"url\":\"interfaces/collection.EdgeCollection.html#figures\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"revision\",\"url\":\"interfaces/collection.EdgeCollection.html#revision\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"checksum\",\"url\":\"interfaces/collection.EdgeCollection.html#checksum\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"loadIndexes\",\"url\":\"interfaces/collection.EdgeCollection.html#loadIndexes\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"rename\",\"url\":\"interfaces/collection.EdgeCollection.html#rename\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"truncate\",\"url\":\"interfaces/collection.EdgeCollection.html#truncate\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"drop\",\"url\":\"interfaces/collection.EdgeCollection.html#drop\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"getResponsibleShard\",\"url\":\"interfaces/collection.EdgeCollection.html#getResponsibleShard\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"documentId\",\"url\":\"interfaces/collection.EdgeCollection.html#documentId\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"documentExists\",\"url\":\"interfaces/collection.EdgeCollection.html#documentExists\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"list\",\"url\":\"interfaces/collection.EdgeCollection.html#list\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"removeByExample\",\"url\":\"interfaces/collection.EdgeCollection.html#removeByExample\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"replaceByExample\",\"url\":\"interfaces/collection.EdgeCollection.html#replaceByExample\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"updateByExample\",\"url\":\"interfaces/collection.EdgeCollection.html#updateByExample\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"removeByKeys\",\"url\":\"interfaces/collection.EdgeCollection.html#removeByKeys\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"indexes\",\"url\":\"interfaces/collection.EdgeCollection.html#indexes\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"index\",\"url\":\"interfaces/collection.EdgeCollection.html#index\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"ensureIndex\",\"url\":\"interfaces/collection.EdgeCollection.html#ensureIndex\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"dropIndex\",\"url\":\"interfaces/collection.EdgeCollection.html#dropIndex\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2048,\"name\":\"compact\",\"url\":\"interfaces/collection.EdgeCollection.html#compact\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/collection.EdgeCollection.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"collection.EdgeCollection\"},{\"kind\":2,\"name\":\"connection\",\"url\":\"modules/connection.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":4194304,\"name\":\"LoadBalancingStrategy\",\"url\":\"types/connection.LoadBalancingStrategy.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"connection\"},{\"kind\":4194304,\"name\":\"Headers\",\"url\":\"types/connection.Headers.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"connection\"},{\"kind\":4194304,\"name\":\"Params\",\"url\":\"types/connection.Params.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"connection\"},{\"kind\":4194304,\"name\":\"ArangoResponseMetadata\",\"url\":\"types/connection.ArangoResponseMetadata.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"connection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/connection.ArangoResponseMetadata.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"connection.ArangoResponseMetadata\"},{\"kind\":1024,\"name\":\"error\",\"url\":\"types/connection.ArangoResponseMetadata.html#__type.error\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.ArangoResponseMetadata.__type\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"types/connection.ArangoResponseMetadata.html#__type.code\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.ArangoResponseMetadata.__type\"},{\"kind\":4194304,\"name\":\"ArangoApiResponse\",\"url\":\"types/connection.ArangoApiResponse.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"connection\"},{\"kind\":4194304,\"name\":\"BasicAuthCredentials\",\"url\":\"types/connection.BasicAuthCredentials.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"connection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/connection.BasicAuthCredentials.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"connection.BasicAuthCredentials\"},{\"kind\":1024,\"name\":\"username\",\"url\":\"types/connection.BasicAuthCredentials.html#__type.username\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.BasicAuthCredentials.__type\"},{\"kind\":1024,\"name\":\"password\",\"url\":\"types/connection.BasicAuthCredentials.html#__type.password\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.BasicAuthCredentials.__type\"},{\"kind\":4194304,\"name\":\"BearerAuthCredentials\",\"url\":\"types/connection.BearerAuthCredentials.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"connection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/connection.BearerAuthCredentials.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"connection.BearerAuthCredentials\"},{\"kind\":1024,\"name\":\"token\",\"url\":\"types/connection.BearerAuthCredentials.html#__type.token\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.BearerAuthCredentials.__type\"},{\"kind\":4194304,\"name\":\"XhrOptions\",\"url\":\"types/connection.XhrOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"connection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/connection.XhrOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"connection.XhrOptions\"},{\"kind\":1024,\"name\":\"maxSockets\",\"url\":\"types/connection.XhrOptions.html#__type.maxSockets\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.XhrOptions.__type\"},{\"kind\":1024,\"name\":\"timeout\",\"url\":\"types/connection.XhrOptions.html#__type.timeout\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.XhrOptions.__type\"},{\"kind\":1024,\"name\":\"beforeSend\",\"url\":\"types/connection.XhrOptions.html#__type.beforeSend\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.XhrOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/connection.XhrOptions.html#__type.beforeSend.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"connection.XhrOptions.__type.beforeSend\"},{\"kind\":1024,\"name\":\"xhr\",\"url\":\"types/connection.XhrOptions.html#__type.xhr\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.XhrOptions.__type\"},{\"kind\":1024,\"name\":\"useXdr\",\"url\":\"types/connection.XhrOptions.html#__type.useXdr\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.XhrOptions.__type\"},{\"kind\":1024,\"name\":\"withCredentials\",\"url\":\"types/connection.XhrOptions.html#__type.withCredentials\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.XhrOptions.__type\"},{\"kind\":4194304,\"name\":\"RequestInterceptors\",\"url\":\"types/connection.RequestInterceptors.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"connection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/connection.RequestInterceptors.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"connection.RequestInterceptors\"},{\"kind\":1024,\"name\":\"before\",\"url\":\"types/connection.RequestInterceptors.html#__type.before\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.RequestInterceptors.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/connection.RequestInterceptors.html#__type.before.__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"connection.RequestInterceptors.__type.before\"},{\"kind\":1024,\"name\":\"after\",\"url\":\"types/connection.RequestInterceptors.html#__type.after\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.RequestInterceptors.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/connection.RequestInterceptors.html#__type.after.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"connection.RequestInterceptors.__type.after\"},{\"kind\":4194304,\"name\":\"RequestOptions\",\"url\":\"types/connection.RequestOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"connection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/connection.RequestOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"connection.RequestOptions\"},{\"kind\":1024,\"name\":\"method\",\"url\":\"types/connection.RequestOptions.html#__type.method\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.RequestOptions.__type\"},{\"kind\":1024,\"name\":\"body\",\"url\":\"types/connection.RequestOptions.html#__type.body\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.RequestOptions.__type\"},{\"kind\":1024,\"name\":\"expectBinary\",\"url\":\"types/connection.RequestOptions.html#__type.expectBinary\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.RequestOptions.__type\"},{\"kind\":1024,\"name\":\"isBinary\",\"url\":\"types/connection.RequestOptions.html#__type.isBinary\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.RequestOptions.__type\"},{\"kind\":1024,\"name\":\"allowDirtyRead\",\"url\":\"types/connection.RequestOptions.html#__type.allowDirtyRead\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.RequestOptions.__type\"},{\"kind\":1024,\"name\":\"retryOnConflict\",\"url\":\"types/connection.RequestOptions.html#__type.retryOnConflict\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.RequestOptions.__type\"},{\"kind\":1024,\"name\":\"headers\",\"url\":\"types/connection.RequestOptions.html#__type.headers\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.RequestOptions.__type\"},{\"kind\":1024,\"name\":\"timeout\",\"url\":\"types/connection.RequestOptions.html#__type.timeout\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.RequestOptions.__type\"},{\"kind\":1024,\"name\":\"basePath\",\"url\":\"types/connection.RequestOptions.html#__type.basePath\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.RequestOptions.__type\"},{\"kind\":1024,\"name\":\"path\",\"url\":\"types/connection.RequestOptions.html#__type.path\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.RequestOptions.__type\"},{\"kind\":1024,\"name\":\"qs\",\"url\":\"types/connection.RequestOptions.html#__type.qs\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.RequestOptions.__type\"},{\"kind\":4194304,\"name\":\"AgentOptions\",\"url\":\"types/connection.AgentOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"connection\"},{\"kind\":4194304,\"name\":\"Config\",\"url\":\"types/connection.Config.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"connection\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/connection.Config.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"connection.Config\"},{\"kind\":1024,\"name\":\"databaseName\",\"url\":\"types/connection.Config.html#__type.databaseName\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.Config.__type\"},{\"kind\":1024,\"name\":\"url\",\"url\":\"types/connection.Config.html#__type.url\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.Config.__type\"},{\"kind\":1024,\"name\":\"auth\",\"url\":\"types/connection.Config.html#__type.auth\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.Config.__type\"},{\"kind\":1024,\"name\":\"arangoVersion\",\"url\":\"types/connection.Config.html#__type.arangoVersion\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.Config.__type\"},{\"kind\":1024,\"name\":\"loadBalancingStrategy\",\"url\":\"types/connection.Config.html#__type.loadBalancingStrategy\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.Config.__type\"},{\"kind\":1024,\"name\":\"maxRetries\",\"url\":\"types/connection.Config.html#__type.maxRetries\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.Config.__type\"},{\"kind\":1024,\"name\":\"retryOnConflict\",\"url\":\"types/connection.Config.html#__type.retryOnConflict\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.Config.__type\"},{\"kind\":1024,\"name\":\"agent\",\"url\":\"types/connection.Config.html#__type.agent\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.Config.__type\"},{\"kind\":1024,\"name\":\"agentOptions\",\"url\":\"types/connection.Config.html#__type.agentOptions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.Config.__type\"},{\"kind\":1024,\"name\":\"headers\",\"url\":\"types/connection.Config.html#__type.headers\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.Config.__type\"},{\"kind\":1024,\"name\":\"precaptureStackTraces\",\"url\":\"types/connection.Config.html#__type.precaptureStackTraces\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.Config.__type\"},{\"kind\":1024,\"name\":\"responseQueueTimeSamples\",\"url\":\"types/connection.Config.html#__type.responseQueueTimeSamples\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"connection.Config.__type\"},{\"kind\":2,\"name\":\"cursor\",\"url\":\"modules/cursor.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":256,\"name\":\"CursorExtras\",\"url\":\"interfaces/cursor.CursorExtras.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"cursor\"},{\"kind\":1024,\"name\":\"warnings\",\"url\":\"interfaces/cursor.CursorExtras.html#warnings\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"cursor.CursorExtras\"},{\"kind\":1024,\"name\":\"plan\",\"url\":\"interfaces/cursor.CursorExtras.html#plan\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"cursor.CursorExtras\"},{\"kind\":1024,\"name\":\"profile\",\"url\":\"interfaces/cursor.CursorExtras.html#profile\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"cursor.CursorExtras\"},{\"kind\":1024,\"name\":\"stats\",\"url\":\"interfaces/cursor.CursorExtras.html#stats\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"cursor.CursorExtras\"},{\"kind\":256,\"name\":\"CursorStats\",\"url\":\"interfaces/cursor.CursorStats.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"cursor\"},{\"kind\":1024,\"name\":\"cacheHits\",\"url\":\"interfaces/cursor.CursorStats.html#cacheHits\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"cursor.CursorStats\"},{\"kind\":1024,\"name\":\"cacheMisses\",\"url\":\"interfaces/cursor.CursorStats.html#cacheMisses\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"cursor.CursorStats\"},{\"kind\":1024,\"name\":\"cursorsCreated\",\"url\":\"interfaces/cursor.CursorStats.html#cursorsCreated\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"cursor.CursorStats\"},{\"kind\":1024,\"name\":\"cursorsRearmed\",\"url\":\"interfaces/cursor.CursorStats.html#cursorsRearmed\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"cursor.CursorStats\"},{\"kind\":1024,\"name\":\"writesExecuted\",\"url\":\"interfaces/cursor.CursorStats.html#writesExecuted\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"cursor.CursorStats\"},{\"kind\":1024,\"name\":\"writesIgnored\",\"url\":\"interfaces/cursor.CursorStats.html#writesIgnored\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"cursor.CursorStats\"},{\"kind\":1024,\"name\":\"scannedFull\",\"url\":\"interfaces/cursor.CursorStats.html#scannedFull\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"cursor.CursorStats\"},{\"kind\":1024,\"name\":\"scannedIndex\",\"url\":\"interfaces/cursor.CursorStats.html#scannedIndex\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"cursor.CursorStats\"},{\"kind\":1024,\"name\":\"filtered\",\"url\":\"interfaces/cursor.CursorStats.html#filtered\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"cursor.CursorStats\"},{\"kind\":1024,\"name\":\"peakMemoryUsage\",\"url\":\"interfaces/cursor.CursorStats.html#peakMemoryUsage\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"cursor.CursorStats\"},{\"kind\":1024,\"name\":\"executionTime\",\"url\":\"interfaces/cursor.CursorStats.html#executionTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"cursor.CursorStats\"},{\"kind\":1024,\"name\":\"fullCount\",\"url\":\"interfaces/cursor.CursorStats.html#fullCount\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"cursor.CursorStats\"},{\"kind\":1024,\"name\":\"httpRequests\",\"url\":\"interfaces/cursor.CursorStats.html#httpRequests\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"cursor.CursorStats\"},{\"kind\":1024,\"name\":\"nodes\",\"url\":\"interfaces/cursor.CursorStats.html#nodes\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"cursor.CursorStats\"},{\"kind\":128,\"name\":\"BatchedArrayCursor\",\"url\":\"classes/cursor.BatchedArrayCursor.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"cursor\"},{\"kind\":262144,\"name\":\"items\",\"url\":\"classes/cursor.BatchedArrayCursor.html#items\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"cursor.BatchedArrayCursor\"},{\"kind\":262144,\"name\":\"extra\",\"url\":\"classes/cursor.BatchedArrayCursor.html#extra\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"cursor.BatchedArrayCursor\"},{\"kind\":262144,\"name\":\"count\",\"url\":\"classes/cursor.BatchedArrayCursor.html#count\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"cursor.BatchedArrayCursor\"},{\"kind\":262144,\"name\":\"hasMore\",\"url\":\"classes/cursor.BatchedArrayCursor.html#hasMore\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"cursor.BatchedArrayCursor\"},{\"kind\":262144,\"name\":\"hasNext\",\"url\":\"classes/cursor.BatchedArrayCursor.html#hasNext\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"cursor.BatchedArrayCursor\"},{\"kind\":2048,\"name\":\"loadAll\",\"url\":\"classes/cursor.BatchedArrayCursor.html#loadAll\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"cursor.BatchedArrayCursor\"},{\"kind\":2048,\"name\":\"all\",\"url\":\"classes/cursor.BatchedArrayCursor.html#all\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"cursor.BatchedArrayCursor\"},{\"kind\":2048,\"name\":\"next\",\"url\":\"classes/cursor.BatchedArrayCursor.html#next\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"cursor.BatchedArrayCursor\"},{\"kind\":2048,\"name\":\"forEach\",\"url\":\"classes/cursor.BatchedArrayCursor.html#forEach\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"cursor.BatchedArrayCursor\"},{\"kind\":2048,\"name\":\"map\",\"url\":\"classes/cursor.BatchedArrayCursor.html#map\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"cursor.BatchedArrayCursor\"},{\"kind\":2048,\"name\":\"flatMap\",\"url\":\"classes/cursor.BatchedArrayCursor.html#flatMap\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"cursor.BatchedArrayCursor\"},{\"kind\":2048,\"name\":\"reduce\",\"url\":\"classes/cursor.BatchedArrayCursor.html#reduce\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"cursor.BatchedArrayCursor\"},{\"kind\":2048,\"name\":\"kill\",\"url\":\"classes/cursor.BatchedArrayCursor.html#kill\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"cursor.BatchedArrayCursor\"},{\"kind\":2048,\"name\":\"[asyncIterator]\",\"url\":\"classes/cursor.BatchedArrayCursor.html#_asyncIterator_\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"cursor.BatchedArrayCursor\"},{\"kind\":128,\"name\":\"ArrayCursor\",\"url\":\"classes/cursor.ArrayCursor.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"cursor\"},{\"kind\":262144,\"name\":\"batches\",\"url\":\"classes/cursor.ArrayCursor.html#batches\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"cursor.ArrayCursor\"},{\"kind\":262144,\"name\":\"extra\",\"url\":\"classes/cursor.ArrayCursor.html#extra\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"cursor.ArrayCursor\"},{\"kind\":262144,\"name\":\"count\",\"url\":\"classes/cursor.ArrayCursor.html#count\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"cursor.ArrayCursor\"},{\"kind\":262144,\"name\":\"hasNext\",\"url\":\"classes/cursor.ArrayCursor.html#hasNext\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"cursor.ArrayCursor\"},{\"kind\":2048,\"name\":\"all\",\"url\":\"classes/cursor.ArrayCursor.html#all\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"cursor.ArrayCursor\"},{\"kind\":2048,\"name\":\"next\",\"url\":\"classes/cursor.ArrayCursor.html#next\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"cursor.ArrayCursor\"},{\"kind\":2048,\"name\":\"forEach\",\"url\":\"classes/cursor.ArrayCursor.html#forEach\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"cursor.ArrayCursor\"},{\"kind\":2048,\"name\":\"map\",\"url\":\"classes/cursor.ArrayCursor.html#map\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"cursor.ArrayCursor\"},{\"kind\":2048,\"name\":\"flatMap\",\"url\":\"classes/cursor.ArrayCursor.html#flatMap\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"cursor.ArrayCursor\"},{\"kind\":2048,\"name\":\"reduce\",\"url\":\"classes/cursor.ArrayCursor.html#reduce\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"cursor.ArrayCursor\"},{\"kind\":2048,\"name\":\"kill\",\"url\":\"classes/cursor.ArrayCursor.html#kill\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"cursor.ArrayCursor\"},{\"kind\":2048,\"name\":\"[asyncIterator]\",\"url\":\"classes/cursor.ArrayCursor.html#_asyncIterator_\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"cursor.ArrayCursor\"},{\"kind\":2,\"name\":\"database\",\"url\":\"modules/database.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"isArangoDatabase\",\"url\":\"functions/database.isArangoDatabase.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":4194304,\"name\":\"TransactionCollections\",\"url\":\"types/database.TransactionCollections.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.TransactionCollections.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.TransactionCollections\"},{\"kind\":1024,\"name\":\"exclusive\",\"url\":\"types/database.TransactionCollections.html#__type.exclusive\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.TransactionCollections.__type\"},{\"kind\":1024,\"name\":\"write\",\"url\":\"types/database.TransactionCollections.html#__type.write\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.TransactionCollections.__type\"},{\"kind\":1024,\"name\":\"read\",\"url\":\"types/database.TransactionCollections.html#__type.read\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.TransactionCollections.__type\"},{\"kind\":4194304,\"name\":\"TransactionOptions\",\"url\":\"types/database.TransactionOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.TransactionOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.TransactionOptions\"},{\"kind\":1024,\"name\":\"allowImplicit\",\"url\":\"types/database.TransactionOptions.html#__type.allowImplicit\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.TransactionOptions.__type\"},{\"kind\":1024,\"name\":\"allowDirtyRead\",\"url\":\"types/database.TransactionOptions.html#__type.allowDirtyRead\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.TransactionOptions.__type\"},{\"kind\":1024,\"name\":\"waitForSync\",\"url\":\"types/database.TransactionOptions.html#__type.waitForSync\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.TransactionOptions.__type\"},{\"kind\":1024,\"name\":\"lockTimeout\",\"url\":\"types/database.TransactionOptions.html#__type.lockTimeout\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.TransactionOptions.__type\"},{\"kind\":1024,\"name\":\"maxTransactionSize\",\"url\":\"types/database.TransactionOptions.html#__type.maxTransactionSize\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.TransactionOptions.__type\"},{\"kind\":4194304,\"name\":\"QueryOptions\",\"url\":\"types/database.QueryOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.QueryOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.QueryOptions\"},{\"kind\":1024,\"name\":\"allowDirtyRead\",\"url\":\"types/database.QueryOptions.html#__type.allowDirtyRead\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"allowRetry\",\"url\":\"types/database.QueryOptions.html#__type.allowRetry\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"timeout\",\"url\":\"types/database.QueryOptions.html#__type.timeout\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"retryOnConflict\",\"url\":\"types/database.QueryOptions.html#__type.retryOnConflict\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"count\",\"url\":\"types/database.QueryOptions.html#__type.count\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"batchSize\",\"url\":\"types/database.QueryOptions.html#__type.batchSize\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"cache\",\"url\":\"types/database.QueryOptions.html#__type.cache\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"memoryLimit\",\"url\":\"types/database.QueryOptions.html#__type.memoryLimit\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"maxRuntime\",\"url\":\"types/database.QueryOptions.html#__type.maxRuntime\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"ttl\",\"url\":\"types/database.QueryOptions.html#__type.ttl\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"failOnWarning\",\"url\":\"types/database.QueryOptions.html#__type.failOnWarning\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"profile\",\"url\":\"types/database.QueryOptions.html#__type.profile\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"stream\",\"url\":\"types/database.QueryOptions.html#__type.stream\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"maxWarningsCount\",\"url\":\"types/database.QueryOptions.html#__type.maxWarningsCount\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"fullCount\",\"url\":\"types/database.QueryOptions.html#__type.fullCount\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"fillBlockCache\",\"url\":\"types/database.QueryOptions.html#__type.fillBlockCache\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"optimizer\",\"url\":\"types/database.QueryOptions.html#__type.optimizer\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.QueryOptions.html#__type.optimizer.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"database.QueryOptions.__type.optimizer\"},{\"kind\":1024,\"name\":\"rules\",\"url\":\"types/database.QueryOptions.html#__type.optimizer.__type-1.rules\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type.optimizer.__type\"},{\"kind\":1024,\"name\":\"maxPlans\",\"url\":\"types/database.QueryOptions.html#__type.maxPlans\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"maxNodesPerCallstack\",\"url\":\"types/database.QueryOptions.html#__type.maxNodesPerCallstack\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"maxTransactionSize\",\"url\":\"types/database.QueryOptions.html#__type.maxTransactionSize\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"intermediateCommitCount\",\"url\":\"types/database.QueryOptions.html#__type.intermediateCommitCount\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"intermediateCommitSize\",\"url\":\"types/database.QueryOptions.html#__type.intermediateCommitSize\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"skipInaccessibleCollections\",\"url\":\"types/database.QueryOptions.html#__type.skipInaccessibleCollections\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":1024,\"name\":\"satelliteSyncWait\",\"url\":\"types/database.QueryOptions.html#__type.satelliteSyncWait\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptions.__type\"},{\"kind\":4194304,\"name\":\"ExplainOptions\",\"url\":\"types/database.ExplainOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ExplainOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.ExplainOptions\"},{\"kind\":1024,\"name\":\"optimizer\",\"url\":\"types/database.ExplainOptions.html#__type.optimizer\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ExplainOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ExplainOptions.html#__type.optimizer.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"database.ExplainOptions.__type.optimizer\"},{\"kind\":1024,\"name\":\"rules\",\"url\":\"types/database.ExplainOptions.html#__type.optimizer.__type-1.rules\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ExplainOptions.__type.optimizer.__type\"},{\"kind\":1024,\"name\":\"maxNumberOfPlans\",\"url\":\"types/database.ExplainOptions.html#__type.maxNumberOfPlans\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ExplainOptions.__type\"},{\"kind\":1024,\"name\":\"allPlans\",\"url\":\"types/database.ExplainOptions.html#__type.allPlans\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ExplainOptions.__type\"},{\"kind\":4194304,\"name\":\"TransactionDetails\",\"url\":\"types/database.TransactionDetails.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.TransactionDetails.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.TransactionDetails\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"types/database.TransactionDetails.html#__type.id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.TransactionDetails.__type\"},{\"kind\":1024,\"name\":\"state\",\"url\":\"types/database.TransactionDetails.html#__type.state\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.TransactionDetails.__type\"},{\"kind\":4194304,\"name\":\"ExplainPlan\",\"url\":\"types/database.ExplainPlan.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ExplainPlan.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.ExplainPlan\"},{\"kind\":1024,\"name\":\"nodes\",\"url\":\"types/database.ExplainPlan.html#__type.nodes\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ExplainPlan.__type\"},{\"kind\":1024,\"name\":\"rules\",\"url\":\"types/database.ExplainPlan.html#__type.rules\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ExplainPlan.__type\"},{\"kind\":1024,\"name\":\"collections\",\"url\":\"types/database.ExplainPlan.html#__type.collections\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ExplainPlan.__type\"},{\"kind\":1024,\"name\":\"variables\",\"url\":\"types/database.ExplainPlan.html#__type.variables\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ExplainPlan.__type\"},{\"kind\":1024,\"name\":\"estimatedCost\",\"url\":\"types/database.ExplainPlan.html#__type.estimatedCost\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ExplainPlan.__type\"},{\"kind\":1024,\"name\":\"estimatedNrItems\",\"url\":\"types/database.ExplainPlan.html#__type.estimatedNrItems\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ExplainPlan.__type\"},{\"kind\":1024,\"name\":\"isModificationQuery\",\"url\":\"types/database.ExplainPlan.html#__type.isModificationQuery\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ExplainPlan.__type\"},{\"kind\":4194304,\"name\":\"SingleExplainResult\",\"url\":\"types/database.SingleExplainResult.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.SingleExplainResult.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.SingleExplainResult\"},{\"kind\":1024,\"name\":\"plan\",\"url\":\"types/database.SingleExplainResult.html#__type.plan\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SingleExplainResult.__type\"},{\"kind\":1024,\"name\":\"cacheable\",\"url\":\"types/database.SingleExplainResult.html#__type.cacheable\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SingleExplainResult.__type\"},{\"kind\":1024,\"name\":\"warnings\",\"url\":\"types/database.SingleExplainResult.html#__type.warnings\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SingleExplainResult.__type\"},{\"kind\":1024,\"name\":\"stats\",\"url\":\"types/database.SingleExplainResult.html#__type.stats\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SingleExplainResult.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.SingleExplainResult.html#__type.stats.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"database.SingleExplainResult.__type.stats\"},{\"kind\":1024,\"name\":\"rulesExecuted\",\"url\":\"types/database.SingleExplainResult.html#__type.stats.__type-1.rulesExecuted\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SingleExplainResult.__type.stats.__type\"},{\"kind\":1024,\"name\":\"rulesSkipped\",\"url\":\"types/database.SingleExplainResult.html#__type.stats.__type-1.rulesSkipped\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SingleExplainResult.__type.stats.__type\"},{\"kind\":1024,\"name\":\"plansCreated\",\"url\":\"types/database.SingleExplainResult.html#__type.stats.__type-1.plansCreated\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SingleExplainResult.__type.stats.__type\"},{\"kind\":1024,\"name\":\"peakMemoryUsage\",\"url\":\"types/database.SingleExplainResult.html#__type.stats.__type-1.peakMemoryUsage\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SingleExplainResult.__type.stats.__type\"},{\"kind\":1024,\"name\":\"executionTime\",\"url\":\"types/database.SingleExplainResult.html#__type.stats.__type-1.executionTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SingleExplainResult.__type.stats.__type\"},{\"kind\":4194304,\"name\":\"MultiExplainResult\",\"url\":\"types/database.MultiExplainResult.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.MultiExplainResult.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.MultiExplainResult\"},{\"kind\":1024,\"name\":\"plans\",\"url\":\"types/database.MultiExplainResult.html#__type.plans\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.MultiExplainResult.__type\"},{\"kind\":1024,\"name\":\"cacheable\",\"url\":\"types/database.MultiExplainResult.html#__type.cacheable\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.MultiExplainResult.__type\"},{\"kind\":1024,\"name\":\"warnings\",\"url\":\"types/database.MultiExplainResult.html#__type.warnings\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.MultiExplainResult.__type\"},{\"kind\":1024,\"name\":\"stats\",\"url\":\"types/database.MultiExplainResult.html#__type.stats\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.MultiExplainResult.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.MultiExplainResult.html#__type.stats.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"database.MultiExplainResult.__type.stats\"},{\"kind\":1024,\"name\":\"rulesExecuted\",\"url\":\"types/database.MultiExplainResult.html#__type.stats.__type-1.rulesExecuted\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.MultiExplainResult.__type.stats.__type\"},{\"kind\":1024,\"name\":\"rulesSkipped\",\"url\":\"types/database.MultiExplainResult.html#__type.stats.__type-1.rulesSkipped\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.MultiExplainResult.__type.stats.__type\"},{\"kind\":1024,\"name\":\"plansCreated\",\"url\":\"types/database.MultiExplainResult.html#__type.stats.__type-1.plansCreated\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.MultiExplainResult.__type.stats.__type\"},{\"kind\":4194304,\"name\":\"AstNode\",\"url\":\"types/database.AstNode.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.AstNode.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.AstNode\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/database.AstNode.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.AstNode.__type\"},{\"kind\":1024,\"name\":\"subNodes\",\"url\":\"types/database.AstNode.html#__type.subNodes\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.AstNode.__type\"},{\"kind\":4194304,\"name\":\"ParseResult\",\"url\":\"types/database.ParseResult.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ParseResult.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.ParseResult\"},{\"kind\":1024,\"name\":\"parsed\",\"url\":\"types/database.ParseResult.html#__type.parsed\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ParseResult.__type\"},{\"kind\":1024,\"name\":\"collections\",\"url\":\"types/database.ParseResult.html#__type.collections\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ParseResult.__type\"},{\"kind\":1024,\"name\":\"bindVars\",\"url\":\"types/database.ParseResult.html#__type.bindVars\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ParseResult.__type\"},{\"kind\":1024,\"name\":\"ast\",\"url\":\"types/database.ParseResult.html#__type.ast\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ParseResult.__type\"},{\"kind\":4194304,\"name\":\"QueryOptimizerRule\",\"url\":\"types/database.QueryOptimizerRule.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.QueryOptimizerRule.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.QueryOptimizerRule\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/database.QueryOptimizerRule.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptimizerRule.__type\"},{\"kind\":1024,\"name\":\"flags\",\"url\":\"types/database.QueryOptimizerRule.html#__type.flags\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptimizerRule.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.QueryOptimizerRule.html#__type.flags.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"database.QueryOptimizerRule.__type.flags\"},{\"kind\":1024,\"name\":\"hidden\",\"url\":\"types/database.QueryOptimizerRule.html#__type.flags.__type-1.hidden\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptimizerRule.__type.flags.__type\"},{\"kind\":1024,\"name\":\"clusterOnly\",\"url\":\"types/database.QueryOptimizerRule.html#__type.flags.__type-1.clusterOnly\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptimizerRule.__type.flags.__type\"},{\"kind\":1024,\"name\":\"canBeDisabled\",\"url\":\"types/database.QueryOptimizerRule.html#__type.flags.__type-1.canBeDisabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptimizerRule.__type.flags.__type\"},{\"kind\":1024,\"name\":\"canCreateAdditionalPlans\",\"url\":\"types/database.QueryOptimizerRule.html#__type.flags.__type-1.canCreateAdditionalPlans\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptimizerRule.__type.flags.__type\"},{\"kind\":1024,\"name\":\"disabledByDefault\",\"url\":\"types/database.QueryOptimizerRule.html#__type.flags.__type-1.disabledByDefault\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptimizerRule.__type.flags.__type\"},{\"kind\":1024,\"name\":\"enterpriseOnly\",\"url\":\"types/database.QueryOptimizerRule.html#__type.flags.__type-1.enterpriseOnly\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryOptimizerRule.__type.flags.__type\"},{\"kind\":4194304,\"name\":\"QueryTracking\",\"url\":\"types/database.QueryTracking.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.QueryTracking.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.QueryTracking\"},{\"kind\":1024,\"name\":\"enabled\",\"url\":\"types/database.QueryTracking.html#__type.enabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryTracking.__type\"},{\"kind\":1024,\"name\":\"maxQueryStringLength\",\"url\":\"types/database.QueryTracking.html#__type.maxQueryStringLength\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryTracking.__type\"},{\"kind\":1024,\"name\":\"maxSlowQueries\",\"url\":\"types/database.QueryTracking.html#__type.maxSlowQueries\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryTracking.__type\"},{\"kind\":1024,\"name\":\"slowQueryThreshold\",\"url\":\"types/database.QueryTracking.html#__type.slowQueryThreshold\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryTracking.__type\"},{\"kind\":1024,\"name\":\"trackBindVars\",\"url\":\"types/database.QueryTracking.html#__type.trackBindVars\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryTracking.__type\"},{\"kind\":1024,\"name\":\"trackSlowQueries\",\"url\":\"types/database.QueryTracking.html#__type.trackSlowQueries\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryTracking.__type\"},{\"kind\":4194304,\"name\":\"QueryTrackingOptions\",\"url\":\"types/database.QueryTrackingOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.QueryTrackingOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.QueryTrackingOptions\"},{\"kind\":1024,\"name\":\"enabled\",\"url\":\"types/database.QueryTrackingOptions.html#__type.enabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryTrackingOptions.__type\"},{\"kind\":1024,\"name\":\"maxQueryStringLength\",\"url\":\"types/database.QueryTrackingOptions.html#__type.maxQueryStringLength\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryTrackingOptions.__type\"},{\"kind\":1024,\"name\":\"maxSlowQueries\",\"url\":\"types/database.QueryTrackingOptions.html#__type.maxSlowQueries\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryTrackingOptions.__type\"},{\"kind\":1024,\"name\":\"slowQueryThreshold\",\"url\":\"types/database.QueryTrackingOptions.html#__type.slowQueryThreshold\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryTrackingOptions.__type\"},{\"kind\":1024,\"name\":\"trackBindVars\",\"url\":\"types/database.QueryTrackingOptions.html#__type.trackBindVars\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryTrackingOptions.__type\"},{\"kind\":1024,\"name\":\"trackSlowQueries\",\"url\":\"types/database.QueryTrackingOptions.html#__type.trackSlowQueries\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryTrackingOptions.__type\"},{\"kind\":4194304,\"name\":\"QueryInfo\",\"url\":\"types/database.QueryInfo.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.QueryInfo.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.QueryInfo\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"types/database.QueryInfo.html#__type.id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryInfo.__type\"},{\"kind\":1024,\"name\":\"query\",\"url\":\"types/database.QueryInfo.html#__type.query\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryInfo.__type\"},{\"kind\":1024,\"name\":\"bindVars\",\"url\":\"types/database.QueryInfo.html#__type.bindVars\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryInfo.__type\"},{\"kind\":1024,\"name\":\"runTime\",\"url\":\"types/database.QueryInfo.html#__type.runTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryInfo.__type\"},{\"kind\":1024,\"name\":\"started\",\"url\":\"types/database.QueryInfo.html#__type.started\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryInfo.__type\"},{\"kind\":1024,\"name\":\"state\",\"url\":\"types/database.QueryInfo.html#__type.state\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryInfo.__type\"},{\"kind\":1024,\"name\":\"stream\",\"url\":\"types/database.QueryInfo.html#__type.stream\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueryInfo.__type\"},{\"kind\":4194304,\"name\":\"CreateDatabaseUser\",\"url\":\"types/database.CreateDatabaseUser.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.CreateDatabaseUser.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.CreateDatabaseUser\"},{\"kind\":1024,\"name\":\"username\",\"url\":\"types/database.CreateDatabaseUser.html#__type.username\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.CreateDatabaseUser.__type\"},{\"kind\":1024,\"name\":\"passwd\",\"url\":\"types/database.CreateDatabaseUser.html#__type.passwd\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.CreateDatabaseUser.__type\"},{\"kind\":1024,\"name\":\"active\",\"url\":\"types/database.CreateDatabaseUser.html#__type.active\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.CreateDatabaseUser.__type\"},{\"kind\":1024,\"name\":\"extra\",\"url\":\"types/database.CreateDatabaseUser.html#__type.extra\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.CreateDatabaseUser.__type\"},{\"kind\":4194304,\"name\":\"CreateDatabaseOptions\",\"url\":\"types/database.CreateDatabaseOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.CreateDatabaseOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.CreateDatabaseOptions\"},{\"kind\":1024,\"name\":\"users\",\"url\":\"types/database.CreateDatabaseOptions.html#__type.users\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.CreateDatabaseOptions.__type\"},{\"kind\":1024,\"name\":\"sharding\",\"url\":\"types/database.CreateDatabaseOptions.html#__type.sharding\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.CreateDatabaseOptions.__type\"},{\"kind\":1024,\"name\":\"replicationFactor\",\"url\":\"types/database.CreateDatabaseOptions.html#__type.replicationFactor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.CreateDatabaseOptions.__type\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"types/database.CreateDatabaseOptions.html#__type.writeConcern\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.CreateDatabaseOptions.__type\"},{\"kind\":4194304,\"name\":\"DatabaseInfo\",\"url\":\"types/database.DatabaseInfo.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.DatabaseInfo.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.DatabaseInfo\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/database.DatabaseInfo.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.DatabaseInfo.__type\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"types/database.DatabaseInfo.html#__type.id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.DatabaseInfo.__type\"},{\"kind\":1024,\"name\":\"path\",\"url\":\"types/database.DatabaseInfo.html#__type.path\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.DatabaseInfo.__type\"},{\"kind\":1024,\"name\":\"isSystem\",\"url\":\"types/database.DatabaseInfo.html#__type.isSystem\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.DatabaseInfo.__type\"},{\"kind\":1024,\"name\":\"sharding\",\"url\":\"types/database.DatabaseInfo.html#__type.sharding\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.DatabaseInfo.__type\"},{\"kind\":1024,\"name\":\"replicationFactor\",\"url\":\"types/database.DatabaseInfo.html#__type.replicationFactor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.DatabaseInfo.__type\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"types/database.DatabaseInfo.html#__type.writeConcern\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.DatabaseInfo.__type\"},{\"kind\":4194304,\"name\":\"VersionInfo\",\"url\":\"types/database.VersionInfo.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.VersionInfo.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.VersionInfo\"},{\"kind\":1024,\"name\":\"server\",\"url\":\"types/database.VersionInfo.html#__type.server\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.VersionInfo.__type\"},{\"kind\":1024,\"name\":\"license\",\"url\":\"types/database.VersionInfo.html#__type.license\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.VersionInfo.__type\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"types/database.VersionInfo.html#__type.version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.VersionInfo.__type\"},{\"kind\":1024,\"name\":\"details\",\"url\":\"types/database.VersionInfo.html#__type.details\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.VersionInfo.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.VersionInfo.html#__type.details.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"database.VersionInfo.__type.details\"},{\"kind\":4194304,\"name\":\"AqlUserFunction\",\"url\":\"types/database.AqlUserFunction.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.AqlUserFunction.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.AqlUserFunction\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/database.AqlUserFunction.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.AqlUserFunction.__type\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"types/database.AqlUserFunction.html#__type.code\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.AqlUserFunction.__type\"},{\"kind\":1024,\"name\":\"isDeterministic\",\"url\":\"types/database.AqlUserFunction.html#__type.isDeterministic\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.AqlUserFunction.__type\"},{\"kind\":4194304,\"name\":\"InstallServiceOptions\",\"url\":\"types/database.InstallServiceOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.InstallServiceOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.InstallServiceOptions\"},{\"kind\":1024,\"name\":\"configuration\",\"url\":\"types/database.InstallServiceOptions.html#__type.configuration\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.InstallServiceOptions.__type\"},{\"kind\":1024,\"name\":\"dependencies\",\"url\":\"types/database.InstallServiceOptions.html#__type.dependencies\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.InstallServiceOptions.__type\"},{\"kind\":1024,\"name\":\"development\",\"url\":\"types/database.InstallServiceOptions.html#__type.development\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.InstallServiceOptions.__type\"},{\"kind\":1024,\"name\":\"legacy\",\"url\":\"types/database.InstallServiceOptions.html#__type.legacy\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.InstallServiceOptions.__type\"},{\"kind\":1024,\"name\":\"setup\",\"url\":\"types/database.InstallServiceOptions.html#__type.setup\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.InstallServiceOptions.__type\"},{\"kind\":4194304,\"name\":\"ReplaceServiceOptions\",\"url\":\"types/database.ReplaceServiceOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ReplaceServiceOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.ReplaceServiceOptions\"},{\"kind\":1024,\"name\":\"configuration\",\"url\":\"types/database.ReplaceServiceOptions.html#__type.configuration\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ReplaceServiceOptions.__type\"},{\"kind\":1024,\"name\":\"dependencies\",\"url\":\"types/database.ReplaceServiceOptions.html#__type.dependencies\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ReplaceServiceOptions.__type\"},{\"kind\":1024,\"name\":\"development\",\"url\":\"types/database.ReplaceServiceOptions.html#__type.development\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ReplaceServiceOptions.__type\"},{\"kind\":1024,\"name\":\"legacy\",\"url\":\"types/database.ReplaceServiceOptions.html#__type.legacy\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ReplaceServiceOptions.__type\"},{\"kind\":1024,\"name\":\"setup\",\"url\":\"types/database.ReplaceServiceOptions.html#__type.setup\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ReplaceServiceOptions.__type\"},{\"kind\":1024,\"name\":\"teardown\",\"url\":\"types/database.ReplaceServiceOptions.html#__type.teardown\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ReplaceServiceOptions.__type\"},{\"kind\":1024,\"name\":\"force\",\"url\":\"types/database.ReplaceServiceOptions.html#__type.force\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ReplaceServiceOptions.__type\"},{\"kind\":4194304,\"name\":\"UpgradeServiceOptions\",\"url\":\"types/database.UpgradeServiceOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.UpgradeServiceOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.UpgradeServiceOptions\"},{\"kind\":1024,\"name\":\"configuration\",\"url\":\"types/database.UpgradeServiceOptions.html#__type.configuration\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.UpgradeServiceOptions.__type\"},{\"kind\":1024,\"name\":\"dependencies\",\"url\":\"types/database.UpgradeServiceOptions.html#__type.dependencies\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.UpgradeServiceOptions.__type\"},{\"kind\":1024,\"name\":\"development\",\"url\":\"types/database.UpgradeServiceOptions.html#__type.development\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.UpgradeServiceOptions.__type\"},{\"kind\":1024,\"name\":\"legacy\",\"url\":\"types/database.UpgradeServiceOptions.html#__type.legacy\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.UpgradeServiceOptions.__type\"},{\"kind\":1024,\"name\":\"setup\",\"url\":\"types/database.UpgradeServiceOptions.html#__type.setup\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.UpgradeServiceOptions.__type\"},{\"kind\":1024,\"name\":\"teardown\",\"url\":\"types/database.UpgradeServiceOptions.html#__type.teardown\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.UpgradeServiceOptions.__type\"},{\"kind\":1024,\"name\":\"force\",\"url\":\"types/database.UpgradeServiceOptions.html#__type.force\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.UpgradeServiceOptions.__type\"},{\"kind\":4194304,\"name\":\"UninstallServiceOptions\",\"url\":\"types/database.UninstallServiceOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.UninstallServiceOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.UninstallServiceOptions\"},{\"kind\":1024,\"name\":\"teardown\",\"url\":\"types/database.UninstallServiceOptions.html#__type.teardown\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.UninstallServiceOptions.__type\"},{\"kind\":1024,\"name\":\"force\",\"url\":\"types/database.UninstallServiceOptions.html#__type.force\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.UninstallServiceOptions.__type\"},{\"kind\":4194304,\"name\":\"ServiceSummary\",\"url\":\"types/database.ServiceSummary.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ServiceSummary.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.ServiceSummary\"},{\"kind\":1024,\"name\":\"mount\",\"url\":\"types/database.ServiceSummary.html#__type.mount\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceSummary.__type\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/database.ServiceSummary.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceSummary.__type\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"types/database.ServiceSummary.html#__type.version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceSummary.__type\"},{\"kind\":1024,\"name\":\"provides\",\"url\":\"types/database.ServiceSummary.html#__type.provides\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceSummary.__type\"},{\"kind\":1024,\"name\":\"development\",\"url\":\"types/database.ServiceSummary.html#__type.development\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceSummary.__type\"},{\"kind\":1024,\"name\":\"legacy\",\"url\":\"types/database.ServiceSummary.html#__type.legacy\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceSummary.__type\"},{\"kind\":4194304,\"name\":\"ServiceInfo\",\"url\":\"types/database.ServiceInfo.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ServiceInfo.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.ServiceInfo\"},{\"kind\":1024,\"name\":\"mount\",\"url\":\"types/database.ServiceInfo.html#__type.mount\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceInfo.__type\"},{\"kind\":1024,\"name\":\"path\",\"url\":\"types/database.ServiceInfo.html#__type.path\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceInfo.__type\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/database.ServiceInfo.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceInfo.__type\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"types/database.ServiceInfo.html#__type.version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceInfo.__type\"},{\"kind\":1024,\"name\":\"development\",\"url\":\"types/database.ServiceInfo.html#__type.development\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceInfo.__type\"},{\"kind\":1024,\"name\":\"legacy\",\"url\":\"types/database.ServiceInfo.html#__type.legacy\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceInfo.__type\"},{\"kind\":1024,\"name\":\"manifest\",\"url\":\"types/database.ServiceInfo.html#__type.manifest\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceInfo.__type\"},{\"kind\":1024,\"name\":\"checksum\",\"url\":\"types/database.ServiceInfo.html#__type.checksum\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceInfo.__type\"},{\"kind\":1024,\"name\":\"options\",\"url\":\"types/database.ServiceInfo.html#__type.options\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceInfo.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ServiceInfo.html#__type.options.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"database.ServiceInfo.__type.options\"},{\"kind\":1024,\"name\":\"configuration\",\"url\":\"types/database.ServiceInfo.html#__type.options.__type-1.configuration\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceInfo.__type.options.__type\"},{\"kind\":1024,\"name\":\"dependencies\",\"url\":\"types/database.ServiceInfo.html#__type.options.__type-1.dependencies\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceInfo.__type.options.__type\"},{\"kind\":4194304,\"name\":\"ServiceConfiguration\",\"url\":\"types/database.ServiceConfiguration.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ServiceConfiguration.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.ServiceConfiguration\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/database.ServiceConfiguration.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceConfiguration.__type\"},{\"kind\":1024,\"name\":\"currentRaw\",\"url\":\"types/database.ServiceConfiguration.html#__type.currentRaw\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceConfiguration.__type\"},{\"kind\":1024,\"name\":\"current\",\"url\":\"types/database.ServiceConfiguration.html#__type.current\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceConfiguration.__type\"},{\"kind\":1024,\"name\":\"title\",\"url\":\"types/database.ServiceConfiguration.html#__type.title\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceConfiguration.__type\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"types/database.ServiceConfiguration.html#__type.description\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceConfiguration.__type\"},{\"kind\":1024,\"name\":\"required\",\"url\":\"types/database.ServiceConfiguration.html#__type.required\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceConfiguration.__type\"},{\"kind\":1024,\"name\":\"default\",\"url\":\"types/database.ServiceConfiguration.html#__type.default\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceConfiguration.__type\"},{\"kind\":4194304,\"name\":\"SingleServiceDependency\",\"url\":\"types/database.SingleServiceDependency.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.SingleServiceDependency.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.SingleServiceDependency\"},{\"kind\":1024,\"name\":\"multiple\",\"url\":\"types/database.SingleServiceDependency.html#__type.multiple\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SingleServiceDependency.__type\"},{\"kind\":1024,\"name\":\"current\",\"url\":\"types/database.SingleServiceDependency.html#__type.current\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SingleServiceDependency.__type\"},{\"kind\":1024,\"name\":\"title\",\"url\":\"types/database.SingleServiceDependency.html#__type.title\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SingleServiceDependency.__type\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/database.SingleServiceDependency.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SingleServiceDependency.__type\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"types/database.SingleServiceDependency.html#__type.version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SingleServiceDependency.__type\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"types/database.SingleServiceDependency.html#__type.description\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SingleServiceDependency.__type\"},{\"kind\":1024,\"name\":\"required\",\"url\":\"types/database.SingleServiceDependency.html#__type.required\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SingleServiceDependency.__type\"},{\"kind\":4194304,\"name\":\"MultiServiceDependency\",\"url\":\"types/database.MultiServiceDependency.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.MultiServiceDependency.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.MultiServiceDependency\"},{\"kind\":1024,\"name\":\"multiple\",\"url\":\"types/database.MultiServiceDependency.html#__type.multiple\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.MultiServiceDependency.__type\"},{\"kind\":1024,\"name\":\"current\",\"url\":\"types/database.MultiServiceDependency.html#__type.current\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.MultiServiceDependency.__type\"},{\"kind\":1024,\"name\":\"title\",\"url\":\"types/database.MultiServiceDependency.html#__type.title\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.MultiServiceDependency.__type\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/database.MultiServiceDependency.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.MultiServiceDependency.__type\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"types/database.MultiServiceDependency.html#__type.version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.MultiServiceDependency.__type\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"types/database.MultiServiceDependency.html#__type.description\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.MultiServiceDependency.__type\"},{\"kind\":1024,\"name\":\"required\",\"url\":\"types/database.MultiServiceDependency.html#__type.required\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.MultiServiceDependency.__type\"},{\"kind\":4194304,\"name\":\"ServiceTestStats\",\"url\":\"types/database.ServiceTestStats.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ServiceTestStats.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.ServiceTestStats\"},{\"kind\":1024,\"name\":\"tests\",\"url\":\"types/database.ServiceTestStats.html#__type.tests\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestStats.__type\"},{\"kind\":1024,\"name\":\"passes\",\"url\":\"types/database.ServiceTestStats.html#__type.passes\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestStats.__type\"},{\"kind\":1024,\"name\":\"failures\",\"url\":\"types/database.ServiceTestStats.html#__type.failures\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestStats.__type\"},{\"kind\":1024,\"name\":\"pending\",\"url\":\"types/database.ServiceTestStats.html#__type.pending\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestStats.__type\"},{\"kind\":1024,\"name\":\"duration\",\"url\":\"types/database.ServiceTestStats.html#__type.duration\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestStats.__type\"},{\"kind\":4194304,\"name\":\"ServiceTestStreamTest\",\"url\":\"types/database.ServiceTestStreamTest.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ServiceTestStreamTest.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.ServiceTestStreamTest\"},{\"kind\":1024,\"name\":\"title\",\"url\":\"types/database.ServiceTestStreamTest.html#__type.title\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestStreamTest.__type\"},{\"kind\":1024,\"name\":\"fullTitle\",\"url\":\"types/database.ServiceTestStreamTest.html#__type.fullTitle\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestStreamTest.__type\"},{\"kind\":1024,\"name\":\"duration\",\"url\":\"types/database.ServiceTestStreamTest.html#__type.duration\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestStreamTest.__type\"},{\"kind\":1024,\"name\":\"err\",\"url\":\"types/database.ServiceTestStreamTest.html#__type.err\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestStreamTest.__type\"},{\"kind\":4194304,\"name\":\"ServiceTestStreamReport\",\"url\":\"types/database.ServiceTestStreamReport.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":4194304,\"name\":\"ServiceTestSuiteTest\",\"url\":\"types/database.ServiceTestSuiteTest.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ServiceTestSuiteTest.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.ServiceTestSuiteTest\"},{\"kind\":1024,\"name\":\"result\",\"url\":\"types/database.ServiceTestSuiteTest.html#__type.result\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestSuiteTest.__type\"},{\"kind\":1024,\"name\":\"title\",\"url\":\"types/database.ServiceTestSuiteTest.html#__type.title\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestSuiteTest.__type\"},{\"kind\":1024,\"name\":\"duration\",\"url\":\"types/database.ServiceTestSuiteTest.html#__type.duration\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestSuiteTest.__type\"},{\"kind\":1024,\"name\":\"err\",\"url\":\"types/database.ServiceTestSuiteTest.html#__type.err\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestSuiteTest.__type\"},{\"kind\":4194304,\"name\":\"ServiceTestSuite\",\"url\":\"types/database.ServiceTestSuite.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ServiceTestSuite.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.ServiceTestSuite\"},{\"kind\":1024,\"name\":\"title\",\"url\":\"types/database.ServiceTestSuite.html#__type.title\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestSuite.__type\"},{\"kind\":1024,\"name\":\"suites\",\"url\":\"types/database.ServiceTestSuite.html#__type.suites\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestSuite.__type\"},{\"kind\":1024,\"name\":\"tests\",\"url\":\"types/database.ServiceTestSuite.html#__type.tests\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestSuite.__type\"},{\"kind\":4194304,\"name\":\"ServiceTestSuiteReport\",\"url\":\"types/database.ServiceTestSuiteReport.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ServiceTestSuiteReport.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.ServiceTestSuiteReport\"},{\"kind\":1024,\"name\":\"stats\",\"url\":\"types/database.ServiceTestSuiteReport.html#__type.stats\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestSuiteReport.__type\"},{\"kind\":1024,\"name\":\"suites\",\"url\":\"types/database.ServiceTestSuiteReport.html#__type.suites\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestSuiteReport.__type\"},{\"kind\":1024,\"name\":\"tests\",\"url\":\"types/database.ServiceTestSuiteReport.html#__type.tests\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestSuiteReport.__type\"},{\"kind\":4194304,\"name\":\"ServiceTestXunitTest\",\"url\":\"types/database.ServiceTestXunitTest.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":4194304,\"name\":\"ServiceTestXunitReport\",\"url\":\"types/database.ServiceTestXunitReport.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":4194304,\"name\":\"ServiceTestTapReport\",\"url\":\"types/database.ServiceTestTapReport.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":4194304,\"name\":\"ServiceTestDefaultTest\",\"url\":\"types/database.ServiceTestDefaultTest.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ServiceTestDefaultTest.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.ServiceTestDefaultTest\"},{\"kind\":1024,\"name\":\"title\",\"url\":\"types/database.ServiceTestDefaultTest.html#__type.title\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestDefaultTest.__type\"},{\"kind\":1024,\"name\":\"fullTitle\",\"url\":\"types/database.ServiceTestDefaultTest.html#__type.fullTitle\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestDefaultTest.__type\"},{\"kind\":1024,\"name\":\"duration\",\"url\":\"types/database.ServiceTestDefaultTest.html#__type.duration\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestDefaultTest.__type\"},{\"kind\":1024,\"name\":\"err\",\"url\":\"types/database.ServiceTestDefaultTest.html#__type.err\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestDefaultTest.__type\"},{\"kind\":4194304,\"name\":\"ServiceTestDefaultReport\",\"url\":\"types/database.ServiceTestDefaultReport.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ServiceTestDefaultReport.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.ServiceTestDefaultReport\"},{\"kind\":1024,\"name\":\"stats\",\"url\":\"types/database.ServiceTestDefaultReport.html#__type.stats\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestDefaultReport.__type\"},{\"kind\":1024,\"name\":\"tests\",\"url\":\"types/database.ServiceTestDefaultReport.html#__type.tests\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestDefaultReport.__type\"},{\"kind\":1024,\"name\":\"pending\",\"url\":\"types/database.ServiceTestDefaultReport.html#__type.pending\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestDefaultReport.__type\"},{\"kind\":1024,\"name\":\"failures\",\"url\":\"types/database.ServiceTestDefaultReport.html#__type.failures\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestDefaultReport.__type\"},{\"kind\":1024,\"name\":\"passes\",\"url\":\"types/database.ServiceTestDefaultReport.html#__type.passes\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ServiceTestDefaultReport.__type\"},{\"kind\":4194304,\"name\":\"SwaggerJson\",\"url\":\"types/database.SwaggerJson.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.SwaggerJson.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.SwaggerJson\"},{\"kind\":1024,\"name\":\"info\",\"url\":\"types/database.SwaggerJson.html#__type.info\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SwaggerJson.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.SwaggerJson.html#__type.info.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"database.SwaggerJson.__type.info\"},{\"kind\":1024,\"name\":\"title\",\"url\":\"types/database.SwaggerJson.html#__type.info.__type-1.title\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SwaggerJson.__type.info.__type\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"types/database.SwaggerJson.html#__type.info.__type-1.description\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SwaggerJson.__type.info.__type\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"types/database.SwaggerJson.html#__type.info.__type-1.version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SwaggerJson.__type.info.__type\"},{\"kind\":1024,\"name\":\"license\",\"url\":\"types/database.SwaggerJson.html#__type.info.__type-1.license\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SwaggerJson.__type.info.__type\"},{\"kind\":1024,\"name\":\"path\",\"url\":\"types/database.SwaggerJson.html#__type.path\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.SwaggerJson.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.SwaggerJson.html#__type.path.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"database.SwaggerJson.__type.path\"},{\"kind\":4194304,\"name\":\"AccessLevel\",\"url\":\"types/database.AccessLevel.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":4194304,\"name\":\"ArangoUser\",\"url\":\"types/database.ArangoUser.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.ArangoUser.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.ArangoUser\"},{\"kind\":1024,\"name\":\"user\",\"url\":\"types/database.ArangoUser.html#__type.user\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ArangoUser.__type\"},{\"kind\":1024,\"name\":\"active\",\"url\":\"types/database.ArangoUser.html#__type.active\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ArangoUser.__type\"},{\"kind\":1024,\"name\":\"extra\",\"url\":\"types/database.ArangoUser.html#__type.extra\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.ArangoUser.__type\"},{\"kind\":4194304,\"name\":\"CreateUserOptions\",\"url\":\"types/database.CreateUserOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.CreateUserOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.CreateUserOptions\"},{\"kind\":1024,\"name\":\"user\",\"url\":\"types/database.CreateUserOptions.html#__type.user\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.CreateUserOptions.__type\"},{\"kind\":1024,\"name\":\"passwd\",\"url\":\"types/database.CreateUserOptions.html#__type.passwd\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.CreateUserOptions.__type\"},{\"kind\":1024,\"name\":\"active\",\"url\":\"types/database.CreateUserOptions.html#__type.active\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.CreateUserOptions.__type\"},{\"kind\":1024,\"name\":\"extra\",\"url\":\"types/database.CreateUserOptions.html#__type.extra\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.CreateUserOptions.__type\"},{\"kind\":4194304,\"name\":\"UserOptions\",\"url\":\"types/database.UserOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.UserOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.UserOptions\"},{\"kind\":1024,\"name\":\"passwd\",\"url\":\"types/database.UserOptions.html#__type.passwd\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.UserOptions.__type\"},{\"kind\":1024,\"name\":\"active\",\"url\":\"types/database.UserOptions.html#__type.active\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.UserOptions.__type\"},{\"kind\":1024,\"name\":\"extra\",\"url\":\"types/database.UserOptions.html#__type.extra\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.UserOptions.__type\"},{\"kind\":4194304,\"name\":\"UserAccessLevelOptions\",\"url\":\"types/database.UserAccessLevelOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.UserAccessLevelOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.UserAccessLevelOptions\"},{\"kind\":1024,\"name\":\"database\",\"url\":\"types/database.UserAccessLevelOptions.html#__type.database\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.UserAccessLevelOptions.__type\"},{\"kind\":1024,\"name\":\"collection\",\"url\":\"types/database.UserAccessLevelOptions.html#__type.collection\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.UserAccessLevelOptions.__type\"},{\"kind\":4194304,\"name\":\"QueueTimeMetrics\",\"url\":\"types/database.QueueTimeMetrics.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.QueueTimeMetrics.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"database.QueueTimeMetrics\"},{\"kind\":1024,\"name\":\"getLatest\",\"url\":\"types/database.QueueTimeMetrics.html#__type.getLatest\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueueTimeMetrics.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.QueueTimeMetrics.html#__type.getLatest.__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"database.QueueTimeMetrics.__type.getLatest\"},{\"kind\":1024,\"name\":\"getValues\",\"url\":\"types/database.QueueTimeMetrics.html#__type.getValues\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueueTimeMetrics.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.QueueTimeMetrics.html#__type.getValues.__type-5\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"database.QueueTimeMetrics.__type.getValues\"},{\"kind\":1024,\"name\":\"getAvg\",\"url\":\"types/database.QueueTimeMetrics.html#__type.getAvg\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"database.QueueTimeMetrics.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/database.QueueTimeMetrics.html#__type.getAvg.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"database.QueueTimeMetrics.__type.getAvg\"},{\"kind\":128,\"name\":\"Database\",\"url\":\"classes/database.Database.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"database\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/database.Database.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/database.Database.html#name\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"version\",\"url\":\"classes/database.Database.html#version\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"route\",\"url\":\"classes/database.Database.html#route\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"acquireHostList\",\"url\":\"classes/database.Database.html#acquireHostList\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"close\",\"url\":\"classes/database.Database.html#close\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"waitForPropagation\",\"url\":\"classes/database.Database.html#waitForPropagation\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":262144,\"name\":\"queueTime\",\"url\":\"classes/database.Database.html#queueTime\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"setResponseQueueTimeSamples\",\"url\":\"classes/database.Database.html#setResponseQueueTimeSamples\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"useBasicAuth\",\"url\":\"classes/database.Database.html#useBasicAuth\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"useBearerAuth\",\"url\":\"classes/database.Database.html#useBearerAuth\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"login\",\"url\":\"classes/database.Database.html#login\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"renewAuthToken\",\"url\":\"classes/database.Database.html#renewAuthToken\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"database\",\"url\":\"classes/database.Database.html#database\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"get\",\"url\":\"classes/database.Database.html#get\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"exists\",\"url\":\"classes/database.Database.html#exists\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"createDatabase\",\"url\":\"classes/database.Database.html#createDatabase\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"listDatabases\",\"url\":\"classes/database.Database.html#listDatabases\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"listUserDatabases\",\"url\":\"classes/database.Database.html#listUserDatabases\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"databases\",\"url\":\"classes/database.Database.html#databases\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"userDatabases\",\"url\":\"classes/database.Database.html#userDatabases\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"dropDatabase\",\"url\":\"classes/database.Database.html#dropDatabase\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"collection\",\"url\":\"classes/database.Database.html#collection\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"createCollection\",\"url\":\"classes/database.Database.html#createCollection\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"createEdgeCollection\",\"url\":\"classes/database.Database.html#createEdgeCollection\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"renameCollection\",\"url\":\"classes/database.Database.html#renameCollection\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"listCollections\",\"url\":\"classes/database.Database.html#listCollections\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"collections\",\"url\":\"classes/database.Database.html#collections\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"graph\",\"url\":\"classes/database.Database.html#graph\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"createGraph\",\"url\":\"classes/database.Database.html#createGraph\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"listGraphs\",\"url\":\"classes/database.Database.html#listGraphs\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"graphs\",\"url\":\"classes/database.Database.html#graphs\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"view\",\"url\":\"classes/database.Database.html#view\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"createView\",\"url\":\"classes/database.Database.html#createView\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"renameView\",\"url\":\"classes/database.Database.html#renameView\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"listViews\",\"url\":\"classes/database.Database.html#listViews\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"views\",\"url\":\"classes/database.Database.html#views\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"analyzer\",\"url\":\"classes/database.Database.html#analyzer\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"createAnalyzer\",\"url\":\"classes/database.Database.html#createAnalyzer\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"listAnalyzers\",\"url\":\"classes/database.Database.html#listAnalyzers\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"analyzers\",\"url\":\"classes/database.Database.html#analyzers\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"listUsers\",\"url\":\"classes/database.Database.html#listUsers\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"getUser\",\"url\":\"classes/database.Database.html#getUser\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"createUser\",\"url\":\"classes/database.Database.html#createUser\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"updateUser\",\"url\":\"classes/database.Database.html#updateUser\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"replaceUser\",\"url\":\"classes/database.Database.html#replaceUser\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"removeUser\",\"url\":\"classes/database.Database.html#removeUser\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"getUserAccessLevel\",\"url\":\"classes/database.Database.html#getUserAccessLevel\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"setUserAccessLevel\",\"url\":\"classes/database.Database.html#setUserAccessLevel\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"clearUserAccessLevel\",\"url\":\"classes/database.Database.html#clearUserAccessLevel\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"getUserDatabases\",\"url\":\"classes/database.Database.html#getUserDatabases\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"executeTransaction\",\"url\":\"classes/database.Database.html#executeTransaction\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"transaction\",\"url\":\"classes/database.Database.html#transaction\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"beginTransaction\",\"url\":\"classes/database.Database.html#beginTransaction\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"listTransactions\",\"url\":\"classes/database.Database.html#listTransactions\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"transactions\",\"url\":\"classes/database.Database.html#transactions\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"query\",\"url\":\"classes/database.Database.html#query\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"explain\",\"url\":\"classes/database.Database.html#explain\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"parse\",\"url\":\"classes/database.Database.html#parse\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"queryRules\",\"url\":\"classes/database.Database.html#queryRules\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"queryTracking\",\"url\":\"classes/database.Database.html#queryTracking\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"listRunningQueries\",\"url\":\"classes/database.Database.html#listRunningQueries\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"listSlowQueries\",\"url\":\"classes/database.Database.html#listSlowQueries\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"clearSlowQueries\",\"url\":\"classes/database.Database.html#clearSlowQueries\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"killQuery\",\"url\":\"classes/database.Database.html#killQuery\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"listFunctions\",\"url\":\"classes/database.Database.html#listFunctions\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"createFunction\",\"url\":\"classes/database.Database.html#createFunction\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"dropFunction\",\"url\":\"classes/database.Database.html#dropFunction\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"listServices\",\"url\":\"classes/database.Database.html#listServices\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"installService\",\"url\":\"classes/database.Database.html#installService\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"replaceService\",\"url\":\"classes/database.Database.html#replaceService\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"upgradeService\",\"url\":\"classes/database.Database.html#upgradeService\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"uninstallService\",\"url\":\"classes/database.Database.html#uninstallService\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"getService\",\"url\":\"classes/database.Database.html#getService\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"getServiceConfiguration\",\"url\":\"classes/database.Database.html#getServiceConfiguration\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"replaceServiceConfiguration\",\"url\":\"classes/database.Database.html#replaceServiceConfiguration\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"updateServiceConfiguration\",\"url\":\"classes/database.Database.html#updateServiceConfiguration\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"getServiceDependencies\",\"url\":\"classes/database.Database.html#getServiceDependencies\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"replaceServiceDependencies\",\"url\":\"classes/database.Database.html#replaceServiceDependencies\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"updateServiceDependencies\",\"url\":\"classes/database.Database.html#updateServiceDependencies\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"setServiceDevelopmentMode\",\"url\":\"classes/database.Database.html#setServiceDevelopmentMode\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"listServiceScripts\",\"url\":\"classes/database.Database.html#listServiceScripts\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"runServiceScript\",\"url\":\"classes/database.Database.html#runServiceScript\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"runServiceTests\",\"url\":\"classes/database.Database.html#runServiceTests\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"getServiceReadme\",\"url\":\"classes/database.Database.html#getServiceReadme\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"getServiceDocumentation\",\"url\":\"classes/database.Database.html#getServiceDocumentation\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"downloadService\",\"url\":\"classes/database.Database.html#downloadService\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2048,\"name\":\"commitLocalServiceState\",\"url\":\"classes/database.Database.html#commitLocalServiceState\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"database.Database\"},{\"kind\":2,\"name\":\"documents\",\"url\":\"modules/documents.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":4194304,\"name\":\"DocumentMetadata\",\"url\":\"types/documents.DocumentMetadata.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"documents\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/documents.DocumentMetadata.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"documents.DocumentMetadata\"},{\"kind\":1024,\"name\":\"_key\",\"url\":\"types/documents.DocumentMetadata.html#__type._key\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"documents.DocumentMetadata.__type\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"types/documents.DocumentMetadata.html#__type._id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"documents.DocumentMetadata.__type\"},{\"kind\":1024,\"name\":\"_rev\",\"url\":\"types/documents.DocumentMetadata.html#__type._rev\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"documents.DocumentMetadata.__type\"},{\"kind\":4194304,\"name\":\"EdgeMetadata\",\"url\":\"types/documents.EdgeMetadata.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"documents\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/documents.EdgeMetadata.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"documents.EdgeMetadata\"},{\"kind\":1024,\"name\":\"_from\",\"url\":\"types/documents.EdgeMetadata.html#__type._from\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"documents.EdgeMetadata.__type\"},{\"kind\":1024,\"name\":\"_to\",\"url\":\"types/documents.EdgeMetadata.html#__type._to\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"documents.EdgeMetadata.__type\"},{\"kind\":4194304,\"name\":\"DocumentData\",\"url\":\"types/documents.DocumentData.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"documents\"},{\"kind\":4194304,\"name\":\"EdgeData\",\"url\":\"types/documents.EdgeData.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"documents\"},{\"kind\":4194304,\"name\":\"Document\",\"url\":\"types/documents.Document.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"documents\"},{\"kind\":4194304,\"name\":\"Edge\",\"url\":\"types/documents.Edge.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"documents\"},{\"kind\":4194304,\"name\":\"Patch\",\"url\":\"types/documents.Patch.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"documents\"},{\"kind\":4194304,\"name\":\"ObjectWithId\",\"url\":\"types/documents.ObjectWithId.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"documents\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/documents.ObjectWithId.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"documents.ObjectWithId\"},{\"kind\":1024,\"name\":\"_id\",\"url\":\"types/documents.ObjectWithId.html#__type._id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"documents.ObjectWithId.__type\"},{\"kind\":4194304,\"name\":\"ObjectWithKey\",\"url\":\"types/documents.ObjectWithKey.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"documents\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/documents.ObjectWithKey.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"documents.ObjectWithKey\"},{\"kind\":1024,\"name\":\"_key\",\"url\":\"types/documents.ObjectWithKey.html#__type._key\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"documents.ObjectWithKey.__type\"},{\"kind\":4194304,\"name\":\"DocumentSelector\",\"url\":\"types/documents.DocumentSelector.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"documents\"},{\"kind\":2,\"name\":\"error\",\"url\":\"modules/error.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"isArangoError\",\"url\":\"functions/error.isArangoError.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"error\"},{\"kind\":64,\"name\":\"isSystemError\",\"url\":\"functions/error.isSystemError.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"error\"},{\"kind\":256,\"name\":\"SystemError\",\"url\":\"interfaces/error.SystemError.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"error\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"interfaces/error.SystemError.html#code\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"error.SystemError\"},{\"kind\":1024,\"name\":\"errno\",\"url\":\"interfaces/error.SystemError.html#errno\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"error.SystemError\"},{\"kind\":1024,\"name\":\"syscall\",\"url\":\"interfaces/error.SystemError.html#syscall\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"error.SystemError\"},{\"kind\":128,\"name\":\"ArangoError\",\"url\":\"classes/error.ArangoError.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"error\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"classes/error.ArangoError.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"error.ArangoError\"},{\"kind\":1024,\"name\":\"errorNum\",\"url\":\"classes/error.ArangoError.html#errorNum\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"error.ArangoError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/error.ArangoError.html#code\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"error.ArangoError\"},{\"kind\":1024,\"name\":\"response\",\"url\":\"classes/error.ArangoError.html#response\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"error.ArangoError\"},{\"kind\":2048,\"name\":\"toJSON\",\"url\":\"classes/error.ArangoError.html#toJSON\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"error.ArangoError\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/error.ArangoError.html#toJSON.toJSON-1.__type-2\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"error.ArangoError.toJSON.toJSON\"},{\"kind\":1024,\"name\":\"error\",\"url\":\"classes/error.ArangoError.html#toJSON.toJSON-1.__type-2.error\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"error.ArangoError.toJSON.toJSON.__type\"},{\"kind\":1024,\"name\":\"errorMessage\",\"url\":\"classes/error.ArangoError.html#toJSON.toJSON-1.__type-2.errorMessage\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"error.ArangoError.toJSON.toJSON.__type\"},{\"kind\":1024,\"name\":\"errorNum\",\"url\":\"classes/error.ArangoError.html#toJSON.toJSON-1.__type-2.errorNum-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"error.ArangoError.toJSON.toJSON.__type\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/error.ArangoError.html#toJSON.toJSON-1.__type-2.code-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"error.ArangoError.toJSON.toJSON.__type\"},{\"kind\":128,\"name\":\"HttpError\",\"url\":\"classes/error.HttpError.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"error\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"classes/error.HttpError.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"error.HttpError\"},{\"kind\":1024,\"name\":\"response\",\"url\":\"classes/error.HttpError.html#response\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"error.HttpError\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/error.HttpError.html#code\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"error.HttpError\"},{\"kind\":2048,\"name\":\"toJSON\",\"url\":\"classes/error.HttpError.html#toJSON\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"error.HttpError\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/error.HttpError.html#toJSON.toJSON-1.__type-2\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"error.HttpError.toJSON.toJSON\"},{\"kind\":1024,\"name\":\"error\",\"url\":\"classes/error.HttpError.html#toJSON.toJSON-1.__type-2.error\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"error.HttpError.toJSON.toJSON.__type\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"classes/error.HttpError.html#toJSON.toJSON-1.__type-2.code-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"error.HttpError.toJSON.toJSON.__type\"},{\"kind\":2,\"name\":\"foxx-manifest\",\"url\":\"modules/foxx_manifest.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":4194304,\"name\":\"FoxxManifest\",\"url\":\"types/foxx_manifest.FoxxManifest.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"foxx-manifest\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"foxx-manifest.FoxxManifest\"},{\"kind\":1024,\"name\":\"configuration\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type.configuration\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.FoxxManifest.__type\"},{\"kind\":1024,\"name\":\"defaultDocument\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type.defaultDocument\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.FoxxManifest.__type\"},{\"kind\":1024,\"name\":\"dependencies\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type.dependencies\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.FoxxManifest.__type\"},{\"kind\":1024,\"name\":\"provides\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type.provides\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.FoxxManifest.__type\"},{\"kind\":1024,\"name\":\"engines\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type.engines\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.FoxxManifest.__type\"},{\"kind\":1024,\"name\":\"files\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type.files\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.FoxxManifest.__type\"},{\"kind\":1024,\"name\":\"lib\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type.lib\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.FoxxManifest.__type\"},{\"kind\":1024,\"name\":\"main\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type.main\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.FoxxManifest.__type\"},{\"kind\":1024,\"name\":\"scripts\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type.scripts\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.FoxxManifest.__type\"},{\"kind\":1024,\"name\":\"tests\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type.tests\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.FoxxManifest.__type\"},{\"kind\":1024,\"name\":\"author\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type.author\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.FoxxManifest.__type\"},{\"kind\":1024,\"name\":\"contributors\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type.contributors\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.FoxxManifest.__type\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type.description\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.FoxxManifest.__type\"},{\"kind\":1024,\"name\":\"keywords\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type.keywords\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.FoxxManifest.__type\"},{\"kind\":1024,\"name\":\"license\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type.license\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.FoxxManifest.__type\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.FoxxManifest.__type\"},{\"kind\":1024,\"name\":\"thumbnail\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type.thumbnail\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.FoxxManifest.__type\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"types/foxx_manifest.FoxxManifest.html#__type.version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.FoxxManifest.__type\"},{\"kind\":4194304,\"name\":\"Configuration\",\"url\":\"types/foxx_manifest.Configuration.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"foxx-manifest\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/foxx_manifest.Configuration.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"foxx-manifest.Configuration\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"types/foxx_manifest.Configuration.html#__type.description\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.Configuration.__type\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/foxx_manifest.Configuration.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.Configuration.__type\"},{\"kind\":1024,\"name\":\"default\",\"url\":\"types/foxx_manifest.Configuration.html#__type.default\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.Configuration.__type\"},{\"kind\":1024,\"name\":\"required\",\"url\":\"types/foxx_manifest.Configuration.html#__type.required\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.Configuration.__type\"},{\"kind\":4194304,\"name\":\"Dependency\",\"url\":\"types/foxx_manifest.Dependency.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"foxx-manifest\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/foxx_manifest.Dependency.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"foxx-manifest.Dependency\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/foxx_manifest.Dependency.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.Dependency.__type\"},{\"kind\":1024,\"name\":\"version\",\"url\":\"types/foxx_manifest.Dependency.html#__type.version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.Dependency.__type\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"types/foxx_manifest.Dependency.html#__type.description\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.Dependency.__type\"},{\"kind\":1024,\"name\":\"required\",\"url\":\"types/foxx_manifest.Dependency.html#__type.required\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.Dependency.__type\"},{\"kind\":1024,\"name\":\"multiple\",\"url\":\"types/foxx_manifest.Dependency.html#__type.multiple\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.Dependency.__type\"},{\"kind\":4194304,\"name\":\"File\",\"url\":\"types/foxx_manifest.File.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"foxx-manifest\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/foxx_manifest.File.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"foxx-manifest.File\"},{\"kind\":1024,\"name\":\"path\",\"url\":\"types/foxx_manifest.File.html#__type.path\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.File.__type\"},{\"kind\":1024,\"name\":\"gzip\",\"url\":\"types/foxx_manifest.File.html#__type.gzip\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.File.__type\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/foxx_manifest.File.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"foxx-manifest.File.__type\"},{\"kind\":2,\"name\":\"graph\",\"url\":\"modules/graph.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"isArangoGraph\",\"url\":\"functions/graph.isArangoGraph.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"graph\"},{\"kind\":4194304,\"name\":\"GraphCollectionReadOptions\",\"url\":\"types/graph.GraphCollectionReadOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"graph\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/graph.GraphCollectionReadOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"graph.GraphCollectionReadOptions\"},{\"kind\":1024,\"name\":\"rev\",\"url\":\"types/graph.GraphCollectionReadOptions.html#__type.rev\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphCollectionReadOptions.__type\"},{\"kind\":1024,\"name\":\"graceful\",\"url\":\"types/graph.GraphCollectionReadOptions.html#__type.graceful\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphCollectionReadOptions.__type\"},{\"kind\":1024,\"name\":\"allowDirtyRead\",\"url\":\"types/graph.GraphCollectionReadOptions.html#__type.allowDirtyRead\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphCollectionReadOptions.__type\"},{\"kind\":4194304,\"name\":\"GraphCollectionInsertOptions\",\"url\":\"types/graph.GraphCollectionInsertOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"graph\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/graph.GraphCollectionInsertOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"graph.GraphCollectionInsertOptions\"},{\"kind\":1024,\"name\":\"waitForSync\",\"url\":\"types/graph.GraphCollectionInsertOptions.html#__type.waitForSync\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphCollectionInsertOptions.__type\"},{\"kind\":1024,\"name\":\"returnNew\",\"url\":\"types/graph.GraphCollectionInsertOptions.html#__type.returnNew\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphCollectionInsertOptions.__type\"},{\"kind\":4194304,\"name\":\"GraphCollectionReplaceOptions\",\"url\":\"types/graph.GraphCollectionReplaceOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"graph\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/graph.GraphCollectionReplaceOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"graph.GraphCollectionReplaceOptions\"},{\"kind\":1024,\"name\":\"rev\",\"url\":\"types/graph.GraphCollectionReplaceOptions.html#__type.rev\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphCollectionReplaceOptions.__type\"},{\"kind\":1024,\"name\":\"waitForSync\",\"url\":\"types/graph.GraphCollectionReplaceOptions.html#__type.waitForSync\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphCollectionReplaceOptions.__type\"},{\"kind\":1024,\"name\":\"keepNull\",\"url\":\"types/graph.GraphCollectionReplaceOptions.html#__type.keepNull\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphCollectionReplaceOptions.__type\"},{\"kind\":1024,\"name\":\"returnOld\",\"url\":\"types/graph.GraphCollectionReplaceOptions.html#__type.returnOld\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphCollectionReplaceOptions.__type\"},{\"kind\":1024,\"name\":\"returnNew\",\"url\":\"types/graph.GraphCollectionReplaceOptions.html#__type.returnNew\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphCollectionReplaceOptions.__type\"},{\"kind\":4194304,\"name\":\"GraphCollectionRemoveOptions\",\"url\":\"types/graph.GraphCollectionRemoveOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"graph\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/graph.GraphCollectionRemoveOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"graph.GraphCollectionRemoveOptions\"},{\"kind\":1024,\"name\":\"rev\",\"url\":\"types/graph.GraphCollectionRemoveOptions.html#__type.rev\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphCollectionRemoveOptions.__type\"},{\"kind\":1024,\"name\":\"waitForSync\",\"url\":\"types/graph.GraphCollectionRemoveOptions.html#__type.waitForSync\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphCollectionRemoveOptions.__type\"},{\"kind\":1024,\"name\":\"returnOld\",\"url\":\"types/graph.GraphCollectionRemoveOptions.html#__type.returnOld\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphCollectionRemoveOptions.__type\"},{\"kind\":4194304,\"name\":\"EdgeDefinition\",\"url\":\"types/graph.EdgeDefinition.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"graph\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/graph.EdgeDefinition.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"graph.EdgeDefinition\"},{\"kind\":1024,\"name\":\"collection\",\"url\":\"types/graph.EdgeDefinition.html#__type.collection\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.EdgeDefinition.__type\"},{\"kind\":1024,\"name\":\"from\",\"url\":\"types/graph.EdgeDefinition.html#__type.from\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.EdgeDefinition.__type\"},{\"kind\":1024,\"name\":\"to\",\"url\":\"types/graph.EdgeDefinition.html#__type.to\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.EdgeDefinition.__type\"},{\"kind\":4194304,\"name\":\"EdgeDefinitionOptions\",\"url\":\"types/graph.EdgeDefinitionOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"graph\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/graph.EdgeDefinitionOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"graph.EdgeDefinitionOptions\"},{\"kind\":1024,\"name\":\"collection\",\"url\":\"types/graph.EdgeDefinitionOptions.html#__type.collection\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.EdgeDefinitionOptions.__type\"},{\"kind\":1024,\"name\":\"from\",\"url\":\"types/graph.EdgeDefinitionOptions.html#__type.from\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.EdgeDefinitionOptions.__type\"},{\"kind\":1024,\"name\":\"to\",\"url\":\"types/graph.EdgeDefinitionOptions.html#__type.to\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.EdgeDefinitionOptions.__type\"},{\"kind\":4194304,\"name\":\"GraphInfo\",\"url\":\"types/graph.GraphInfo.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"graph\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/graph.GraphInfo.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"graph.GraphInfo\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/graph.GraphInfo.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphInfo.__type\"},{\"kind\":1024,\"name\":\"edgeDefinitions\",\"url\":\"types/graph.GraphInfo.html#__type.edgeDefinitions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphInfo.__type\"},{\"kind\":1024,\"name\":\"orphanCollections\",\"url\":\"types/graph.GraphInfo.html#__type.orphanCollections\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphInfo.__type\"},{\"kind\":1024,\"name\":\"numberOfShards\",\"url\":\"types/graph.GraphInfo.html#__type.numberOfShards\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphInfo.__type\"},{\"kind\":1024,\"name\":\"replicationFactor\",\"url\":\"types/graph.GraphInfo.html#__type.replicationFactor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphInfo.__type\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"types/graph.GraphInfo.html#__type.writeConcern\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphInfo.__type\"},{\"kind\":1024,\"name\":\"isSatellite\",\"url\":\"types/graph.GraphInfo.html#__type.isSatellite\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphInfo.__type\"},{\"kind\":1024,\"name\":\"isSmart\",\"url\":\"types/graph.GraphInfo.html#__type.isSmart\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphInfo.__type\"},{\"kind\":1024,\"name\":\"smartGraphAttribute\",\"url\":\"types/graph.GraphInfo.html#__type.smartGraphAttribute\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphInfo.__type\"},{\"kind\":1024,\"name\":\"isDisjoint\",\"url\":\"types/graph.GraphInfo.html#__type.isDisjoint\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.GraphInfo.__type\"},{\"kind\":4194304,\"name\":\"CreateGraphOptions\",\"url\":\"types/graph.CreateGraphOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"graph\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/graph.CreateGraphOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"graph.CreateGraphOptions\"},{\"kind\":1024,\"name\":\"waitForSync\",\"url\":\"types/graph.CreateGraphOptions.html#__type.waitForSync\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.CreateGraphOptions.__type\"},{\"kind\":1024,\"name\":\"orphanCollections\",\"url\":\"types/graph.CreateGraphOptions.html#__type.orphanCollections\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.CreateGraphOptions.__type\"},{\"kind\":1024,\"name\":\"numberOfShards\",\"url\":\"types/graph.CreateGraphOptions.html#__type.numberOfShards\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.CreateGraphOptions.__type\"},{\"kind\":1024,\"name\":\"replicationFactor\",\"url\":\"types/graph.CreateGraphOptions.html#__type.replicationFactor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.CreateGraphOptions.__type\"},{\"kind\":1024,\"name\":\"writeConcern\",\"url\":\"types/graph.CreateGraphOptions.html#__type.writeConcern\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.CreateGraphOptions.__type\"},{\"kind\":1024,\"name\":\"isSmart\",\"url\":\"types/graph.CreateGraphOptions.html#__type.isSmart\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.CreateGraphOptions.__type\"},{\"kind\":1024,\"name\":\"smartGraphAttribute\",\"url\":\"types/graph.CreateGraphOptions.html#__type.smartGraphAttribute\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.CreateGraphOptions.__type\"},{\"kind\":1024,\"name\":\"isDisjoint\",\"url\":\"types/graph.CreateGraphOptions.html#__type.isDisjoint\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.CreateGraphOptions.__type\"},{\"kind\":1024,\"name\":\"satellites\",\"url\":\"types/graph.CreateGraphOptions.html#__type.satellites\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.CreateGraphOptions.__type\"},{\"kind\":4194304,\"name\":\"AddVertexCollectionOptions\",\"url\":\"types/graph.AddVertexCollectionOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"graph\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/graph.AddVertexCollectionOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"graph.AddVertexCollectionOptions\"},{\"kind\":1024,\"name\":\"satellites\",\"url\":\"types/graph.AddVertexCollectionOptions.html#__type.satellites\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.AddVertexCollectionOptions.__type\"},{\"kind\":4194304,\"name\":\"AddEdgeDefinitionOptions\",\"url\":\"types/graph.AddEdgeDefinitionOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"graph\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/graph.AddEdgeDefinitionOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"graph.AddEdgeDefinitionOptions\"},{\"kind\":1024,\"name\":\"satellites\",\"url\":\"types/graph.AddEdgeDefinitionOptions.html#__type.satellites\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.AddEdgeDefinitionOptions.__type\"},{\"kind\":4194304,\"name\":\"ReplaceEdgeDefinitionOptions\",\"url\":\"types/graph.ReplaceEdgeDefinitionOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"graph\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/graph.ReplaceEdgeDefinitionOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"graph.ReplaceEdgeDefinitionOptions\"},{\"kind\":1024,\"name\":\"satellites\",\"url\":\"types/graph.ReplaceEdgeDefinitionOptions.html#__type.satellites\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"graph.ReplaceEdgeDefinitionOptions.__type\"},{\"kind\":128,\"name\":\"GraphVertexCollection\",\"url\":\"classes/graph.GraphVertexCollection.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"graph\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/graph.GraphVertexCollection.html#name\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"graph.GraphVertexCollection\"},{\"kind\":262144,\"name\":\"collection\",\"url\":\"classes/graph.GraphVertexCollection.html#collection\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"graph.GraphVertexCollection\"},{\"kind\":262144,\"name\":\"graph\",\"url\":\"classes/graph.GraphVertexCollection.html#graph\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"graph.GraphVertexCollection\"},{\"kind\":2048,\"name\":\"vertexExists\",\"url\":\"classes/graph.GraphVertexCollection.html#vertexExists\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.GraphVertexCollection\"},{\"kind\":2048,\"name\":\"vertex\",\"url\":\"classes/graph.GraphVertexCollection.html#vertex\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.GraphVertexCollection\"},{\"kind\":2048,\"name\":\"save\",\"url\":\"classes/graph.GraphVertexCollection.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.GraphVertexCollection\"},{\"kind\":2048,\"name\":\"replace\",\"url\":\"classes/graph.GraphVertexCollection.html#replace\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.GraphVertexCollection\"},{\"kind\":2048,\"name\":\"update\",\"url\":\"classes/graph.GraphVertexCollection.html#update\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.GraphVertexCollection\"},{\"kind\":2048,\"name\":\"remove\",\"url\":\"classes/graph.GraphVertexCollection.html#remove\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.GraphVertexCollection\"},{\"kind\":128,\"name\":\"GraphEdgeCollection\",\"url\":\"classes/graph.GraphEdgeCollection.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"graph\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/graph.GraphEdgeCollection.html#name\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"graph.GraphEdgeCollection\"},{\"kind\":262144,\"name\":\"collection\",\"url\":\"classes/graph.GraphEdgeCollection.html#collection\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"graph.GraphEdgeCollection\"},{\"kind\":262144,\"name\":\"graph\",\"url\":\"classes/graph.GraphEdgeCollection.html#graph\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"graph.GraphEdgeCollection\"},{\"kind\":2048,\"name\":\"edgeExists\",\"url\":\"classes/graph.GraphEdgeCollection.html#edgeExists\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.GraphEdgeCollection\"},{\"kind\":2048,\"name\":\"edge\",\"url\":\"classes/graph.GraphEdgeCollection.html#edge\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.GraphEdgeCollection\"},{\"kind\":2048,\"name\":\"save\",\"url\":\"classes/graph.GraphEdgeCollection.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.GraphEdgeCollection\"},{\"kind\":2048,\"name\":\"replace\",\"url\":\"classes/graph.GraphEdgeCollection.html#replace\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.GraphEdgeCollection\"},{\"kind\":2048,\"name\":\"update\",\"url\":\"classes/graph.GraphEdgeCollection.html#update\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.GraphEdgeCollection\"},{\"kind\":2048,\"name\":\"remove\",\"url\":\"classes/graph.GraphEdgeCollection.html#remove\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.GraphEdgeCollection\"},{\"kind\":128,\"name\":\"Graph\",\"url\":\"classes/graph.Graph.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"graph\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/graph.Graph.html#name\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"graph.Graph\"},{\"kind\":2048,\"name\":\"exists\",\"url\":\"classes/graph.Graph.html#exists\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.Graph\"},{\"kind\":2048,\"name\":\"get\",\"url\":\"classes/graph.Graph.html#get\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.Graph\"},{\"kind\":2048,\"name\":\"create\",\"url\":\"classes/graph.Graph.html#create\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.Graph\"},{\"kind\":2048,\"name\":\"drop\",\"url\":\"classes/graph.Graph.html#drop\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.Graph\"},{\"kind\":2048,\"name\":\"vertexCollection\",\"url\":\"classes/graph.Graph.html#vertexCollection\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.Graph\"},{\"kind\":2048,\"name\":\"listVertexCollections\",\"url\":\"classes/graph.Graph.html#listVertexCollections\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.Graph\"},{\"kind\":2048,\"name\":\"vertexCollections\",\"url\":\"classes/graph.Graph.html#vertexCollections\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.Graph\"},{\"kind\":2048,\"name\":\"addVertexCollection\",\"url\":\"classes/graph.Graph.html#addVertexCollection\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.Graph\"},{\"kind\":2048,\"name\":\"removeVertexCollection\",\"url\":\"classes/graph.Graph.html#removeVertexCollection\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.Graph\"},{\"kind\":2048,\"name\":\"edgeCollection\",\"url\":\"classes/graph.Graph.html#edgeCollection\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.Graph\"},{\"kind\":2048,\"name\":\"listEdgeCollections\",\"url\":\"classes/graph.Graph.html#listEdgeCollections\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.Graph\"},{\"kind\":2048,\"name\":\"edgeCollections\",\"url\":\"classes/graph.Graph.html#edgeCollections\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.Graph\"},{\"kind\":2048,\"name\":\"addEdgeDefinition\",\"url\":\"classes/graph.Graph.html#addEdgeDefinition\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.Graph\"},{\"kind\":2048,\"name\":\"replaceEdgeDefinition\",\"url\":\"classes/graph.Graph.html#replaceEdgeDefinition\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.Graph\"},{\"kind\":2048,\"name\":\"removeEdgeDefinition\",\"url\":\"classes/graph.Graph.html#removeEdgeDefinition\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.Graph\"},{\"kind\":2048,\"name\":\"traversal\",\"url\":\"classes/graph.Graph.html#traversal\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"graph.Graph\"},{\"kind\":2,\"name\":\"index\",\"url\":\"modules/index.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"arangojs\",\"url\":\"functions/index.arangojs.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"default\",\"url\":\"modules/index.html#default\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"kind\":2,\"name\":\"indexes\",\"url\":\"modules/indexes.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":4194304,\"name\":\"EnsurePersistentIndexOptions\",\"url\":\"types/indexes.EnsurePersistentIndexOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/indexes.EnsurePersistentIndexOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"indexes.EnsurePersistentIndexOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/indexes.EnsurePersistentIndexOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsurePersistentIndexOptions.__type\"},{\"kind\":1024,\"name\":\"fields\",\"url\":\"types/indexes.EnsurePersistentIndexOptions.html#__type.fields\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsurePersistentIndexOptions.__type\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/indexes.EnsurePersistentIndexOptions.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsurePersistentIndexOptions.__type\"},{\"kind\":1024,\"name\":\"unique\",\"url\":\"types/indexes.EnsurePersistentIndexOptions.html#__type.unique\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsurePersistentIndexOptions.__type\"},{\"kind\":1024,\"name\":\"sparse\",\"url\":\"types/indexes.EnsurePersistentIndexOptions.html#__type.sparse\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsurePersistentIndexOptions.__type\"},{\"kind\":1024,\"name\":\"deduplicate\",\"url\":\"types/indexes.EnsurePersistentIndexOptions.html#__type.deduplicate\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsurePersistentIndexOptions.__type\"},{\"kind\":1024,\"name\":\"estimates\",\"url\":\"types/indexes.EnsurePersistentIndexOptions.html#__type.estimates\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsurePersistentIndexOptions.__type\"},{\"kind\":1024,\"name\":\"inBackground\",\"url\":\"types/indexes.EnsurePersistentIndexOptions.html#__type.inBackground\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsurePersistentIndexOptions.__type\"},{\"kind\":1024,\"name\":\"cacheEnabled\",\"url\":\"types/indexes.EnsurePersistentIndexOptions.html#__type.cacheEnabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsurePersistentIndexOptions.__type\"},{\"kind\":1024,\"name\":\"storedValues\",\"url\":\"types/indexes.EnsurePersistentIndexOptions.html#__type.storedValues\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsurePersistentIndexOptions.__type\"},{\"kind\":4194304,\"name\":\"EnsureGeoIndexOptions\",\"url\":\"types/indexes.EnsureGeoIndexOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":4194304,\"name\":\"EnsureFulltextIndexOptions\",\"url\":\"types/indexes.EnsureFulltextIndexOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/indexes.EnsureFulltextIndexOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"indexes.EnsureFulltextIndexOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/indexes.EnsureFulltextIndexOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureFulltextIndexOptions.__type\"},{\"kind\":1024,\"name\":\"fields\",\"url\":\"types/indexes.EnsureFulltextIndexOptions.html#__type.fields\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureFulltextIndexOptions.__type\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/indexes.EnsureFulltextIndexOptions.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureFulltextIndexOptions.__type\"},{\"kind\":1024,\"name\":\"minLength\",\"url\":\"types/indexes.EnsureFulltextIndexOptions.html#__type.minLength\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureFulltextIndexOptions.__type\"},{\"kind\":1024,\"name\":\"inBackground\",\"url\":\"types/indexes.EnsureFulltextIndexOptions.html#__type.inBackground\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureFulltextIndexOptions.__type\"},{\"kind\":4194304,\"name\":\"EnsureTtlIndexOptions\",\"url\":\"types/indexes.EnsureTtlIndexOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/indexes.EnsureTtlIndexOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"indexes.EnsureTtlIndexOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/indexes.EnsureTtlIndexOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureTtlIndexOptions.__type\"},{\"kind\":1024,\"name\":\"fields\",\"url\":\"types/indexes.EnsureTtlIndexOptions.html#__type.fields\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureTtlIndexOptions.__type\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/indexes.EnsureTtlIndexOptions.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureTtlIndexOptions.__type\"},{\"kind\":1024,\"name\":\"expireAfter\",\"url\":\"types/indexes.EnsureTtlIndexOptions.html#__type.expireAfter\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureTtlIndexOptions.__type\"},{\"kind\":1024,\"name\":\"inBackground\",\"url\":\"types/indexes.EnsureTtlIndexOptions.html#__type.inBackground\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureTtlIndexOptions.__type\"},{\"kind\":4194304,\"name\":\"EnsureZkdIndexOptions\",\"url\":\"types/indexes.EnsureZkdIndexOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/indexes.EnsureZkdIndexOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"indexes.EnsureZkdIndexOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/indexes.EnsureZkdIndexOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureZkdIndexOptions.__type\"},{\"kind\":1024,\"name\":\"fields\",\"url\":\"types/indexes.EnsureZkdIndexOptions.html#__type.fields\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureZkdIndexOptions.__type\"},{\"kind\":1024,\"name\":\"fieldValueTypes\",\"url\":\"types/indexes.EnsureZkdIndexOptions.html#__type.fieldValueTypes\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureZkdIndexOptions.__type\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/indexes.EnsureZkdIndexOptions.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureZkdIndexOptions.__type\"},{\"kind\":1024,\"name\":\"unique\",\"url\":\"types/indexes.EnsureZkdIndexOptions.html#__type.unique\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureZkdIndexOptions.__type\"},{\"kind\":1024,\"name\":\"inBackground\",\"url\":\"types/indexes.EnsureZkdIndexOptions.html#__type.inBackground\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureZkdIndexOptions.__type\"},{\"kind\":4194304,\"name\":\"InvertedIndexNestedFieldOptions\",\"url\":\"types/indexes.InvertedIndexNestedFieldOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/indexes.InvertedIndexNestedFieldOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"indexes.InvertedIndexNestedFieldOptions\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/indexes.InvertedIndexNestedFieldOptions.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexNestedFieldOptions.__type\"},{\"kind\":1024,\"name\":\"analyzer\",\"url\":\"types/indexes.InvertedIndexNestedFieldOptions.html#__type.analyzer\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexNestedFieldOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/indexes.InvertedIndexNestedFieldOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexNestedFieldOptions.__type\"},{\"kind\":1024,\"name\":\"searchField\",\"url\":\"types/indexes.InvertedIndexNestedFieldOptions.html#__type.searchField\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexNestedFieldOptions.__type\"},{\"kind\":1024,\"name\":\"nested\",\"url\":\"types/indexes.InvertedIndexNestedFieldOptions.html#__type.nested\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexNestedFieldOptions.__type\"},{\"kind\":4194304,\"name\":\"InvertedIndexFieldOptions\",\"url\":\"types/indexes.InvertedIndexFieldOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/indexes.InvertedIndexFieldOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"indexes.InvertedIndexFieldOptions\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/indexes.InvertedIndexFieldOptions.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexFieldOptions.__type\"},{\"kind\":1024,\"name\":\"analyzer\",\"url\":\"types/indexes.InvertedIndexFieldOptions.html#__type.analyzer\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexFieldOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/indexes.InvertedIndexFieldOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexFieldOptions.__type\"},{\"kind\":1024,\"name\":\"includeAllFields\",\"url\":\"types/indexes.InvertedIndexFieldOptions.html#__type.includeAllFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexFieldOptions.__type\"},{\"kind\":1024,\"name\":\"searchField\",\"url\":\"types/indexes.InvertedIndexFieldOptions.html#__type.searchField\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexFieldOptions.__type\"},{\"kind\":1024,\"name\":\"trackListPositions\",\"url\":\"types/indexes.InvertedIndexFieldOptions.html#__type.trackListPositions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexFieldOptions.__type\"},{\"kind\":1024,\"name\":\"nested\",\"url\":\"types/indexes.InvertedIndexFieldOptions.html#__type.nested\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexFieldOptions.__type\"},{\"kind\":1024,\"name\":\"cache\",\"url\":\"types/indexes.InvertedIndexFieldOptions.html#__type.cache\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexFieldOptions.__type\"},{\"kind\":4194304,\"name\":\"InvertedIndexStoredValueOptions\",\"url\":\"types/indexes.InvertedIndexStoredValueOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/indexes.InvertedIndexStoredValueOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"indexes.InvertedIndexStoredValueOptions\"},{\"kind\":1024,\"name\":\"fields\",\"url\":\"types/indexes.InvertedIndexStoredValueOptions.html#__type.fields\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexStoredValueOptions.__type\"},{\"kind\":1024,\"name\":\"compression\",\"url\":\"types/indexes.InvertedIndexStoredValueOptions.html#__type.compression\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexStoredValueOptions.__type\"},{\"kind\":1024,\"name\":\"cache\",\"url\":\"types/indexes.InvertedIndexStoredValueOptions.html#__type.cache\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexStoredValueOptions.__type\"},{\"kind\":4194304,\"name\":\"InvertedIndexPrimarySortFieldOptions\",\"url\":\"types/indexes.InvertedIndexPrimarySortFieldOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/indexes.InvertedIndexPrimarySortFieldOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"indexes.InvertedIndexPrimarySortFieldOptions\"},{\"kind\":1024,\"name\":\"field\",\"url\":\"types/indexes.InvertedIndexPrimarySortFieldOptions.html#__type.field\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexPrimarySortFieldOptions.__type\"},{\"kind\":1024,\"name\":\"direction\",\"url\":\"types/indexes.InvertedIndexPrimarySortFieldOptions.html#__type.direction\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexPrimarySortFieldOptions.__type\"},{\"kind\":4194304,\"name\":\"EnsureInvertedIndexOptions\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"indexes.EnsureInvertedIndexOptions\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"fields\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.fields\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"searchField\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.searchField\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"storedValues\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.storedValues\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"primarySort\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.primarySort\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.primarySort.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type.primarySort\"},{\"kind\":1024,\"name\":\"fields\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.primarySort.__type-1.fields-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type.primarySort.__type\"},{\"kind\":1024,\"name\":\"compression\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.primarySort.__type-1.compression\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type.primarySort.__type\"},{\"kind\":1024,\"name\":\"cache\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.primarySort.__type-1.cache-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type.primarySort.__type\"},{\"kind\":1024,\"name\":\"primaryKeyCache\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.primaryKeyCache\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"analyzer\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.analyzer\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"includeAllFields\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.includeAllFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"trackListPositions\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.trackListPositions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"parallelism\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.parallelism\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"cleanupIntervalStep\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.cleanupIntervalStep\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"commitIntervalMsec\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.commitIntervalMsec\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"consolidationIntervalMsec\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.consolidationIntervalMsec\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"consolidationPolicy\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.consolidationPolicy\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"writeBufferIdle\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.writeBufferIdle\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"writeBufferActive\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.writeBufferActive\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"writeBufferSizeMax\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.writeBufferSizeMax\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"inBackground\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.inBackground\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"cache\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.cache\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":1024,\"name\":\"optimizeTopK\",\"url\":\"types/indexes.EnsureInvertedIndexOptions.html#__type.optimizeTopK\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.EnsureInvertedIndexOptions.__type\"},{\"kind\":4194304,\"name\":\"GenericIndex\",\"url\":\"types/indexes.GenericIndex.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/indexes.GenericIndex.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"indexes.GenericIndex\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/indexes.GenericIndex.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.GenericIndex.__type\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"types/indexes.GenericIndex.html#__type.id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.GenericIndex.__type\"},{\"kind\":1024,\"name\":\"sparse\",\"url\":\"types/indexes.GenericIndex.html#__type.sparse\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.GenericIndex.__type\"},{\"kind\":1024,\"name\":\"unique\",\"url\":\"types/indexes.GenericIndex.html#__type.unique\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.GenericIndex.__type\"},{\"kind\":4194304,\"name\":\"PersistentIndex\",\"url\":\"types/indexes.PersistentIndex.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":4194304,\"name\":\"PrimaryIndex\",\"url\":\"types/indexes.PrimaryIndex.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":4194304,\"name\":\"FulltextIndex\",\"url\":\"types/indexes.FulltextIndex.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":4194304,\"name\":\"GeoIndex\",\"url\":\"types/indexes.GeoIndex.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":4194304,\"name\":\"TtlIndex\",\"url\":\"types/indexes.TtlIndex.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":4194304,\"name\":\"ZkdIndex\",\"url\":\"types/indexes.ZkdIndex.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":4194304,\"name\":\"InvertedIndexNestedField\",\"url\":\"types/indexes.InvertedIndexNestedField.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/indexes.InvertedIndexNestedField.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"indexes.InvertedIndexNestedField\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/indexes.InvertedIndexNestedField.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexNestedField.__type\"},{\"kind\":1024,\"name\":\"analyzer\",\"url\":\"types/indexes.InvertedIndexNestedField.html#__type.analyzer\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexNestedField.__type\"},{\"kind\":1024,\"name\":\"features\",\"url\":\"types/indexes.InvertedIndexNestedField.html#__type.features\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexNestedField.__type\"},{\"kind\":1024,\"name\":\"searchField\",\"url\":\"types/indexes.InvertedIndexNestedField.html#__type.searchField\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexNestedField.__type\"},{\"kind\":1024,\"name\":\"nested\",\"url\":\"types/indexes.InvertedIndexNestedField.html#__type.nested\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.InvertedIndexNestedField.__type\"},{\"kind\":4194304,\"name\":\"InvertedIndex\",\"url\":\"types/indexes.InvertedIndex.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":4194304,\"name\":\"Index\",\"url\":\"types/indexes.Index.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":4194304,\"name\":\"ObjectWithId\",\"url\":\"types/indexes.ObjectWithId.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/indexes.ObjectWithId.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"indexes.ObjectWithId\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"types/indexes.ObjectWithId.html#__type.id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.ObjectWithId.__type\"},{\"kind\":4194304,\"name\":\"ObjectWithName\",\"url\":\"types/indexes.ObjectWithName.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/indexes.ObjectWithName.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"indexes.ObjectWithName\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/indexes.ObjectWithName.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"indexes.ObjectWithName.__type\"},{\"kind\":4194304,\"name\":\"IndexSelector\",\"url\":\"types/indexes.IndexSelector.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"indexes\"},{\"kind\":2,\"name\":\"route\",\"url\":\"modules/route.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":128,\"name\":\"Route\",\"url\":\"classes/route.Route.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"route\"},{\"kind\":2048,\"name\":\"route\",\"url\":\"classes/route.Route.html#route\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"route.Route\"},{\"kind\":2048,\"name\":\"request\",\"url\":\"classes/route.Route.html#request\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"route.Route\"},{\"kind\":2048,\"name\":\"delete\",\"url\":\"classes/route.Route.html#delete\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"route.Route\"},{\"kind\":2048,\"name\":\"get\",\"url\":\"classes/route.Route.html#get\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"route.Route\"},{\"kind\":2048,\"name\":\"head\",\"url\":\"classes/route.Route.html#head\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"route.Route\"},{\"kind\":2048,\"name\":\"patch\",\"url\":\"classes/route.Route.html#patch\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"route.Route\"},{\"kind\":2048,\"name\":\"post\",\"url\":\"classes/route.Route.html#post\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"route.Route\"},{\"kind\":2048,\"name\":\"put\",\"url\":\"classes/route.Route.html#put\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"route.Route\"},{\"kind\":2,\"name\":\"transaction\",\"url\":\"modules/transaction.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"isArangoTransaction\",\"url\":\"functions/transaction.isArangoTransaction.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"transaction\"},{\"kind\":4194304,\"name\":\"TransactionCommitOptions\",\"url\":\"types/transaction.TransactionCommitOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"transaction\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/transaction.TransactionCommitOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"transaction.TransactionCommitOptions\"},{\"kind\":1024,\"name\":\"allowDirtyRead\",\"url\":\"types/transaction.TransactionCommitOptions.html#__type.allowDirtyRead\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"transaction.TransactionCommitOptions.__type\"},{\"kind\":4194304,\"name\":\"TransactionAbortOptions\",\"url\":\"types/transaction.TransactionAbortOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"transaction\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/transaction.TransactionAbortOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"transaction.TransactionAbortOptions\"},{\"kind\":1024,\"name\":\"allowDirtyRead\",\"url\":\"types/transaction.TransactionAbortOptions.html#__type.allowDirtyRead\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"transaction.TransactionAbortOptions.__type\"},{\"kind\":4194304,\"name\":\"TransactionStatus\",\"url\":\"types/transaction.TransactionStatus.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"transaction\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/transaction.TransactionStatus.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"transaction.TransactionStatus\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"types/transaction.TransactionStatus.html#__type.id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"transaction.TransactionStatus.__type\"},{\"kind\":1024,\"name\":\"status\",\"url\":\"types/transaction.TransactionStatus.html#__type.status\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"transaction.TransactionStatus.__type\"},{\"kind\":128,\"name\":\"Transaction\",\"url\":\"classes/transaction.Transaction.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"transaction\"},{\"kind\":262144,\"name\":\"id\",\"url\":\"classes/transaction.Transaction.html#id\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"transaction.Transaction\"},{\"kind\":2048,\"name\":\"exists\",\"url\":\"classes/transaction.Transaction.html#exists\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"transaction.Transaction\"},{\"kind\":2048,\"name\":\"get\",\"url\":\"classes/transaction.Transaction.html#get\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"transaction.Transaction\"},{\"kind\":2048,\"name\":\"commit\",\"url\":\"classes/transaction.Transaction.html#commit\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"transaction.Transaction\"},{\"kind\":2048,\"name\":\"abort\",\"url\":\"classes/transaction.Transaction.html#abort\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"transaction.Transaction\"},{\"kind\":2048,\"name\":\"step\",\"url\":\"classes/transaction.Transaction.html#step\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"transaction.Transaction\"},{\"kind\":2,\"name\":\"view\",\"url\":\"modules/view.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"isArangoView\",\"url\":\"functions/view.isArangoView.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":4194304,\"name\":\"Direction\",\"url\":\"types/view.Direction.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":4194304,\"name\":\"BytesAccumConsolidationPolicy\",\"url\":\"types/view.BytesAccumConsolidationPolicy.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/view.BytesAccumConsolidationPolicy.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"view.BytesAccumConsolidationPolicy\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/view.BytesAccumConsolidationPolicy.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.BytesAccumConsolidationPolicy.__type\"},{\"kind\":1024,\"name\":\"threshold\",\"url\":\"types/view.BytesAccumConsolidationPolicy.html#__type.threshold\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.BytesAccumConsolidationPolicy.__type\"},{\"kind\":4194304,\"name\":\"TierConsolidationPolicy\",\"url\":\"types/view.TierConsolidationPolicy.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/view.TierConsolidationPolicy.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"view.TierConsolidationPolicy\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/view.TierConsolidationPolicy.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.TierConsolidationPolicy.__type\"},{\"kind\":1024,\"name\":\"segmentsBytesFloor\",\"url\":\"types/view.TierConsolidationPolicy.html#__type.segmentsBytesFloor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.TierConsolidationPolicy.__type\"},{\"kind\":1024,\"name\":\"segmentsBytesMax\",\"url\":\"types/view.TierConsolidationPolicy.html#__type.segmentsBytesMax\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.TierConsolidationPolicy.__type\"},{\"kind\":1024,\"name\":\"segmentsMax\",\"url\":\"types/view.TierConsolidationPolicy.html#__type.segmentsMax\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.TierConsolidationPolicy.__type\"},{\"kind\":1024,\"name\":\"segmentsMin\",\"url\":\"types/view.TierConsolidationPolicy.html#__type.segmentsMin\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.TierConsolidationPolicy.__type\"},{\"kind\":1024,\"name\":\"minScore\",\"url\":\"types/view.TierConsolidationPolicy.html#__type.minScore\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.TierConsolidationPolicy.__type\"},{\"kind\":4194304,\"name\":\"Compression\",\"url\":\"types/view.Compression.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":4194304,\"name\":\"CreateViewOptions\",\"url\":\"types/view.CreateViewOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":4194304,\"name\":\"ViewPropertiesOptions\",\"url\":\"types/view.ViewPropertiesOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":4194304,\"name\":\"ViewPatchPropertiesOptions\",\"url\":\"types/view.ViewPatchPropertiesOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":4194304,\"name\":\"ArangoSearchViewLinkOptions\",\"url\":\"types/view.ArangoSearchViewLinkOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/view.ArangoSearchViewLinkOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"view.ArangoSearchViewLinkOptions\"},{\"kind\":1024,\"name\":\"analyzers\",\"url\":\"types/view.ArangoSearchViewLinkOptions.html#__type.analyzers\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewLinkOptions.__type\"},{\"kind\":1024,\"name\":\"fields\",\"url\":\"types/view.ArangoSearchViewLinkOptions.html#__type.fields\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewLinkOptions.__type\"},{\"kind\":1024,\"name\":\"includeAllFields\",\"url\":\"types/view.ArangoSearchViewLinkOptions.html#__type.includeAllFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewLinkOptions.__type\"},{\"kind\":1024,\"name\":\"nested\",\"url\":\"types/view.ArangoSearchViewLinkOptions.html#__type.nested\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewLinkOptions.__type\"},{\"kind\":1024,\"name\":\"trackListPositions\",\"url\":\"types/view.ArangoSearchViewLinkOptions.html#__type.trackListPositions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewLinkOptions.__type\"},{\"kind\":1024,\"name\":\"storeValues\",\"url\":\"types/view.ArangoSearchViewLinkOptions.html#__type.storeValues\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewLinkOptions.__type\"},{\"kind\":1024,\"name\":\"inBackground\",\"url\":\"types/view.ArangoSearchViewLinkOptions.html#__type.inBackground\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewLinkOptions.__type\"},{\"kind\":1024,\"name\":\"cache\",\"url\":\"types/view.ArangoSearchViewLinkOptions.html#__type.cache\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewLinkOptions.__type\"},{\"kind\":4194304,\"name\":\"ArangoSearchViewPropertiesOptions\",\"url\":\"types/view.ArangoSearchViewPropertiesOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/view.ArangoSearchViewPropertiesOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"view.ArangoSearchViewPropertiesOptions\"},{\"kind\":1024,\"name\":\"cleanupIntervalStep\",\"url\":\"types/view.ArangoSearchViewPropertiesOptions.html#__type.cleanupIntervalStep\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewPropertiesOptions.__type\"},{\"kind\":1024,\"name\":\"consolidationIntervalMsec\",\"url\":\"types/view.ArangoSearchViewPropertiesOptions.html#__type.consolidationIntervalMsec\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewPropertiesOptions.__type\"},{\"kind\":1024,\"name\":\"commitIntervalMsec\",\"url\":\"types/view.ArangoSearchViewPropertiesOptions.html#__type.commitIntervalMsec\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewPropertiesOptions.__type\"},{\"kind\":1024,\"name\":\"consolidationPolicy\",\"url\":\"types/view.ArangoSearchViewPropertiesOptions.html#__type.consolidationPolicy\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewPropertiesOptions.__type\"},{\"kind\":1024,\"name\":\"links\",\"url\":\"types/view.ArangoSearchViewPropertiesOptions.html#__type.links\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewPropertiesOptions.__type\"},{\"kind\":4194304,\"name\":\"ArangoSearchViewPatchPropertiesOptions\",\"url\":\"types/view.ArangoSearchViewPatchPropertiesOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":256,\"name\":\"ArangoSearchViewStoredValueOptions\",\"url\":\"interfaces/view.ArangoSearchViewStoredValueOptions.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":1024,\"name\":\"fields\",\"url\":\"interfaces/view.ArangoSearchViewStoredValueOptions.html#fields\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"view.ArangoSearchViewStoredValueOptions\"},{\"kind\":1024,\"name\":\"compression\",\"url\":\"interfaces/view.ArangoSearchViewStoredValueOptions.html#compression\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"view.ArangoSearchViewStoredValueOptions\"},{\"kind\":1024,\"name\":\"cache\",\"url\":\"interfaces/view.ArangoSearchViewStoredValueOptions.html#cache\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"view.ArangoSearchViewStoredValueOptions\"},{\"kind\":4194304,\"name\":\"CreateArangoSearchViewOptions\",\"url\":\"types/view.CreateArangoSearchViewOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":4194304,\"name\":\"SearchAliasViewIndexOptions\",\"url\":\"types/view.SearchAliasViewIndexOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/view.SearchAliasViewIndexOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"view.SearchAliasViewIndexOptions\"},{\"kind\":1024,\"name\":\"collection\",\"url\":\"types/view.SearchAliasViewIndexOptions.html#__type.collection\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.SearchAliasViewIndexOptions.__type\"},{\"kind\":1024,\"name\":\"index\",\"url\":\"types/view.SearchAliasViewIndexOptions.html#__type.index\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.SearchAliasViewIndexOptions.__type\"},{\"kind\":4194304,\"name\":\"SearchAliasViewPropertiesOptions\",\"url\":\"types/view.SearchAliasViewPropertiesOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/view.SearchAliasViewPropertiesOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"view.SearchAliasViewPropertiesOptions\"},{\"kind\":1024,\"name\":\"indexes\",\"url\":\"types/view.SearchAliasViewPropertiesOptions.html#__type.indexes\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.SearchAliasViewPropertiesOptions.__type\"},{\"kind\":4194304,\"name\":\"SearchAliasViewPatchIndexOptions\",\"url\":\"types/view.SearchAliasViewPatchIndexOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":4194304,\"name\":\"SearchAliasViewPatchPropertiesOptions\",\"url\":\"types/view.SearchAliasViewPatchPropertiesOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/view.SearchAliasViewPatchPropertiesOptions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"view.SearchAliasViewPatchPropertiesOptions\"},{\"kind\":1024,\"name\":\"indexes\",\"url\":\"types/view.SearchAliasViewPatchPropertiesOptions.html#__type.indexes\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.SearchAliasViewPatchPropertiesOptions.__type\"},{\"kind\":4194304,\"name\":\"CreateSearchAliasViewOptions\",\"url\":\"types/view.CreateSearchAliasViewOptions.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":4194304,\"name\":\"GenericViewDescription\",\"url\":\"types/view.GenericViewDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/view.GenericViewDescription.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"view.GenericViewDescription\"},{\"kind\":1024,\"name\":\"globallyUniqueId\",\"url\":\"types/view.GenericViewDescription.html#__type.globallyUniqueId\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.GenericViewDescription.__type\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"types/view.GenericViewDescription.html#__type.id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.GenericViewDescription.__type\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"types/view.GenericViewDescription.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.GenericViewDescription.__type\"},{\"kind\":4194304,\"name\":\"ViewDescription\",\"url\":\"types/view.ViewDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":4194304,\"name\":\"ArangoSearchViewDescription\",\"url\":\"types/view.ArangoSearchViewDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":4194304,\"name\":\"SearchAliasViewDescription\",\"url\":\"types/view.SearchAliasViewDescription.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":4194304,\"name\":\"ViewProperties\",\"url\":\"types/view.ViewProperties.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":4194304,\"name\":\"ArangoSearchViewLink\",\"url\":\"types/view.ArangoSearchViewLink.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/view.ArangoSearchViewLink.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"view.ArangoSearchViewLink\"},{\"kind\":1024,\"name\":\"analyzers\",\"url\":\"types/view.ArangoSearchViewLink.html#__type.analyzers\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewLink.__type\"},{\"kind\":1024,\"name\":\"fields\",\"url\":\"types/view.ArangoSearchViewLink.html#__type.fields\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewLink.__type\"},{\"kind\":1024,\"name\":\"includeAllFields\",\"url\":\"types/view.ArangoSearchViewLink.html#__type.includeAllFields\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewLink.__type\"},{\"kind\":1024,\"name\":\"nested\",\"url\":\"types/view.ArangoSearchViewLink.html#__type.nested\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewLink.__type\"},{\"kind\":1024,\"name\":\"trackListPositions\",\"url\":\"types/view.ArangoSearchViewLink.html#__type.trackListPositions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewLink.__type\"},{\"kind\":1024,\"name\":\"storeValues\",\"url\":\"types/view.ArangoSearchViewLink.html#__type.storeValues\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewLink.__type\"},{\"kind\":1024,\"name\":\"cache\",\"url\":\"types/view.ArangoSearchViewLink.html#__type.cache\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"view.ArangoSearchViewLink.__type\"},{\"kind\":4194304,\"name\":\"ArangoSearchViewProperties\",\"url\":\"types/view.ArangoSearchViewProperties.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":4194304,\"name\":\"SearchAliasViewProperties\",\"url\":\"types/view.SearchAliasViewProperties.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":128,\"name\":\"View\",\"url\":\"classes/view.View.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"view\"},{\"kind\":262144,\"name\":\"name\",\"url\":\"classes/view.View.html#name\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"view.View\"},{\"kind\":2048,\"name\":\"get\",\"url\":\"classes/view.View.html#get\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"view.View\"},{\"kind\":2048,\"name\":\"exists\",\"url\":\"classes/view.View.html#exists\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"view.View\"},{\"kind\":2048,\"name\":\"create\",\"url\":\"classes/view.View.html#create\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"view.View\"},{\"kind\":2048,\"name\":\"rename\",\"url\":\"classes/view.View.html#rename\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"view.View\"},{\"kind\":2048,\"name\":\"properties\",\"url\":\"classes/view.View.html#properties\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"view.View\"},{\"kind\":2048,\"name\":\"updateProperties\",\"url\":\"classes/view.View.html#updateProperties\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"view.View\"},{\"kind\":2048,\"name\":\"replaceProperties\",\"url\":\"classes/view.View.html#replaceProperties\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"view.View\"},{\"kind\":2048,\"name\":\"drop\",\"url\":\"classes/view.View.html#drop\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"view.View\"},{\"kind\":8388608,\"name\":\"aql\",\"url\":\"modules/index.html#aql\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"Database\",\"url\":\"modules/index.html#Database\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[[\"name/0\",[0,51.772]],[\"comment/0\",[]],[\"name/1\",[1,69.123]],[\"comment/1\",[]],[\"name/2\",[2,69.123]],[\"comment/2\",[]],[\"name/3\",[3,69.123]],[\"comment/3\",[]],[\"name/4\",[4,69.123]],[\"comment/4\",[]],[\"name/5\",[5,21.042]],[\"comment/5\",[]],[\"name/6\",[6,37.76]],[\"comment/6\",[]],[\"name/7\",[7,42.035]],[\"comment/7\",[]],[\"name/8\",[8,42.966]],[\"comment/8\",[]],[\"name/9\",[9,69.123]],[\"comment/9\",[]],[\"name/10\",[5,21.042]],[\"comment/10\",[]],[\"name/11\",[6,37.76]],[\"comment/11\",[]],[\"name/12\",[7,42.035]],[\"comment/12\",[]],[\"name/13\",[8,42.966]],[\"comment/13\",[]],[\"name/14\",[10,69.123]],[\"comment/14\",[]],[\"name/15\",[5,21.042]],[\"comment/15\",[]],[\"name/16\",[6,37.76]],[\"comment/16\",[]],[\"name/17\",[7,42.035]],[\"comment/17\",[]],[\"name/18\",[8,42.966]],[\"comment/18\",[]],[\"name/19\",[5,21.042]],[\"comment/19\",[]],[\"name/20\",[11,58.134]],[\"comment/20\",[]],[\"name/21\",[12,69.123]],[\"comment/21\",[]],[\"name/22\",[5,21.042]],[\"comment/22\",[]],[\"name/23\",[6,37.76]],[\"comment/23\",[]],[\"name/24\",[7,42.035]],[\"comment/24\",[]],[\"name/25\",[8,42.966]],[\"comment/25\",[]],[\"name/26\",[5,21.042]],[\"comment/26\",[]],[\"name/27\",[11,58.134]],[\"comment/27\",[]],[\"name/28\",[13,60.648]],[\"comment/28\",[]],[\"name/29\",[14,64.013]],[\"comment/29\",[]],[\"name/30\",[15,69.123]],[\"comment/30\",[]],[\"name/31\",[5,21.042]],[\"comment/31\",[]],[\"name/32\",[6,37.76]],[\"comment/32\",[]],[\"name/33\",[7,42.035]],[\"comment/33\",[]],[\"name/34\",[8,42.966]],[\"comment/34\",[]],[\"name/35\",[5,21.042]],[\"comment/35\",[]],[\"name/36\",[16,64.013]],[\"comment/36\",[]],[\"name/37\",[17,64.013]],[\"comment/37\",[]],[\"name/38\",[18,64.013]],[\"comment/38\",[]],[\"name/39\",[19,69.123]],[\"comment/39\",[]],[\"name/40\",[5,21.042]],[\"comment/40\",[]],[\"name/41\",[6,37.76]],[\"comment/41\",[]],[\"name/42\",[7,42.035]],[\"comment/42\",[]],[\"name/43\",[8,42.966]],[\"comment/43\",[]],[\"name/44\",[5,21.042]],[\"comment/44\",[]],[\"name/45\",[11,58.134]],[\"comment/45\",[]],[\"name/46\",[13,60.648]],[\"comment/46\",[]],[\"name/47\",[20,64.013]],[\"comment/47\",[]],[\"name/48\",[21,69.123]],[\"comment/48\",[]],[\"name/49\",[14,64.013]],[\"comment/49\",[]],[\"name/50\",[22,69.123]],[\"comment/50\",[]],[\"name/51\",[23,69.123]],[\"comment/51\",[]],[\"name/52\",[5,21.042]],[\"comment/52\",[]],[\"name/53\",[17,64.013]],[\"comment/53\",[]],[\"name/54\",[16,64.013]],[\"comment/54\",[]],[\"name/55\",[18,64.013]],[\"comment/55\",[]],[\"name/56\",[24,69.123]],[\"comment/56\",[]],[\"name/57\",[5,21.042]],[\"comment/57\",[]],[\"name/58\",[6,37.76]],[\"comment/58\",[]],[\"name/59\",[7,42.035]],[\"comment/59\",[]],[\"name/60\",[8,42.966]],[\"comment/60\",[]],[\"name/61\",[5,21.042]],[\"comment/61\",[]],[\"name/62\",[25,69.123]],[\"comment/62\",[]],[\"name/63\",[13,60.648]],[\"comment/63\",[]],[\"name/64\",[26,69.123]],[\"comment/64\",[]],[\"name/65\",[5,21.042]],[\"comment/65\",[]],[\"name/66\",[6,37.76]],[\"comment/66\",[]],[\"name/67\",[7,42.035]],[\"comment/67\",[]],[\"name/68\",[8,42.966]],[\"comment/68\",[]],[\"name/69\",[5,21.042]],[\"comment/69\",[]],[\"name/70\",[27,69.123]],[\"comment/70\",[]],[\"name/71\",[28,69.123]],[\"comment/71\",[]],[\"name/72\",[29,54.456]],[\"comment/72\",[]],[\"name/73\",[30,58.134]],[\"comment/73\",[]],[\"name/74\",[31,64.013]],[\"comment/74\",[]],[\"name/75\",[32,69.123]],[\"comment/75\",[]],[\"name/76\",[33,69.123]],[\"comment/76\",[]],[\"name/77\",[5,21.042]],[\"comment/77\",[]],[\"name/78\",[6,37.76]],[\"comment/78\",[]],[\"name/79\",[7,42.035]],[\"comment/79\",[]],[\"name/80\",[8,42.966]],[\"comment/80\",[]],[\"name/81\",[5,21.042]],[\"comment/81\",[]],[\"name/82\",[34,69.123]],[\"comment/82\",[]],[\"name/83\",[35,69.123]],[\"comment/83\",[]],[\"name/84\",[5,21.042]],[\"comment/84\",[]],[\"name/85\",[6,37.76]],[\"comment/85\",[]],[\"name/86\",[7,42.035]],[\"comment/86\",[]],[\"name/87\",[8,42.966]],[\"comment/87\",[]],[\"name/88\",[5,21.042]],[\"comment/88\",[]],[\"name/89\",[20,64.013]],[\"comment/89\",[]],[\"name/90\",[36,69.123]],[\"comment/90\",[]],[\"name/91\",[37,69.123]],[\"comment/91\",[]],[\"name/92\",[5,21.042]],[\"comment/92\",[]],[\"name/93\",[6,37.76]],[\"comment/93\",[]],[\"name/94\",[7,42.035]],[\"comment/94\",[]],[\"name/95\",[8,42.966]],[\"comment/95\",[]],[\"name/96\",[5,21.042]],[\"comment/96\",[]],[\"name/97\",[11,58.134]],[\"comment/97\",[]],[\"name/98\",[38,69.123]],[\"comment/98\",[]],[\"name/99\",[5,21.042]],[\"comment/99\",[]],[\"name/100\",[6,37.76]],[\"comment/100\",[]],[\"name/101\",[7,42.035]],[\"comment/101\",[]],[\"name/102\",[8,42.966]],[\"comment/102\",[]],[\"name/103\",[5,21.042]],[\"comment/103\",[]],[\"name/104\",[0,51.772]],[\"comment/104\",[]],[\"name/105\",[39,69.123]],[\"comment/105\",[]],[\"name/106\",[40,69.123]],[\"comment/106\",[]],[\"name/107\",[5,21.042]],[\"comment/107\",[]],[\"name/108\",[6,37.76]],[\"comment/108\",[]],[\"name/109\",[7,42.035]],[\"comment/109\",[]],[\"name/110\",[8,42.966]],[\"comment/110\",[]],[\"name/111\",[5,21.042]],[\"comment/111\",[]],[\"name/112\",[41,64.013]],[\"comment/112\",[]],[\"name/113\",[42,64.013]],[\"comment/113\",[]],[\"name/114\",[43,64.013]],[\"comment/114\",[]],[\"name/115\",[44,69.123]],[\"comment/115\",[]],[\"name/116\",[5,21.042]],[\"comment/116\",[]],[\"name/117\",[6,37.76]],[\"comment/117\",[]],[\"name/118\",[7,42.035]],[\"comment/118\",[]],[\"name/119\",[8,42.966]],[\"comment/119\",[]],[\"name/120\",[5,21.042]],[\"comment/120\",[]],[\"name/121\",[41,64.013]],[\"comment/121\",[]],[\"name/122\",[42,64.013]],[\"comment/122\",[]],[\"name/123\",[45,69.123]],[\"comment/123\",[]],[\"name/124\",[5,21.042]],[\"comment/124\",[]],[\"name/125\",[6,37.76]],[\"comment/125\",[]],[\"name/126\",[7,42.035]],[\"comment/126\",[]],[\"name/127\",[8,42.966]],[\"comment/127\",[]],[\"name/128\",[5,21.042]],[\"comment/128\",[]],[\"name/129\",[6,37.76]],[\"comment/129\",[]],[\"name/130\",[46,58.134]],[\"comment/130\",[]],[\"name/131\",[5,21.042]],[\"comment/131\",[]],[\"name/132\",[47,64.013]],[\"comment/132\",[]],[\"name/133\",[48,60.648]],[\"comment/133\",[]],[\"name/134\",[49,60.648]],[\"comment/134\",[]],[\"name/135\",[50,69.123]],[\"comment/135\",[]],[\"name/136\",[5,21.042]],[\"comment/136\",[]],[\"name/137\",[6,37.76]],[\"comment/137\",[]],[\"name/138\",[7,42.035]],[\"comment/138\",[]],[\"name/139\",[8,42.966]],[\"comment/139\",[]],[\"name/140\",[5,21.042]],[\"comment/140\",[]],[\"name/141\",[51,69.123]],[\"comment/141\",[]],[\"name/142\",[52,69.123]],[\"comment/142\",[]],[\"name/143\",[46,58.134]],[\"comment/143\",[]],[\"name/144\",[5,21.042]],[\"comment/144\",[]],[\"name/145\",[53,69.123]],[\"comment/145\",[]],[\"name/146\",[48,60.648]],[\"comment/146\",[]],[\"name/147\",[49,60.648]],[\"comment/147\",[]],[\"name/148\",[54,69.123]],[\"comment/148\",[]],[\"name/149\",[5,21.042]],[\"comment/149\",[]],[\"name/150\",[6,37.76]],[\"comment/150\",[]],[\"name/151\",[7,42.035]],[\"comment/151\",[]],[\"name/152\",[8,42.966]],[\"comment/152\",[]],[\"name/153\",[5,21.042]],[\"comment/153\",[]],[\"name/154\",[6,37.76]],[\"comment/154\",[]],[\"name/155\",[46,58.134]],[\"comment/155\",[]],[\"name/156\",[5,21.042]],[\"comment/156\",[]],[\"name/157\",[47,64.013]],[\"comment/157\",[]],[\"name/158\",[48,60.648]],[\"comment/158\",[]],[\"name/159\",[49,60.648]],[\"comment/159\",[]],[\"name/160\",[55,69.123]],[\"comment/160\",[]],[\"name/161\",[56,69.123]],[\"comment/161\",[]],[\"name/162\",[5,21.042]],[\"comment/162\",[]],[\"name/163\",[57,37.196]],[\"comment/163\",[]],[\"name/164\",[7,42.035]],[\"comment/164\",[]],[\"name/165\",[58,69.123]],[\"comment/165\",[]],[\"name/166\",[59,69.123]],[\"comment/166\",[]],[\"name/167\",[60,69.123]],[\"comment/167\",[]],[\"name/168\",[61,69.123]],[\"comment/168\",[]],[\"name/169\",[62,69.123]],[\"comment/169\",[]],[\"name/170\",[63,69.123]],[\"comment/170\",[]],[\"name/171\",[64,69.123]],[\"comment/171\",[]],[\"name/172\",[65,69.123]],[\"comment/172\",[]],[\"name/173\",[66,69.123]],[\"comment/173\",[]],[\"name/174\",[67,69.123]],[\"comment/174\",[]],[\"name/175\",[68,69.123]],[\"comment/175\",[]],[\"name/176\",[69,69.123]],[\"comment/176\",[]],[\"name/177\",[70,69.123]],[\"comment/177\",[]],[\"name/178\",[71,69.123]],[\"comment/178\",[]],[\"name/179\",[72,69.123]],[\"comment/179\",[]],[\"name/180\",[73,69.123]],[\"comment/180\",[]],[\"name/181\",[74,69.123]],[\"comment/181\",[]],[\"name/182\",[75,69.123]],[\"comment/182\",[]],[\"name/183\",[0,51.772]],[\"comment/183\",[]],[\"name/184\",[57,37.196]],[\"comment/184\",[]],[\"name/185\",[76,53.024]],[\"comment/185\",[]],[\"name/186\",[77,51.772]],[\"comment/186\",[]],[\"name/187\",[78,56.127]],[\"comment/187\",[]],[\"name/188\",[79,56.127]],[\"comment/188\",[]],[\"name/189\",[80,60.648]],[\"comment/189\",[]],[\"name/190\",[81,69.123]],[\"comment/190\",[]],[\"name/191\",[82,69.123]],[\"comment/191\",[]],[\"name/192\",[80,60.648]],[\"comment/192\",[]],[\"name/193\",[83,69.123]],[\"comment/193\",[]],[\"name/194\",[84,69.123]],[\"comment/194\",[]],[\"name/195\",[85,69.123]],[\"comment/195\",[]],[\"name/196\",[86,60.648]],[\"comment/196\",[]],[\"name/197\",[87,60.648]],[\"comment/197\",[]],[\"name/198\",[88,69.123]],[\"comment/198\",[]],[\"name/199\",[89,69.123]],[\"comment/199\",[]],[\"name/200\",[90,51.772]],[\"comment/200\",[]],[\"name/201\",[91,69.123]],[\"comment/201\",[]],[\"name/202\",[92,69.123]],[\"comment/202\",[]],[\"name/203\",[93,69.123]],[\"comment/203\",[]],[\"name/204\",[57,37.196]],[\"comment/204\",[]],[\"name/205\",[94,69.123]],[\"comment/205\",[]],[\"name/206\",[95,69.123]],[\"comment/206\",[]],[\"name/207\",[96,69.123]],[\"comment/207\",[]],[\"name/208\",[97,69.123]],[\"comment/208\",[]],[\"name/209\",[98,69.123]],[\"comment/209\",[]],[\"name/210\",[99,69.123]],[\"comment/210\",[]],[\"name/211\",[100,69.123]],[\"comment/211\",[]],[\"name/212\",[101,69.123]],[\"comment/212\",[]],[\"name/213\",[102,64.013]],[\"comment/213\",[]],[\"name/214\",[103,69.123]],[\"comment/214\",[]],[\"name/215\",[104,69.123]],[\"comment/215\",[]],[\"name/216\",[105,60.648]],[\"comment/216\",[]],[\"name/217\",[106,69.123]],[\"comment/217\",[]],[\"name/218\",[107,69.123]],[\"comment/218\",[]],[\"name/219\",[108,69.123]],[\"comment/219\",[]],[\"name/220\",[109,69.123]],[\"comment/220\",[]],[\"name/221\",[5,21.042]],[\"comment/221\",[]],[\"name/222\",[57,37.196]],[\"comment/222\",[]],[\"name/223\",[110,64.013]],[\"comment/223\",[]],[\"name/224\",[111,60.648]],[\"comment/224\",[]],[\"name/225\",[112,64.013]],[\"comment/225\",[]],[\"name/226\",[29,54.456]],[\"comment/226\",[]],[\"name/227\",[113,60.648]],[\"comment/227\",[]],[\"name/228\",[114,69.123]],[\"comment/228\",[]],[\"name/229\",[5,21.042]],[\"comment/229\",[]],[\"name/230\",[57,37.196]],[\"comment/230\",[]],[\"name/231\",[115,64.013]],[\"comment/231\",[]],[\"name/232\",[116,64.013]],[\"comment/232\",[]],[\"name/233\",[6,37.76]],[\"comment/233\",[]],[\"name/234\",[117,69.123]],[\"comment/234\",[]],[\"name/235\",[5,21.042]],[\"comment/235\",[]],[\"name/236\",[6,37.76]],[\"comment/236\",[]],[\"name/237\",[118,64.013]],[\"comment/237\",[]],[\"name/238\",[119,64.013]],[\"comment/238\",[]],[\"name/239\",[120,64.013]],[\"comment/239\",[]],[\"name/240\",[121,69.123]],[\"comment/240\",[]],[\"name/241\",[122,69.123]],[\"comment/241\",[]],[\"name/242\",[5,21.042]],[\"comment/242\",[]],[\"name/243\",[6,37.76]],[\"comment/243\",[]],[\"name/244\",[123,64.013]],[\"comment/244\",[]],[\"name/245\",[124,64.013]],[\"comment/245\",[]],[\"name/246\",[125,64.013]],[\"comment/246\",[]],[\"name/247\",[126,69.123]],[\"comment/247\",[]],[\"name/248\",[5,21.042]],[\"comment/248\",[]],[\"name/249\",[127,69.123]],[\"comment/249\",[]],[\"name/250\",[128,45.138]],[\"comment/250\",[]],[\"name/251\",[129,64.013]],[\"comment/251\",[]],[\"name/252\",[130,60.648]],[\"comment/252\",[]],[\"name/253\",[131,53.024]],[\"comment/253\",[]],[\"name/254\",[132,58.134]],[\"comment/254\",[]],[\"name/255\",[133,64.013]],[\"comment/255\",[]],[\"name/256\",[134,53.024]],[\"comment/256\",[]],[\"name/257\",[105,60.648]],[\"comment/257\",[]],[\"name/258\",[135,64.013]],[\"comment/258\",[]],[\"name/259\",[136,64.013]],[\"comment/259\",[]],[\"name/260\",[137,58.134]],[\"comment/260\",[]],[\"name/261\",[138,60.648]],[\"comment/261\",[]],[\"name/262\",[139,58.134]],[\"comment/262\",[]],[\"name/263\",[140,69.123]],[\"comment/263\",[]],[\"name/264\",[141,60.648]],[\"comment/264\",[]],[\"name/265\",[142,60.648]],[\"comment/265\",[]],[\"name/266\",[143,69.123]],[\"comment/266\",[]],[\"name/267\",[5,21.042]],[\"comment/267\",[]],[\"name/268\",[57,37.196]],[\"comment/268\",[]],[\"name/269\",[110,64.013]],[\"comment/269\",[]],[\"name/270\",[111,60.648]],[\"comment/270\",[]],[\"name/271\",[112,64.013]],[\"comment/271\",[]],[\"name/272\",[29,54.456]],[\"comment/272\",[]],[\"name/273\",[113,60.648]],[\"comment/273\",[]],[\"name/274\",[144,69.123]],[\"comment/274\",[]],[\"name/275\",[5,21.042]],[\"comment/275\",[]],[\"name/276\",[123,64.013]],[\"comment/276\",[]],[\"name/277\",[124,64.013]],[\"comment/277\",[]],[\"name/278\",[125,64.013]],[\"comment/278\",[]],[\"name/279\",[145,69.123]],[\"comment/279\",[]],[\"name/280\",[5,21.042]],[\"comment/280\",[]],[\"name/281\",[128,45.138]],[\"comment/281\",[]],[\"name/282\",[134,53.024]],[\"comment/282\",[]],[\"name/283\",[131,53.024]],[\"comment/283\",[]],[\"name/284\",[130,60.648]],[\"comment/284\",[]],[\"name/285\",[138,60.648]],[\"comment/285\",[]],[\"name/286\",[139,58.134]],[\"comment/286\",[]],[\"name/287\",[146,69.123]],[\"comment/287\",[]],[\"name/288\",[5,21.042]],[\"comment/288\",[]],[\"name/289\",[147,69.123]],[\"comment/289\",[]],[\"name/290\",[148,69.123]],[\"comment/290\",[]],[\"name/291\",[149,69.123]],[\"comment/291\",[]],[\"name/292\",[5,21.042]],[\"comment/292\",[]],[\"name/293\",[150,64.013]],[\"comment/293\",[]],[\"name/294\",[151,69.123]],[\"comment/294\",[]],[\"name/295\",[5,21.042]],[\"comment/295\",[]],[\"name/296\",[6,37.76]],[\"comment/296\",[]],[\"name/297\",[118,64.013]],[\"comment/297\",[]],[\"name/298\",[119,64.013]],[\"comment/298\",[]],[\"name/299\",[120,64.013]],[\"comment/299\",[]],[\"name/300\",[152,69.123]],[\"comment/300\",[]],[\"name/301\",[5,21.042]],[\"comment/301\",[]],[\"name/302\",[128,45.138]],[\"comment/302\",[]],[\"name/303\",[129,64.013]],[\"comment/303\",[]],[\"name/304\",[130,60.648]],[\"comment/304\",[]],[\"name/305\",[153,69.123]],[\"comment/305\",[]],[\"name/306\",[154,69.123]],[\"comment/306\",[]],[\"name/307\",[132,58.134]],[\"comment/307\",[]],[\"name/308\",[133,64.013]],[\"comment/308\",[]],[\"name/309\",[134,53.024]],[\"comment/309\",[]],[\"name/310\",[131,53.024]],[\"comment/310\",[]],[\"name/311\",[105,60.648]],[\"comment/311\",[]],[\"name/312\",[135,64.013]],[\"comment/312\",[]],[\"name/313\",[136,64.013]],[\"comment/313\",[]],[\"name/314\",[137,58.134]],[\"comment/314\",[]],[\"name/315\",[138,60.648]],[\"comment/315\",[]],[\"name/316\",[139,58.134]],[\"comment/316\",[]],[\"name/317\",[155,69.123]],[\"comment/317\",[]],[\"name/318\",[5,21.042]],[\"comment/318\",[]],[\"name/319\",[156,56.127]],[\"comment/319\",[]],[\"name/320\",[157,64.013]],[\"comment/320\",[]],[\"name/321\",[158,69.123]],[\"comment/321\",[]],[\"name/322\",[5,21.042]],[\"comment/322\",[]],[\"name/323\",[159,64.013]],[\"comment/323\",[]],[\"name/324\",[160,50.66]],[\"comment/324\",[]],[\"name/325\",[156,56.127]],[\"comment/325\",[]],[\"name/326\",[157,64.013]],[\"comment/326\",[]],[\"name/327\",[161,69.123]],[\"comment/327\",[]],[\"name/328\",[5,21.042]],[\"comment/328\",[]],[\"name/329\",[160,50.66]],[\"comment/329\",[]],[\"name/330\",[162,69.123]],[\"comment/330\",[]],[\"name/331\",[5,21.042]],[\"comment/331\",[]],[\"name/332\",[128,45.138]],[\"comment/332\",[]],[\"name/333\",[163,56.127]],[\"comment/333\",[]],[\"name/334\",[164,56.127]],[\"comment/334\",[]],[\"name/335\",[165,53.024]],[\"comment/335\",[]],[\"name/336\",[166,69.123]],[\"comment/336\",[]],[\"name/337\",[167,60.648]],[\"comment/337\",[]],[\"name/338\",[168,58.134]],[\"comment/338\",[]],[\"name/339\",[169,69.123]],[\"comment/339\",[]],[\"name/340\",[5,21.042]],[\"comment/340\",[]],[\"name/341\",[128,45.138]],[\"comment/341\",[]],[\"name/342\",[163,56.127]],[\"comment/342\",[]],[\"name/343\",[164,56.127]],[\"comment/343\",[]],[\"name/344\",[170,64.013]],[\"comment/344\",[]],[\"name/345\",[165,53.024]],[\"comment/345\",[]],[\"name/346\",[156,56.127]],[\"comment/346\",[]],[\"name/347\",[168,58.134]],[\"comment/347\",[]],[\"name/348\",[171,69.123]],[\"comment/348\",[]],[\"name/349\",[5,21.042]],[\"comment/349\",[]],[\"name/350\",[128,45.138]],[\"comment/350\",[]],[\"name/351\",[163,56.127]],[\"comment/351\",[]],[\"name/352\",[164,56.127]],[\"comment/352\",[]],[\"name/353\",[170,64.013]],[\"comment/353\",[]],[\"name/354\",[165,53.024]],[\"comment/354\",[]],[\"name/355\",[29,54.456]],[\"comment/355\",[]],[\"name/356\",[167,60.648]],[\"comment/356\",[]],[\"name/357\",[156,56.127]],[\"comment/357\",[]],[\"name/358\",[168,58.134]],[\"comment/358\",[]],[\"name/359\",[172,69.123]],[\"comment/359\",[]],[\"name/360\",[5,21.042]],[\"comment/360\",[]],[\"name/361\",[128,45.138]],[\"comment/361\",[]],[\"name/362\",[165,53.024]],[\"comment/362\",[]],[\"name/363\",[163,56.127]],[\"comment/363\",[]],[\"name/364\",[156,56.127]],[\"comment/364\",[]],[\"name/365\",[168,58.134]],[\"comment/365\",[]],[\"name/366\",[173,69.123]],[\"comment/366\",[]],[\"name/367\",[5,21.042]],[\"comment/367\",[]],[\"name/368\",[174,69.123]],[\"comment/368\",[]],[\"name/369\",[175,69.123]],[\"comment/369\",[]],[\"name/370\",[111,60.648]],[\"comment/370\",[]],[\"name/371\",[128,45.138]],[\"comment/371\",[]],[\"name/372\",[176,69.123]],[\"comment/372\",[]],[\"name/373\",[177,69.123]],[\"comment/373\",[]],[\"name/374\",[178,60.648]],[\"comment/374\",[]],[\"name/375\",[179,69.123]],[\"comment/375\",[]],[\"name/376\",[5,21.042]],[\"comment/376\",[]],[\"name/377\",[160,50.66]],[\"comment/377\",[]],[\"name/378\",[180,69.123]],[\"comment/378\",[]],[\"name/379\",[5,21.042]],[\"comment/379\",[]],[\"name/380\",[181,60.648]],[\"comment/380\",[]],[\"name/381\",[182,56.127]],[\"comment/381\",[]],[\"name/382\",[30,58.134]],[\"comment/382\",[]],[\"name/383\",[183,60.648]],[\"comment/383\",[]],[\"name/384\",[184,69.123]],[\"comment/384\",[]],[\"name/385\",[5,21.042]],[\"comment/385\",[]],[\"name/386\",[181,60.648]],[\"comment/386\",[]],[\"name/387\",[182,56.127]],[\"comment/387\",[]],[\"name/388\",[30,58.134]],[\"comment/388\",[]],[\"name/389\",[183,60.648]],[\"comment/389\",[]],[\"name/390\",[185,60.648]],[\"comment/390\",[]],[\"name/391\",[186,69.123]],[\"comment/391\",[]],[\"name/392\",[5,21.042]],[\"comment/392\",[]],[\"name/393\",[29,54.456]],[\"comment/393\",[]],[\"name/394\",[128,45.138]],[\"comment/394\",[]],[\"name/395\",[182,56.127]],[\"comment/395\",[]],[\"name/396\",[167,60.648]],[\"comment/396\",[]],[\"name/397\",[187,69.123]],[\"comment/397\",[]],[\"name/398\",[5,21.042]],[\"comment/398\",[]],[\"name/399\",[128,45.138]],[\"comment/399\",[]],[\"name/400\",[182,56.127]],[\"comment/400\",[]],[\"name/401\",[188,69.123]],[\"comment/401\",[]],[\"name/402\",[189,69.123]],[\"comment/402\",[]],[\"name/403\",[5,21.042]],[\"comment/403\",[]],[\"name/404\",[165,53.024]],[\"comment/404\",[]],[\"name/405\",[163,56.127]],[\"comment/405\",[]],[\"name/406\",[128,45.138]],[\"comment/406\",[]],[\"name/407\",[190,69.123]],[\"comment/407\",[]],[\"name/408\",[5,21.042]],[\"comment/408\",[]],[\"name/409\",[191,54.456]],[\"comment/409\",[]],[\"name/410\",[182,56.127]],[\"comment/410\",[]],[\"name/411\",[181,60.648]],[\"comment/411\",[]],[\"name/412\",[192,69.123]],[\"comment/412\",[]],[\"name/413\",[5,21.042]],[\"comment/413\",[]],[\"name/414\",[193,69.123]],[\"comment/414\",[]],[\"name/415\",[194,69.123]],[\"comment/415\",[]],[\"name/416\",[195,69.123]],[\"comment/416\",[]],[\"name/417\",[196,69.123]],[\"comment/417\",[]],[\"name/418\",[197,69.123]],[\"comment/418\",[]],[\"name/419\",[198,60.648]],[\"comment/419\",[]],[\"name/420\",[199,69.123]],[\"comment/420\",[]],[\"name/421\",[200,69.123]],[\"comment/421\",[]],[\"name/422\",[201,69.123]],[\"comment/422\",[]],[\"name/423\",[202,69.123]],[\"comment/423\",[]],[\"name/424\",[5,21.042]],[\"comment/424\",[]],[\"name/425\",[203,69.123]],[\"comment/425\",[]],[\"name/426\",[204,60.648]],[\"comment/426\",[]],[\"name/427\",[205,69.123]],[\"comment/427\",[]],[\"name/428\",[206,69.123]],[\"comment/428\",[]],[\"name/429\",[207,69.123]],[\"comment/429\",[]],[\"name/430\",[208,69.123]],[\"comment/430\",[]],[\"name/431\",[5,21.042]],[\"comment/431\",[]],[\"name/432\",[209,56.127]],[\"comment/432\",[]],[\"name/433\",[210,69.123]],[\"comment/433\",[]],[\"name/434\",[211,69.123]],[\"comment/434\",[]],[\"name/435\",[212,69.123]],[\"comment/435\",[]],[\"name/436\",[213,64.013]],[\"comment/436\",[]],[\"name/437\",[214,64.013]],[\"comment/437\",[]],[\"name/438\",[178,60.648]],[\"comment/438\",[]],[\"name/439\",[215,69.123]],[\"comment/439\",[]],[\"name/440\",[5,21.042]],[\"comment/440\",[]],[\"name/441\",[204,60.648]],[\"comment/441\",[]],[\"name/442\",[216,54.456]],[\"comment/442\",[]],[\"name/443\",[5,21.042]],[\"comment/443\",[]],[\"name/444\",[217,64.013]],[\"comment/444\",[]],[\"name/445\",[218,64.013]],[\"comment/445\",[]],[\"name/446\",[219,69.123]],[\"comment/446\",[]],[\"name/447\",[5,21.042]],[\"comment/447\",[]],[\"name/448\",[102,64.013]],[\"comment/448\",[]],[\"name/449\",[220,69.123]],[\"comment/449\",[]],[\"name/450\",[5,21.042]],[\"comment/450\",[]],[\"name/451\",[221,69.123]],[\"comment/451\",[]],[\"name/452\",[222,69.123]],[\"comment/452\",[]],[\"name/453\",[5,21.042]],[\"comment/453\",[]],[\"name/454\",[213,64.013]],[\"comment/454\",[]],[\"name/455\",[223,69.123]],[\"comment/455\",[]],[\"name/456\",[5,21.042]],[\"comment/456\",[]],[\"name/457\",[224,69.123]],[\"comment/457\",[]],[\"name/458\",[214,64.013]],[\"comment/458\",[]],[\"name/459\",[225,69.123]],[\"comment/459\",[]],[\"name/460\",[226,69.123]],[\"comment/460\",[]],[\"name/461\",[76,53.024]],[\"comment/461\",[]],[\"name/462\",[77,51.772]],[\"comment/462\",[]],[\"name/463\",[78,56.127]],[\"comment/463\",[]],[\"name/464\",[8,42.966]],[\"comment/464\",[]],[\"name/465\",[227,56.127]],[\"comment/465\",[]],[\"name/466\",[228,64.013]],[\"comment/466\",[]],[\"name/467\",[229,64.013]],[\"comment/467\",[]],[\"name/468\",[230,64.013]],[\"comment/468\",[]],[\"name/469\",[231,60.648]],[\"comment/469\",[]],[\"name/470\",[232,64.013]],[\"comment/470\",[]],[\"name/471\",[233,60.648]],[\"comment/471\",[]],[\"name/472\",[234,64.013]],[\"comment/472\",[]],[\"name/473\",[79,56.127]],[\"comment/473\",[]],[\"name/474\",[235,64.013]],[\"comment/474\",[]],[\"name/475\",[236,64.013]],[\"comment/475\",[]],[\"name/476\",[237,64.013]],[\"comment/476\",[]],[\"name/477\",[238,60.648]],[\"comment/477\",[]],[\"name/478\",[239,60.648]],[\"comment/478\",[]],[\"name/479\",[240,58.134]],[\"comment/479\",[]],[\"name/480\",[241,64.013]],[\"comment/480\",[]],[\"name/481\",[242,58.134]],[\"comment/481\",[]],[\"name/482\",[243,64.013]],[\"comment/482\",[]],[\"name/483\",[244,58.134]],[\"comment/483\",[]],[\"name/484\",[245,64.013]],[\"comment/484\",[]],[\"name/485\",[246,58.134]],[\"comment/485\",[]],[\"name/486\",[247,64.013]],[\"comment/486\",[]],[\"name/487\",[248,64.013]],[\"comment/487\",[]],[\"name/488\",[249,64.013]],[\"comment/488\",[]],[\"name/489\",[250,58.134]],[\"comment/489\",[]],[\"name/490\",[251,64.013]],[\"comment/490\",[]],[\"name/491\",[252,64.013]],[\"comment/491\",[]],[\"name/492\",[253,64.013]],[\"comment/492\",[]],[\"name/493\",[254,64.013]],[\"comment/493\",[]],[\"name/494\",[255,64.013]],[\"comment/494\",[]],[\"name/495\",[256,64.013]],[\"comment/495\",[]],[\"name/496\",[257,64.013]],[\"comment/496\",[]],[\"name/497\",[258,64.013]],[\"comment/497\",[]],[\"name/498\",[259,64.013]],[\"comment/498\",[]],[\"name/499\",[260,56.127]],[\"comment/499\",[]],[\"name/500\",[191,54.456]],[\"comment/500\",[]],[\"name/501\",[261,64.013]],[\"comment/501\",[]],[\"name/502\",[262,64.013]],[\"comment/502\",[]],[\"name/503\",[263,64.013]],[\"comment/503\",[]],[\"name/504\",[57,37.196]],[\"comment/504\",[]],[\"name/505\",[264,64.013]],[\"comment/505\",[]],[\"name/506\",[238,60.648]],[\"comment/506\",[]],[\"name/507\",[239,60.648]],[\"comment/507\",[]],[\"name/508\",[240,58.134]],[\"comment/508\",[]],[\"name/509\",[241,64.013]],[\"comment/509\",[]],[\"name/510\",[242,58.134]],[\"comment/510\",[]],[\"name/511\",[243,64.013]],[\"comment/511\",[]],[\"name/512\",[244,58.134]],[\"comment/512\",[]],[\"name/513\",[245,64.013]],[\"comment/513\",[]],[\"name/514\",[246,58.134]],[\"comment/514\",[]],[\"name/515\",[247,64.013]],[\"comment/515\",[]],[\"name/516\",[248,64.013]],[\"comment/516\",[]],[\"name/517\",[250,58.134]],[\"comment/517\",[]],[\"name/518\",[251,64.013]],[\"comment/518\",[]],[\"name/519\",[252,64.013]],[\"comment/519\",[]],[\"name/520\",[253,64.013]],[\"comment/520\",[]],[\"name/521\",[257,64.013]],[\"comment/521\",[]],[\"name/522\",[259,64.013]],[\"comment/522\",[]],[\"name/523\",[204,60.648]],[\"comment/523\",[]],[\"name/524\",[265,69.123]],[\"comment/524\",[]],[\"name/525\",[266,69.123]],[\"comment/525\",[]],[\"name/526\",[267,64.013]],[\"comment/526\",[]],[\"name/527\",[76,53.024]],[\"comment/527\",[]],[\"name/528\",[77,51.772]],[\"comment/528\",[]],[\"name/529\",[78,56.127]],[\"comment/529\",[]],[\"name/530\",[8,42.966]],[\"comment/530\",[]],[\"name/531\",[227,56.127]],[\"comment/531\",[]],[\"name/532\",[228,64.013]],[\"comment/532\",[]],[\"name/533\",[229,64.013]],[\"comment/533\",[]],[\"name/534\",[230,64.013]],[\"comment/534\",[]],[\"name/535\",[231,60.648]],[\"comment/535\",[]],[\"name/536\",[232,64.013]],[\"comment/536\",[]],[\"name/537\",[233,60.648]],[\"comment/537\",[]],[\"name/538\",[234,64.013]],[\"comment/538\",[]],[\"name/539\",[79,56.127]],[\"comment/539\",[]],[\"name/540\",[235,64.013]],[\"comment/540\",[]],[\"name/541\",[236,64.013]],[\"comment/541\",[]],[\"name/542\",[237,64.013]],[\"comment/542\",[]],[\"name/543\",[249,64.013]],[\"comment/543\",[]],[\"name/544\",[254,64.013]],[\"comment/544\",[]],[\"name/545\",[255,64.013]],[\"comment/545\",[]],[\"name/546\",[256,64.013]],[\"comment/546\",[]],[\"name/547\",[258,64.013]],[\"comment/547\",[]],[\"name/548\",[260,56.127]],[\"comment/548\",[]],[\"name/549\",[191,54.456]],[\"comment/549\",[]],[\"name/550\",[261,64.013]],[\"comment/550\",[]],[\"name/551\",[262,64.013]],[\"comment/551\",[]],[\"name/552\",[263,64.013]],[\"comment/552\",[]],[\"name/553\",[57,37.196]],[\"comment/553\",[]],[\"name/554\",[268,69.123]],[\"comment/554\",[]],[\"name/555\",[269,64.013]],[\"comment/555\",[]],[\"name/556\",[270,60.648]],[\"comment/556\",[]],[\"name/557\",[271,69.123]],[\"comment/557\",[]],[\"name/558\",[272,69.123]],[\"comment/558\",[]],[\"name/559\",[5,21.042]],[\"comment/559\",[]],[\"name/560\",[209,56.127]],[\"comment/560\",[]],[\"name/561\",[273,53.024]],[\"comment/561\",[]],[\"name/562\",[274,69.123]],[\"comment/562\",[]],[\"name/563\",[275,69.123]],[\"comment/563\",[]],[\"name/564\",[5,21.042]],[\"comment/564\",[]],[\"name/565\",[276,64.013]],[\"comment/565\",[]],[\"name/566\",[277,69.123]],[\"comment/566\",[]],[\"name/567\",[278,69.123]],[\"comment/567\",[]],[\"name/568\",[5,21.042]],[\"comment/568\",[]],[\"name/569\",[279,69.123]],[\"comment/569\",[]],[\"name/570\",[280,69.123]],[\"comment/570\",[]],[\"name/571\",[5,21.042]],[\"comment/571\",[]],[\"name/572\",[281,69.123]],[\"comment/572\",[]],[\"name/573\",[282,60.648]],[\"comment/573\",[]],[\"name/574\",[283,69.123]],[\"comment/574\",[]],[\"name/575\",[5,21.042]],[\"comment/575\",[]],[\"name/576\",[284,69.123]],[\"comment/576\",[]],[\"name/577\",[285,69.123]],[\"comment/577\",[]],[\"name/578\",[286,69.123]],[\"comment/578\",[]],[\"name/579\",[287,69.123]],[\"comment/579\",[]],[\"name/580\",[5,21.042]],[\"comment/580\",[]],[\"name/581\",[288,69.123]],[\"comment/581\",[]],[\"name/582\",[5,21.042]],[\"comment/582\",[]],[\"name/583\",[289,69.123]],[\"comment/583\",[]],[\"name/584\",[5,21.042]],[\"comment/584\",[]],[\"name/585\",[290,69.123]],[\"comment/585\",[]],[\"name/586\",[5,21.042]],[\"comment/586\",[]],[\"name/587\",[291,69.123]],[\"comment/587\",[]],[\"name/588\",[292,69.123]],[\"comment/588\",[]],[\"name/589\",[293,69.123]],[\"comment/589\",[]],[\"name/590\",[294,69.123]],[\"comment/590\",[]],[\"name/591\",[160,50.66]],[\"comment/591\",[]],[\"name/592\",[295,60.648]],[\"comment/592\",[]],[\"name/593\",[270,60.648]],[\"comment/593\",[]],[\"name/594\",[282,60.648]],[\"comment/594\",[]],[\"name/595\",[296,69.123]],[\"comment/595\",[]],[\"name/596\",[297,56.127]],[\"comment/596\",[]],[\"name/597\",[298,69.123]],[\"comment/597\",[]],[\"name/598\",[299,64.013]],[\"comment/598\",[]],[\"name/599\",[300,69.123]],[\"comment/599\",[]],[\"name/600\",[5,21.042]],[\"comment/600\",[]],[\"name/601\",[301,69.123]],[\"comment/601\",[]],[\"name/602\",[302,69.123]],[\"comment/602\",[]],[\"name/603\",[303,69.123]],[\"comment/603\",[]],[\"name/604\",[304,69.123]],[\"comment/604\",[]],[\"name/605\",[269,64.013]],[\"comment/605\",[]],[\"name/606\",[305,69.123]],[\"comment/606\",[]],[\"name/607\",[295,60.648]],[\"comment/607\",[]],[\"name/608\",[306,69.123]],[\"comment/608\",[]],[\"name/609\",[299,64.013]],[\"comment/609\",[]],[\"name/610\",[270,60.648]],[\"comment/610\",[]],[\"name/611\",[307,69.123]],[\"comment/611\",[]],[\"name/612\",[308,69.123]],[\"comment/612\",[]],[\"name/613\",[309,69.123]],[\"comment/613\",[]],[\"name/614\",[310,69.123]],[\"comment/614\",[]],[\"name/615\",[311,60.648]],[\"comment/615\",[]],[\"name/616\",[312,64.013]],[\"comment/616\",[]],[\"name/617\",[313,64.013]],[\"comment/617\",[]],[\"name/618\",[216,54.456]],[\"comment/618\",[]],[\"name/619\",[314,69.123]],[\"comment/619\",[]],[\"name/620\",[315,69.123]],[\"comment/620\",[]],[\"name/621\",[316,69.123]],[\"comment/621\",[]],[\"name/622\",[317,69.123]],[\"comment/622\",[]],[\"name/623\",[318,69.123]],[\"comment/623\",[]],[\"name/624\",[319,69.123]],[\"comment/624\",[]],[\"name/625\",[320,69.123]],[\"comment/625\",[]],[\"name/626\",[321,69.123]],[\"comment/626\",[]],[\"name/627\",[217,64.013]],[\"comment/627\",[]],[\"name/628\",[218,64.013]],[\"comment/628\",[]],[\"name/629\",[322,64.013]],[\"comment/629\",[]],[\"name/630\",[323,64.013]],[\"comment/630\",[]],[\"name/631\",[324,64.013]],[\"comment/631\",[]],[\"name/632\",[325,69.123]],[\"comment/632\",[]],[\"name/633\",[326,64.013]],[\"comment/633\",[]],[\"name/634\",[327,69.123]],[\"comment/634\",[]],[\"name/635\",[328,69.123]],[\"comment/635\",[]],[\"name/636\",[329,54.456]],[\"comment/636\",[]],[\"name/637\",[227,56.127]],[\"comment/637\",[]],[\"name/638\",[330,69.123]],[\"comment/638\",[]],[\"name/639\",[331,64.013]],[\"comment/639\",[]],[\"name/640\",[332,69.123]],[\"comment/640\",[]],[\"name/641\",[250,58.134]],[\"comment/641\",[]],[\"name/642\",[333,64.013]],[\"comment/642\",[]],[\"name/643\",[334,64.013]],[\"comment/643\",[]],[\"name/644\",[335,64.013]],[\"comment/644\",[]],[\"name/645\",[336,64.013]],[\"comment/645\",[]],[\"name/646\",[337,64.013]],[\"comment/646\",[]],[\"name/647\",[338,64.013]],[\"comment/647\",[]],[\"name/648\",[339,64.013]],[\"comment/648\",[]],[\"name/649\",[340,69.123]],[\"comment/649\",[]],[\"name/650\",[341,69.123]],[\"comment/650\",[]],[\"name/651\",[329,54.456]],[\"comment/651\",[]],[\"name/652\",[227,56.127]],[\"comment/652\",[]],[\"name/653\",[331,64.013]],[\"comment/653\",[]],[\"name/654\",[250,58.134]],[\"comment/654\",[]],[\"name/655\",[333,64.013]],[\"comment/655\",[]],[\"name/656\",[334,64.013]],[\"comment/656\",[]],[\"name/657\",[335,64.013]],[\"comment/657\",[]],[\"name/658\",[336,64.013]],[\"comment/658\",[]],[\"name/659\",[337,64.013]],[\"comment/659\",[]],[\"name/660\",[338,64.013]],[\"comment/660\",[]],[\"name/661\",[339,64.013]],[\"comment/661\",[]],[\"name/662\",[342,56.127]],[\"comment/662\",[]],[\"name/663\",[343,69.123]],[\"comment/663\",[]],[\"name/664\",[344,69.123]],[\"comment/664\",[]],[\"name/665\",[5,21.042]],[\"comment/665\",[]],[\"name/666\",[345,69.123]],[\"comment/666\",[]],[\"name/667\",[346,69.123]],[\"comment/667\",[]],[\"name/668\",[347,69.123]],[\"comment/668\",[]],[\"name/669\",[348,69.123]],[\"comment/669\",[]],[\"name/670\",[5,21.042]],[\"comment/670\",[]],[\"name/671\",[349,69.123]],[\"comment/671\",[]],[\"name/672\",[160,50.66]],[\"comment/672\",[]],[\"name/673\",[128,45.138]],[\"comment/673\",[]],[\"name/674\",[350,69.123]],[\"comment/674\",[]],[\"name/675\",[351,64.013]],[\"comment/675\",[]],[\"name/676\",[352,69.123]],[\"comment/676\",[]],[\"name/677\",[5,21.042]],[\"comment/677\",[]],[\"name/678\",[160,50.66]],[\"comment/678\",[]],[\"name/679\",[353,69.123]],[\"comment/679\",[]],[\"name/680\",[282,60.648]],[\"comment/680\",[]],[\"name/681\",[295,60.648]],[\"comment/681\",[]],[\"name/682\",[227,56.127]],[\"comment/682\",[]],[\"name/683\",[30,58.134]],[\"comment/683\",[]],[\"name/684\",[354,51.772]],[\"comment/684\",[]],[\"name/685\",[31,64.013]],[\"comment/685\",[]],[\"name/686\",[355,69.123]],[\"comment/686\",[]],[\"name/687\",[183,60.648]],[\"comment/687\",[]],[\"name/688\",[113,60.648]],[\"comment/688\",[]],[\"name/689\",[313,64.013]],[\"comment/689\",[]],[\"name/690\",[185,60.648]],[\"comment/690\",[]],[\"name/691\",[356,69.123]],[\"comment/691\",[]],[\"name/692\",[324,64.013]],[\"comment/692\",[]],[\"name/693\",[357,69.123]],[\"comment/693\",[]],[\"name/694\",[358,64.013]],[\"comment/694\",[]],[\"name/695\",[5,21.042]],[\"comment/695\",[]],[\"name/696\",[359,60.648]],[\"comment/696\",[]],[\"name/697\",[360,69.123]],[\"comment/697\",[]],[\"name/698\",[361,69.123]],[\"comment/698\",[]],[\"name/699\",[351,64.013]],[\"comment/699\",[]],[\"name/700\",[362,69.123]],[\"comment/700\",[]],[\"name/701\",[363,69.123]],[\"comment/701\",[]],[\"name/702\",[364,69.123]],[\"comment/702\",[]],[\"name/703\",[365,69.123]],[\"comment/703\",[]],[\"name/704\",[366,69.123]],[\"comment/704\",[]],[\"name/705\",[5,21.042]],[\"comment/705\",[]],[\"name/706\",[358,64.013]],[\"comment/706\",[]],[\"name/707\",[5,21.042]],[\"comment/707\",[]],[\"name/708\",[359,60.648]],[\"comment/708\",[]],[\"name/709\",[367,69.123]],[\"comment/709\",[]],[\"name/710\",[368,69.123]],[\"comment/710\",[]],[\"name/711\",[369,69.123]],[\"comment/711\",[]],[\"name/712\",[5,21.042]],[\"comment/712\",[]],[\"name/713\",[370,51.772]],[\"comment/713\",[]],[\"name/714\",[371,64.013]],[\"comment/714\",[]],[\"name/715\",[372,69.123]],[\"comment/715\",[]],[\"name/716\",[5,21.042]],[\"comment/716\",[]],[\"name/717\",[326,64.013]],[\"comment/717\",[]],[\"name/718\",[359,60.648]],[\"comment/718\",[]],[\"name/719\",[373,60.648]],[\"comment/719\",[]],[\"name/720\",[374,69.123]],[\"comment/720\",[]],[\"name/721\",[375,69.123]],[\"comment/721\",[]],[\"name/722\",[376,69.123]],[\"comment/722\",[]],[\"name/723\",[377,69.123]],[\"comment/723\",[]],[\"name/724\",[378,69.123]],[\"comment/724\",[]],[\"name/725\",[5,21.042]],[\"comment/725\",[]],[\"name/726\",[312,64.013]],[\"comment/726\",[]],[\"name/727\",[379,64.013]],[\"comment/727\",[]],[\"name/728\",[311,60.648]],[\"comment/728\",[]],[\"name/729\",[216,54.456]],[\"comment/729\",[]],[\"name/730\",[5,21.042]],[\"comment/730\",[]],[\"name/731\",[380,64.013]],[\"comment/731\",[]],[\"name/732\",[381,64.013]],[\"comment/732\",[]],[\"name/733\",[382,64.013]],[\"comment/733\",[]],[\"name/734\",[322,64.013]],[\"comment/734\",[]],[\"name/735\",[323,64.013]],[\"comment/735\",[]],[\"name/736\",[383,69.123]],[\"comment/736\",[]],[\"name/737\",[5,21.042]],[\"comment/737\",[]],[\"name/738\",[384,69.123]],[\"comment/738\",[]],[\"name/739\",[379,64.013]],[\"comment/739\",[]],[\"name/740\",[311,60.648]],[\"comment/740\",[]],[\"name/741\",[216,54.456]],[\"comment/741\",[]],[\"name/742\",[5,21.042]],[\"comment/742\",[]],[\"name/743\",[380,64.013]],[\"comment/743\",[]],[\"name/744\",[381,64.013]],[\"comment/744\",[]],[\"name/745\",[382,64.013]],[\"comment/745\",[]],[\"name/746\",[385,69.123]],[\"comment/746\",[]],[\"name/747\",[5,21.042]],[\"comment/747\",[]],[\"name/748\",[6,37.76]],[\"comment/748\",[]],[\"name/749\",[386,69.123]],[\"comment/749\",[]],[\"name/750\",[387,69.123]],[\"comment/750\",[]],[\"name/751\",[5,21.042]],[\"comment/751\",[]],[\"name/752\",[388,69.123]],[\"comment/752\",[]],[\"name/753\",[373,60.648]],[\"comment/753\",[]],[\"name/754\",[87,60.648]],[\"comment/754\",[]],[\"name/755\",[389,69.123]],[\"comment/755\",[]],[\"name/756\",[390,69.123]],[\"comment/756\",[]],[\"name/757\",[5,21.042]],[\"comment/757\",[]],[\"name/758\",[57,37.196]],[\"comment/758\",[]],[\"name/759\",[391,69.123]],[\"comment/759\",[]],[\"name/760\",[5,21.042]],[\"comment/760\",[]],[\"name/761\",[392,69.123]],[\"comment/761\",[]],[\"name/762\",[393,69.123]],[\"comment/762\",[]],[\"name/763\",[394,69.123]],[\"comment/763\",[]],[\"name/764\",[395,69.123]],[\"comment/764\",[]],[\"name/765\",[396,69.123]],[\"comment/765\",[]],[\"name/766\",[397,69.123]],[\"comment/766\",[]],[\"name/767\",[398,64.013]],[\"comment/767\",[]],[\"name/768\",[5,21.042]],[\"comment/768\",[]],[\"name/769\",[399,64.013]],[\"comment/769\",[]],[\"name/770\",[400,64.013]],[\"comment/770\",[]],[\"name/771\",[401,64.013]],[\"comment/771\",[]],[\"name/772\",[402,64.013]],[\"comment/772\",[]],[\"name/773\",[403,64.013]],[\"comment/773\",[]],[\"name/774\",[404,64.013]],[\"comment/774\",[]],[\"name/775\",[405,69.123]],[\"comment/775\",[]],[\"name/776\",[5,21.042]],[\"comment/776\",[]],[\"name/777\",[399,64.013]],[\"comment/777\",[]],[\"name/778\",[400,64.013]],[\"comment/778\",[]],[\"name/779\",[401,64.013]],[\"comment/779\",[]],[\"name/780\",[402,64.013]],[\"comment/780\",[]],[\"name/781\",[403,64.013]],[\"comment/781\",[]],[\"name/782\",[404,64.013]],[\"comment/782\",[]],[\"name/783\",[406,69.123]],[\"comment/783\",[]],[\"name/784\",[5,21.042]],[\"comment/784\",[]],[\"name/785\",[370,51.772]],[\"comment/785\",[]],[\"name/786\",[86,60.648]],[\"comment/786\",[]],[\"name/787\",[87,60.648]],[\"comment/787\",[]],[\"name/788\",[407,69.123]],[\"comment/788\",[]],[\"name/789\",[408,69.123]],[\"comment/789\",[]],[\"name/790\",[371,64.013]],[\"comment/790\",[]],[\"name/791\",[185,60.648]],[\"comment/791\",[]],[\"name/792\",[409,69.123]],[\"comment/792\",[]],[\"name/793\",[5,21.042]],[\"comment/793\",[]],[\"name/794\",[276,64.013]],[\"comment/794\",[]],[\"name/795\",[410,60.648]],[\"comment/795\",[]],[\"name/796\",[411,58.134]],[\"comment/796\",[]],[\"name/797\",[329,54.456]],[\"comment/797\",[]],[\"name/798\",[412,69.123]],[\"comment/798\",[]],[\"name/799\",[5,21.042]],[\"comment/799\",[]],[\"name/800\",[413,69.123]],[\"comment/800\",[]],[\"name/801\",[414,64.013]],[\"comment/801\",[]],[\"name/802\",[134,53.024]],[\"comment/802\",[]],[\"name/803\",[131,53.024]],[\"comment/803\",[]],[\"name/804\",[415,69.123]],[\"comment/804\",[]],[\"name/805\",[5,21.042]],[\"comment/805\",[]],[\"name/806\",[57,37.196]],[\"comment/806\",[]],[\"name/807\",[370,51.772]],[\"comment/807\",[]],[\"name/808\",[297,56.127]],[\"comment/808\",[]],[\"name/809\",[150,64.013]],[\"comment/809\",[]],[\"name/810\",[414,64.013]],[\"comment/810\",[]],[\"name/811\",[134,53.024]],[\"comment/811\",[]],[\"name/812\",[131,53.024]],[\"comment/812\",[]],[\"name/813\",[416,69.123]],[\"comment/813\",[]],[\"name/814\",[5,21.042]],[\"comment/814\",[]],[\"name/815\",[417,69.123]],[\"comment/815\",[]],[\"name/816\",[418,60.648]],[\"comment/816\",[]],[\"name/817\",[419,50.66]],[\"comment/817\",[]],[\"name/818\",[178,60.648]],[\"comment/818\",[]],[\"name/819\",[5,21.042]],[\"comment/819\",[]],[\"name/820\",[420,69.123]],[\"comment/820\",[]],[\"name/821\",[5,21.042]],[\"comment/821\",[]],[\"name/822\",[57,37.196]],[\"comment/822\",[]],[\"name/823\",[273,53.024]],[\"comment/823\",[]],[\"name/824\",[421,69.123]],[\"comment/824\",[]],[\"name/825\",[422,69.123]],[\"comment/825\",[]],[\"name/826\",[5,21.042]],[\"comment/826\",[]],[\"name/827\",[423,54.456]],[\"comment/827\",[]],[\"name/828\",[424,56.127]],[\"comment/828\",[]],[\"name/829\",[425,56.127]],[\"comment/829\",[]],[\"name/830\",[426,56.127]],[\"comment/830\",[]],[\"name/831\",[427,60.648]],[\"comment/831\",[]],[\"name/832\",[428,69.123]],[\"comment/832\",[]],[\"name/833\",[5,21.042]],[\"comment/833\",[]],[\"name/834\",[423,54.456]],[\"comment/834\",[]],[\"name/835\",[424,56.127]],[\"comment/835\",[]],[\"name/836\",[425,56.127]],[\"comment/836\",[]],[\"name/837\",[426,56.127]],[\"comment/837\",[]],[\"name/838\",[427,60.648]],[\"comment/838\",[]],[\"name/839\",[429,60.648]],[\"comment/839\",[]],[\"name/840\",[430,60.648]],[\"comment/840\",[]],[\"name/841\",[431,69.123]],[\"comment/841\",[]],[\"name/842\",[5,21.042]],[\"comment/842\",[]],[\"name/843\",[423,54.456]],[\"comment/843\",[]],[\"name/844\",[424,56.127]],[\"comment/844\",[]],[\"name/845\",[425,56.127]],[\"comment/845\",[]],[\"name/846\",[426,56.127]],[\"comment/846\",[]],[\"name/847\",[427,60.648]],[\"comment/847\",[]],[\"name/848\",[429,60.648]],[\"comment/848\",[]],[\"name/849\",[430,60.648]],[\"comment/849\",[]],[\"name/850\",[432,69.123]],[\"comment/850\",[]],[\"name/851\",[5,21.042]],[\"comment/851\",[]],[\"name/852\",[429,60.648]],[\"comment/852\",[]],[\"name/853\",[430,60.648]],[\"comment/853\",[]],[\"name/854\",[433,69.123]],[\"comment/854\",[]],[\"name/855\",[5,21.042]],[\"comment/855\",[]],[\"name/856\",[434,64.013]],[\"comment/856\",[]],[\"name/857\",[57,37.196]],[\"comment/857\",[]],[\"name/858\",[419,50.66]],[\"comment/858\",[]],[\"name/859\",[435,64.013]],[\"comment/859\",[]],[\"name/860\",[425,56.127]],[\"comment/860\",[]],[\"name/861\",[426,56.127]],[\"comment/861\",[]],[\"name/862\",[436,69.123]],[\"comment/862\",[]],[\"name/863\",[5,21.042]],[\"comment/863\",[]],[\"name/864\",[434,64.013]],[\"comment/864\",[]],[\"name/865\",[297,56.127]],[\"comment/865\",[]],[\"name/866\",[57,37.196]],[\"comment/866\",[]],[\"name/867\",[419,50.66]],[\"comment/867\",[]],[\"name/868\",[425,56.127]],[\"comment/868\",[]],[\"name/869\",[426,56.127]],[\"comment/869\",[]],[\"name/870\",[437,64.013]],[\"comment/870\",[]],[\"name/871\",[231,60.648]],[\"comment/871\",[]],[\"name/872\",[46,58.134]],[\"comment/872\",[]],[\"name/873\",[5,21.042]],[\"comment/873\",[]],[\"name/874\",[423,54.456]],[\"comment/874\",[]],[\"name/875\",[424,56.127]],[\"comment/875\",[]],[\"name/876\",[438,69.123]],[\"comment/876\",[]],[\"name/877\",[5,21.042]],[\"comment/877\",[]],[\"name/878\",[6,37.76]],[\"comment/878\",[]],[\"name/879\",[439,69.123]],[\"comment/879\",[]],[\"name/880\",[440,60.648]],[\"comment/880\",[]],[\"name/881\",[441,51.772]],[\"comment/881\",[]],[\"name/882\",[442,53.024]],[\"comment/882\",[]],[\"name/883\",[443,56.127]],[\"comment/883\",[]],[\"name/884\",[444,60.648]],[\"comment/884\",[]],[\"name/885\",[445,69.123]],[\"comment/885\",[]],[\"name/886\",[5,21.042]],[\"comment/886\",[]],[\"name/887\",[446,60.648]],[\"comment/887\",[]],[\"name/888\",[440,60.648]],[\"comment/888\",[]],[\"name/889\",[441,51.772]],[\"comment/889\",[]],[\"name/890\",[57,37.196]],[\"comment/890\",[]],[\"name/891\",[419,50.66]],[\"comment/891\",[]],[\"name/892\",[442,53.024]],[\"comment/892\",[]],[\"name/893\",[443,56.127]],[\"comment/893\",[]],[\"name/894\",[447,69.123]],[\"comment/894\",[]],[\"name/895\",[5,21.042]],[\"comment/895\",[]],[\"name/896\",[446,60.648]],[\"comment/896\",[]],[\"name/897\",[440,60.648]],[\"comment/897\",[]],[\"name/898\",[441,51.772]],[\"comment/898\",[]],[\"name/899\",[57,37.196]],[\"comment/899\",[]],[\"name/900\",[419,50.66]],[\"comment/900\",[]],[\"name/901\",[442,53.024]],[\"comment/901\",[]],[\"name/902\",[443,56.127]],[\"comment/902\",[]],[\"name/903\",[448,69.123]],[\"comment/903\",[]],[\"name/904\",[5,21.042]],[\"comment/904\",[]],[\"name/905\",[449,56.127]],[\"comment/905\",[]],[\"name/906\",[450,64.013]],[\"comment/906\",[]],[\"name/907\",[451,64.013]],[\"comment/907\",[]],[\"name/908\",[452,64.013]],[\"comment/908\",[]],[\"name/909\",[453,58.134]],[\"comment/909\",[]],[\"name/910\",[454,69.123]],[\"comment/910\",[]],[\"name/911\",[5,21.042]],[\"comment/911\",[]],[\"name/912\",[441,51.772]],[\"comment/912\",[]],[\"name/913\",[455,64.013]],[\"comment/913\",[]],[\"name/914\",[453,58.134]],[\"comment/914\",[]],[\"name/915\",[456,60.648]],[\"comment/915\",[]],[\"name/916\",[457,69.123]],[\"comment/916\",[]],[\"name/917\",[458,69.123]],[\"comment/917\",[]],[\"name/918\",[5,21.042]],[\"comment/918\",[]],[\"name/919\",[459,69.123]],[\"comment/919\",[]],[\"name/920\",[441,51.772]],[\"comment/920\",[]],[\"name/921\",[453,58.134]],[\"comment/921\",[]],[\"name/922\",[456,60.648]],[\"comment/922\",[]],[\"name/923\",[460,69.123]],[\"comment/923\",[]],[\"name/924\",[5,21.042]],[\"comment/924\",[]],[\"name/925\",[441,51.772]],[\"comment/925\",[]],[\"name/926\",[461,64.013]],[\"comment/926\",[]],[\"name/927\",[449,56.127]],[\"comment/927\",[]],[\"name/928\",[462,69.123]],[\"comment/928\",[]],[\"name/929\",[5,21.042]],[\"comment/929\",[]],[\"name/930\",[216,54.456]],[\"comment/930\",[]],[\"name/931\",[461,64.013]],[\"comment/931\",[]],[\"name/932\",[449,56.127]],[\"comment/932\",[]],[\"name/933\",[463,69.123]],[\"comment/933\",[]],[\"name/934\",[464,69.123]],[\"comment/934\",[]],[\"name/935\",[465,69.123]],[\"comment/935\",[]],[\"name/936\",[466,69.123]],[\"comment/936\",[]],[\"name/937\",[5,21.042]],[\"comment/937\",[]],[\"name/938\",[441,51.772]],[\"comment/938\",[]],[\"name/939\",[455,64.013]],[\"comment/939\",[]],[\"name/940\",[453,58.134]],[\"comment/940\",[]],[\"name/941\",[456,60.648]],[\"comment/941\",[]],[\"name/942\",[467,69.123]],[\"comment/942\",[]],[\"name/943\",[5,21.042]],[\"comment/943\",[]],[\"name/944\",[216,54.456]],[\"comment/944\",[]],[\"name/945\",[449,56.127]],[\"comment/945\",[]],[\"name/946\",[452,64.013]],[\"comment/946\",[]],[\"name/947\",[451,64.013]],[\"comment/947\",[]],[\"name/948\",[450,64.013]],[\"comment/948\",[]],[\"name/949\",[468,69.123]],[\"comment/949\",[]],[\"name/950\",[5,21.042]],[\"comment/950\",[]],[\"name/951\",[469,69.123]],[\"comment/951\",[]],[\"name/952\",[5,21.042]],[\"comment/952\",[]],[\"name/953\",[441,51.772]],[\"comment/953\",[]],[\"name/954\",[442,53.024]],[\"comment/954\",[]],[\"name/955\",[419,50.66]],[\"comment/955\",[]],[\"name/956\",[418,60.648]],[\"comment/956\",[]],[\"name/957\",[297,56.127]],[\"comment/957\",[]],[\"name/958\",[5,21.042]],[\"comment/958\",[]],[\"name/959\",[470,69.123]],[\"comment/959\",[]],[\"name/960\",[471,69.123]],[\"comment/960\",[]],[\"name/961\",[5,21.042]],[\"comment/961\",[]],[\"name/962\",[472,64.013]],[\"comment/962\",[]],[\"name/963\",[411,58.134]],[\"comment/963\",[]],[\"name/964\",[329,54.456]],[\"comment/964\",[]],[\"name/965\",[473,69.123]],[\"comment/965\",[]],[\"name/966\",[5,21.042]],[\"comment/966\",[]],[\"name/967\",[472,64.013]],[\"comment/967\",[]],[\"name/968\",[410,60.648]],[\"comment/968\",[]],[\"name/969\",[411,58.134]],[\"comment/969\",[]],[\"name/970\",[329,54.456]],[\"comment/970\",[]],[\"name/971\",[474,69.123]],[\"comment/971\",[]],[\"name/972\",[5,21.042]],[\"comment/972\",[]],[\"name/973\",[410,60.648]],[\"comment/973\",[]],[\"name/974\",[411,58.134]],[\"comment/974\",[]],[\"name/975\",[329,54.456]],[\"comment/975\",[]],[\"name/976\",[475,69.123]],[\"comment/976\",[]],[\"name/977\",[5,21.042]],[\"comment/977\",[]],[\"name/978\",[342,56.127]],[\"comment/978\",[]],[\"name/979\",[90,51.772]],[\"comment/979\",[]],[\"name/980\",[476,69.123]],[\"comment/980\",[]],[\"name/981\",[5,21.042]],[\"comment/981\",[]],[\"name/982\",[477,69.123]],[\"comment/982\",[]],[\"name/983\",[5,21.042]],[\"comment/983\",[]],[\"name/984\",[478,69.123]],[\"comment/984\",[]],[\"name/985\",[5,21.042]],[\"comment/985\",[]],[\"name/986\",[479,69.123]],[\"comment/986\",[]],[\"name/987\",[5,21.042]],[\"comment/987\",[]],[\"name/988\",[342,56.127]],[\"comment/988\",[]],[\"name/989\",[480,69.123]],[\"comment/989\",[]],[\"name/990\",[57,37.196]],[\"comment/990\",[]],[\"name/991\",[419,50.66]],[\"comment/991\",[]],[\"name/992\",[481,58.134]],[\"comment/992\",[]],[\"name/993\",[482,69.123]],[\"comment/993\",[]],[\"name/994\",[483,69.123]],[\"comment/994\",[]],[\"name/995\",[484,69.123]],[\"comment/995\",[]],[\"name/996\",[485,69.123]],[\"comment/996\",[]],[\"name/997\",[486,69.123]],[\"comment/997\",[]],[\"name/998\",[487,69.123]],[\"comment/998\",[]],[\"name/999\",[488,69.123]],[\"comment/999\",[]],[\"name/1000\",[489,69.123]],[\"comment/1000\",[]],[\"name/1001\",[490,69.123]],[\"comment/1001\",[]],[\"name/1002\",[342,56.127]],[\"comment/1002\",[]],[\"name/1003\",[77,51.772]],[\"comment/1003\",[]],[\"name/1004\",[76,53.024]],[\"comment/1004\",[]],[\"name/1005\",[491,69.123]],[\"comment/1005\",[]],[\"name/1006\",[492,69.123]],[\"comment/1006\",[]],[\"name/1007\",[493,69.123]],[\"comment/1007\",[]],[\"name/1008\",[494,69.123]],[\"comment/1008\",[]],[\"name/1009\",[495,69.123]],[\"comment/1009\",[]],[\"name/1010\",[496,69.123]],[\"comment/1010\",[]],[\"name/1011\",[90,51.772]],[\"comment/1011\",[]],[\"name/1012\",[497,69.123]],[\"comment/1012\",[]],[\"name/1013\",[498,69.123]],[\"comment/1013\",[]],[\"name/1014\",[499,69.123]],[\"comment/1014\",[]],[\"name/1015\",[500,69.123]],[\"comment/1015\",[]],[\"name/1016\",[373,60.648]],[\"comment/1016\",[]],[\"name/1017\",[501,56.127]],[\"comment/1017\",[]],[\"name/1018\",[502,69.123]],[\"comment/1018\",[]],[\"name/1019\",[503,69.123]],[\"comment/1019\",[]],[\"name/1020\",[504,69.123]],[\"comment/1020\",[]],[\"name/1021\",[505,60.648]],[\"comment/1021\",[]],[\"name/1022\",[506,69.123]],[\"comment/1022\",[]],[\"name/1023\",[507,69.123]],[\"comment/1023\",[]],[\"name/1024\",[508,69.123]],[\"comment/1024\",[]],[\"name/1025\",[509,69.123]],[\"comment/1025\",[]],[\"name/1026\",[0,51.772]],[\"comment/1026\",[]],[\"name/1027\",[510,69.123]],[\"comment/1027\",[]],[\"name/1028\",[511,69.123]],[\"comment/1028\",[]],[\"name/1029\",[512,60.648]],[\"comment/1029\",[]],[\"name/1030\",[513,69.123]],[\"comment/1030\",[]],[\"name/1031\",[514,69.123]],[\"comment/1031\",[]],[\"name/1032\",[515,69.123]],[\"comment/1032\",[]],[\"name/1033\",[516,69.123]],[\"comment/1033\",[]],[\"name/1034\",[517,69.123]],[\"comment/1034\",[]],[\"name/1035\",[518,69.123]],[\"comment/1035\",[]],[\"name/1036\",[519,69.123]],[\"comment/1036\",[]],[\"name/1037\",[520,69.123]],[\"comment/1037\",[]],[\"name/1038\",[521,69.123]],[\"comment/1038\",[]],[\"name/1039\",[522,69.123]],[\"comment/1039\",[]],[\"name/1040\",[523,69.123]],[\"comment/1040\",[]],[\"name/1041\",[524,60.648]],[\"comment/1041\",[]],[\"name/1042\",[525,69.123]],[\"comment/1042\",[]],[\"name/1043\",[526,69.123]],[\"comment/1043\",[]],[\"name/1044\",[527,69.123]],[\"comment/1044\",[]],[\"name/1045\",[86,60.648]],[\"comment/1045\",[]],[\"name/1046\",[528,69.123]],[\"comment/1046\",[]],[\"name/1047\",[529,69.123]],[\"comment/1047\",[]],[\"name/1048\",[530,69.123]],[\"comment/1048\",[]],[\"name/1049\",[398,64.013]],[\"comment/1049\",[]],[\"name/1050\",[531,69.123]],[\"comment/1050\",[]],[\"name/1051\",[532,69.123]],[\"comment/1051\",[]],[\"name/1052\",[533,69.123]],[\"comment/1052\",[]],[\"name/1053\",[534,69.123]],[\"comment/1053\",[]],[\"name/1054\",[535,69.123]],[\"comment/1054\",[]],[\"name/1055\",[536,69.123]],[\"comment/1055\",[]],[\"name/1056\",[537,69.123]],[\"comment/1056\",[]],[\"name/1057\",[538,69.123]],[\"comment/1057\",[]],[\"name/1058\",[539,69.123]],[\"comment/1058\",[]],[\"name/1059\",[540,69.123]],[\"comment/1059\",[]],[\"name/1060\",[541,69.123]],[\"comment/1060\",[]],[\"name/1061\",[542,69.123]],[\"comment/1061\",[]],[\"name/1062\",[543,69.123]],[\"comment/1062\",[]],[\"name/1063\",[544,69.123]],[\"comment/1063\",[]],[\"name/1064\",[545,69.123]],[\"comment/1064\",[]],[\"name/1065\",[546,69.123]],[\"comment/1065\",[]],[\"name/1066\",[547,69.123]],[\"comment/1066\",[]],[\"name/1067\",[548,69.123]],[\"comment/1067\",[]],[\"name/1068\",[549,69.123]],[\"comment/1068\",[]],[\"name/1069\",[550,69.123]],[\"comment/1069\",[]],[\"name/1070\",[551,69.123]],[\"comment/1070\",[]],[\"name/1071\",[552,69.123]],[\"comment/1071\",[]],[\"name/1072\",[553,69.123]],[\"comment/1072\",[]],[\"name/1073\",[554,69.123]],[\"comment/1073\",[]],[\"name/1074\",[555,69.123]],[\"comment/1074\",[]],[\"name/1075\",[556,69.123]],[\"comment/1075\",[]],[\"name/1076\",[557,69.123]],[\"comment/1076\",[]],[\"name/1077\",[239,60.648]],[\"comment/1077\",[]],[\"name/1078\",[558,69.123]],[\"comment/1078\",[]],[\"name/1079\",[5,21.042]],[\"comment/1079\",[]],[\"name/1080\",[559,64.013]],[\"comment/1080\",[]],[\"name/1081\",[560,64.013]],[\"comment/1081\",[]],[\"name/1082\",[561,69.123]],[\"comment/1082\",[]],[\"name/1083\",[562,69.123]],[\"comment/1083\",[]],[\"name/1084\",[5,21.042]],[\"comment/1084\",[]],[\"name/1085\",[563,69.123]],[\"comment/1085\",[]],[\"name/1086\",[564,69.123]],[\"comment/1086\",[]],[\"name/1087\",[565,69.123]],[\"comment/1087\",[]],[\"name/1088\",[566,69.123]],[\"comment/1088\",[]],[\"name/1089\",[238,60.648]],[\"comment/1089\",[]],[\"name/1090\",[567,64.013]],[\"comment/1090\",[]],[\"name/1091\",[568,64.013]],[\"comment/1091\",[]],[\"name/1092\",[569,64.013]],[\"comment/1092\",[]],[\"name/1093\",[5,21.042]],[\"comment/1093\",[]],[\"name/1094\",[560,64.013]],[\"comment/1094\",[]],[\"name/1095\",[570,69.123]],[\"comment/1095\",[]],[\"name/1096\",[5,21.042]],[\"comment/1096\",[]],[\"name/1097\",[559,64.013]],[\"comment/1097\",[]],[\"name/1098\",[571,69.123]],[\"comment/1098\",[]],[\"name/1099\",[209,56.127]],[\"comment/1099\",[]],[\"name/1100\",[572,69.123]],[\"comment/1100\",[]],[\"name/1101\",[573,69.123]],[\"comment/1101\",[]],[\"name/1102\",[574,69.123]],[\"comment/1102\",[]],[\"name/1103\",[273,53.024]],[\"comment/1103\",[]],[\"name/1104\",[575,69.123]],[\"comment/1104\",[]],[\"name/1105\",[576,69.123]],[\"comment/1105\",[]],[\"name/1106\",[577,69.123]],[\"comment/1106\",[]],[\"name/1107\",[57,37.196]],[\"comment/1107\",[]],[\"name/1108\",[578,64.013]],[\"comment/1108\",[]],[\"name/1109\",[273,53.024]],[\"comment/1109\",[]],[\"name/1110\",[579,64.013]],[\"comment/1110\",[]],[\"name/1111\",[580,64.013]],[\"comment/1111\",[]],[\"name/1112\",[5,21.042]],[\"comment/1112\",[]],[\"name/1113\",[209,56.127]],[\"comment/1113\",[]],[\"name/1114\",[581,69.123]],[\"comment/1114\",[]],[\"name/1115\",[578,64.013]],[\"comment/1115\",[]],[\"name/1116\",[273,53.024]],[\"comment/1116\",[]],[\"name/1117\",[582,69.123]],[\"comment/1117\",[]],[\"name/1118\",[57,37.196]],[\"comment/1118\",[]],[\"name/1119\",[579,64.013]],[\"comment/1119\",[]],[\"name/1120\",[273,53.024]],[\"comment/1120\",[]],[\"name/1121\",[580,64.013]],[\"comment/1121\",[]],[\"name/1122\",[5,21.042]],[\"comment/1122\",[]],[\"name/1123\",[209,56.127]],[\"comment/1123\",[]],[\"name/1124\",[273,53.024]],[\"comment/1124\",[]],[\"name/1125\",[437,45.434,583,49.061]],[\"comment/1125\",[]],[\"name/1126\",[584,69.123]],[\"comment/1126\",[]],[\"name/1127\",[5,21.042]],[\"comment/1127\",[]],[\"name/1128\",[423,54.456]],[\"comment/1128\",[]],[\"name/1129\",[585,69.123]],[\"comment/1129\",[]],[\"name/1130\",[424,56.127]],[\"comment/1130\",[]],[\"name/1131\",[435,64.013]],[\"comment/1131\",[]],[\"name/1132\",[586,69.123]],[\"comment/1132\",[]],[\"name/1133\",[587,69.123]],[\"comment/1133\",[]],[\"name/1134\",[588,69.123]],[\"comment/1134\",[]],[\"name/1135\",[589,69.123]],[\"comment/1135\",[]],[\"name/1136\",[590,69.123]],[\"comment/1136\",[]],[\"name/1137\",[449,56.127]],[\"comment/1137\",[]],[\"name/1138\",[591,69.123]],[\"comment/1138\",[]],[\"name/1139\",[592,69.123]],[\"comment/1139\",[]],[\"name/1140\",[442,53.024]],[\"comment/1140\",[]],[\"name/1141\",[593,69.123]],[\"comment/1141\",[]],[\"name/1142\",[418,60.648]],[\"comment/1142\",[]],[\"name/1143\",[57,37.196]],[\"comment/1143\",[]],[\"name/1144\",[594,69.123]],[\"comment/1144\",[]],[\"name/1145\",[419,50.66]],[\"comment/1145\",[]],[\"name/1146\",[423,54.456]],[\"comment/1146\",[]],[\"name/1147\",[5,21.042]],[\"comment/1147\",[]],[\"name/1148\",[442,53.024]],[\"comment/1148\",[]],[\"name/1149\",[6,37.76]],[\"comment/1149\",[]],[\"name/1150\",[444,60.648]],[\"comment/1150\",[]],[\"name/1151\",[443,56.127]],[\"comment/1151\",[]],[\"name/1152\",[595,69.123]],[\"comment/1152\",[]],[\"name/1153\",[5,21.042]],[\"comment/1153\",[]],[\"name/1154\",[57,37.196]],[\"comment/1154\",[]],[\"name/1155\",[419,50.66]],[\"comment/1155\",[]],[\"name/1156\",[442,53.024]],[\"comment/1156\",[]],[\"name/1157\",[443,56.127]],[\"comment/1157\",[]],[\"name/1158\",[446,60.648]],[\"comment/1158\",[]],[\"name/1159\",[596,69.123]],[\"comment/1159\",[]],[\"name/1160\",[5,21.042]],[\"comment/1160\",[]],[\"name/1161\",[297,56.127]],[\"comment/1161\",[]],[\"name/1162\",[597,69.123]],[\"comment/1162\",[]],[\"name/1163\",[6,37.76]],[\"comment/1163\",[]],[\"name/1164\",[501,56.127]],[\"comment/1164\",[]],[\"name/1165\",[598,69.123]],[\"comment/1165\",[]],[\"name/1166\",[599,69.123]],[\"comment/1166\",[]],[\"name/1167\",[5,21.042]],[\"comment/1167\",[]],[\"name/1168\",[600,60.648]],[\"comment/1168\",[]],[\"name/1169\",[159,64.013]],[\"comment/1169\",[]],[\"name/1170\",[160,50.66]],[\"comment/1170\",[]],[\"name/1171\",[601,69.123]],[\"comment/1171\",[]],[\"name/1172\",[5,21.042]],[\"comment/1172\",[]],[\"name/1173\",[128,45.138]],[\"comment/1173\",[]],[\"name/1174\",[164,56.127]],[\"comment/1174\",[]],[\"name/1175\",[602,69.123]],[\"comment/1175\",[]],[\"name/1176\",[5,21.042]],[\"comment/1176\",[]],[\"name/1177\",[600,60.648]],[\"comment/1177\",[]],[\"name/1178\",[128,45.138]],[\"comment/1178\",[]],[\"name/1179\",[29,54.456]],[\"comment/1179\",[]],[\"name/1180\",[165,53.024]],[\"comment/1180\",[]],[\"name/1181\",[164,56.127]],[\"comment/1181\",[]],[\"name/1182\",[603,69.123]],[\"comment/1182\",[]],[\"name/1183\",[5,21.042]],[\"comment/1183\",[]],[\"name/1184\",[600,60.648]],[\"comment/1184\",[]],[\"name/1185\",[128,45.138]],[\"comment/1185\",[]],[\"name/1186\",[165,53.024]],[\"comment/1186\",[]],[\"name/1187\",[604,69.123]],[\"comment/1187\",[]],[\"name/1188\",[5,21.042]],[\"comment/1188\",[]],[\"name/1189\",[90,51.772]],[\"comment/1189\",[]],[\"name/1190\",[605,64.013]],[\"comment/1190\",[]],[\"name/1191\",[606,64.013]],[\"comment/1191\",[]],[\"name/1192\",[607,69.123]],[\"comment/1192\",[]],[\"name/1193\",[5,21.042]],[\"comment/1193\",[]],[\"name/1194\",[90,51.772]],[\"comment/1194\",[]],[\"name/1195\",[605,64.013]],[\"comment/1195\",[]],[\"name/1196\",[606,64.013]],[\"comment/1196\",[]],[\"name/1197\",[608,69.123]],[\"comment/1197\",[]],[\"name/1198\",[5,21.042]],[\"comment/1198\",[]],[\"name/1199\",[57,37.196]],[\"comment/1199\",[]],[\"name/1200\",[609,69.123]],[\"comment/1200\",[]],[\"name/1201\",[610,64.013]],[\"comment/1201\",[]],[\"name/1202\",[132,58.134]],[\"comment/1202\",[]],[\"name/1203\",[134,53.024]],[\"comment/1203\",[]],[\"name/1204\",[131,53.024]],[\"comment/1204\",[]],[\"name/1205\",[611,69.123]],[\"comment/1205\",[]],[\"name/1206\",[141,60.648]],[\"comment/1206\",[]],[\"name/1207\",[137,58.134]],[\"comment/1207\",[]],[\"name/1208\",[142,60.648]],[\"comment/1208\",[]],[\"name/1209\",[612,69.123]],[\"comment/1209\",[]],[\"name/1210\",[5,21.042]],[\"comment/1210\",[]],[\"name/1211\",[128,45.138]],[\"comment/1211\",[]],[\"name/1212\",[610,64.013]],[\"comment/1212\",[]],[\"name/1213\",[132,58.134]],[\"comment/1213\",[]],[\"name/1214\",[134,53.024]],[\"comment/1214\",[]],[\"name/1215\",[131,53.024]],[\"comment/1215\",[]],[\"name/1216\",[141,60.648]],[\"comment/1216\",[]],[\"name/1217\",[137,58.134]],[\"comment/1217\",[]],[\"name/1218\",[142,60.648]],[\"comment/1218\",[]],[\"name/1219\",[613,58.134]],[\"comment/1219\",[]],[\"name/1220\",[614,69.123]],[\"comment/1220\",[]],[\"name/1221\",[5,21.042]],[\"comment/1221\",[]],[\"name/1222\",[613,58.134]],[\"comment/1222\",[]],[\"name/1223\",[615,69.123]],[\"comment/1223\",[]],[\"name/1224\",[5,21.042]],[\"comment/1224\",[]],[\"name/1225\",[613,58.134]],[\"comment/1225\",[]],[\"name/1226\",[616,69.123]],[\"comment/1226\",[]],[\"name/1227\",[5,21.042]],[\"comment/1227\",[]],[\"name/1228\",[613,58.134]],[\"comment/1228\",[]],[\"name/1229\",[617,69.123]],[\"comment/1229\",[]],[\"name/1230\",[57,37.196]],[\"comment/1230\",[]],[\"name/1231\",[90,51.772]],[\"comment/1231\",[]],[\"name/1232\",[501,56.127]],[\"comment/1232\",[]],[\"name/1233\",[618,69.123]],[\"comment/1233\",[]],[\"name/1234\",[619,69.123]],[\"comment/1234\",[]],[\"name/1235\",[240,58.134]],[\"comment/1235\",[]],[\"name/1236\",[242,58.134]],[\"comment/1236\",[]],[\"name/1237\",[244,58.134]],[\"comment/1237\",[]],[\"name/1238\",[246,58.134]],[\"comment/1238\",[]],[\"name/1239\",[620,69.123]],[\"comment/1239\",[]],[\"name/1240\",[57,37.196]],[\"comment/1240\",[]],[\"name/1241\",[90,51.772]],[\"comment/1241\",[]],[\"name/1242\",[501,56.127]],[\"comment/1242\",[]],[\"name/1243\",[621,69.123]],[\"comment/1243\",[]],[\"name/1244\",[567,64.013]],[\"comment/1244\",[]],[\"name/1245\",[240,58.134]],[\"comment/1245\",[]],[\"name/1246\",[242,58.134]],[\"comment/1246\",[]],[\"name/1247\",[244,58.134]],[\"comment/1247\",[]],[\"name/1248\",[246,58.134]],[\"comment/1248\",[]],[\"name/1249\",[501,56.127]],[\"comment/1249\",[]],[\"name/1250\",[57,37.196]],[\"comment/1250\",[]],[\"name/1251\",[76,53.024]],[\"comment/1251\",[]],[\"name/1252\",[77,51.772]],[\"comment/1252\",[]],[\"name/1253\",[78,56.127]],[\"comment/1253\",[]],[\"name/1254\",[79,56.127]],[\"comment/1254\",[]],[\"name/1255\",[622,69.123]],[\"comment/1255\",[]],[\"name/1256\",[623,69.123]],[\"comment/1256\",[]],[\"name/1257\",[624,69.123]],[\"comment/1257\",[]],[\"name/1258\",[625,69.123]],[\"comment/1258\",[]],[\"name/1259\",[626,69.123]],[\"comment/1259\",[]],[\"name/1260\",[264,64.013]],[\"comment/1260\",[]],[\"name/1261\",[627,69.123]],[\"comment/1261\",[]],[\"name/1262\",[628,69.123]],[\"comment/1262\",[]],[\"name/1263\",[629,69.123]],[\"comment/1263\",[]],[\"name/1264\",[630,69.123]],[\"comment/1264\",[]],[\"name/1265\",[631,69.123]],[\"comment/1265\",[]],[\"name/1266\",[267,64.013]],[\"comment/1266\",[]],[\"name/1267\",[191,54.456]],[\"comment/1267\",[]],[\"name/1268\",[632,69.123]],[\"comment/1268\",[]],[\"name/1269\",[444,60.648]],[\"comment/1269\",[]],[\"name/1270\",[260,56.127]],[\"comment/1270\",[]],[\"name/1271\",[633,69.123]],[\"comment/1271\",[]],[\"name/1272\",[5,21.042]],[\"comment/1272\",[]],[\"name/1273\",[6,37.76]],[\"comment/1273\",[]],[\"name/1274\",[634,49.659]],[\"comment/1274\",[]],[\"name/1275\",[57,37.196]],[\"comment/1275\",[]],[\"name/1276\",[635,60.648]],[\"comment/1276\",[]],[\"name/1277\",[636,64.013]],[\"comment/1277\",[]],[\"name/1278\",[637,69.123]],[\"comment/1278\",[]],[\"name/1279\",[638,69.123]],[\"comment/1279\",[]],[\"name/1280\",[639,54.456]],[\"comment/1280\",[]],[\"name/1281\",[139,58.134]],[\"comment/1281\",[]],[\"name/1282\",[640,64.013]],[\"comment/1282\",[]],[\"name/1283\",[641,69.123]],[\"comment/1283\",[]],[\"name/1284\",[642,69.123]],[\"comment/1284\",[]],[\"name/1285\",[5,21.042]],[\"comment/1285\",[]],[\"name/1286\",[6,37.76]],[\"comment/1286\",[]],[\"name/1287\",[634,49.659]],[\"comment/1287\",[]],[\"name/1288\",[57,37.196]],[\"comment/1288\",[]],[\"name/1289\",[643,69.123]],[\"comment/1289\",[]],[\"name/1290\",[639,54.456]],[\"comment/1290\",[]],[\"name/1291\",[644,69.123]],[\"comment/1291\",[]],[\"name/1292\",[5,21.042]],[\"comment/1292\",[]],[\"name/1293\",[6,37.76]],[\"comment/1293\",[]],[\"name/1294\",[634,49.659]],[\"comment/1294\",[]],[\"name/1295\",[57,37.196]],[\"comment/1295\",[]],[\"name/1296\",[645,69.123]],[\"comment/1296\",[]],[\"name/1297\",[639,54.456]],[\"comment/1297\",[]],[\"name/1298\",[646,69.123]],[\"comment/1298\",[]],[\"name/1299\",[5,21.042]],[\"comment/1299\",[]],[\"name/1300\",[6,37.76]],[\"comment/1300\",[]],[\"name/1301\",[634,49.659]],[\"comment/1301\",[]],[\"name/1302\",[647,69.123]],[\"comment/1302\",[]],[\"name/1303\",[57,37.196]],[\"comment/1303\",[]],[\"name/1304\",[635,60.648]],[\"comment/1304\",[]],[\"name/1305\",[639,54.456]],[\"comment/1305\",[]],[\"name/1306\",[648,69.123]],[\"comment/1306\",[]],[\"name/1307\",[5,21.042]],[\"comment/1307\",[]],[\"name/1308\",[57,37.196]],[\"comment/1308\",[]],[\"name/1309\",[0,51.772]],[\"comment/1309\",[]],[\"name/1310\",[7,42.035]],[\"comment/1310\",[]],[\"name/1311\",[649,58.134]],[\"comment/1311\",[]],[\"name/1312\",[650,56.127]],[\"comment/1312\",[]],[\"name/1313\",[651,69.123]],[\"comment/1313\",[]],[\"name/1314\",[5,21.042]],[\"comment/1314\",[]],[\"name/1315\",[57,37.196]],[\"comment/1315\",[]],[\"name/1316\",[0,51.772]],[\"comment/1316\",[]],[\"name/1317\",[7,42.035]],[\"comment/1317\",[]],[\"name/1318\",[652,58.134]],[\"comment/1318\",[]],[\"name/1319\",[649,58.134]],[\"comment/1319\",[]],[\"name/1320\",[653,58.134]],[\"comment/1320\",[]],[\"name/1321\",[650,56.127]],[\"comment/1321\",[]],[\"name/1322\",[354,51.772]],[\"comment/1322\",[]],[\"name/1323\",[654,69.123]],[\"comment/1323\",[]],[\"name/1324\",[5,21.042]],[\"comment/1324\",[]],[\"name/1325\",[634,49.659]],[\"comment/1325\",[]],[\"name/1326\",[655,58.134]],[\"comment/1326\",[]],[\"name/1327\",[354,51.772]],[\"comment/1327\",[]],[\"name/1328\",[656,69.123]],[\"comment/1328\",[]],[\"name/1329\",[5,21.042]],[\"comment/1329\",[]],[\"name/1330\",[657,69.123]],[\"comment/1330\",[]],[\"name/1331\",[198,60.648]],[\"comment/1331\",[]],[\"name/1332\",[658,69.123]],[\"comment/1332\",[]],[\"name/1333\",[5,21.042]],[\"comment/1333\",[]],[\"name/1334\",[6,37.76]],[\"comment/1334\",[]],[\"name/1335\",[634,49.659]],[\"comment/1335\",[]],[\"name/1336\",[57,37.196]],[\"comment/1336\",[]],[\"name/1337\",[649,58.134]],[\"comment/1337\",[]],[\"name/1338\",[640,64.013]],[\"comment/1338\",[]],[\"name/1339\",[659,69.123]],[\"comment/1339\",[]],[\"name/1340\",[5,21.042]],[\"comment/1340\",[]],[\"name/1341\",[634,49.659]],[\"comment/1341\",[]],[\"name/1342\",[655,58.134]],[\"comment/1342\",[]],[\"name/1343\",[354,51.772]],[\"comment/1343\",[]],[\"name/1344\",[660,69.123]],[\"comment/1344\",[]],[\"name/1345\",[0,51.772]],[\"comment/1345\",[]],[\"name/1346\",[7,42.035]],[\"comment/1346\",[]],[\"name/1347\",[652,58.134]],[\"comment/1347\",[]],[\"name/1348\",[653,58.134]],[\"comment/1348\",[]],[\"name/1349\",[661,69.123]],[\"comment/1349\",[]],[\"name/1350\",[662,64.013]],[\"comment/1350\",[]],[\"name/1351\",[663,64.013]],[\"comment/1351\",[]],[\"name/1352\",[664,64.013]],[\"comment/1352\",[]],[\"name/1353\",[665,64.013]],[\"comment/1353\",[]],[\"name/1354\",[666,69.123]],[\"comment/1354\",[]],[\"name/1355\",[667,69.123]],[\"comment/1355\",[]],[\"name/1356\",[668,69.123]],[\"comment/1356\",[]],[\"name/1357\",[639,54.456]],[\"comment/1357\",[]],[\"name/1358\",[354,51.772]],[\"comment/1358\",[]],[\"name/1359\",[669,69.123]],[\"comment/1359\",[]],[\"name/1360\",[670,69.123]],[\"comment/1360\",[]],[\"name/1361\",[5,21.042]],[\"comment/1361\",[]],[\"name/1362\",[57,37.196]],[\"comment/1362\",[]],[\"name/1363\",[370,51.772]],[\"comment/1363\",[]],[\"name/1364\",[636,64.013]],[\"comment/1364\",[]],[\"name/1365\",[635,60.648]],[\"comment/1365\",[]],[\"name/1366\",[671,69.123]],[\"comment/1366\",[]],[\"name/1367\",[672,69.123]],[\"comment/1367\",[]],[\"name/1368\",[673,69.123]],[\"comment/1368\",[]],[\"name/1369\",[674,69.123]],[\"comment/1369\",[]],[\"name/1370\",[675,69.123]],[\"comment/1370\",[]],[\"name/1371\",[676,69.123]],[\"comment/1371\",[]],[\"name/1372\",[677,69.123]],[\"comment/1372\",[]],[\"name/1373\",[5,21.042]],[\"comment/1373\",[]],[\"name/1374\",[57,37.196]],[\"comment/1374\",[]],[\"name/1375\",[0,51.772]],[\"comment/1375\",[]],[\"name/1376\",[7,42.035]],[\"comment/1376\",[]],[\"name/1377\",[649,58.134]],[\"comment/1377\",[]],[\"name/1378\",[650,56.127]],[\"comment/1378\",[]],[\"name/1379\",[678,69.123]],[\"comment/1379\",[]],[\"name/1380\",[191,54.456]],[\"comment/1380\",[]],[\"name/1381\",[569,64.013]],[\"comment/1381\",[]],[\"name/1382\",[5,21.042]],[\"comment/1382\",[]],[\"name/1383\",[370,51.772]],[\"comment/1383\",[]],[\"name/1384\",[679,69.123]],[\"comment/1384\",[]],[\"name/1385\",[5,21.042]],[\"comment/1385\",[]],[\"name/1386\",[57,37.196]],[\"comment/1386\",[]],[\"name/1387\",[680,69.123]],[\"comment/1387\",[]],[\"name/1388\",[481,58.134]],[\"comment/1388\",[]],[\"name/1389\",[481,58.134]],[\"comment/1389\",[]],[\"name/1390\",[481,58.134]],[\"comment/1390\",[]],[\"name/1391\",[681,69.123]],[\"comment/1391\",[]],[\"name/1392\",[682,69.123]],[\"comment/1392\",[]],[\"name/1393\",[77,51.772]],[\"comment/1393\",[]],[\"name/1394\",[683,69.123]],[\"comment/1394\",[]],[\"name/1395\",[568,64.013]],[\"comment/1395\",[]],[\"name/1396\",[684,69.123]],[\"comment/1396\",[]],[\"name/1397\",[685,69.123]],[\"comment/1397\",[]],[\"name/1398\",[524,60.648]],[\"comment/1398\",[]],[\"name/1399\",[686,69.123]],[\"comment/1399\",[]],[\"name/1400\",[687,69.123]],[\"comment/1400\",[]],[\"name/1401\",[5,21.042]],[\"comment/1401\",[]],[\"name/1402\",[160,50.66]],[\"comment/1402\",[]],[\"name/1403\",[688,69.123]],[\"comment/1403\",[]],[\"name/1404\",[5,21.042]],[\"comment/1404\",[]],[\"name/1405\",[160,50.66]],[\"comment/1405\",[]],[\"name/1406\",[689,69.123]],[\"comment/1406\",[]],[\"name/1407\",[5,21.042]],[\"comment/1407\",[]],[\"name/1408\",[370,51.772]],[\"comment/1408\",[]],[\"name/1409\",[116,64.013]],[\"comment/1409\",[]],[\"name/1410\",[524,60.648]],[\"comment/1410\",[]],[\"name/1411\",[370,51.772]],[\"comment/1411\",[]],[\"name/1412\",[76,53.024]],[\"comment/1412\",[]],[\"name/1413\",[77,51.772]],[\"comment/1413\",[]],[\"name/1414\",[690,69.123]],[\"comment/1414\",[]],[\"name/1415\",[691,69.123]],[\"comment/1415\",[]],[\"name/1416\",[692,69.123]],[\"comment/1416\",[]],[\"name/1417\",[505,60.648]],[\"comment/1417\",[]],[\"name/1418\",[693,69.123]],[\"comment/1418\",[]],[\"name/1419\",[198,60.648]],[\"comment/1419\",[]],[\"name/1420\",[694,69.123]],[\"comment/1420\",[]],[\"name/1421\",[5,21.042]],[\"comment/1421\",[]],[\"name/1422\",[6,37.76]],[\"comment/1422\",[]],[\"name/1423\",[43,64.013]],[\"comment/1423\",[]],[\"name/1424\",[695,69.123]],[\"comment/1424\",[]],[\"name/1425\",[5,21.042]],[\"comment/1425\",[]],[\"name/1426\",[6,37.76]],[\"comment/1426\",[]],[\"name/1427\",[696,69.123]],[\"comment/1427\",[]],[\"name/1428\",[697,69.123]],[\"comment/1428\",[]],[\"name/1429\",[698,69.123]],[\"comment/1429\",[]],[\"name/1430\",[699,69.123]],[\"comment/1430\",[]],[\"name/1431\",[700,69.123]],[\"comment/1431\",[]],[\"name/1432\",[655,58.134]],[\"comment/1432\",[]],[\"name/1433\",[701,69.123]],[\"comment/1433\",[]],[\"name/1434\",[702,69.123]],[\"comment/1434\",[]],[\"name/1435\",[703,69.123]],[\"comment/1435\",[]],[\"name/1436\",[704,69.123]],[\"comment/1436\",[]],[\"name/1437\",[5,21.042]],[\"comment/1437\",[]],[\"name/1438\",[512,60.648]],[\"comment/1438\",[]],[\"name/1439\",[634,49.659]],[\"comment/1439\",[]],[\"name/1440\",[652,58.134]],[\"comment/1440\",[]],[\"name/1441\",[650,56.127]],[\"comment/1441\",[]],[\"name/1442\",[653,58.134]],[\"comment/1442\",[]],[\"name/1443\",[705,64.013]],[\"comment/1443\",[]],[\"name/1444\",[639,54.456]],[\"comment/1444\",[]],[\"name/1445\",[354,51.772]],[\"comment/1445\",[]],[\"name/1446\",[706,69.123]],[\"comment/1446\",[]],[\"name/1447\",[5,21.042]],[\"comment/1447\",[]],[\"name/1448\",[662,64.013]],[\"comment/1448\",[]],[\"name/1449\",[664,64.013]],[\"comment/1449\",[]],[\"name/1450\",[663,64.013]],[\"comment/1450\",[]],[\"name/1451\",[665,64.013]],[\"comment/1451\",[]],[\"name/1452\",[707,69.123]],[\"comment/1452\",[]],[\"name/1453\",[708,69.123]],[\"comment/1453\",[]],[\"name/1454\",[709,69.123]],[\"comment/1454\",[]],[\"name/1455\",[634,49.659]],[\"comment/1455\",[]],[\"name/1456\",[655,58.134]],[\"comment/1456\",[]],[\"name/1457\",[354,51.772]],[\"comment/1457\",[]],[\"name/1458\",[710,69.123]],[\"comment/1458\",[]],[\"name/1459\",[711,69.123]],[\"comment/1459\",[]],[\"name/1460\",[5,21.042]],[\"comment/1460\",[]],[\"name/1461\",[90,51.772]],[\"comment/1461\",[]],[\"name/1462\",[191,54.456]],[\"comment/1462\",[]],[\"name/1463\",[712,69.123]],[\"comment/1463\",[]],[\"name/1464\",[5,21.042]],[\"comment/1464\",[]],[\"name/1465\",[260,56.127]],[\"comment/1465\",[]],[\"name/1466\",[713,69.123]],[\"comment/1466\",[]],[\"name/1467\",[714,69.123]],[\"comment/1467\",[]],[\"name/1468\",[5,21.042]],[\"comment/1468\",[]],[\"name/1469\",[260,56.127]],[\"comment/1469\",[]],[\"name/1470\",[715,69.123]],[\"comment/1470\",[]],[\"name/1471\",[716,69.123]],[\"comment/1471\",[]],[\"name/1472\",[5,21.042]],[\"comment/1472\",[]],[\"name/1473\",[115,64.013]],[\"comment/1473\",[]],[\"name/1474\",[370,51.772]],[\"comment/1474\",[]],[\"name/1475\",[57,37.196]],[\"comment/1475\",[]],[\"name/1476\",[717,69.123]],[\"comment/1476\",[]],[\"name/1477\",[718,69.123]],[\"comment/1477\",[]],[\"name/1478\",[719,69.123]],[\"comment/1478\",[]],[\"name/1479\",[720,69.123]],[\"comment/1479\",[]],[\"name/1480\",[721,69.123]],[\"comment/1480\",[]],[\"name/1481\",[5,21.042]],[\"comment/1481\",[]],[\"name/1482\",[512,60.648]],[\"comment/1482\",[]],[\"name/1483\",[634,49.659]],[\"comment/1483\",[]],[\"name/1484\",[652,58.134]],[\"comment/1484\",[]],[\"name/1485\",[650,56.127]],[\"comment/1485\",[]],[\"name/1486\",[653,58.134]],[\"comment/1486\",[]],[\"name/1487\",[705,64.013]],[\"comment/1487\",[]],[\"name/1488\",[354,51.772]],[\"comment/1488\",[]],[\"name/1489\",[722,69.123]],[\"comment/1489\",[]],[\"name/1490\",[723,69.123]],[\"comment/1490\",[]],[\"name/1491\",[505,60.648]],[\"comment/1491\",[]],[\"name/1492\",[57,37.196]],[\"comment/1492\",[]],[\"name/1493\",[77,51.772]],[\"comment/1493\",[]],[\"name/1494\",[76,53.024]],[\"comment/1494\",[]],[\"name/1495\",[78,56.127]],[\"comment/1495\",[]],[\"name/1496\",[233,60.648]],[\"comment/1496\",[]],[\"name/1497\",[8,42.966]],[\"comment/1497\",[]],[\"name/1498\",[724,69.123]],[\"comment/1498\",[]],[\"name/1499\",[725,69.123]],[\"comment/1499\",[]],[\"name/1500\",[79,56.127]],[\"comment/1500\",[]],[\"name/1501\",[80,60.648]],[\"comment/1501\",[]],[\"name/1502\",[342,56.127]],[\"comment/1502\",[]]],\"invertedIndex\":[[\"__type\",{\"_index\":5,\"name\":{\"5\":{},\"10\":{},\"15\":{},\"19\":{},\"22\":{},\"26\":{},\"31\":{},\"35\":{},\"40\":{},\"44\":{},\"52\":{},\"57\":{},\"61\":{},\"65\":{},\"69\":{},\"77\":{},\"81\":{},\"84\":{},\"88\":{},\"92\":{},\"96\":{},\"99\":{},\"103\":{},\"107\":{},\"111\":{},\"116\":{},\"120\":{},\"124\":{},\"128\":{},\"131\":{},\"136\":{},\"140\":{},\"144\":{},\"149\":{},\"153\":{},\"156\":{},\"162\":{},\"221\":{},\"229\":{},\"235\":{},\"242\":{},\"248\":{},\"267\":{},\"275\":{},\"280\":{},\"288\":{},\"292\":{},\"295\":{},\"301\":{},\"318\":{},\"322\":{},\"328\":{},\"331\":{},\"340\":{},\"349\":{},\"360\":{},\"367\":{},\"376\":{},\"379\":{},\"385\":{},\"392\":{},\"398\":{},\"403\":{},\"408\":{},\"413\":{},\"424\":{},\"431\":{},\"440\":{},\"443\":{},\"447\":{},\"450\":{},\"453\":{},\"456\":{},\"559\":{},\"564\":{},\"568\":{},\"571\":{},\"575\":{},\"580\":{},\"582\":{},\"584\":{},\"586\":{},\"600\":{},\"665\":{},\"670\":{},\"677\":{},\"695\":{},\"705\":{},\"707\":{},\"712\":{},\"716\":{},\"725\":{},\"730\":{},\"737\":{},\"742\":{},\"747\":{},\"751\":{},\"757\":{},\"760\":{},\"768\":{},\"776\":{},\"784\":{},\"793\":{},\"799\":{},\"805\":{},\"814\":{},\"819\":{},\"821\":{},\"826\":{},\"833\":{},\"842\":{},\"851\":{},\"855\":{},\"863\":{},\"873\":{},\"877\":{},\"886\":{},\"895\":{},\"904\":{},\"911\":{},\"918\":{},\"924\":{},\"929\":{},\"937\":{},\"943\":{},\"950\":{},\"952\":{},\"958\":{},\"961\":{},\"966\":{},\"972\":{},\"977\":{},\"981\":{},\"983\":{},\"985\":{},\"987\":{},\"1079\":{},\"1084\":{},\"1093\":{},\"1096\":{},\"1112\":{},\"1122\":{},\"1127\":{},\"1147\":{},\"1153\":{},\"1160\":{},\"1167\":{},\"1172\":{},\"1176\":{},\"1183\":{},\"1188\":{},\"1193\":{},\"1198\":{},\"1210\":{},\"1221\":{},\"1224\":{},\"1227\":{},\"1272\":{},\"1285\":{},\"1292\":{},\"1299\":{},\"1307\":{},\"1314\":{},\"1324\":{},\"1329\":{},\"1333\":{},\"1340\":{},\"1361\":{},\"1373\":{},\"1382\":{},\"1385\":{},\"1401\":{},\"1404\":{},\"1407\":{},\"1421\":{},\"1425\":{},\"1437\":{},\"1447\":{},\"1460\":{},\"1464\":{},\"1468\":{},\"1472\":{},\"1481\":{}},\"comment\":{}}],[\"_from\",{\"_index\":563,\"name\":{\"1085\":{}},\"comment\":{}}],[\"_id\",{\"_index\":560,\"name\":{\"1081\":{},\"1094\":{}},\"comment\":{}}],[\"_key\",{\"_index\":559,\"name\":{\"1080\":{},\"1097\":{}},\"comment\":{}}],[\"_rev\",{\"_index\":561,\"name\":{\"1082\":{}},\"comment\":{}}],[\"_to\",{\"_index\":564,\"name\":{\"1086\":{}},\"comment\":{}}],[\"abort\",{\"_index\":691,\"name\":{\"1415\":{}},\"comment\":{}}],[\"accent\",{\"_index\":14,\"name\":{\"29\":{},\"49\":{}},\"comment\":{}}],[\"accesslevel\",{\"_index\":470,\"name\":{\"959\":{}},\"comment\":{}}],[\"acquirehostlist\",{\"_index\":482,\"name\":{\"993\":{}},\"comment\":{}}],[\"active\",{\"_index\":411,\"name\":{\"796\":{},\"963\":{},\"969\":{},\"974\":{}},\"comment\":{}}],[\"addedgedefinition\",{\"_index\":629,\"name\":{\"1263\":{}},\"comment\":{}}],[\"addedgedefinitionoptions\",{\"_index\":615,\"name\":{\"1223\":{}},\"comment\":{}}],[\"addvertexcollection\",{\"_index\":625,\"name\":{\"1258\":{}},\"comment\":{}}],[\"addvertexcollectionoptions\",{\"_index\":614,\"name\":{\"1220\":{}},\"comment\":{}}],[\"after\",{\"_index\":289,\"name\":{\"583\":{}},\"comment\":{}}],[\"agent\",{\"_index\":306,\"name\":{\"608\":{}},\"comment\":{}}],[\"agentoptions\",{\"_index\":299,\"name\":{\"598\":{},\"609\":{}},\"comment\":{}}],[\"all\",{\"_index\":250,\"name\":{\"489\":{},\"517\":{},\"641\":{},\"654\":{}},\"comment\":{}}],[\"allowdirtyread\",{\"_index\":160,\"name\":{\"324\":{},\"329\":{},\"377\":{},\"591\":{},\"672\":{},\"678\":{},\"1170\":{},\"1402\":{},\"1405\":{}},\"comment\":{}}],[\"allowimplicit\",{\"_index\":349,\"name\":{\"671\":{}},\"comment\":{}}],[\"allowretry\",{\"_index\":353,\"name\":{\"679\":{}},\"comment\":{}}],[\"allowuserkeys\",{\"_index\":118,\"name\":{\"237\":{},\"297\":{}},\"comment\":{}}],[\"allplans\",{\"_index\":368,\"name\":{\"710\":{}},\"comment\":{}}],[\"analyzer\",{\"_index\":0,\"name\":{\"0\":{},\"104\":{},\"183\":{},\"1026\":{},\"1309\":{},\"1316\":{},\"1345\":{},\"1375\":{}},\"comment\":{}}],[\"analyzerdescription\",{\"_index\":58,\"name\":{\"165\":{}},\"comment\":{}}],[\"analyzerfeature\",{\"_index\":2,\"name\":{\"2\":{}},\"comment\":{}}],[\"analyzers\",{\"_index\":512,\"name\":{\"1029\":{},\"1438\":{},\"1482\":{}},\"comment\":{}}],[\"any\",{\"_index\":251,\"name\":{\"490\":{},\"518\":{}},\"comment\":{}}],[\"aql\",{\"_index\":80,\"name\":{\"189\":{},\"192\":{},\"1501\":{}},\"comment\":{}}],[\"aqlanalyzerdescription\",{\"_index\":66,\"name\":{\"173\":{}},\"comment\":{}}],[\"aqlliteral\",{\"_index\":88,\"name\":{\"198\":{}},\"comment\":{}}],[\"aqlquery\",{\"_index\":85,\"name\":{\"195\":{}},\"comment\":{}}],[\"aqluserfunction\",{\"_index\":420,\"name\":{\"820\":{}},\"comment\":{}}],[\"aqlvalue\",{\"_index\":89,\"name\":{\"199\":{}},\"comment\":{}}],[\"arangoapiresponse\",{\"_index\":274,\"name\":{\"562\":{}},\"comment\":{}}],[\"arangocollection\",{\"_index\":93,\"name\":{\"203\":{}},\"comment\":{}}],[\"arangoerror\",{\"_index\":577,\"name\":{\"1106\":{}},\"comment\":{}}],[\"arangojs\",{\"_index\":632,\"name\":{\"1268\":{}},\"comment\":{}}],[\"arangoresponsemetadata\",{\"_index\":272,\"name\":{\"558\":{}},\"comment\":{}}],[\"arangosearchviewdescription\",{\"_index\":718,\"name\":{\"1477\":{}},\"comment\":{}}],[\"arangosearchviewlink\",{\"_index\":721,\"name\":{\"1480\":{}},\"comment\":{}}],[\"arangosearchviewlinkoptions\",{\"_index\":704,\"name\":{\"1436\":{}},\"comment\":{}}],[\"arangosearchviewpatchpropertiesoptions\",{\"_index\":708,\"name\":{\"1453\":{}},\"comment\":{}}],[\"arangosearchviewproperties\",{\"_index\":722,\"name\":{\"1489\":{}},\"comment\":{}}],[\"arangosearchviewpropertiesoptions\",{\"_index\":706,\"name\":{\"1446\":{}},\"comment\":{}}],[\"arangosearchviewstoredvalueoptions\",{\"_index\":709,\"name\":{\"1454\":{}},\"comment\":{}}],[\"arangouser\",{\"_index\":471,\"name\":{\"960\":{}},\"comment\":{}}],[\"arangoversion\",{\"_index\":304,\"name\":{\"604\":{}},\"comment\":{}}],[\"arraycursor\",{\"_index\":340,\"name\":{\"649\":{}},\"comment\":{}}],[\"ast\",{\"_index\":389,\"name\":{\"755\":{}},\"comment\":{}}],[\"astnode\",{\"_index\":385,\"name\":{\"746\":{}},\"comment\":{}}],[\"asynciterator\",{\"_index\":339,\"name\":{\"648\":{},\"661\":{}},\"comment\":{}}],[\"auth\",{\"_index\":303,\"name\":{\"603\":{}},\"comment\":{}}],[\"author\",{\"_index\":591,\"name\":{\"1138\":{}},\"comment\":{}}],[\"basepath\",{\"_index\":296,\"name\":{\"595\":{}},\"comment\":{}}],[\"basicauthcredentials\",{\"_index\":275,\"name\":{\"563\":{}},\"comment\":{}}],[\"batchedarraycursor\",{\"_index\":327,\"name\":{\"634\":{}},\"comment\":{}}],[\"batches\",{\"_index\":341,\"name\":{\"650\":{}},\"comment\":{}}],[\"batchsize\",{\"_index\":30,\"name\":{\"73\":{},\"382\":{},\"388\":{},\"683\":{}},\"comment\":{}}],[\"bearerauthcredentials\",{\"_index\":278,\"name\":{\"567\":{}},\"comment\":{}}],[\"before\",{\"_index\":288,\"name\":{\"581\":{}},\"comment\":{}}],[\"beforesend\",{\"_index\":283,\"name\":{\"574\":{}},\"comment\":{}}],[\"begintransaction\",{\"_index\":525,\"name\":{\"1042\":{}},\"comment\":{}}],[\"bindvars\",{\"_index\":87,\"name\":{\"197\":{},\"754\":{},\"787\":{}},\"comment\":{}}],[\"body\",{\"_index\":292,\"name\":{\"588\":{}},\"comment\":{}}],[\"break\",{\"_index\":25,\"name\":{\"62\":{}},\"comment\":{}}],[\"byexample\",{\"_index\":252,\"name\":{\"491\":{},\"519\":{}},\"comment\":{}}],[\"bytesaccumconsolidationpolicy\",{\"_index\":694,\"name\":{\"1420\":{}},\"comment\":{}}],[\"cache\",{\"_index\":354,\"name\":{\"684\":{},\"1322\":{},\"1327\":{},\"1343\":{},\"1358\":{},\"1445\":{},\"1457\":{},\"1488\":{}},\"comment\":{}}],[\"cacheable\",{\"_index\":379,\"name\":{\"727\":{},\"739\":{}},\"comment\":{}}],[\"cacheenabled\",{\"_index\":139,\"name\":{\"262\":{},\"286\":{},\"316\":{},\"1281\":{}},\"comment\":{}}],[\"cachehits\",{\"_index\":315,\"name\":{\"620\":{}},\"comment\":{}}],[\"cachemisses\",{\"_index\":316,\"name\":{\"621\":{}},\"comment\":{}}],[\"canbedisabled\",{\"_index\":394,\"name\":{\"763\":{}},\"comment\":{}}],[\"cancreateadditionalplans\",{\"_index\":395,\"name\":{\"764\":{}},\"comment\":{}}],[\"case\",{\"_index\":13,\"name\":{\"28\":{},\"46\":{},\"63\":{}},\"comment\":{}}],[\"checksum\",{\"_index\":231,\"name\":{\"469\":{},\"535\":{},\"871\":{}},\"comment\":{}}],[\"classificationanalyzerdescription\",{\"_index\":71,\"name\":{\"178\":{}},\"comment\":{}}],[\"cleanupintervalstep\",{\"_index\":662,\"name\":{\"1350\":{},\"1448\":{}},\"comment\":{}}],[\"clearslowqueries\",{\"_index\":533,\"name\":{\"1052\":{}},\"comment\":{}}],[\"clearuseraccesslevel\",{\"_index\":521,\"name\":{\"1038\":{}},\"comment\":{}}],[\"close\",{\"_index\":483,\"name\":{\"994\":{}},\"comment\":{}}],[\"clusteronly\",{\"_index\":393,\"name\":{\"762\":{}},\"comment\":{}}],[\"code\",{\"_index\":273,\"name\":{\"561\":{},\"823\":{},\"1103\":{},\"1109\":{},\"1116\":{},\"1120\":{},\"1124\":{}},\"comment\":{}}],[\"collapsepositions\",{\"_index\":28,\"name\":{\"71\":{}},\"comment\":{}}],[\"collationanalyzerdescription\",{\"_index\":69,\"name\":{\"176\":{}},\"comment\":{}}],[\"collection\",{\"_index\":90,\"name\":{\"200\":{},\"979\":{},\"1011\":{},\"1189\":{},\"1194\":{},\"1231\":{},\"1241\":{},\"1461\":{}},\"comment\":{}}],[\"collectionbatchreadoptions\",{\"_index\":161,\"name\":{\"327\":{}},\"comment\":{}}],[\"collectionchecksumoptions\",{\"_index\":146,\"name\":{\"287\":{}},\"comment\":{}}],[\"collectiondropoptions\",{\"_index\":149,\"name\":{\"291\":{}},\"comment\":{}}],[\"collectionedgesoptions\",{\"_index\":179,\"name\":{\"375\":{}},\"comment\":{}}],[\"collectionedgesresult\",{\"_index\":215,\"name\":{\"439\":{}},\"comment\":{}}],[\"collectionimportoptions\",{\"_index\":173,\"name\":{\"366\":{}},\"comment\":{}}],[\"collectionimportresult\",{\"_index\":208,\"name\":{\"430\":{}},\"comment\":{}}],[\"collectioninsertoptions\",{\"_index\":162,\"name\":{\"330\":{}},\"comment\":{}}],[\"collectionkeyoptions\",{\"_index\":151,\"name\":{\"294\":{}},\"comment\":{}}],[\"collectionkeyproperties\",{\"_index\":117,\"name\":{\"234\":{}},\"comment\":{}}],[\"collectionmetadata\",{\"_index\":114,\"name\":{\"228\":{}},\"comment\":{}}],[\"collectionproperties\",{\"_index\":126,\"name\":{\"247\":{}},\"comment\":{}}],[\"collectionpropertiesoptions\",{\"_index\":145,\"name\":{\"279\":{}},\"comment\":{}}],[\"collectionreadoptions\",{\"_index\":158,\"name\":{\"321\":{}},\"comment\":{}}],[\"collectionremoveoptions\",{\"_index\":172,\"name\":{\"359\":{}},\"comment\":{}}],[\"collectionreplaceoptions\",{\"_index\":169,\"name\":{\"339\":{}},\"comment\":{}}],[\"collections\",{\"_index\":373,\"name\":{\"719\":{},\"753\":{},\"1016\":{}},\"comment\":{}}],[\"collectionstatus\",{\"_index\":97,\"name\":{\"208\":{}},\"comment\":{}}],[\"collectiontostring\",{\"_index\":92,\"name\":{\"202\":{}},\"comment\":{}}],[\"collectiontype\",{\"_index\":94,\"name\":{\"205\":{}},\"comment\":{}}],[\"collectionupdateoptions\",{\"_index\":171,\"name\":{\"348\":{}},\"comment\":{}}],[\"commit\",{\"_index\":690,\"name\":{\"1414\":{}},\"comment\":{}}],[\"commitintervalmsec\",{\"_index\":663,\"name\":{\"1351\":{},\"1450\":{}},\"comment\":{}}],[\"commitlocalservicestate\",{\"_index\":557,\"name\":{\"1076\":{}},\"comment\":{}}],[\"compact\",{\"_index\":263,\"name\":{\"503\":{},\"552\":{}},\"comment\":{}}],[\"complete\",{\"_index\":177,\"name\":{\"373\":{}},\"comment\":{}}],[\"compression\",{\"_index\":655,\"name\":{\"1326\":{},\"1342\":{},\"1432\":{},\"1456\":{}},\"comment\":{}}],[\"computedvalueoptions\",{\"_index\":143,\"name\":{\"266\":{}},\"comment\":{}}],[\"computedvalueproperties\",{\"_index\":109,\"name\":{\"220\":{}},\"comment\":{}}],[\"computedvalues\",{\"_index\":138,\"name\":{\"261\":{},\"285\":{},\"315\":{}},\"comment\":{}}],[\"computeon\",{\"_index\":112,\"name\":{\"225\":{},\"271\":{}},\"comment\":{}}],[\"config\",{\"_index\":300,\"name\":{\"599\":{}},\"comment\":{}}],[\"configuration\",{\"_index\":423,\"name\":{\"827\":{},\"834\":{},\"843\":{},\"874\":{},\"1128\":{},\"1146\":{}},\"comment\":{}}],[\"connection\",{\"_index\":268,\"name\":{\"554\":{}},\"comment\":{}}],[\"consolidationintervalmsec\",{\"_index\":664,\"name\":{\"1352\":{},\"1449\":{}},\"comment\":{}}],[\"consolidationpolicy\",{\"_index\":665,\"name\":{\"1353\":{},\"1451\":{}},\"comment\":{}}],[\"constructor\",{\"_index\":480,\"name\":{\"989\":{}},\"comment\":{}}],[\"contributors\",{\"_index\":592,\"name\":{\"1139\":{}},\"comment\":{}}],[\"count\",{\"_index\":227,\"name\":{\"465\":{},\"531\":{},\"637\":{},\"652\":{},\"682\":{}},\"comment\":{}}],[\"create\",{\"_index\":78,\"name\":{\"187\":{},\"463\":{},\"529\":{},\"1253\":{},\"1495\":{}},\"comment\":{}}],[\"createanalyzer\",{\"_index\":510,\"name\":{\"1027\":{}},\"comment\":{}}],[\"createanalyzeroptions\",{\"_index\":3,\"name\":{\"3\":{}},\"comment\":{}}],[\"createaqlanalyzeroptions\",{\"_index\":26,\"name\":{\"64\":{}},\"comment\":{}}],[\"createarangosearchviewoptions\",{\"_index\":710,\"name\":{\"1458\":{}},\"comment\":{}}],[\"createclassificationanalyzeroptions\",{\"_index\":40,\"name\":{\"106\":{}},\"comment\":{}}],[\"createcollationanalyzeroptions\",{\"_index\":37,\"name\":{\"91\":{}},\"comment\":{}}],[\"createcollection\",{\"_index\":497,\"name\":{\"1012\":{}},\"comment\":{}}],[\"createcollectionoptions\",{\"_index\":152,\"name\":{\"300\":{}},\"comment\":{}}],[\"created\",{\"_index\":210,\"name\":{\"433\":{}},\"comment\":{}}],[\"createdatabase\",{\"_index\":491,\"name\":{\"1005\":{}},\"comment\":{}}],[\"createdatabaseoptions\",{\"_index\":412,\"name\":{\"798\":{}},\"comment\":{}}],[\"createdatabaseuser\",{\"_index\":409,\"name\":{\"792\":{}},\"comment\":{}}],[\"createdelimiteranalyzeroptions\",{\"_index\":9,\"name\":{\"9\":{}},\"comment\":{}}],[\"createedgecollection\",{\"_index\":498,\"name\":{\"1013\":{}},\"comment\":{}}],[\"createfunction\",{\"_index\":536,\"name\":{\"1055\":{}},\"comment\":{}}],[\"creategeojsonanalyzeroptions\",{\"_index\":45,\"name\":{\"123\":{}},\"comment\":{}}],[\"creategeopointanalyzeroptions\",{\"_index\":50,\"name\":{\"135\":{}},\"comment\":{}}],[\"creategeos2analyzeroptions\",{\"_index\":54,\"name\":{\"148\":{}},\"comment\":{}}],[\"creategraph\",{\"_index\":502,\"name\":{\"1018\":{}},\"comment\":{}}],[\"creategraphoptions\",{\"_index\":612,\"name\":{\"1209\":{}},\"comment\":{}}],[\"createidentityanalyzeroptions\",{\"_index\":4,\"name\":{\"4\":{}},\"comment\":{}}],[\"createminhashanalyzeroptions\",{\"_index\":38,\"name\":{\"98\":{}},\"comment\":{}}],[\"createnearestneighborsanalyzeroptions\",{\"_index\":44,\"name\":{\"115\":{}},\"comment\":{}}],[\"createngramanalyzeroptions\",{\"_index\":15,\"name\":{\"30\":{}},\"comment\":{}}],[\"createnormanalyzeroptions\",{\"_index\":12,\"name\":{\"21\":{}},\"comment\":{}}],[\"createpipelineanalyzeroptions\",{\"_index\":33,\"name\":{\"76\":{}},\"comment\":{}}],[\"createsearchaliasviewoptions\",{\"_index\":715,\"name\":{\"1470\":{}},\"comment\":{}}],[\"createsegmentationanalyzeroptions\",{\"_index\":24,\"name\":{\"56\":{}},\"comment\":{}}],[\"createstemanalyzeroptions\",{\"_index\":10,\"name\":{\"14\":{}},\"comment\":{}}],[\"createstopwordsanalyzeroptions\",{\"_index\":35,\"name\":{\"83\":{}},\"comment\":{}}],[\"createtextanalyzeroptions\",{\"_index\":19,\"name\":{\"39\":{}},\"comment\":{}}],[\"createuser\",{\"_index\":515,\"name\":{\"1032\":{}},\"comment\":{}}],[\"createuseroptions\",{\"_index\":473,\"name\":{\"965\":{}},\"comment\":{}}],[\"createview\",{\"_index\":506,\"name\":{\"1022\":{}},\"comment\":{}}],[\"createviewoptions\",{\"_index\":701,\"name\":{\"1433\":{}},\"comment\":{}}],[\"current\",{\"_index\":440,\"name\":{\"880\":{},\"888\":{},\"897\":{}},\"comment\":{}}],[\"currentraw\",{\"_index\":439,\"name\":{\"879\":{}},\"comment\":{}}],[\"cursor\",{\"_index\":309,\"name\":{\"613\":{}},\"comment\":{}}],[\"cursorextras\",{\"_index\":310,\"name\":{\"614\":{}},\"comment\":{}}],[\"cursorscreated\",{\"_index\":317,\"name\":{\"622\":{}},\"comment\":{}}],[\"cursorsrearmed\",{\"_index\":318,\"name\":{\"623\":{}},\"comment\":{}}],[\"cursorstats\",{\"_index\":314,\"name\":{\"619\":{}},\"comment\":{}}],[\"database\",{\"_index\":342,\"name\":{\"662\":{},\"978\":{},\"988\":{},\"1002\":{},\"1502\":{}},\"comment\":{}}],[\"databaseinfo\",{\"_index\":415,\"name\":{\"804\":{}},\"comment\":{}}],[\"databasename\",{\"_index\":301,\"name\":{\"601\":{}},\"comment\":{}}],[\"databases\",{\"_index\":494,\"name\":{\"1008\":{}},\"comment\":{}}],[\"deduplicate\",{\"_index\":637,\"name\":{\"1278\":{}},\"comment\":{}}],[\"default\",{\"_index\":444,\"name\":{\"884\":{},\"1150\":{},\"1269\":{}},\"comment\":{}}],[\"defaultdocument\",{\"_index\":585,\"name\":{\"1129\":{}},\"comment\":{}}],[\"delete\",{\"_index\":682,\"name\":{\"1392\":{}},\"comment\":{}}],[\"deleted\",{\"_index\":102,\"name\":{\"213\":{},\"448\":{}},\"comment\":{}}],[\"delimiteranalyzerdescription\",{\"_index\":60,\"name\":{\"167\":{}},\"comment\":{}}],[\"dependencies\",{\"_index\":424,\"name\":{\"828\":{},\"835\":{},\"844\":{},\"875\":{},\"1130\":{}},\"comment\":{}}],[\"dependency\",{\"_index\":595,\"name\":{\"1152\":{}},\"comment\":{}}],[\"description\",{\"_index\":442,\"name\":{\"882\":{},\"892\":{},\"901\":{},\"954\":{},\"1140\":{},\"1148\":{},\"1156\":{}},\"comment\":{}}],[\"details\",{\"_index\":178,\"name\":{\"374\":{},\"438\":{},\"818\":{}},\"comment\":{}}],[\"development\",{\"_index\":425,\"name\":{\"829\":{},\"836\":{},\"845\":{},\"860\":{},\"868\":{}},\"comment\":{}}],[\"direction\",{\"_index\":198,\"name\":{\"419\":{},\"1331\":{},\"1419\":{}},\"comment\":{}}],[\"disabledbydefault\",{\"_index\":396,\"name\":{\"765\":{}},\"comment\":{}}],[\"distributeshardslike\",{\"_index\":135,\"name\":{\"258\":{},\"312\":{}},\"comment\":{}}],[\"document\",{\"_index\":238,\"name\":{\"477\":{},\"506\":{},\"1089\":{}},\"comment\":{}}],[\"document_collection\",{\"_index\":95,\"name\":{\"206\":{}},\"comment\":{}}],[\"documentcollection\",{\"_index\":226,\"name\":{\"460\":{}},\"comment\":{}}],[\"documentdata\",{\"_index\":565,\"name\":{\"1087\":{}},\"comment\":{}}],[\"documentexists\",{\"_index\":237,\"name\":{\"476\":{},\"542\":{}},\"comment\":{}}],[\"documentexistsoptions\",{\"_index\":155,\"name\":{\"317\":{}},\"comment\":{}}],[\"documentid\",{\"_index\":236,\"name\":{\"475\":{},\"541\":{}},\"comment\":{}}],[\"documentmetadata\",{\"_index\":558,\"name\":{\"1078\":{}},\"comment\":{}}],[\"documents\",{\"_index\":239,\"name\":{\"478\":{},\"507\":{},\"1077\":{}},\"comment\":{}}],[\"documentselector\",{\"_index\":571,\"name\":{\"1098\":{}},\"comment\":{}}],[\"downloadservice\",{\"_index\":556,\"name\":{\"1075\":{}},\"comment\":{}}],[\"drop\",{\"_index\":79,\"name\":{\"188\":{},\"473\":{},\"539\":{},\"1254\":{},\"1500\":{}},\"comment\":{}}],[\"dropdatabase\",{\"_index\":496,\"name\":{\"1010\":{}},\"comment\":{}}],[\"dropfunction\",{\"_index\":537,\"name\":{\"1056\":{}},\"comment\":{}}],[\"dropindex\",{\"_index\":262,\"name\":{\"502\":{},\"551\":{}},\"comment\":{}}],[\"duration\",{\"_index\":453,\"name\":{\"909\":{},\"914\":{},\"921\":{},\"940\":{}},\"comment\":{}}],[\"edge\",{\"_index\":567,\"name\":{\"1090\":{},\"1244\":{}},\"comment\":{}}],[\"edge_collection\",{\"_index\":96,\"name\":{\"207\":{}},\"comment\":{}}],[\"edgecollection\",{\"_index\":264,\"name\":{\"505\":{},\"1260\":{}},\"comment\":{}}],[\"edgecollections\",{\"_index\":628,\"name\":{\"1262\":{}},\"comment\":{}}],[\"edgedata\",{\"_index\":566,\"name\":{\"1088\":{}},\"comment\":{}}],[\"edgedefinition\",{\"_index\":604,\"name\":{\"1187\":{}},\"comment\":{}}],[\"edgedefinitionoptions\",{\"_index\":607,\"name\":{\"1192\":{}},\"comment\":{}}],[\"edgedefinitions\",{\"_index\":609,\"name\":{\"1200\":{}},\"comment\":{}}],[\"edgeexists\",{\"_index\":621,\"name\":{\"1243\":{}},\"comment\":{}}],[\"edgemetadata\",{\"_index\":562,\"name\":{\"1083\":{}},\"comment\":{}}],[\"edgengram\",{\"_index\":23,\"name\":{\"51\":{}},\"comment\":{}}],[\"edges\",{\"_index\":204,\"name\":{\"426\":{},\"441\":{},\"523\":{}},\"comment\":{}}],[\"empty\",{\"_index\":212,\"name\":{\"435\":{}},\"comment\":{}}],[\"enabled\",{\"_index\":399,\"name\":{\"769\":{},\"777\":{}},\"comment\":{}}],[\"enforcereplicationfactor\",{\"_index\":154,\"name\":{\"306\":{}},\"comment\":{}}],[\"engines\",{\"_index\":586,\"name\":{\"1132\":{}},\"comment\":{}}],[\"ensurefulltextindexoptions\",{\"_index\":642,\"name\":{\"1284\":{}},\"comment\":{}}],[\"ensuregeoindexoptions\",{\"_index\":641,\"name\":{\"1283\":{}},\"comment\":{}}],[\"ensureindex\",{\"_index\":261,\"name\":{\"501\":{},\"550\":{}},\"comment\":{}}],[\"ensureinvertedindexoptions\",{\"_index\":658,\"name\":{\"1332\":{}},\"comment\":{}}],[\"ensurepersistentindexoptions\",{\"_index\":633,\"name\":{\"1271\":{}},\"comment\":{}}],[\"ensurettlindexoptions\",{\"_index\":644,\"name\":{\"1291\":{}},\"comment\":{}}],[\"ensurezkdindexoptions\",{\"_index\":646,\"name\":{\"1298\":{}},\"comment\":{}}],[\"enterpriseonly\",{\"_index\":397,\"name\":{\"766\":{}},\"comment\":{}}],[\"err\",{\"_index\":456,\"name\":{\"915\":{},\"922\":{},\"941\":{}},\"comment\":{}}],[\"errno\",{\"_index\":575,\"name\":{\"1104\":{}},\"comment\":{}}],[\"error\",{\"_index\":209,\"name\":{\"432\":{},\"560\":{},\"1099\":{},\"1113\":{},\"1123\":{}},\"comment\":{}}],[\"errormessage\",{\"_index\":581,\"name\":{\"1114\":{}},\"comment\":{}}],[\"errornum\",{\"_index\":578,\"name\":{\"1108\":{},\"1115\":{}},\"comment\":{}}],[\"errors\",{\"_index\":211,\"name\":{\"434\":{}},\"comment\":{}}],[\"estimatedcost\",{\"_index\":375,\"name\":{\"721\":{}},\"comment\":{}}],[\"estimatednritems\",{\"_index\":376,\"name\":{\"722\":{}},\"comment\":{}}],[\"estimates\",{\"_index\":638,\"name\":{\"1279\":{}},\"comment\":{}}],[\"exclusive\",{\"_index\":345,\"name\":{\"666\":{}},\"comment\":{}}],[\"executetransaction\",{\"_index\":523,\"name\":{\"1040\":{}},\"comment\":{}}],[\"executiontime\",{\"_index\":323,\"name\":{\"630\":{},\"735\":{}},\"comment\":{}}],[\"exists\",{\"_index\":76,\"name\":{\"185\":{},\"461\":{},\"527\":{},\"1004\":{},\"1251\":{},\"1412\":{},\"1494\":{}},\"comment\":{}}],[\"expander\",{\"_index\":197,\"name\":{\"418\":{}},\"comment\":{}}],[\"expectbinary\",{\"_index\":293,\"name\":{\"589\":{}},\"comment\":{}}],[\"expireafter\",{\"_index\":645,\"name\":{\"1296\":{}},\"comment\":{}}],[\"explain\",{\"_index\":528,\"name\":{\"1046\":{}},\"comment\":{}}],[\"explainoptions\",{\"_index\":366,\"name\":{\"704\":{}},\"comment\":{}}],[\"explainplan\",{\"_index\":372,\"name\":{\"715\":{}},\"comment\":{}}],[\"expression\",{\"_index\":110,\"name\":{\"223\":{},\"269\":{}},\"comment\":{}}],[\"extra\",{\"_index\":329,\"name\":{\"636\":{},\"651\":{},\"797\":{},\"964\":{},\"970\":{},\"975\":{}},\"comment\":{}}],[\"failonwarning\",{\"_index\":113,\"name\":{\"227\":{},\"273\":{},\"688\":{}},\"comment\":{}}],[\"failures\",{\"_index\":451,\"name\":{\"907\":{},\"947\":{}},\"comment\":{}}],[\"features\",{\"_index\":7,\"name\":{\"7\":{},\"12\":{},\"17\":{},\"24\":{},\"33\":{},\"42\":{},\"59\":{},\"67\":{},\"79\":{},\"86\":{},\"94\":{},\"101\":{},\"109\":{},\"118\":{},\"126\":{},\"138\":{},\"151\":{},\"164\":{},\"1310\":{},\"1317\":{},\"1346\":{},\"1376\":{}},\"comment\":{}}],[\"field\",{\"_index\":657,\"name\":{\"1330\":{}},\"comment\":{}}],[\"fields\",{\"_index\":634,\"name\":{\"1274\":{},\"1287\":{},\"1294\":{},\"1301\":{},\"1325\":{},\"1335\":{},\"1341\":{},\"1439\":{},\"1455\":{},\"1483\":{}},\"comment\":{}}],[\"fieldvaluetypes\",{\"_index\":647,\"name\":{\"1302\":{}},\"comment\":{}}],[\"figures\",{\"_index\":229,\"name\":{\"467\":{},\"533\":{}},\"comment\":{}}],[\"file\",{\"_index\":596,\"name\":{\"1159\":{}},\"comment\":{}}],[\"files\",{\"_index\":587,\"name\":{\"1133\":{}},\"comment\":{}}],[\"fillblockcache\",{\"_index\":357,\"name\":{\"693\":{}},\"comment\":{}}],[\"filter\",{\"_index\":194,\"name\":{\"415\":{}},\"comment\":{}}],[\"filtered\",{\"_index\":218,\"name\":{\"445\":{},\"628\":{}},\"comment\":{}}],[\"firstexample\",{\"_index\":253,\"name\":{\"492\":{},\"520\":{}},\"comment\":{}}],[\"flags\",{\"_index\":391,\"name\":{\"759\":{}},\"comment\":{}}],[\"flatmap\",{\"_index\":336,\"name\":{\"645\":{},\"658\":{}},\"comment\":{}}],[\"force\",{\"_index\":430,\"name\":{\"840\":{},\"849\":{},\"853\":{}},\"comment\":{}}],[\"foreach\",{\"_index\":334,\"name\":{\"643\":{},\"656\":{}},\"comment\":{}}],[\"format\",{\"_index\":55,\"name\":{\"160\":{}},\"comment\":{}}],[\"foxx\",{\"_index\":583,\"name\":{\"1125\":{}},\"comment\":{}}],[\"foxxmanifest\",{\"_index\":584,\"name\":{\"1126\":{}},\"comment\":{}}],[\"from\",{\"_index\":605,\"name\":{\"1190\":{},\"1195\":{}},\"comment\":{}}],[\"fromprefix\",{\"_index\":174,\"name\":{\"368\":{}},\"comment\":{}}],[\"fullcount\",{\"_index\":324,\"name\":{\"631\":{},\"692\":{}},\"comment\":{}}],[\"fulltext\",{\"_index\":259,\"name\":{\"498\":{},\"522\":{}},\"comment\":{}}],[\"fulltextindex\",{\"_index\":673,\"name\":{\"1368\":{}},\"comment\":{}}],[\"fulltitle\",{\"_index\":455,\"name\":{\"913\":{},\"939\":{}},\"comment\":{}}],[\"genericanalyzerdescription\",{\"_index\":56,\"name\":{\"161\":{}},\"comment\":{}}],[\"genericindex\",{\"_index\":670,\"name\":{\"1360\":{}},\"comment\":{}}],[\"genericviewdescription\",{\"_index\":716,\"name\":{\"1471\":{}},\"comment\":{}}],[\"geoindex\",{\"_index\":674,\"name\":{\"1369\":{}},\"comment\":{}}],[\"geojsonanalyzerdescription\",{\"_index\":73,\"name\":{\"180\":{}},\"comment\":{}}],[\"geopointanalyzerdescription\",{\"_index\":74,\"name\":{\"181\":{}},\"comment\":{}}],[\"geos2analyzerdescription\",{\"_index\":75,\"name\":{\"182\":{}},\"comment\":{}}],[\"get\",{\"_index\":77,\"name\":{\"186\":{},\"462\":{},\"528\":{},\"1003\":{},\"1252\":{},\"1393\":{},\"1413\":{},\"1493\":{}},\"comment\":{}}],[\"getavg\",{\"_index\":479,\"name\":{\"986\":{}},\"comment\":{}}],[\"getlatest\",{\"_index\":477,\"name\":{\"982\":{}},\"comment\":{}}],[\"getresponsibleshard\",{\"_index\":235,\"name\":{\"474\":{},\"540\":{}},\"comment\":{}}],[\"getservice\",{\"_index\":543,\"name\":{\"1062\":{}},\"comment\":{}}],[\"getserviceconfiguration\",{\"_index\":544,\"name\":{\"1063\":{}},\"comment\":{}}],[\"getservicedependencies\",{\"_index\":547,\"name\":{\"1066\":{}},\"comment\":{}}],[\"getservicedocumentation\",{\"_index\":555,\"name\":{\"1074\":{}},\"comment\":{}}],[\"getservicereadme\",{\"_index\":554,\"name\":{\"1073\":{}},\"comment\":{}}],[\"getuser\",{\"_index\":514,\"name\":{\"1031\":{}},\"comment\":{}}],[\"getuseraccesslevel\",{\"_index\":519,\"name\":{\"1036\":{}},\"comment\":{}}],[\"getuserdatabases\",{\"_index\":522,\"name\":{\"1039\":{}},\"comment\":{}}],[\"getvalues\",{\"_index\":478,\"name\":{\"984\":{}},\"comment\":{}}],[\"globallyuniqueid\",{\"_index\":115,\"name\":{\"231\":{},\"1473\":{}},\"comment\":{}}],[\"graceful\",{\"_index\":159,\"name\":{\"323\":{},\"1169\":{}},\"comment\":{}}],[\"graph\",{\"_index\":501,\"name\":{\"1017\":{},\"1164\":{},\"1232\":{},\"1242\":{},\"1249\":{}},\"comment\":{}}],[\"graphcollectioninsertoptions\",{\"_index\":601,\"name\":{\"1171\":{}},\"comment\":{}}],[\"graphcollectionreadoptions\",{\"_index\":599,\"name\":{\"1166\":{}},\"comment\":{}}],[\"graphcollectionremoveoptions\",{\"_index\":603,\"name\":{\"1182\":{}},\"comment\":{}}],[\"graphcollectionreplaceoptions\",{\"_index\":602,\"name\":{\"1175\":{}},\"comment\":{}}],[\"graphedgecollection\",{\"_index\":620,\"name\":{\"1239\":{}},\"comment\":{}}],[\"graphinfo\",{\"_index\":608,\"name\":{\"1197\":{}},\"comment\":{}}],[\"graphs\",{\"_index\":504,\"name\":{\"1020\":{}},\"comment\":{}}],[\"graphvertexcollection\",{\"_index\":617,\"name\":{\"1229\":{}},\"comment\":{}}],[\"gzip\",{\"_index\":597,\"name\":{\"1162\":{}},\"comment\":{}}],[\"hasmore\",{\"_index\":330,\"name\":{\"638\":{}},\"comment\":{}}],[\"hasnext\",{\"_index\":331,\"name\":{\"639\":{},\"653\":{}},\"comment\":{}}],[\"head\",{\"_index\":683,\"name\":{\"1394\":{}},\"comment\":{}}],[\"headers\",{\"_index\":270,\"name\":{\"556\":{},\"593\":{},\"610\":{}},\"comment\":{}}],[\"hex\",{\"_index\":36,\"name\":{\"90\":{}},\"comment\":{}}],[\"hidden\",{\"_index\":392,\"name\":{\"761\":{}},\"comment\":{}}],[\"httperror\",{\"_index\":582,\"name\":{\"1117\":{}},\"comment\":{}}],[\"httprequests\",{\"_index\":325,\"name\":{\"632\":{}},\"comment\":{}}],[\"id\",{\"_index\":370,\"name\":{\"713\":{},\"785\":{},\"807\":{},\"1363\":{},\"1383\":{},\"1408\":{},\"1411\":{},\"1474\":{}},\"comment\":{}}],[\"identityanalyzerdescription\",{\"_index\":59,\"name\":{\"166\":{}},\"comment\":{}}],[\"ifmatch\",{\"_index\":156,\"name\":{\"319\":{},\"325\":{},\"346\":{},\"357\":{},\"364\":{}},\"comment\":{}}],[\"ifnonematch\",{\"_index\":157,\"name\":{\"320\":{},\"326\":{}},\"comment\":{}}],[\"ignored\",{\"_index\":214,\"name\":{\"437\":{},\"458\":{}},\"comment\":{}}],[\"ignorerevs\",{\"_index\":170,\"name\":{\"344\":{},\"353\":{}},\"comment\":{}}],[\"import\",{\"_index\":248,\"name\":{\"487\":{},\"516\":{}},\"comment\":{}}],[\"inbackground\",{\"_index\":639,\"name\":{\"1280\":{},\"1290\":{},\"1297\":{},\"1305\":{},\"1357\":{},\"1444\":{}},\"comment\":{}}],[\"includeallfields\",{\"_index\":652,\"name\":{\"1318\":{},\"1347\":{},\"1440\":{},\"1484\":{}},\"comment\":{}}],[\"increment\",{\"_index\":119,\"name\":{\"238\":{},\"298\":{}},\"comment\":{}}],[\"index\",{\"_index\":191,\"name\":{\"409\":{},\"500\":{},\"549\":{},\"1267\":{},\"1380\":{},\"1462\":{}},\"comment\":{}}],[\"indexes\",{\"_index\":260,\"name\":{\"499\":{},\"548\":{},\"1270\":{},\"1465\":{},\"1469\":{}},\"comment\":{}}],[\"indexselector\",{\"_index\":680,\"name\":{\"1387\":{}},\"comment\":{}}],[\"inedges\",{\"_index\":265,\"name\":{\"524\":{}},\"comment\":{}}],[\"info\",{\"_index\":469,\"name\":{\"951\":{}},\"comment\":{}}],[\"init\",{\"_index\":193,\"name\":{\"414\":{}},\"comment\":{}}],[\"installservice\",{\"_index\":539,\"name\":{\"1058\":{}},\"comment\":{}}],[\"installserviceoptions\",{\"_index\":422,\"name\":{\"825\":{}},\"comment\":{}}],[\"intermediatecommitcount\",{\"_index\":362,\"name\":{\"700\":{}},\"comment\":{}}],[\"intermediatecommitsize\",{\"_index\":363,\"name\":{\"701\":{}},\"comment\":{}}],[\"invertedindex\",{\"_index\":678,\"name\":{\"1379\":{}},\"comment\":{}}],[\"invertedindexfieldoptions\",{\"_index\":651,\"name\":{\"1313\":{}},\"comment\":{}}],[\"invertedindexnestedfield\",{\"_index\":677,\"name\":{\"1372\":{}},\"comment\":{}}],[\"invertedindexnestedfieldoptions\",{\"_index\":648,\"name\":{\"1306\":{}},\"comment\":{}}],[\"invertedindexprimarysortfieldoptions\",{\"_index\":656,\"name\":{\"1328\":{}},\"comment\":{}}],[\"invertedindexstoredvalueoptions\",{\"_index\":654,\"name\":{\"1323\":{}},\"comment\":{}}],[\"isaqlliteral\",{\"_index\":82,\"name\":{\"191\":{}},\"comment\":{}}],[\"isaqlquery\",{\"_index\":81,\"name\":{\"190\":{}},\"comment\":{}}],[\"isarangoanalyzer\",{\"_index\":1,\"name\":{\"1\":{}},\"comment\":{}}],[\"isarangocollection\",{\"_index\":91,\"name\":{\"201\":{}},\"comment\":{}}],[\"isarangodatabase\",{\"_index\":343,\"name\":{\"663\":{}},\"comment\":{}}],[\"isarangoerror\",{\"_index\":572,\"name\":{\"1100\":{}},\"comment\":{}}],[\"isarangograph\",{\"_index\":598,\"name\":{\"1165\":{}},\"comment\":{}}],[\"isarangotransaction\",{\"_index\":686,\"name\":{\"1399\":{}},\"comment\":{}}],[\"isarangoview\",{\"_index\":693,\"name\":{\"1418\":{}},\"comment\":{}}],[\"isbinary\",{\"_index\":294,\"name\":{\"590\":{}},\"comment\":{}}],[\"isdeterministic\",{\"_index\":421,\"name\":{\"824\":{}},\"comment\":{}}],[\"isdisjoint\",{\"_index\":142,\"name\":{\"265\":{},\"1208\":{},\"1218\":{}},\"comment\":{}}],[\"ismodificationquery\",{\"_index\":377,\"name\":{\"723\":{}},\"comment\":{}}],[\"issatellite\",{\"_index\":611,\"name\":{\"1205\":{}},\"comment\":{}}],[\"issmart\",{\"_index\":141,\"name\":{\"264\":{},\"1206\":{},\"1216\":{}},\"comment\":{}}],[\"issystem\",{\"_index\":150,\"name\":{\"293\":{},\"809\":{}},\"comment\":{}}],[\"issystemerror\",{\"_index\":573,\"name\":{\"1101\":{}},\"comment\":{}}],[\"itemorder\",{\"_index\":199,\"name\":{\"420\":{}},\"comment\":{}}],[\"items\",{\"_index\":328,\"name\":{\"635\":{}},\"comment\":{}}],[\"join\",{\"_index\":84,\"name\":{\"194\":{}},\"comment\":{}}],[\"keepnull\",{\"_index\":29,\"name\":{\"72\":{},\"226\":{},\"272\":{},\"355\":{},\"393\":{},\"1179\":{}},\"comment\":{}}],[\"keygenerator\",{\"_index\":104,\"name\":{\"215\":{}},\"comment\":{}}],[\"keyoptions\",{\"_index\":129,\"name\":{\"251\":{},\"303\":{}},\"comment\":{}}],[\"keywords\",{\"_index\":593,\"name\":{\"1141\":{}},\"comment\":{}}],[\"kill\",{\"_index\":338,\"name\":{\"647\":{},\"660\":{}},\"comment\":{}}],[\"killquery\",{\"_index\":534,\"name\":{\"1053\":{}},\"comment\":{}}],[\"lastvalue\",{\"_index\":121,\"name\":{\"240\":{}},\"comment\":{}}],[\"latitude\",{\"_index\":51,\"name\":{\"141\":{}},\"comment\":{}}],[\"legacy\",{\"_index\":426,\"name\":{\"830\":{},\"837\":{},\"846\":{},\"861\":{},\"869\":{}},\"comment\":{}}],[\"level\",{\"_index\":124,\"name\":{\"245\":{},\"277\":{}},\"comment\":{}}],[\"lib\",{\"_index\":588,\"name\":{\"1134\":{}},\"comment\":{}}],[\"license\",{\"_index\":418,\"name\":{\"816\":{},\"956\":{},\"1142\":{}},\"comment\":{}}],[\"limit\",{\"_index\":182,\"name\":{\"381\":{},\"387\":{},\"395\":{},\"400\":{},\"410\":{}},\"comment\":{}}],[\"links\",{\"_index\":707,\"name\":{\"1452\":{}},\"comment\":{}}],[\"list\",{\"_index\":249,\"name\":{\"488\":{},\"543\":{}},\"comment\":{}}],[\"listanalyzers\",{\"_index\":511,\"name\":{\"1028\":{}},\"comment\":{}}],[\"listcollections\",{\"_index\":500,\"name\":{\"1015\":{}},\"comment\":{}}],[\"listdatabases\",{\"_index\":492,\"name\":{\"1006\":{}},\"comment\":{}}],[\"listedgecollections\",{\"_index\":627,\"name\":{\"1261\":{}},\"comment\":{}}],[\"listfunctions\",{\"_index\":535,\"name\":{\"1054\":{}},\"comment\":{}}],[\"listgraphs\",{\"_index\":503,\"name\":{\"1019\":{}},\"comment\":{}}],[\"listrunningqueries\",{\"_index\":531,\"name\":{\"1050\":{}},\"comment\":{}}],[\"listservices\",{\"_index\":538,\"name\":{\"1057\":{}},\"comment\":{}}],[\"listservicescripts\",{\"_index\":551,\"name\":{\"1070\":{}},\"comment\":{}}],[\"listslowqueries\",{\"_index\":532,\"name\":{\"1051\":{}},\"comment\":{}}],[\"listtransactions\",{\"_index\":526,\"name\":{\"1043\":{}},\"comment\":{}}],[\"listuserdatabases\",{\"_index\":493,\"name\":{\"1007\":{}},\"comment\":{}}],[\"listusers\",{\"_index\":513,\"name\":{\"1030\":{}},\"comment\":{}}],[\"listvertexcollections\",{\"_index\":623,\"name\":{\"1256\":{}},\"comment\":{}}],[\"listviews\",{\"_index\":508,\"name\":{\"1024\":{}},\"comment\":{}}],[\"literal\",{\"_index\":83,\"name\":{\"193\":{}},\"comment\":{}}],[\"loadall\",{\"_index\":332,\"name\":{\"640\":{}},\"comment\":{}}],[\"loadbalancingstrategy\",{\"_index\":269,\"name\":{\"555\":{},\"605\":{}},\"comment\":{}}],[\"loaded\",{\"_index\":100,\"name\":{\"211\":{}},\"comment\":{}}],[\"loadindexes\",{\"_index\":232,\"name\":{\"470\":{},\"536\":{}},\"comment\":{}}],[\"loading\",{\"_index\":103,\"name\":{\"214\":{}},\"comment\":{}}],[\"locale\",{\"_index\":11,\"name\":{\"20\":{},\"27\":{},\"45\":{},\"97\":{}},\"comment\":{}}],[\"locktimeout\",{\"_index\":350,\"name\":{\"674\":{}},\"comment\":{}}],[\"login\",{\"_index\":489,\"name\":{\"1000\":{}},\"comment\":{}}],[\"longitude\",{\"_index\":52,\"name\":{\"142\":{}},\"comment\":{}}],[\"lookupbykeys\",{\"_index\":257,\"name\":{\"496\":{},\"521\":{}},\"comment\":{}}],[\"main\",{\"_index\":589,\"name\":{\"1135\":{}},\"comment\":{}}],[\"manifest\",{\"_index\":437,\"name\":{\"870\":{},\"1125\":{}},\"comment\":{}}],[\"map\",{\"_index\":335,\"name\":{\"644\":{},\"657\":{}},\"comment\":{}}],[\"max\",{\"_index\":16,\"name\":{\"36\":{},\"54\":{}},\"comment\":{}}],[\"maxcells\",{\"_index\":47,\"name\":{\"132\":{},\"157\":{}},\"comment\":{}}],[\"maxdepth\",{\"_index\":206,\"name\":{\"428\":{}},\"comment\":{}}],[\"maxiterations\",{\"_index\":207,\"name\":{\"429\":{}},\"comment\":{}}],[\"maxlevel\",{\"_index\":49,\"name\":{\"134\":{},\"147\":{},\"159\":{}},\"comment\":{}}],[\"maxnodespercallstack\",{\"_index\":361,\"name\":{\"698\":{}},\"comment\":{}}],[\"maxnumberofplans\",{\"_index\":367,\"name\":{\"709\":{}},\"comment\":{}}],[\"maxplans\",{\"_index\":360,\"name\":{\"697\":{}},\"comment\":{}}],[\"maxquerystringlength\",{\"_index\":400,\"name\":{\"770\":{},\"778\":{}},\"comment\":{}}],[\"maxretries\",{\"_index\":305,\"name\":{\"606\":{}},\"comment\":{}}],[\"maxruntime\",{\"_index\":355,\"name\":{\"686\":{}},\"comment\":{}}],[\"maxslowqueries\",{\"_index\":401,\"name\":{\"771\":{},\"779\":{}},\"comment\":{}}],[\"maxsockets\",{\"_index\":281,\"name\":{\"572\":{}},\"comment\":{}}],[\"maxtransactionsize\",{\"_index\":351,\"name\":{\"675\":{},\"699\":{}},\"comment\":{}}],[\"maxwarningscount\",{\"_index\":356,\"name\":{\"691\":{}},\"comment\":{}}],[\"memorylimit\",{\"_index\":31,\"name\":{\"74\":{},\"685\":{}},\"comment\":{}}],[\"mergeobjects\",{\"_index\":167,\"name\":{\"337\":{},\"356\":{},\"396\":{}},\"comment\":{}}],[\"message\",{\"_index\":125,\"name\":{\"246\":{},\"278\":{}},\"comment\":{}}],[\"method\",{\"_index\":291,\"name\":{\"587\":{}},\"comment\":{}}],[\"min\",{\"_index\":17,\"name\":{\"37\":{},\"53\":{}},\"comment\":{}}],[\"mincells\",{\"_index\":53,\"name\":{\"145\":{}},\"comment\":{}}],[\"mindepth\",{\"_index\":205,\"name\":{\"427\":{}},\"comment\":{}}],[\"minhashanalyzerdescription\",{\"_index\":70,\"name\":{\"177\":{}},\"comment\":{}}],[\"minlength\",{\"_index\":643,\"name\":{\"1289\":{}},\"comment\":{}}],[\"minlevel\",{\"_index\":48,\"name\":{\"133\":{},\"146\":{},\"158\":{}},\"comment\":{}}],[\"minscore\",{\"_index\":700,\"name\":{\"1431\":{}},\"comment\":{}}],[\"model_location\",{\"_index\":41,\"name\":{\"112\":{},\"121\":{}},\"comment\":{}}],[\"mount\",{\"_index\":434,\"name\":{\"856\":{},\"864\":{}},\"comment\":{}}],[\"multiexplainresult\",{\"_index\":383,\"name\":{\"736\":{}},\"comment\":{}}],[\"multiple\",{\"_index\":446,\"name\":{\"887\":{},\"896\":{},\"1158\":{}},\"comment\":{}}],[\"multiservicedependency\",{\"_index\":447,\"name\":{\"894\":{}},\"comment\":{}}],[\"name\",{\"_index\":57,\"name\":{\"163\":{},\"184\":{},\"204\":{},\"222\":{},\"230\":{},\"268\":{},\"504\":{},\"553\":{},\"758\":{},\"806\":{},\"822\":{},\"857\":{},\"866\":{},\"890\":{},\"899\":{},\"990\":{},\"1107\":{},\"1118\":{},\"1143\":{},\"1154\":{},\"1199\":{},\"1230\":{},\"1240\":{},\"1250\":{},\"1275\":{},\"1288\":{},\"1295\":{},\"1303\":{},\"1308\":{},\"1315\":{},\"1336\":{},\"1362\":{},\"1374\":{},\"1386\":{},\"1475\":{},\"1492\":{}},\"comment\":{}}],[\"nearestneighborsanalyzerdescription\",{\"_index\":72,\"name\":{\"179\":{}},\"comment\":{}}],[\"nested\",{\"_index\":650,\"name\":{\"1312\":{},\"1321\":{},\"1378\":{},\"1441\":{},\"1485\":{}},\"comment\":{}}],[\"newborn\",{\"_index\":98,\"name\":{\"209\":{}},\"comment\":{}}],[\"next\",{\"_index\":333,\"name\":{\"642\":{},\"655\":{}},\"comment\":{}}],[\"ngramanalyzerdescription\",{\"_index\":63,\"name\":{\"170\":{}},\"comment\":{}}],[\"nodes\",{\"_index\":326,\"name\":{\"633\":{},\"717\":{}},\"comment\":{}}],[\"normanalyzerdescription\",{\"_index\":62,\"name\":{\"169\":{}},\"comment\":{}}],[\"numberofshards\",{\"_index\":132,\"name\":{\"254\":{},\"307\":{},\"1202\":{},\"1213\":{}},\"comment\":{}}],[\"numhashes\",{\"_index\":39,\"name\":{\"105\":{}},\"comment\":{}}],[\"objectwithid\",{\"_index\":569,\"name\":{\"1092\":{},\"1381\":{}},\"comment\":{}}],[\"objectwithkey\",{\"_index\":570,\"name\":{\"1095\":{}},\"comment\":{}}],[\"objectwithname\",{\"_index\":679,\"name\":{\"1384\":{}},\"comment\":{}}],[\"offset\",{\"_index\":120,\"name\":{\"239\":{},\"299\":{}},\"comment\":{}}],[\"old\",{\"_index\":225,\"name\":{\"459\":{}},\"comment\":{}}],[\"onduplicate\",{\"_index\":176,\"name\":{\"372\":{}},\"comment\":{}}],[\"optimizer\",{\"_index\":358,\"name\":{\"694\":{},\"706\":{}},\"comment\":{}}],[\"optimizetopk\",{\"_index\":669,\"name\":{\"1359\":{}},\"comment\":{}}],[\"options\",{\"_index\":46,\"name\":{\"130\":{},\"143\":{},\"155\":{},\"872\":{}},\"comment\":{}}],[\"order\",{\"_index\":201,\"name\":{\"422\":{}},\"comment\":{}}],[\"orphancollections\",{\"_index\":610,\"name\":{\"1201\":{},\"1212\":{}},\"comment\":{}}],[\"outedges\",{\"_index\":266,\"name\":{\"525\":{}},\"comment\":{}}],[\"overwrite\",{\"_index\":111,\"name\":{\"224\":{},\"270\":{},\"370\":{}},\"comment\":{}}],[\"overwritemode\",{\"_index\":166,\"name\":{\"336\":{}},\"comment\":{}}],[\"parallelism\",{\"_index\":661,\"name\":{\"1349\":{}},\"comment\":{}}],[\"params\",{\"_index\":271,\"name\":{\"557\":{}},\"comment\":{}}],[\"parse\",{\"_index\":529,\"name\":{\"1047\":{}},\"comment\":{}}],[\"parsed\",{\"_index\":388,\"name\":{\"752\":{}},\"comment\":{}}],[\"parseresult\",{\"_index\":387,\"name\":{\"750\":{}},\"comment\":{}}],[\"passes\",{\"_index\":450,\"name\":{\"906\":{},\"948\":{}},\"comment\":{}}],[\"passwd\",{\"_index\":410,\"name\":{\"795\":{},\"968\":{},\"973\":{}},\"comment\":{}}],[\"password\",{\"_index\":277,\"name\":{\"566\":{}},\"comment\":{}}],[\"patch\",{\"_index\":568,\"name\":{\"1091\":{},\"1395\":{}},\"comment\":{}}],[\"path\",{\"_index\":297,\"name\":{\"596\":{},\"808\":{},\"865\":{},\"957\":{},\"1161\":{}},\"comment\":{}}],[\"peakmemoryusage\",{\"_index\":322,\"name\":{\"629\":{},\"734\":{}},\"comment\":{}}],[\"pending\",{\"_index\":452,\"name\":{\"908\":{},\"946\":{}},\"comment\":{}}],[\"persistentindex\",{\"_index\":671,\"name\":{\"1366\":{}},\"comment\":{}}],[\"pipeline\",{\"_index\":34,\"name\":{\"82\":{}},\"comment\":{}}],[\"pipelineanalyzerdescription\",{\"_index\":67,\"name\":{\"174\":{}},\"comment\":{}}],[\"plan\",{\"_index\":312,\"name\":{\"616\":{},\"726\":{}},\"comment\":{}}],[\"plans\",{\"_index\":384,\"name\":{\"738\":{}},\"comment\":{}}],[\"planscreated\",{\"_index\":382,\"name\":{\"733\":{},\"745\":{}},\"comment\":{}}],[\"post\",{\"_index\":684,\"name\":{\"1396\":{}},\"comment\":{}}],[\"precapturestacktraces\",{\"_index\":307,\"name\":{\"611\":{}},\"comment\":{}}],[\"preserveoriginal\",{\"_index\":18,\"name\":{\"38\":{},\"55\":{}},\"comment\":{}}],[\"primaryindex\",{\"_index\":672,\"name\":{\"1367\":{}},\"comment\":{}}],[\"primarykeycache\",{\"_index\":660,\"name\":{\"1344\":{}},\"comment\":{}}],[\"primarysort\",{\"_index\":659,\"name\":{\"1339\":{}},\"comment\":{}}],[\"profile\",{\"_index\":313,\"name\":{\"617\":{},\"689\":{}},\"comment\":{}}],[\"properties\",{\"_index\":8,\"name\":{\"8\":{},\"13\":{},\"18\":{},\"25\":{},\"34\":{},\"43\":{},\"60\":{},\"68\":{},\"80\":{},\"87\":{},\"95\":{},\"102\":{},\"110\":{},\"119\":{},\"127\":{},\"139\":{},\"152\":{},\"464\":{},\"530\":{},\"1497\":{}},\"comment\":{}}],[\"provides\",{\"_index\":435,\"name\":{\"859\":{},\"1131\":{}},\"comment\":{}}],[\"put\",{\"_index\":685,\"name\":{\"1397\":{}},\"comment\":{}}],[\"qs\",{\"_index\":298,\"name\":{\"597\":{}},\"comment\":{}}],[\"query\",{\"_index\":86,\"name\":{\"196\":{},\"786\":{},\"1045\":{}},\"comment\":{}}],[\"queryinfo\",{\"_index\":406,\"name\":{\"783\":{}},\"comment\":{}}],[\"queryoptimizerrule\",{\"_index\":390,\"name\":{\"756\":{}},\"comment\":{}}],[\"queryoptions\",{\"_index\":352,\"name\":{\"676\":{}},\"comment\":{}}],[\"queryrules\",{\"_index\":530,\"name\":{\"1048\":{}},\"comment\":{}}],[\"querystring\",{\"_index\":27,\"name\":{\"70\":{}},\"comment\":{}}],[\"querytracking\",{\"_index\":398,\"name\":{\"767\":{},\"1049\":{}},\"comment\":{}}],[\"querytrackingoptions\",{\"_index\":405,\"name\":{\"775\":{}},\"comment\":{}}],[\"queuetime\",{\"_index\":485,\"name\":{\"996\":{}},\"comment\":{}}],[\"queuetimemetrics\",{\"_index\":476,\"name\":{\"980\":{}},\"comment\":{}}],[\"read\",{\"_index\":347,\"name\":{\"668\":{}},\"comment\":{}}],[\"recalculatecount\",{\"_index\":228,\"name\":{\"466\":{},\"532\":{}},\"comment\":{}}],[\"reduce\",{\"_index\":337,\"name\":{\"646\":{},\"659\":{}},\"comment\":{}}],[\"refillindexcaches\",{\"_index\":168,\"name\":{\"338\":{},\"347\":{},\"358\":{},\"365\":{}},\"comment\":{}}],[\"remove\",{\"_index\":246,\"name\":{\"485\":{},\"514\":{},\"1238\":{},\"1248\":{}},\"comment\":{}}],[\"removeall\",{\"_index\":247,\"name\":{\"486\":{},\"515\":{}},\"comment\":{}}],[\"removebyexample\",{\"_index\":254,\"name\":{\"493\":{},\"544\":{}},\"comment\":{}}],[\"removebykeys\",{\"_index\":258,\"name\":{\"497\":{},\"547\":{}},\"comment\":{}}],[\"removed\",{\"_index\":224,\"name\":{\"457\":{}},\"comment\":{}}],[\"removeedgedefinition\",{\"_index\":631,\"name\":{\"1265\":{}},\"comment\":{}}],[\"removeuser\",{\"_index\":518,\"name\":{\"1035\":{}},\"comment\":{}}],[\"removevertexcollection\",{\"_index\":626,\"name\":{\"1259\":{}},\"comment\":{}}],[\"rename\",{\"_index\":233,\"name\":{\"471\":{},\"537\":{},\"1496\":{}},\"comment\":{}}],[\"renamecollection\",{\"_index\":499,\"name\":{\"1014\":{}},\"comment\":{}}],[\"renameview\",{\"_index\":507,\"name\":{\"1023\":{}},\"comment\":{}}],[\"renewauthtoken\",{\"_index\":490,\"name\":{\"1001\":{}},\"comment\":{}}],[\"replace\",{\"_index\":242,\"name\":{\"481\":{},\"510\":{},\"1236\":{},\"1246\":{}},\"comment\":{}}],[\"replaceall\",{\"_index\":243,\"name\":{\"482\":{},\"511\":{}},\"comment\":{}}],[\"replacebyexample\",{\"_index\":255,\"name\":{\"494\":{},\"545\":{}},\"comment\":{}}],[\"replaced\",{\"_index\":221,\"name\":{\"451\":{}},\"comment\":{}}],[\"replaceedgedefinition\",{\"_index\":630,\"name\":{\"1264\":{}},\"comment\":{}}],[\"replaceedgedefinitionoptions\",{\"_index\":616,\"name\":{\"1226\":{}},\"comment\":{}}],[\"replaceproperties\",{\"_index\":725,\"name\":{\"1499\":{}},\"comment\":{}}],[\"replaceservice\",{\"_index\":540,\"name\":{\"1059\":{}},\"comment\":{}}],[\"replaceserviceconfiguration\",{\"_index\":545,\"name\":{\"1064\":{}},\"comment\":{}}],[\"replaceservicedependencies\",{\"_index\":548,\"name\":{\"1067\":{}},\"comment\":{}}],[\"replaceserviceoptions\",{\"_index\":428,\"name\":{\"832\":{}},\"comment\":{}}],[\"replaceuser\",{\"_index\":517,\"name\":{\"1034\":{}},\"comment\":{}}],[\"replicationfactor\",{\"_index\":134,\"name\":{\"256\":{},\"282\":{},\"309\":{},\"802\":{},\"811\":{},\"1203\":{},\"1214\":{}},\"comment\":{}}],[\"request\",{\"_index\":681,\"name\":{\"1391\":{}},\"comment\":{}}],[\"requestinterceptors\",{\"_index\":287,\"name\":{\"579\":{}},\"comment\":{}}],[\"requestoptions\",{\"_index\":290,\"name\":{\"585\":{}},\"comment\":{}}],[\"required\",{\"_index\":443,\"name\":{\"883\":{},\"893\":{},\"902\":{},\"1151\":{},\"1157\":{}},\"comment\":{}}],[\"response\",{\"_index\":579,\"name\":{\"1110\":{},\"1119\":{}},\"comment\":{}}],[\"responsequeuetimesamples\",{\"_index\":308,\"name\":{\"612\":{}},\"comment\":{}}],[\"result\",{\"_index\":459,\"name\":{\"919\":{}},\"comment\":{}}],[\"retryonconflict\",{\"_index\":295,\"name\":{\"592\":{},\"607\":{},\"681\":{}},\"comment\":{}}],[\"returnnew\",{\"_index\":164,\"name\":{\"334\":{},\"343\":{},\"352\":{},\"1174\":{},\"1181\":{}},\"comment\":{}}],[\"returnold\",{\"_index\":165,\"name\":{\"335\":{},\"345\":{},\"354\":{},\"362\":{},\"404\":{},\"1180\":{},\"1186\":{}},\"comment\":{}}],[\"returntype\",{\"_index\":32,\"name\":{\"75\":{}},\"comment\":{}}],[\"rev\",{\"_index\":600,\"name\":{\"1168\":{},\"1177\":{},\"1184\":{}},\"comment\":{}}],[\"revision\",{\"_index\":230,\"name\":{\"468\":{},\"534\":{}},\"comment\":{}}],[\"route\",{\"_index\":481,\"name\":{\"992\":{},\"1388\":{},\"1389\":{},\"1390\":{}},\"comment\":{}}],[\"rule\",{\"_index\":123,\"name\":{\"244\":{},\"276\":{}},\"comment\":{}}],[\"rules\",{\"_index\":359,\"name\":{\"696\":{},\"708\":{},\"718\":{}},\"comment\":{}}],[\"rulesexecuted\",{\"_index\":380,\"name\":{\"731\":{},\"743\":{}},\"comment\":{}}],[\"rulesskipped\",{\"_index\":381,\"name\":{\"732\":{},\"744\":{}},\"comment\":{}}],[\"runservicescript\",{\"_index\":552,\"name\":{\"1071\":{}},\"comment\":{}}],[\"runservicetests\",{\"_index\":553,\"name\":{\"1072\":{}},\"comment\":{}}],[\"runtime\",{\"_index\":407,\"name\":{\"788\":{}},\"comment\":{}}],[\"satellites\",{\"_index\":613,\"name\":{\"1219\":{},\"1222\":{},\"1225\":{},\"1228\":{}},\"comment\":{}}],[\"satellitesyncwait\",{\"_index\":365,\"name\":{\"703\":{}},\"comment\":{}}],[\"save\",{\"_index\":240,\"name\":{\"479\":{},\"508\":{},\"1235\":{},\"1245\":{}},\"comment\":{}}],[\"saveall\",{\"_index\":241,\"name\":{\"480\":{},\"509\":{}},\"comment\":{}}],[\"scannedfull\",{\"_index\":321,\"name\":{\"626\":{}},\"comment\":{}}],[\"scannedindex\",{\"_index\":217,\"name\":{\"444\":{},\"627\":{}},\"comment\":{}}],[\"schema\",{\"_index\":130,\"name\":{\"252\":{},\"284\":{},\"304\":{}},\"comment\":{}}],[\"schemaoptions\",{\"_index\":144,\"name\":{\"274\":{}},\"comment\":{}}],[\"schemaproperties\",{\"_index\":122,\"name\":{\"241\":{}},\"comment\":{}}],[\"scripts\",{\"_index\":590,\"name\":{\"1136\":{}},\"comment\":{}}],[\"searchaliasviewdescription\",{\"_index\":719,\"name\":{\"1478\":{}},\"comment\":{}}],[\"searchaliasviewindexoptions\",{\"_index\":711,\"name\":{\"1459\":{}},\"comment\":{}}],[\"searchaliasviewpatchindexoptions\",{\"_index\":713,\"name\":{\"1466\":{}},\"comment\":{}}],[\"searchaliasviewpatchpropertiesoptions\",{\"_index\":714,\"name\":{\"1467\":{}},\"comment\":{}}],[\"searchaliasviewproperties\",{\"_index\":723,\"name\":{\"1490\":{}},\"comment\":{}}],[\"searchaliasviewpropertiesoptions\",{\"_index\":712,\"name\":{\"1463\":{}},\"comment\":{}}],[\"searchfield\",{\"_index\":649,\"name\":{\"1311\":{},\"1319\":{},\"1337\":{},\"1377\":{}},\"comment\":{}}],[\"segmentationanalyzerdescription\",{\"_index\":65,\"name\":{\"172\":{}},\"comment\":{}}],[\"segmentsbytesfloor\",{\"_index\":696,\"name\":{\"1427\":{}},\"comment\":{}}],[\"segmentsbytesmax\",{\"_index\":697,\"name\":{\"1428\":{}},\"comment\":{}}],[\"segmentsmax\",{\"_index\":698,\"name\":{\"1429\":{}},\"comment\":{}}],[\"segmentsmin\",{\"_index\":699,\"name\":{\"1430\":{}},\"comment\":{}}],[\"server\",{\"_index\":417,\"name\":{\"815\":{}},\"comment\":{}}],[\"serviceconfiguration\",{\"_index\":438,\"name\":{\"876\":{}},\"comment\":{}}],[\"serviceinfo\",{\"_index\":436,\"name\":{\"862\":{}},\"comment\":{}}],[\"servicesummary\",{\"_index\":433,\"name\":{\"854\":{}},\"comment\":{}}],[\"servicetestdefaultreport\",{\"_index\":467,\"name\":{\"942\":{}},\"comment\":{}}],[\"servicetestdefaulttest\",{\"_index\":466,\"name\":{\"936\":{}},\"comment\":{}}],[\"serviceteststats\",{\"_index\":448,\"name\":{\"903\":{}},\"comment\":{}}],[\"serviceteststreamreport\",{\"_index\":457,\"name\":{\"916\":{}},\"comment\":{}}],[\"serviceteststreamtest\",{\"_index\":454,\"name\":{\"910\":{}},\"comment\":{}}],[\"servicetestsuite\",{\"_index\":460,\"name\":{\"923\":{}},\"comment\":{}}],[\"servicetestsuitereport\",{\"_index\":462,\"name\":{\"928\":{}},\"comment\":{}}],[\"servicetestsuitetest\",{\"_index\":458,\"name\":{\"917\":{}},\"comment\":{}}],[\"servicetesttapreport\",{\"_index\":465,\"name\":{\"935\":{}},\"comment\":{}}],[\"servicetestxunitreport\",{\"_index\":464,\"name\":{\"934\":{}},\"comment\":{}}],[\"servicetestxunittest\",{\"_index\":463,\"name\":{\"933\":{}},\"comment\":{}}],[\"setresponsequeuetimesamples\",{\"_index\":486,\"name\":{\"997\":{}},\"comment\":{}}],[\"setservicedevelopmentmode\",{\"_index\":550,\"name\":{\"1069\":{}},\"comment\":{}}],[\"setup\",{\"_index\":427,\"name\":{\"831\":{},\"838\":{},\"847\":{}},\"comment\":{}}],[\"setuseraccesslevel\",{\"_index\":520,\"name\":{\"1037\":{}},\"comment\":{}}],[\"sharding\",{\"_index\":414,\"name\":{\"801\":{},\"810\":{}},\"comment\":{}}],[\"shardingstrategy\",{\"_index\":105,\"name\":{\"216\":{},\"257\":{},\"311\":{}},\"comment\":{}}],[\"shardkeys\",{\"_index\":133,\"name\":{\"255\":{},\"308\":{}},\"comment\":{}}],[\"silent\",{\"_index\":163,\"name\":{\"333\":{},\"342\":{},\"351\":{},\"363\":{},\"405\":{}},\"comment\":{}}],[\"simplequeryalloptions\",{\"_index\":184,\"name\":{\"384\":{}},\"comment\":{}}],[\"simplequerybyexampleoptions\",{\"_index\":180,\"name\":{\"378\":{}},\"comment\":{}}],[\"simplequeryfulltextoptions\",{\"_index\":190,\"name\":{\"407\":{}},\"comment\":{}}],[\"simplequerylisttype\",{\"_index\":106,\"name\":{\"217\":{}},\"comment\":{}}],[\"simplequeryremovebyexampleoptions\",{\"_index\":187,\"name\":{\"397\":{}},\"comment\":{}}],[\"simplequeryremovebyexampleresult\",{\"_index\":219,\"name\":{\"446\":{}},\"comment\":{}}],[\"simplequeryremovebykeysoptions\",{\"_index\":189,\"name\":{\"402\":{}},\"comment\":{}}],[\"simplequeryremovebykeysresult\",{\"_index\":223,\"name\":{\"455\":{}},\"comment\":{}}],[\"simplequeryreplacebyexampleoptions\",{\"_index\":188,\"name\":{\"401\":{}},\"comment\":{}}],[\"simplequeryreplacebyexampleresult\",{\"_index\":220,\"name\":{\"449\":{}},\"comment\":{}}],[\"simplequeryupdatebyexampleoptions\",{\"_index\":186,\"name\":{\"391\":{}},\"comment\":{}}],[\"simplequeryupdatebyexampleresult\",{\"_index\":222,\"name\":{\"452\":{}},\"comment\":{}}],[\"singleexplainresult\",{\"_index\":378,\"name\":{\"724\":{}},\"comment\":{}}],[\"singleservicedependency\",{\"_index\":445,\"name\":{\"885\":{}},\"comment\":{}}],[\"skip\",{\"_index\":181,\"name\":{\"380\":{},\"386\":{},\"411\":{}},\"comment\":{}}],[\"skipinaccessiblecollections\",{\"_index\":364,\"name\":{\"702\":{}},\"comment\":{}}],[\"slowquerythreshold\",{\"_index\":402,\"name\":{\"772\":{},\"780\":{}},\"comment\":{}}],[\"smartgraphattribute\",{\"_index\":137,\"name\":{\"260\":{},\"314\":{},\"1207\":{},\"1217\":{}},\"comment\":{}}],[\"smartjoinattribute\",{\"_index\":136,\"name\":{\"259\":{},\"313\":{}},\"comment\":{}}],[\"sort\",{\"_index\":195,\"name\":{\"416\":{}},\"comment\":{}}],[\"sparse\",{\"_index\":636,\"name\":{\"1277\":{},\"1364\":{}},\"comment\":{}}],[\"started\",{\"_index\":408,\"name\":{\"789\":{}},\"comment\":{}}],[\"state\",{\"_index\":371,\"name\":{\"714\":{},\"790\":{}},\"comment\":{}}],[\"stats\",{\"_index\":216,\"name\":{\"442\":{},\"618\":{},\"729\":{},\"741\":{},\"930\":{},\"944\":{}},\"comment\":{}}],[\"status\",{\"_index\":116,\"name\":{\"232\":{},\"1409\":{}},\"comment\":{}}],[\"statusstring\",{\"_index\":127,\"name\":{\"249\":{}},\"comment\":{}}],[\"stemanalyzerdescription\",{\"_index\":61,\"name\":{\"168\":{}},\"comment\":{}}],[\"stemming\",{\"_index\":22,\"name\":{\"50\":{}},\"comment\":{}}],[\"step\",{\"_index\":692,\"name\":{\"1416\":{}},\"comment\":{}}],[\"stopwords\",{\"_index\":20,\"name\":{\"47\":{},\"89\":{}},\"comment\":{}}],[\"stopwordsanalyzerdescription\",{\"_index\":68,\"name\":{\"175\":{}},\"comment\":{}}],[\"stopwordspath\",{\"_index\":21,\"name\":{\"48\":{}},\"comment\":{}}],[\"storedvalues\",{\"_index\":640,\"name\":{\"1282\":{},\"1338\":{}},\"comment\":{}}],[\"storevalues\",{\"_index\":705,\"name\":{\"1443\":{},\"1487\":{}},\"comment\":{}}],[\"strategy\",{\"_index\":200,\"name\":{\"421\":{}},\"comment\":{}}],[\"stream\",{\"_index\":185,\"name\":{\"390\":{},\"690\":{},\"791\":{}},\"comment\":{}}],[\"subnodes\",{\"_index\":386,\"name\":{\"749\":{}},\"comment\":{}}],[\"suites\",{\"_index\":461,\"name\":{\"926\":{},\"931\":{}},\"comment\":{}}],[\"swaggerjson\",{\"_index\":468,\"name\":{\"949\":{}},\"comment\":{}}],[\"syncbyrevision\",{\"_index\":140,\"name\":{\"263\":{}},\"comment\":{}}],[\"syscall\",{\"_index\":576,\"name\":{\"1105\":{}},\"comment\":{}}],[\"systemerror\",{\"_index\":574,\"name\":{\"1102\":{}},\"comment\":{}}],[\"teardown\",{\"_index\":429,\"name\":{\"839\":{},\"848\":{},\"852\":{}},\"comment\":{}}],[\"tests\",{\"_index\":449,\"name\":{\"905\":{},\"927\":{},\"932\":{},\"945\":{},\"1137\":{}},\"comment\":{}}],[\"textanalyzerdescription\",{\"_index\":64,\"name\":{\"171\":{}},\"comment\":{}}],[\"threshold\",{\"_index\":43,\"name\":{\"114\":{},\"1423\":{}},\"comment\":{}}],[\"thumbnail\",{\"_index\":594,\"name\":{\"1144\":{}},\"comment\":{}}],[\"tierconsolidationpolicy\",{\"_index\":695,\"name\":{\"1424\":{}},\"comment\":{}}],[\"timeout\",{\"_index\":282,\"name\":{\"573\":{},\"594\":{},\"680\":{}},\"comment\":{}}],[\"title\",{\"_index\":441,\"name\":{\"881\":{},\"889\":{},\"898\":{},\"912\":{},\"920\":{},\"925\":{},\"938\":{},\"953\":{}},\"comment\":{}}],[\"to\",{\"_index\":606,\"name\":{\"1191\":{},\"1196\":{}},\"comment\":{}}],[\"tojson\",{\"_index\":580,\"name\":{\"1111\":{},\"1121\":{}},\"comment\":{}}],[\"token\",{\"_index\":279,\"name\":{\"569\":{}},\"comment\":{}}],[\"top_k\",{\"_index\":42,\"name\":{\"113\":{},\"122\":{}},\"comment\":{}}],[\"toprefix\",{\"_index\":175,\"name\":{\"369\":{}},\"comment\":{}}],[\"trackbindvars\",{\"_index\":403,\"name\":{\"773\":{},\"781\":{}},\"comment\":{}}],[\"tracklistpositions\",{\"_index\":653,\"name\":{\"1320\":{},\"1348\":{},\"1442\":{},\"1486\":{}},\"comment\":{}}],[\"trackslowqueries\",{\"_index\":404,\"name\":{\"774\":{},\"782\":{}},\"comment\":{}}],[\"transaction\",{\"_index\":524,\"name\":{\"1041\":{},\"1398\":{},\"1410\":{}},\"comment\":{}}],[\"transactionabortoptions\",{\"_index\":688,\"name\":{\"1403\":{}},\"comment\":{}}],[\"transactioncollections\",{\"_index\":344,\"name\":{\"664\":{}},\"comment\":{}}],[\"transactioncommitoptions\",{\"_index\":687,\"name\":{\"1400\":{}},\"comment\":{}}],[\"transactiondetails\",{\"_index\":369,\"name\":{\"711\":{}},\"comment\":{}}],[\"transactionoptions\",{\"_index\":348,\"name\":{\"669\":{}},\"comment\":{}}],[\"transactions\",{\"_index\":527,\"name\":{\"1044\":{}},\"comment\":{}}],[\"transactionstatus\",{\"_index\":689,\"name\":{\"1406\":{}},\"comment\":{}}],[\"traversal\",{\"_index\":267,\"name\":{\"526\":{},\"1266\":{}},\"comment\":{}}],[\"traversaloptions\",{\"_index\":192,\"name\":{\"412\":{}},\"comment\":{}}],[\"truncate\",{\"_index\":234,\"name\":{\"472\":{},\"538\":{}},\"comment\":{}}],[\"ttl\",{\"_index\":183,\"name\":{\"383\":{},\"389\":{},\"687\":{}},\"comment\":{}}],[\"ttlindex\",{\"_index\":675,\"name\":{\"1370\":{}},\"comment\":{}}],[\"type\",{\"_index\":6,\"name\":{\"6\":{},\"11\":{},\"16\":{},\"23\":{},\"32\":{},\"41\":{},\"58\":{},\"66\":{},\"78\":{},\"85\":{},\"93\":{},\"100\":{},\"108\":{},\"117\":{},\"125\":{},\"129\":{},\"137\":{},\"150\":{},\"154\":{},\"233\":{},\"236\":{},\"243\":{},\"296\":{},\"748\":{},\"878\":{},\"1149\":{},\"1163\":{},\"1273\":{},\"1286\":{},\"1293\":{},\"1300\":{},\"1334\":{},\"1422\":{},\"1426\":{}},\"comment\":{}}],[\"uninstallservice\",{\"_index\":542,\"name\":{\"1061\":{}},\"comment\":{}}],[\"uninstallserviceoptions\",{\"_index\":432,\"name\":{\"850\":{}},\"comment\":{}}],[\"unique\",{\"_index\":635,\"name\":{\"1276\":{},\"1304\":{},\"1365\":{}},\"comment\":{}}],[\"uniqueness\",{\"_index\":202,\"name\":{\"423\":{}},\"comment\":{}}],[\"unloaded\",{\"_index\":99,\"name\":{\"210\":{}},\"comment\":{}}],[\"unloading\",{\"_index\":101,\"name\":{\"212\":{}},\"comment\":{}}],[\"update\",{\"_index\":244,\"name\":{\"483\":{},\"512\":{},\"1237\":{},\"1247\":{}},\"comment\":{}}],[\"updateall\",{\"_index\":245,\"name\":{\"484\":{},\"513\":{}},\"comment\":{}}],[\"updatebyexample\",{\"_index\":256,\"name\":{\"495\":{},\"546\":{}},\"comment\":{}}],[\"updated\",{\"_index\":213,\"name\":{\"436\":{},\"454\":{}},\"comment\":{}}],[\"updateproperties\",{\"_index\":724,\"name\":{\"1498\":{}},\"comment\":{}}],[\"updateserviceconfiguration\",{\"_index\":546,\"name\":{\"1065\":{}},\"comment\":{}}],[\"updateservicedependencies\",{\"_index\":549,\"name\":{\"1068\":{}},\"comment\":{}}],[\"updateuser\",{\"_index\":516,\"name\":{\"1033\":{}},\"comment\":{}}],[\"upgradeservice\",{\"_index\":541,\"name\":{\"1060\":{}},\"comment\":{}}],[\"upgradeserviceoptions\",{\"_index\":431,\"name\":{\"841\":{}},\"comment\":{}}],[\"url\",{\"_index\":302,\"name\":{\"602\":{}},\"comment\":{}}],[\"usebasicauth\",{\"_index\":487,\"name\":{\"998\":{}},\"comment\":{}}],[\"usebearerauth\",{\"_index\":488,\"name\":{\"999\":{}},\"comment\":{}}],[\"user\",{\"_index\":472,\"name\":{\"962\":{},\"967\":{}},\"comment\":{}}],[\"useraccessleveloptions\",{\"_index\":475,\"name\":{\"976\":{}},\"comment\":{}}],[\"userdatabases\",{\"_index\":495,\"name\":{\"1009\":{}},\"comment\":{}}],[\"username\",{\"_index\":276,\"name\":{\"565\":{},\"794\":{}},\"comment\":{}}],[\"useroptions\",{\"_index\":474,\"name\":{\"971\":{}},\"comment\":{}}],[\"users\",{\"_index\":413,\"name\":{\"800\":{}},\"comment\":{}}],[\"usexdr\",{\"_index\":285,\"name\":{\"577\":{}},\"comment\":{}}],[\"validationlevel\",{\"_index\":107,\"name\":{\"218\":{}},\"comment\":{}}],[\"variables\",{\"_index\":374,\"name\":{\"720\":{}},\"comment\":{}}],[\"version\",{\"_index\":419,\"name\":{\"817\":{},\"858\":{},\"867\":{},\"891\":{},\"900\":{},\"955\":{},\"991\":{},\"1145\":{},\"1155\":{}},\"comment\":{}}],[\"versioninfo\",{\"_index\":416,\"name\":{\"813\":{}},\"comment\":{}}],[\"vertex\",{\"_index\":619,\"name\":{\"1234\":{}},\"comment\":{}}],[\"vertexcollection\",{\"_index\":622,\"name\":{\"1255\":{}},\"comment\":{}}],[\"vertexcollections\",{\"_index\":624,\"name\":{\"1257\":{}},\"comment\":{}}],[\"vertexexists\",{\"_index\":618,\"name\":{\"1233\":{}},\"comment\":{}}],[\"vertices\",{\"_index\":203,\"name\":{\"425\":{}},\"comment\":{}}],[\"view\",{\"_index\":505,\"name\":{\"1021\":{},\"1417\":{},\"1491\":{}},\"comment\":{}}],[\"viewdescription\",{\"_index\":717,\"name\":{\"1476\":{}},\"comment\":{}}],[\"viewpatchpropertiesoptions\",{\"_index\":703,\"name\":{\"1435\":{}},\"comment\":{}}],[\"viewproperties\",{\"_index\":720,\"name\":{\"1479\":{}},\"comment\":{}}],[\"viewpropertiesoptions\",{\"_index\":702,\"name\":{\"1434\":{}},\"comment\":{}}],[\"views\",{\"_index\":509,\"name\":{\"1025\":{}},\"comment\":{}}],[\"visitor\",{\"_index\":196,\"name\":{\"417\":{}},\"comment\":{}}],[\"waitforpropagation\",{\"_index\":484,\"name\":{\"995\":{}},\"comment\":{}}],[\"waitforsync\",{\"_index\":128,\"name\":{\"250\":{},\"281\":{},\"302\":{},\"332\":{},\"341\":{},\"350\":{},\"361\":{},\"371\":{},\"394\":{},\"399\":{},\"406\":{},\"673\":{},\"1173\":{},\"1178\":{},\"1185\":{},\"1211\":{}},\"comment\":{}}],[\"waitforsyncreplication\",{\"_index\":153,\"name\":{\"305\":{}},\"comment\":{}}],[\"warnings\",{\"_index\":311,\"name\":{\"615\":{},\"728\":{},\"740\":{}},\"comment\":{}}],[\"withcredentials\",{\"_index\":286,\"name\":{\"578\":{}},\"comment\":{}}],[\"withdata\",{\"_index\":148,\"name\":{\"290\":{}},\"comment\":{}}],[\"withrevisions\",{\"_index\":147,\"name\":{\"289\":{}},\"comment\":{}}],[\"write\",{\"_index\":346,\"name\":{\"667\":{}},\"comment\":{}}],[\"writebufferactive\",{\"_index\":667,\"name\":{\"1355\":{}},\"comment\":{}}],[\"writebufferidle\",{\"_index\":666,\"name\":{\"1354\":{}},\"comment\":{}}],[\"writebuffersizemax\",{\"_index\":668,\"name\":{\"1356\":{}},\"comment\":{}}],[\"writeconcern\",{\"_index\":131,\"name\":{\"253\":{},\"283\":{},\"310\":{},\"803\":{},\"812\":{},\"1204\":{},\"1215\":{}},\"comment\":{}}],[\"writeoperation\",{\"_index\":108,\"name\":{\"219\":{}},\"comment\":{}}],[\"writesexecuted\",{\"_index\":319,\"name\":{\"624\":{}},\"comment\":{}}],[\"writesignored\",{\"_index\":320,\"name\":{\"625\":{}},\"comment\":{}}],[\"xhr\",{\"_index\":284,\"name\":{\"576\":{}},\"comment\":{}}],[\"xhroptions\",{\"_index\":280,\"name\":{\"570\":{}},\"comment\":{}}],[\"zkdindex\",{\"_index\":676,\"name\":{\"1371\":{}},\"comment\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file diff --git a/devel/classes/analyzer.Analyzer.html b/devel/classes/analyzer.Analyzer.html index 7020513a3..2826526be 100644 --- a/devel/classes/analyzer.Analyzer.html +++ b/devel/classes/analyzer.Analyzer.html @@ -24,7 +24,7 @@

Hierarchy

+
  • Defined in analyzer.ts:844
  • @@ -53,7 +53,7 @@
    +
  • Defined in analyzer.ts:870
  • Methods

    @@ -81,7 +81,7 @@
    options: Opt

    Returns Promise<Options extends CreateIdentityAnalyzerOptions ? IdentityAnalyzerDescription : Options extends CreateDelimiterAnalyzerOptions ? DelimiterAnalyzerDescription : Options extends CreateStemAnalyzerOptions ? StemAnalyzerDescription : Options extends CreateNormAnalyzerOptions ? NormAnalyzerDescription : Options extends CreateNgramAnalyzerOptions ? NgramAnalyzerDescription : Options extends CreateTextAnalyzerOptions ? TextAnalyzerDescription : Options extends CreateSegmentationAnalyzerOptions ? SegmentationAnalyzerDescription : Options extends CreateAqlAnalyzerOptions ? AqlAnalyzerDescription : Options extends CreatePipelineAnalyzerOptions ? PipelineAnalyzerDescription : Options extends CreateStopwordsAnalyzerOptions ? StopwordsAnalyzerDescription : Options extends CreateCollationAnalyzerOptions ? CollationAnalyzerDescription : Options extends CreateMinHashAnalyzerOptions ? MinHashAnalyzerDescription : Options extends CreateClassificationAnalyzerOptions ? ClassificationAnalyzerDescription : Options extends CreateNearestNeighborsAnalyzerOptions ? NearestNeighborsAnalyzerDescription : Options extends CreateGeoJsonAnalyzerOptions ? GeoJsonAnalyzerDescription : Options extends CreateGeoPointAnalyzerOptions ? GeoPointAnalyzerDescription : Options extends CreateGeoS2AnalyzerOptions ? GeoS2AnalyzerDescription : AnalyzerDescription>

    +
  • Defined in analyzer.ts:929
  • +
  • Defined in analyzer.ts:989
  • +
  • Defined in analyzer.ts:885
  • +
  • Defined in analyzer.ts:908
  • Returns Promise<R[]>

    +
  • Defined in cursor.ts:1010
  • Returns Promise<boolean>

    +
  • Defined in cursor.ts:920
    • @@ -258,7 +258,7 @@

      Example

      const
       

      Returns Promise<void>

    +
  • Defined in cursor.ts:1170
  • Returns Promise<R[]>

    +
  • Defined in cursor.ts:959
    • @@ -326,7 +326,7 @@

      Example

      const
       

      Returns Promise<undefined | T>

    +
  • Defined in cursor.ts:873
    • @@ -388,7 +388,7 @@
      initialValue: Returns Promise<R>
      +
    • Defined in cursor.ts:1090
  • Depletes the cursor by applying the reducer function to each item in @@ -437,7 +437,7 @@

    self: Returns R
  • Returns Promise<undefined | R>

    +
  • Defined in cursor.ts:1123
  • Returns Promise<R[]>

    +
  • Defined in cursor.ts:538
  • Returns Promise<boolean>

    +
  • Defined in cursor.ts:438
    • @@ -270,7 +270,7 @@

      Example

      const
       

      Returns Promise<void>

    +
  • Defined in cursor.ts:717
    • @@ -285,7 +285,7 @@

      Example

      const
       

      Returns Promise<void>

    +
  • Defined in cursor.ts:330
  • Returns Promise<R[]>

    +
  • Defined in cursor.ts:481
    • @@ -355,7 +355,7 @@

      Example

      const
       

      Returns Promise<undefined | T[]>

    +
  • Defined in cursor.ts:377
    • @@ -418,7 +418,7 @@
      initialValue: Returns Promise<R>
      +
    • Defined in cursor.ts:625
  • Depletes the cursor by applying the reducer function to each batch in @@ -467,7 +467,7 @@

    self: Returns R
  • Returns Promise<undefined | R>

    +
  • Defined in cursor.ts:666
  • Constructors

    @@ -171,7 +150,7 @@
    Optional config: Returns Database
    +
  • Defined in database.ts:1458
  • Creates a new Database instance with its own connection pool.

    @@ -192,7 +171,7 @@
    url: stringOptional name: string
  • Returns Database

    +
  • Defined in database.ts:1473
  • Accessors

    @@ -204,7 +183,7 @@
    +
  • Defined in database.ts:1513
  • +
  • Defined in database.ts:1713
  • Methods

    @@ -244,7 +223,7 @@
    overwrite: booleanReturns Promise<void>
    +
  • Defined in database.ts:1627
    • @@ -263,7 +242,7 @@

      Parameters

      analyzerName: string

    Returns Analyzer

    +
  • Defined in database.ts:2501
    • @@ -278,7 +257,7 @@

      Example

      const
       

      Returns Promise<Analyzer[]>

    +
  • Defined in database.ts:2562
  • Begins a new streaming transaction for the given collections, then returns @@ -335,7 +314,7 @@

    Optional options: Returns Promise<Transaction>
  • +
  • Defined in database.ts:3382
  • Begins a new streaming transaction for the given collections, then returns @@ -352,17 +331,14 @@

    Example

    constParameters
     

    Returns Promise<Transaction>

  • +
  • Defined in database.ts:3412
    • @@ -376,7 +352,7 @@

      Example

      const
       

      Returns Promise<void>

    +
  • Defined in database.ts:3910
  • Returns Promise<ArangoApiResponse<Record<string, AccessLevel>>>

    +
  • Defined in database.ts:3032
    • @@ -431,7 +407,7 @@

      Example

      const
       

      Returns void

    +
  • Defined in database.ts:1663
    • @@ -467,7 +443,7 @@
      collectionName: string

    Returns DocumentCollection<T> & EdgeCollection<T>

    +
  • Defined in database.ts:2085
  • +
  • Defined in database.ts:2299
    • @@ -521,25 +497,7 @@
      replace: booleanReturns Promise<void>
    -
    - -
      - -
    • -

      Computes a set of move shard operations to rebalance the cluster.

      - -

      Example

      const db = new Database();
      const result = await db.computerClusterRebalance({
      moveLeaders: true,
      moveFollowers: true
      });
      if (result.moves.length) {
      await db.executeClusterRebalance(result.moves);
      } -
      -
      -
      -

      Parameters

      -
      -

      Returns Promise<ClusterRebalanceResult>

    +
  • Defined in database.ts:5140
  • +
  • Defined in database.ts:2523
  • Creates a new edge collection with the given collectionName and @@ -632,7 +590,7 @@

    options: Returns Promise<EdgeCollection<T>>
  • +
  • Defined in database.ts:2156
    • @@ -657,7 +615,7 @@
      Optional options: Returns Promise<Database>
      +
    • Defined in database.ts:1900
  • Creates a new database with the given databaseName with the given @@ -679,7 +637,7 @@

    users: Returns Promise<Database>
  • +
  • Defined in database.ts:1918
  • +
  • Defined in database.ts:2199
    • @@ -751,7 +709,7 @@
      isDeterministic: boolean

    Returns Promise<ArangoApiResponse<{
        isNewlyCreated: boolean;
    }>>

    +
  • Defined in database.ts:4000
  • -
    - -
      - -
    • -

      (Enterprise Edition only.) Creates a hot backup of the entire ArangoDB -deployment including all databases, collections, etc.

      -

      Returns an object describing the backup result.

      - -

      Example

      const info = await db.createHotBackup();
      // a hot backup has been created -
      -
      -
      -

      Parameters

      -
      -

      Returns Promise<HotBackupResult>

    -
    - -
      - -
    • -

      Creates an async job by executing the given callback function. The first -database request performed by the callback will be marked for asynchronous -execution and its result will be made available as an async job.

      -

      Returns a Job instance that can be used to retrieve the result -of the callback function once the request has been executed.

      - -

      Example

      const db = new Database();
      const job = await db.createJob(() => db.collections());
      while (!job.isLoaded) {
      await timeout(1000);
      await job.load();
      }
      // job.result is a list of Collection instances -
      -
      -
      -

      Type Parameters

      -
        -
      • -

        T

      -
      -

      Parameters

      -
        -
      • -
        callback: (() => Promise<T>)
        -

        Callback function to execute as an async job.

        -
        -
          -
        • -
            -
          • (): Promise<T>
          • -
          • -

            Returns Promise<T>

      -

      Returns Promise<Job<T>>

    +
  • Defined in database.ts:2336
    • @@ -858,7 +759,7 @@
      passwd: string

    Returns Promise<ArangoApiResponse<ArangoUser>>

    +
  • Defined in database.ts:2619
  • Creates a new ArangoDB user with the given options.

    @@ -879,7 +780,7 @@
    options: Returns Promise<ArangoApiResponse<ArangoUser>>
  • +
  • Defined in database.ts:2636
  • +
  • Defined in database.ts:2416
    • @@ -926,7 +827,7 @@
      databaseName: string

    Returns Database

    +
  • Defined in database.ts:1841
    • @@ -942,58 +843,7 @@

      Example

      const
       

      Returns Promise<Database[]>

    -
    - -
      - -
    • -

      Deletes the results of all completed async jobs.

      -
      -

      Returns Promise<void>

    -
    - -
      - -
    • -

      Deletes the results of all completed async jobs created before the given -threshold.

      - -

      Example

      const db = new Database();
      const ONE_WEEK = 7 * 24 * 60 * 60 * 1000;
      await db.deleteExpiredJobResults(Date.now() - ONE_WEEK);
      // all job results older than a week have been deleted -
      -
      -
      -

      Parameters

      -
        -
      • -
        threshold: number
        -

        The expiration timestamp in milliseconds.

        -
      -

      Returns Promise<void>

    -
    - -
      - -
    • -

      (Enterprise Edition only.) Deletes a local hot backup.

      - -

      Example

      await db.deleteHotBackup("2023-09-19T15.38.21Z_example");
      // the backup has been deleted -
      -
      -
      -

      Parameters

      -
        -
      • -
        id: string
        -

        The ID of the backup to delete.

        -
      -

      Returns Promise<void>

    +
  • Defined in database.ts:1991
    • @@ -1014,7 +864,7 @@
      mount: string

    Returns Promise<Blob | Buffer>

    +
  • Defined in database.ts:5111
    • @@ -1034,7 +884,7 @@
      databaseName: string

    Returns Promise<boolean>

    +
  • Defined in database.ts:2033
    • @@ -1060,25 +910,7 @@
      group: booleanReturns Promise<ArangoApiResponse<{
          deletedCount: number;
      }>>
    -
    - -
      - -
    • -

      Executes the given cluster move shard operations.

      - -

      Example

      const db = new Database();
      const result = await db.computerClusterRebalance({
      moveLeaders: true,
      moveFollowers: true
      });
      if (result.moves.length) {
      await db.executeClusterRebalance(result.moves);
      } -
      -
      -
      -

      Parameters

      -
      -

      Returns Promise<unknown>

    +
  • Defined in database.ts:4027
  • Performs a server-side transaction and returns its return value.

    @@ -1159,7 +991,7 @@
    Optional options: Returns Promise<any>
  • +
  • Defined in database.ts:3224
  • Performs a server-side transaction and returns its return value.

    @@ -1197,7 +1029,7 @@
    Optional options: Returns Promise<any>
  • +
  • Defined in database.ts:3273
    • @@ -1210,11 +1042,11 @@

      Example

      const
       

      Returns Promise<boolean>

    +
  • Defined in database.ts:1872
  • Explains a database query using the given query and bindVars.

    @@ -1317,7 +1149,7 @@
    Optional options: Returns Promise<ArangoApiResponse<MultiExplainResult>>
  • +
  • Defined in database.ts:3739
    • @@ -1330,76 +1162,7 @@

      Example

      const
       

      Returns Promise<DatabaseInfo>

    -
    - -
      - -
    • -

      Computes the current cluster imbalance.

      - -

      Example

      const db = new Database();
      const imbalance = await db.getClusterImbalance(); -
      -
      -

      Returns Promise<ClusterRebalanceState>

    -
    - -
      - -
    • -

      Retrieves the log messages from the server's global log.

      - -

      Example

      const log = await db.getLogEntries();
      for (let i = 0; i < log.totalAmount; i++) {
      console.log(`${
      new Date(log.timestamp[i] * 1000).toISOString()
      } - [${LogLevel[log.level[i]]}] ${log.text[i]} (#${log.lid[i]})`);
      } -
      -
      -
      -

      Parameters

      -
      -

      Returns Promise<LogEntries>

    -
    - -
      - -
    • -

      Retrieves the server's current log level for each topic.

      - -

      Example

      const levels = await db.getLogLevel();
      console.log(levels.request); // log level for incoming requests -
      -
      -

      Returns Promise<Record<string, LogLevelSetting>>

    -
    - -
      - -
    • -

      Retrieves the log messages from the server's global log.

      - -

      Deprecated

      This endpoint has been deprecated in ArangoDB 3.8. -Use getLogEntries instead.

      - -

      Example

      const messages = await db.getLogMessages();
      for (const m of messages) {
      console.log(`${m.date} - [${m.level}] ${m.message} (#${m.id})`);
      } -
      -
      -
      -

      Parameters

      -
      -

      Returns Promise<LogMessage[]>

    +
  • Defined in database.ts:1855
    • @@ -1419,7 +1182,7 @@
      mount: string

    Returns Promise<ServiceInfo>

    +
  • Defined in database.ts:4260
    • @@ -1448,7 +1211,7 @@
      Optional minimal: Returns Promise<Record<string, ServiceConfiguration>>
      +
    • Defined in database.ts:4288
  • Retrieves information about the service's configuration options and their @@ -1474,7 +1237,7 @@

    minimal: true
  • Returns Promise<Record<string, any>>

    +
  • Defined in database.ts:4313
  • Retrieves information about the service's dependencies and their current @@ -1529,7 +1292,7 @@

    minimal: true
  • Returns Promise<Record<string, string | string[]>>

    +
  • Defined in database.ts:4518
    • @@ -1550,7 +1313,7 @@
      mount: string

    Returns Promise<SwaggerJson>

    +
  • Defined in database.ts:5091
    • @@ -1571,7 +1334,7 @@
      mount: string

    Returns Promise<undefined | string>

    +
  • Defined in database.ts:5071
    • @@ -1591,7 +1354,7 @@
      username: string

    Returns Promise<ArangoApiResponse<ArangoUser>>

    +
  • Defined in database.ts:2599
  • Returns Promise<AccessLevel>

    +
  • Defined in database.ts:2835
    • @@ -1654,7 +1417,7 @@
      Optional full: Returns Promise<Record<string, AccessLevel>>
      +
    • Defined in database.ts:3077
  • Fetches an object mapping names of databases to the access level of the @@ -1677,7 +1440,7 @@

    full: true
  • Returns Promise<Record<string, {
        collections: Record<string, "undefined" | AccessLevel>;
        permission: AccessLevel;
    }>>

    +
  • Defined in database.ts:3101
    • @@ -1698,7 +1461,7 @@
      graphName: string

    Returns Graph

    +
  • Defined in database.ts:2320
    • @@ -1713,7 +1476,7 @@

      Example

      const
       

      Returns Promise<Graph[]>

    +
  • Defined in database.ts:2376
  • -
    - -
      - -
    • -

      Returns a Job instance for the given jobId.

      - -

      Example

      const db = new Database();
      const job = db.job("12345"); -
      -
      -
      -

      Parameters

      -
        -
      • -
        jobId: string
        -

        ID of the async job.

        -
      -

      Returns Job<any>

    +
  • Defined in database.ts:4096
    • @@ -1788,7 +1531,7 @@
      queryId: string

    Returns Promise<void>

    +
  • Defined in database.ts:3940
    • @@ -1803,7 +1546,7 @@

      Example

      const
       

      Returns Promise<AnalyzerDescription[]>

    +
  • Defined in database.ts:2545
    • @@ -1828,20 +1571,7 @@
      excludeSystem: booleanReturns Promise<CollectionMetadata[]>
    -
    - -
      - -
    • -

      Returns a list of the IDs of all currently available completed async jobs.

      - -

      Example

      const db = new Database();
      const completedJobs = await db.listCompletedJobs();
      console.log(completedJobs); // e.g. ["12345", "67890"] -
      -
      -

      Returns Promise<string[]>

    +
  • Defined in database.ts:2259
    • @@ -1856,7 +1586,7 @@

      Example

      const
       

      Returns Promise<string[]>

    +
  • Defined in database.ts:1952
    • @@ -1869,7 +1599,7 @@

      Example

      const
       

      Returns Promise<AqlUserFunction[]>

    +
  • Defined in database.ts:3962
    • @@ -1884,42 +1614,7 @@

      Example

      const
       

      Returns Promise<GraphInfo[]>

    -
    - -
      - -
    • -

      (Enterprise Edition only.) Retrieves a list of all locally found hot -backups.

      - -

      Example

      const backups = await db.listHotBackups();
      for (const backup of backups) {
      console.log(backup.id);
      } -
      -
      -
      -

      Parameters

      -
        -
      • -
        Optional id: string | string[]
        -

        If specified, only the backup with the given ID will be -returned.

        -
      -

      Returns Promise<HotBackupList>

    -
    - -
      - -
    • -

      Returns a list of the IDs of all currently pending async jobs.

      - -

      Example

      const db = new Database();
      const pendingJobs = await db.listPendingJobs();
      console.log(pendingJobs); // e.g. ["12345", "67890"] -
      -
      -

      Returns Promise<string[]>

    +
  • Defined in database.ts:2359
    • @@ -1933,7 +1628,7 @@

      Example

      const
       

      Returns Promise<QueryInfo[]>

    +
  • Defined in database.ts:3871
    • @@ -1954,7 +1649,7 @@
      mount: string

    Returns Promise<Record<string, string>>

    +
  • Defined in database.ts:4736
    • @@ -1977,7 +1672,7 @@
      excludeSystem: booleanReturns Promise<ServiceSummary[]>
    +
  • Defined in database.ts:4057
    • @@ -1992,7 +1687,7 @@

      Example

      const
       

      Returns Promise<QueryInfo[]>

    +
  • Defined in database.ts:3891
    • @@ -2007,7 +1702,7 @@

      Example

      const
       

      Returns Promise<TransactionDetails[]>

    +
  • Defined in database.ts:3452
    • @@ -2023,7 +1718,7 @@

      Example

      const
       

      Returns Promise<string[]>

    +
  • Defined in database.ts:1970
    • @@ -2037,7 +1732,7 @@

      Example

      const
       

      Returns Promise<ArangoUser[]>

    +
  • Defined in database.ts:2580
    • @@ -2052,7 +1747,7 @@

      Example

      const
       

      Returns Promise<ViewDescription[]>

    +
  • Defined in database.ts:2465
    • @@ -2078,11 +1773,11 @@
      password: stringReturns Promise<string>
    +
  • Defined in database.ts:1783
    • - +
    • Parses the given query and returns the result.

      See the aql template string handler for information about how @@ -2096,27 +1791,24 @@

      Example

      constParameters
       
      • -
        query: string | AqlLiteral | AqlQuery<any>
        +
        query: string | AqlLiteral | AqlQuery

        An AQL query string or an object containing an AQL query string and bind parameters, e.g. the object returned from an aql template string.

      Returns Promise<ParseResult>

    +
  • Defined in database.ts:3785
    • - +
    • Performs a database query using the given query, then returns a new ArrayCursor instance for the result set.

      See the aql template string handler for information about how to create a query string without manually defining bind parameters nor having to worry about escaping variables.

      -

      Note: When executing a query in a streaming transaction using the -step method, the resulting cursor will be bound to that transaction and -you do not need to use the step method to consume it.

      Example

      const db = new Database();
      const active = true;
      const Users = db.collection("_users");

      // Using an aql template string:
      // Bind parameters are automatically extracted and arangojs collections
      // are automatically passed as collection bind parameters.
      const cursor = await db.query(aql`
      FOR u IN ${Users}
      FILTER u.authData.active == ${active}
      RETURN u.user
      `);
      // cursor is a cursor for the query result
      @@ -2133,7 +1825,7 @@

      T = any

    Parameters

    • -
      query: AqlQuery<T>
      +
      query: AqlQuery

      An object containing an AQL query string and bind parameters, e.g. the object returned from an aql template string.

    • @@ -2143,16 +1835,13 @@
      Optional options: Returns Promise<ArrayCursor<T>>
      +
    • Defined in database.ts:3525
  • Performs a database query using the given query and bindVars, then returns a new ArrayCursor instance for the result set.

    See the aql template string handler for a safer and easier alternative to passing strings directly.

    -

    Note: When executing a query in a streaming transaction using the -step method, the resulting cursor will be bound to that transaction and -you do not need to use the step method to consume it.

    Example

    const db = new Database();
    const active = true;
    const Users = db.collection("_users");

    const cursor = await db.query(
    // A normal multi-line string
    `
    FOR u IN @@users
    FILTER u.authData.active == @active
    RETURN u.user
    `,
    { active: active, "@users": Users.name }
    );
    @@ -2182,7 +1871,7 @@
    Optional options: Returns Promise<ArrayCursor<T>>
  • +
  • Defined in database.ts:3574
    • @@ -2195,7 +1884,7 @@

      Example

      const
       

      Returns Promise<QueryOptimizerRule[]>

    +
  • Defined in database.ts:3810
    • @@ -2208,7 +1897,7 @@

      Example

      const
       

      Returns Promise<QueryTracking>

      +
    • Defined in database.ts:3826
  • Modifies the query tracking properties.

    @@ -2225,26 +1914,7 @@
    options: Returns Promise<QueryTracking>
  • -
    - -
    +
  • Defined in database.ts:3844
    • @@ -2264,7 +1934,7 @@
      username: string

    Returns Promise<ArangoApiResponse<Record<string, never>>>

    +
  • Defined in database.ts:2753
    • @@ -2289,7 +1959,7 @@
      newName: string

    Returns Promise<ArangoApiResponse<CollectionMetadata>>

    +
  • Defined in database.ts:2221
    • @@ -2314,7 +1984,7 @@
      newName: string

    Returns Promise<ArangoApiResponse<ViewDescription>>

    +
  • Defined in database.ts:2437
    • @@ -2329,7 +1999,7 @@

      Example

      const
       

      Returns Promise<null | string>

    +
  • Defined in database.ts:1811
  • +
  • Defined in database.ts:4149
    • @@ -2397,7 +2067,7 @@
      Optional minimal: Returns Promise<Record<string, ServiceConfiguration & {
          warning?: string;
      }>>
      +
    • Defined in database.ts:4348
  • Replaces the configuration of the given service, discarding any existing @@ -2427,7 +2097,7 @@

    minimal: true
  • Returns Promise<{
        values: Record<string, any>;
        warnings: Record<string, string>;
    }>

    +
  • Defined in database.ts:4377
    • @@ -2458,7 +2128,7 @@
      Optional minimal: Returns Promise<Record<string, Object>>
      +
    • Defined in database.ts:4553
  • Replaces the dependencies of the given service, discarding any existing @@ -2486,7 +2156,7 @@

    minimal: true
  • Returns Promise<{
        values: Record<string, string>;
        warnings: Record<string, string>;
    }>

    +
  • Defined in database.ts:4591
  • -
    - -
      - -
    • -

      (Enteprise Edition only.) Restores a consistent local hot backup.

      -

      Returns the directory path of the restored backup.

      - -

      Example

      await db.restoreHotBackup("2023-09-19T15.38.21Z_example");
      // the backup has been restored -
      -
      -
      -

      Parameters

      -
        -
      • -
        id: string
        -

        The ID of the backup to restore.

        -
      -

      Returns Promise<string>

    +
  • Defined in database.ts:2723
    • @@ -2558,7 +2207,7 @@
      Optional headers: Returns Route
    +
  • Defined in database.ts:1563
    • @@ -2590,7 +2239,7 @@
      Optional params: Returns Promise<any>
    +
  • Defined in database.ts:4767
    • @@ -2628,7 +2277,7 @@
      Optional idiomaticOptional reporter?: "default"

    Returns Promise<ServiceTestDefaultReport>

    +
  • Defined in database.ts:4789
  • Runs the tests of a given service and returns the results using the @@ -2663,7 +2312,7 @@

    Optional idiomatic: "suite"
  • Returns Promise<ServiceTestSuiteReport>

    +
  • Defined in database.ts:4821
  • Runs the tests of a given service and returns the results using the @@ -2699,7 +2348,7 @@

    Optional idiomatic: "stream"
  • Returns Promise<ServiceTestStreamReport>

    +
  • Defined in database.ts:4854
  • Runs the tests of a given service and returns the results using the @@ -2735,7 +2384,7 @@

    Optional idiomatic: "tap"
  • Returns Promise<ServiceTestTapReport>

    +
  • Defined in database.ts:4887
  • Runs the tests of a given service and returns the results using the @@ -2771,7 +2420,7 @@

    Optional idiomatic: "xunit"
  • Returns Promise<ServiceTestXunitReport>

    +
  • Defined in database.ts:4920
  • Runs the tests of a given service and returns the results as a string @@ -2808,7 +2457,7 @@

    idiomatic: : "stream"
  • Returns Promise<string>

    +
  • Defined in database.ts:4953
  • Runs the tests of a given service and returns the results as a string @@ -2845,7 +2494,7 @@

    idiomatic: : "tap"
  • Returns Promise<string>

    +
  • Defined in database.ts:4987
  • Runs the tests of a given service and returns the results as a string @@ -2882,28 +2531,7 @@

    idiomatic: : "xunit"
  • Returns Promise<string>

    -
    - -
      - -
    • -

      Sets the server's log level for each of the given topics to the given level.

      -

      Any omitted topics will be left unchanged.

      - -

      Example

      await db.setLogLevel({ request: "debug" });
      // Debug information will now be logged for each request -
      -
      -
      -

      Parameters

      -
        -
      • -
        levels: Record<string, LogLevelSetting>
        -

        An object mapping topic names to log levels.

        -
      -

      Returns Promise<Record<string, LogLevelSetting>>

    +
  • Defined in database.ts:5021
    • @@ -2922,7 +2550,7 @@
      responseQueueTimeSamples: number

    Returns void

    +
  • Defined in database.ts:1724
    • @@ -2946,7 +2574,7 @@
      enabled: booleanReturns Promise<ServiceInfo>
    +
  • Defined in database.ts:4710
  • Returns Promise<ArangoApiResponse<Record<string, AccessLevel>>>

    -
    - -
      - -
    • -

      Attempts to initiate a clean shutdown of the server.

      -
      -

      Returns Promise<void>

    -
    - -
      - -
    • -

      Retrives the server's current system time in milliseconds with microsecond -precision.

      -
      -

      Returns Promise<number>

    +
  • Defined in database.ts:2935
    • @@ -3025,7 +2632,7 @@

      Parameters

      transactionId: string

    Returns Transaction

    +
  • Defined in database.ts:3320
    • @@ -3040,7 +2647,7 @@

      Example

      const
       

      Returns Promise<Transaction[]>

    +
  • Defined in database.ts:3472
  • +
  • Defined in database.ts:4234
    • @@ -3097,7 +2704,7 @@
      Optional minimal: Returns Promise<Record<string, ServiceConfiguration & {
          warning?: string;
      }>>
      +
    • Defined in database.ts:4422
  • Updates the configuration of the given service while maintaining any @@ -3127,7 +2734,7 @@

    minimal: true
  • Returns Promise<{
        values: Record<string, any>;
        warnings: Record<string, string>;
    }>

    +
  • Defined in database.ts:4451
    • @@ -3158,7 +2765,7 @@
      Optional minimal: Returns Promise<Record<string, Object>>
      +
    • Defined in database.ts:4636
  • Updates the dependencies of the given service while maintaining any @@ -3186,7 +2793,7 @@

    minimal: true
  • Returns Promise<{
        values: Record<string, string>;
        warnings: Record<string, string>;
    }>

    +
  • Defined in database.ts:4674
    • @@ -3210,7 +2817,7 @@
      passwd: string

    Returns Promise<ArangoApiResponse<ArangoUser>>

    +
  • Defined in database.ts:2671
  • Updates the ArangoDB user with the new options.

    @@ -3231,7 +2838,7 @@
    options: PartialReturns Promise<ArangoApiResponse<ArangoUser>>
  • +
  • Defined in database.ts:2688
  • +
  • Defined in database.ts:4202
    • @@ -3292,7 +2899,7 @@
      password: stringReturns Database
    +
  • Defined in database.ts:1745
    • @@ -3313,7 +2920,7 @@
      token: string

    Returns Database

    +
  • Defined in database.ts:1763
    • @@ -3329,7 +2936,7 @@

      Example

      const
       

      Returns Promise<Database[]>

    +
  • Defined in database.ts:2013
    • @@ -3350,7 +2957,7 @@
      Optional details: Returns Promise<VersionInfo>
    +
  • Defined in database.ts:1533
    • @@ -3370,7 +2977,7 @@
      viewName: string

    Returns View

    +
  • Defined in database.ts:2394
    • @@ -3386,7 +2993,7 @@

      Example

      const
       

      Returns Promise<View[]>

    +
  • Defined in database.ts:2483
    • @@ -3415,361 +3022,7 @@
      Optional timeout: Returns Promise<void>
    -
    - -
      - -
    • -

      Begins and commits a transaction using the given callback. Individual -requests that are part of the transaction need to be wrapped in the step -function passed into the callback. If the promise returned by the callback -is rejected, the transaction will be aborted.

      -

      Collections can be specified as collection names (strings) or objects -implementing the ArangoCollection interface: Collection, -GraphVertexCollection, GraphEdgeCollection as -well as (in TypeScript) DocumentCollection and -EdgeCollection.

      - -

      Example

      const vertices = db.collection("vertices");
      const edges = db.collection("edges");
      await db.withTransaction(
      {
      read: ["vertices"],
      write: [edges] // collection instances can be passed directly
      },
      async (step) => {
      const start = await step(() => vertices.document("a"));
      const end = await step(() => vertices.document("b"));
      await step(() => edges.save({ _from: start._id, _to: end._id }));
      }
      ); -
      -
      -
      -

      Type Parameters

      -
        -
      • -

        T

      -
      -

      Parameters

      -
        -
      • -
        collections: TransactionCollections
        -

        Collections involved in the transaction.

        -
      • -
      • -
        callback: ((step: (<T>(callback: (() => Promise<T>)) => Promise<T>)) => Promise<T>)
        -

        Callback function executing the transaction steps.

        -
        -
          -
        • -
            -
          • (step: (<T>(callback: (() => Promise<T>)) => Promise<T>)): Promise<T>
          • -
          • -
            -

            Parameters

            -
              -
            • -
              step: (<T>(callback: (() => Promise<T>)) => Promise<T>)
              -
                -
              • -
                  -
                • <T>(callback: (() => Promise<T>)): Promise<T>
                • -
                • -

                  Executes the given function locally as a single step of the transaction.

                  - -

                  Example

                  const db = new Database();
                  const vertices = db.collection("vertices");
                  const edges = db.collection("edges");
                  const trx = await db.beginTransaction({ write: [vertices, edges] });

                  // The following code will be part of the transaction
                  const left = await trx.step(() => vertices.save({ label: "left" }));
                  const right = await trx.step(() => vertices.save({ label: "right" }));

                  // Results from preceding actions can be used normally
                  await trx.step(() => edges.save({
                  _from: left._id,
                  _to: right._id,
                  data: "potato"
                  }));

                  // Transaction must be committed for changes to take effected
                  // Always call either trx.commit or trx.abort to end a transaction
                  await trx.commit(); -
                  - -

                  Example

                  // BAD! If the callback is an async function it must only use await once!
                  await trx.step(async () => {
                  await collection.save(data);
                  await collection.save(moreData); // WRONG
                  });

                  // BAD! Callback function must use only one arangojs call!
                  await trx.step(() => {
                  return collection.save(data)
                  .then(() => collection.save(moreData)); // WRONG
                  });

                  // BETTER: Wrap every arangojs method call that should be part of the
                  // transaction in a separate `trx.step` call
                  await trx.step(() => collection.save(data));
                  await trx.step(() => collection.save(moreData)); -
                  - -

                  Example

                  // BAD! If the callback is an async function it must not await before
                  // calling an arangojs method!
                  await trx.step(async () => {
                  await doSomethingElse();
                  return collection.save(data); // WRONG
                  });

                  // BAD! Any arangojs inside the callback must not happen inside a promise
                  // method!
                  await trx.step(() => {
                  return doSomethingElse()
                  .then(() => collection.save(data)); // WRONG
                  });

                  // BETTER: Perform any async logic needed outside the `trx.step` call
                  await doSomethingElse();
                  await trx.step(() => collection.save(data));

                  // OKAY: You can perform async logic in the callback after the arangojs
                  // method call as long as it does not involve additional arangojs method
                  // calls, but this makes it easy to make mistakes later
                  await trx.step(async () => {
                  await collection.save(data);
                  await doSomethingDifferent(); // no arangojs method calls allowed
                  }); -
                  - -

                  Example

                  // BAD! The callback should not use any functions that themselves use any
                  // arangojs methods!
                  async function saveSomeData() {
                  await collection.save(data);
                  await collection.save(moreData);
                  }
                  await trx.step(() => saveSomeData()); // WRONG

                  // BETTER: Pass the transaction to functions that need to call arangojs
                  // methods inside a transaction
                  async function saveSomeData(trx) {
                  await trx.step(() => collection.save(data));
                  await trx.step(() => collection.save(moreData));
                  }
                  await saveSomeData(); // no `trx.step` call needed -
                  - -

                  Example

                  // BAD! You must wait for the promise to resolve (or await on the
                  // `trx.step` call) before calling `trx.step` again!
                  trx.step(() => collection.save(data)); // WRONG
                  await trx.step(() => collection.save(moreData));

                  // BAD! The trx.step callback can not make multiple calls to async arangojs
                  // methods, not even using Promise.all!
                  await trx.step(() => Promise.all([ // WRONG
                  collection.save(data),
                  collection.save(moreData),
                  ]));

                  // BAD! Multiple `trx.step` calls can not run in parallel!
                  await Promise.all([ // WRONG
                  trx.step(() => collection.save(data)),
                  trx.step(() => collection.save(moreData)),
                  ]));

                  // BETTER: Always call `trx.step` sequentially, one after the other
                  await trx.step(() => collection.save(data));
                  await trx.step(() => collection.save(moreData));

                  // OKAY: The then callback can be used if async/await is not available
                  trx.step(() => collection.save(data))
                  .then(() => trx.step(() => collection.save(moreData))); -
                  - -

                  Example

                  // BAD! The callback will return an empty promise that resolves before
                  // the inner arangojs method call has even talked to ArangoDB!
                  await trx.step(async () => {
                  collection.save(data); // WRONG
                  });

                  // BETTER: Use an arrow function so you don't forget to return
                  await trx.step(() => collection.save(data));

                  // OKAY: Remember to always return when using a function body
                  await trx.step(() => {
                  return collection.save(data); // easy to forget!
                  });

                  // OKAY: You do not have to use arrow functions but it helps
                  await trx.step(function () {
                  return collection.save(data);
                  }); -
                  - -

                  Example

                  // BAD! You can not pass promises instead of a callback!
                  await trx.step(collection.save(data)); // WRONG

                  // BETTER: Wrap the code in a function and pass the function instead
                  await trx.step(() => collection.save(data)); -
                  - -

                  Example

                  // WORSE: Calls to non-async arangojs methods don't need to be performed
                  // as part of a transaction
                  const collection = await trx.step(() => db.collection("my-documents"));

                  // BETTER: If an arangojs method is not async and doesn't return promises,
                  // call it without `trx.step`
                  const collection = db.collection("my-documents"); -
                  -
                  -
                  -

                  Type Parameters

                  -
                    -
                  • -

                    T

                    -

                    Type of the callback's returned promise.

                    -
                  -
                  -

                  Parameters

                  -
                    -
                  • -
                    callback: (() => Promise<T>)
                    -

                    Callback function returning a promise.

                    -

                    Warning: The callback function should wrap a single call of an async -arangojs method (e.g. a method on a Collection object of a collection -that is involved in the transaction or the db.query method). -If the callback function is async, only the first promise-returning (or -async) method call will be executed as part of the transaction. See the -examples below for how to avoid common mistakes when using this method.

                    -

                    Note: Avoid defining the callback as an async function if possible -as arangojs will throw an error if the callback did not return a promise. -Async functions will return an empty promise by default, making it harder -to notice if you forgot to return something from the callback.

                    -

                    Note: Although almost anything can be wrapped in a callback and passed -to this method, that does not guarantee ArangoDB can actually do it in a -transaction. Refer to the ArangoDB documentation if you are unsure whether -a given operation can be executed as part of a transaction. Generally any -modification or retrieval of data is eligible but modifications of -collections or databases are not.

                    -
                    -
                      -
                    • -
                        -
                      • (): Promise<T>
                      • -
                      • -

                        Returns Promise<T>

                  -

                  Returns Promise<T>

            -

            Returns Promise<T>

      • -
      • -
        Optional options: TransactionOptions
        -

        Options for the transaction.

        -
      -

      Returns Promise<T>

    • - -
    • -

      Begins and commits a transaction using the given callback. Individual -requests that are part of the transaction need to be wrapped in the step -function passed into the callback. If the promise returned by the callback -is rejected, the transaction will be aborted.

      -

      Collections can be specified as collection names (strings) or objects -implementing the ArangoCollection interface: Collection, -GraphVertexCollection, GraphEdgeCollection as well as -(in TypeScript) DocumentCollection and EdgeCollection.

      - -

      Example

      const vertices = db.collection("vertices");
      const edges = db.collection("edges");
      await db.withTransaction(
      [
      "vertices",
      edges, // collection instances can be passed directly
      ],
      async (step) => {
      const start = await step(() => vertices.document("a"));
      const end = await step(() => vertices.document("b"));
      await step(() => edges.save({ _from: start._id, _to: end._id }));
      }
      ); -
      -
      -
      -

      Type Parameters

      -
        -
      • -

        T

      -
      -

      Parameters

      -
        -
      • -
        collections: (string | ArangoCollection)[]
        -

        Collections that can be read from and written to -during the transaction.

        -
      • -
      • -
        callback: ((step: (<T>(callback: (() => Promise<T>)) => Promise<T>)) => Promise<T>)
        -

        Callback function executing the transaction steps.

        -
        -
          -
        • -
            -
          • (step: (<T>(callback: (() => Promise<T>)) => Promise<T>)): Promise<T>
          • -
          • -
            -

            Parameters

            -
              -
            • -
              step: (<T>(callback: (() => Promise<T>)) => Promise<T>)
              -
                -
              • -
                  -
                • <T>(callback: (() => Promise<T>)): Promise<T>
                • -
                • -

                  Executes the given function locally as a single step of the transaction.

                  - -

                  Example

                  const db = new Database();
                  const vertices = db.collection("vertices");
                  const edges = db.collection("edges");
                  const trx = await db.beginTransaction({ write: [vertices, edges] });

                  // The following code will be part of the transaction
                  const left = await trx.step(() => vertices.save({ label: "left" }));
                  const right = await trx.step(() => vertices.save({ label: "right" }));

                  // Results from preceding actions can be used normally
                  await trx.step(() => edges.save({
                  _from: left._id,
                  _to: right._id,
                  data: "potato"
                  }));

                  // Transaction must be committed for changes to take effected
                  // Always call either trx.commit or trx.abort to end a transaction
                  await trx.commit(); -
                  - -

                  Example

                  // BAD! If the callback is an async function it must only use await once!
                  await trx.step(async () => {
                  await collection.save(data);
                  await collection.save(moreData); // WRONG
                  });

                  // BAD! Callback function must use only one arangojs call!
                  await trx.step(() => {
                  return collection.save(data)
                  .then(() => collection.save(moreData)); // WRONG
                  });

                  // BETTER: Wrap every arangojs method call that should be part of the
                  // transaction in a separate `trx.step` call
                  await trx.step(() => collection.save(data));
                  await trx.step(() => collection.save(moreData)); -
                  - -

                  Example

                  // BAD! If the callback is an async function it must not await before
                  // calling an arangojs method!
                  await trx.step(async () => {
                  await doSomethingElse();
                  return collection.save(data); // WRONG
                  });

                  // BAD! Any arangojs inside the callback must not happen inside a promise
                  // method!
                  await trx.step(() => {
                  return doSomethingElse()
                  .then(() => collection.save(data)); // WRONG
                  });

                  // BETTER: Perform any async logic needed outside the `trx.step` call
                  await doSomethingElse();
                  await trx.step(() => collection.save(data));

                  // OKAY: You can perform async logic in the callback after the arangojs
                  // method call as long as it does not involve additional arangojs method
                  // calls, but this makes it easy to make mistakes later
                  await trx.step(async () => {
                  await collection.save(data);
                  await doSomethingDifferent(); // no arangojs method calls allowed
                  }); -
                  - -

                  Example

                  // BAD! The callback should not use any functions that themselves use any
                  // arangojs methods!
                  async function saveSomeData() {
                  await collection.save(data);
                  await collection.save(moreData);
                  }
                  await trx.step(() => saveSomeData()); // WRONG

                  // BETTER: Pass the transaction to functions that need to call arangojs
                  // methods inside a transaction
                  async function saveSomeData(trx) {
                  await trx.step(() => collection.save(data));
                  await trx.step(() => collection.save(moreData));
                  }
                  await saveSomeData(); // no `trx.step` call needed -
                  - -

                  Example

                  // BAD! You must wait for the promise to resolve (or await on the
                  // `trx.step` call) before calling `trx.step` again!
                  trx.step(() => collection.save(data)); // WRONG
                  await trx.step(() => collection.save(moreData));

                  // BAD! The trx.step callback can not make multiple calls to async arangojs
                  // methods, not even using Promise.all!
                  await trx.step(() => Promise.all([ // WRONG
                  collection.save(data),
                  collection.save(moreData),
                  ]));

                  // BAD! Multiple `trx.step` calls can not run in parallel!
                  await Promise.all([ // WRONG
                  trx.step(() => collection.save(data)),
                  trx.step(() => collection.save(moreData)),
                  ]));

                  // BETTER: Always call `trx.step` sequentially, one after the other
                  await trx.step(() => collection.save(data));
                  await trx.step(() => collection.save(moreData));

                  // OKAY: The then callback can be used if async/await is not available
                  trx.step(() => collection.save(data))
                  .then(() => trx.step(() => collection.save(moreData))); -
                  - -

                  Example

                  // BAD! The callback will return an empty promise that resolves before
                  // the inner arangojs method call has even talked to ArangoDB!
                  await trx.step(async () => {
                  collection.save(data); // WRONG
                  });

                  // BETTER: Use an arrow function so you don't forget to return
                  await trx.step(() => collection.save(data));

                  // OKAY: Remember to always return when using a function body
                  await trx.step(() => {
                  return collection.save(data); // easy to forget!
                  });

                  // OKAY: You do not have to use arrow functions but it helps
                  await trx.step(function () {
                  return collection.save(data);
                  }); -
                  - -

                  Example

                  // BAD! You can not pass promises instead of a callback!
                  await trx.step(collection.save(data)); // WRONG

                  // BETTER: Wrap the code in a function and pass the function instead
                  await trx.step(() => collection.save(data)); -
                  - -

                  Example

                  // WORSE: Calls to non-async arangojs methods don't need to be performed
                  // as part of a transaction
                  const collection = await trx.step(() => db.collection("my-documents"));

                  // BETTER: If an arangojs method is not async and doesn't return promises,
                  // call it without `trx.step`
                  const collection = db.collection("my-documents"); -
                  -
                  -
                  -

                  Type Parameters

                  -
                    -
                  • -

                    T

                    -

                    Type of the callback's returned promise.

                    -
                  -
                  -

                  Parameters

                  -
                    -
                  • -
                    callback: (() => Promise<T>)
                    -

                    Callback function returning a promise.

                    -

                    Warning: The callback function should wrap a single call of an async -arangojs method (e.g. a method on a Collection object of a collection -that is involved in the transaction or the db.query method). -If the callback function is async, only the first promise-returning (or -async) method call will be executed as part of the transaction. See the -examples below for how to avoid common mistakes when using this method.

                    -

                    Note: Avoid defining the callback as an async function if possible -as arangojs will throw an error if the callback did not return a promise. -Async functions will return an empty promise by default, making it harder -to notice if you forgot to return something from the callback.

                    -

                    Note: Although almost anything can be wrapped in a callback and passed -to this method, that does not guarantee ArangoDB can actually do it in a -transaction. Refer to the ArangoDB documentation if you are unsure whether -a given operation can be executed as part of a transaction. Generally any -modification or retrieval of data is eligible but modifications of -collections or databases are not.

                    -
                    -
                      -
                    • -
                        -
                      • (): Promise<T>
                      • -
                      • -

                        Returns Promise<T>

                  -

                  Returns Promise<T>

            -

            Returns Promise<T>

      • -
      • -
        Optional options: TransactionOptions
        -

        Options for the transaction.

        -
      -

      Returns Promise<T>

    • - -
    • -

      Begins and commits a transaction using the given callback. Individual -requests that are part of the transaction need to be wrapped in the step -function passed into the callback. If the promise returned by the callback -is rejected, the transaction will be aborted.

      -

      The Collection can be specified as a collection name (string) or an object -implementing the ArangoCollection interface: Collection, -GraphVertexCollection, GraphEdgeCollection as well as -(in TypeScript) DocumentCollection and EdgeCollection.

      - -

      Example

      const vertices = db.collection("vertices");
      const start = vertices.document("a");
      const end = vertices.document("b");
      const edges = db.collection("edges");
      await db.withTransaction(
      edges, // collection instances can be passed directly
      async (step) => {
      await step(() => edges.save({ _from: start._id, _to: end._id }));
      }
      ); -
      -
      -
      -

      Type Parameters

      -
        -
      • -

        T

      -
      -

      Parameters

      -
        -
      • -
        collection: string | ArangoCollection
        -

        A collection that can be read from and written to -during the transaction.

        -
      • -
      • -
        callback: ((step: (<T>(callback: (() => Promise<T>)) => Promise<T>)) => Promise<T>)
        -

        Callback function executing the transaction steps.

        -
        -
          -
        • -
            -
          • (step: (<T>(callback: (() => Promise<T>)) => Promise<T>)): Promise<T>
          • -
          • -
            -

            Parameters

            -
              -
            • -
              step: (<T>(callback: (() => Promise<T>)) => Promise<T>)
              -
                -
              • -
                  -
                • <T>(callback: (() => Promise<T>)): Promise<T>
                • -
                • -

                  Executes the given function locally as a single step of the transaction.

                  - -

                  Example

                  const db = new Database();
                  const vertices = db.collection("vertices");
                  const edges = db.collection("edges");
                  const trx = await db.beginTransaction({ write: [vertices, edges] });

                  // The following code will be part of the transaction
                  const left = await trx.step(() => vertices.save({ label: "left" }));
                  const right = await trx.step(() => vertices.save({ label: "right" }));

                  // Results from preceding actions can be used normally
                  await trx.step(() => edges.save({
                  _from: left._id,
                  _to: right._id,
                  data: "potato"
                  }));

                  // Transaction must be committed for changes to take effected
                  // Always call either trx.commit or trx.abort to end a transaction
                  await trx.commit(); -
                  - -

                  Example

                  // BAD! If the callback is an async function it must only use await once!
                  await trx.step(async () => {
                  await collection.save(data);
                  await collection.save(moreData); // WRONG
                  });

                  // BAD! Callback function must use only one arangojs call!
                  await trx.step(() => {
                  return collection.save(data)
                  .then(() => collection.save(moreData)); // WRONG
                  });

                  // BETTER: Wrap every arangojs method call that should be part of the
                  // transaction in a separate `trx.step` call
                  await trx.step(() => collection.save(data));
                  await trx.step(() => collection.save(moreData)); -
                  - -

                  Example

                  // BAD! If the callback is an async function it must not await before
                  // calling an arangojs method!
                  await trx.step(async () => {
                  await doSomethingElse();
                  return collection.save(data); // WRONG
                  });

                  // BAD! Any arangojs inside the callback must not happen inside a promise
                  // method!
                  await trx.step(() => {
                  return doSomethingElse()
                  .then(() => collection.save(data)); // WRONG
                  });

                  // BETTER: Perform any async logic needed outside the `trx.step` call
                  await doSomethingElse();
                  await trx.step(() => collection.save(data));

                  // OKAY: You can perform async logic in the callback after the arangojs
                  // method call as long as it does not involve additional arangojs method
                  // calls, but this makes it easy to make mistakes later
                  await trx.step(async () => {
                  await collection.save(data);
                  await doSomethingDifferent(); // no arangojs method calls allowed
                  }); -
                  - -

                  Example

                  // BAD! The callback should not use any functions that themselves use any
                  // arangojs methods!
                  async function saveSomeData() {
                  await collection.save(data);
                  await collection.save(moreData);
                  }
                  await trx.step(() => saveSomeData()); // WRONG

                  // BETTER: Pass the transaction to functions that need to call arangojs
                  // methods inside a transaction
                  async function saveSomeData(trx) {
                  await trx.step(() => collection.save(data));
                  await trx.step(() => collection.save(moreData));
                  }
                  await saveSomeData(); // no `trx.step` call needed -
                  - -

                  Example

                  // BAD! You must wait for the promise to resolve (or await on the
                  // `trx.step` call) before calling `trx.step` again!
                  trx.step(() => collection.save(data)); // WRONG
                  await trx.step(() => collection.save(moreData));

                  // BAD! The trx.step callback can not make multiple calls to async arangojs
                  // methods, not even using Promise.all!
                  await trx.step(() => Promise.all([ // WRONG
                  collection.save(data),
                  collection.save(moreData),
                  ]));

                  // BAD! Multiple `trx.step` calls can not run in parallel!
                  await Promise.all([ // WRONG
                  trx.step(() => collection.save(data)),
                  trx.step(() => collection.save(moreData)),
                  ]));

                  // BETTER: Always call `trx.step` sequentially, one after the other
                  await trx.step(() => collection.save(data));
                  await trx.step(() => collection.save(moreData));

                  // OKAY: The then callback can be used if async/await is not available
                  trx.step(() => collection.save(data))
                  .then(() => trx.step(() => collection.save(moreData))); -
                  - -

                  Example

                  // BAD! The callback will return an empty promise that resolves before
                  // the inner arangojs method call has even talked to ArangoDB!
                  await trx.step(async () => {
                  collection.save(data); // WRONG
                  });

                  // BETTER: Use an arrow function so you don't forget to return
                  await trx.step(() => collection.save(data));

                  // OKAY: Remember to always return when using a function body
                  await trx.step(() => {
                  return collection.save(data); // easy to forget!
                  });

                  // OKAY: You do not have to use arrow functions but it helps
                  await trx.step(function () {
                  return collection.save(data);
                  }); -
                  - -

                  Example

                  // BAD! You can not pass promises instead of a callback!
                  await trx.step(collection.save(data)); // WRONG

                  // BETTER: Wrap the code in a function and pass the function instead
                  await trx.step(() => collection.save(data)); -
                  - -

                  Example

                  // WORSE: Calls to non-async arangojs methods don't need to be performed
                  // as part of a transaction
                  const collection = await trx.step(() => db.collection("my-documents"));

                  // BETTER: If an arangojs method is not async and doesn't return promises,
                  // call it without `trx.step`
                  const collection = db.collection("my-documents"); -
                  -
                  -
                  -

                  Type Parameters

                  -
                    -
                  • -

                    T

                    -

                    Type of the callback's returned promise.

                    -
                  -
                  -

                  Parameters

                  -
                    -
                  • -
                    callback: (() => Promise<T>)
                    -

                    Callback function returning a promise.

                    -

                    Warning: The callback function should wrap a single call of an async -arangojs method (e.g. a method on a Collection object of a collection -that is involved in the transaction or the db.query method). -If the callback function is async, only the first promise-returning (or -async) method call will be executed as part of the transaction. See the -examples below for how to avoid common mistakes when using this method.

                    -

                    Note: Avoid defining the callback as an async function if possible -as arangojs will throw an error if the callback did not return a promise. -Async functions will return an empty promise by default, making it harder -to notice if you forgot to return something from the callback.

                    -

                    Note: Although almost anything can be wrapped in a callback and passed -to this method, that does not guarantee ArangoDB can actually do it in a -transaction. Refer to the ArangoDB documentation if you are unsure whether -a given operation can be executed as part of a transaction. Generally any -modification or retrieval of data is eligible but modifications of -collections or databases are not.

                    -
                    -
                      -
                    • -
                        -
                      • (): Promise<T>
                      • -
                      • -

                        Returns Promise<T>

                  -

                  Returns Promise<T>

            -

            Returns Promise<T>

      • -
      • -
        Optional options: TransactionOptions
        -

        Options for the transaction.

        -
      -

      Returns Promise<T>

    +
  • Defined in database.ts:1692
  • +
  • waitForPropagation
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/devel/classes/error.ArangoError.html b/devel/classes/error.ArangoError.html index de7065028..5b6e5b02a 100644 --- a/devel/classes/error.ArangoError.html +++ b/devel/classes/error.ArangoError.html @@ -100,13 +100,13 @@
    stackTraces: CallSiteReturns any
    +
  • Defined in ../node_modules/@types/node/globals.d.ts:143
  • stackTraceLimit: number
    +
  • Defined in ../node_modules/@types/node/globals.d.ts:145
  • Methods

    @@ -143,7 +143,7 @@
    Optional constructorOpt: Returns void
    +
  • Defined in ../node_modules/@types/node/globals.d.ts:136
  • +
  • Defined in ../node_modules/@types/node/globals.d.ts:143
  • stackTraceLimit: number
    +
  • Defined in ../node_modules/@types/node/globals.d.ts:145
  • Methods

    @@ -130,7 +130,7 @@
    Optional constructorOpt: Returns void
    +
  • Defined in ../node_modules/@types/node/globals.d.ts:136
  • Returns Promise<GraphInfo>

    +
  • Defined in graph.ts:1608
    • @@ -110,7 +110,7 @@
      collection: stringAddVertexCollectionOptions = {}

    Returns Promise<GraphInfo>

    +
  • Defined in graph.ts:1443
    • @@ -156,7 +156,7 @@
      dropCollections: boolean

    Returns Promise<boolean>

    +
  • Defined in graph.ts:1341
    • @@ -184,7 +184,7 @@
      collection: stringReturns GraphEdgeCollection<T>
    +
  • Defined in graph.ts:1524
    • @@ -199,7 +199,7 @@

      Example

      const
       

      Returns Promise<GraphEdgeCollection<any>[]>

    +
  • Defined in graph.ts:1586
    • @@ -240,7 +240,7 @@

      Example

      const
       

      Returns Promise<string[]>

    +
  • Defined in graph.ts:1555
    • @@ -255,7 +255,7 @@

      Example

      const
       

      Returns Promise<string[]>

    +
  • Defined in graph.ts:1390
    • @@ -280,7 +280,7 @@
      dropCollection: booleanReturns Promise<GraphInfo>
    +
  • Defined in graph.ts:1750
    • @@ -305,7 +305,7 @@
      dropCollection: booleanReturns Promise<GraphInfo>
    +
  • Defined in graph.ts:1483
  • Returns Promise<GraphInfo>

    +
  • Defined in graph.ts:1651
  • Replaces an edge definition in this graph. The existing edge definition @@ -352,7 +352,7 @@

    edgeDefinition: Optional options: ReplaceEdgeDefinitionOptions
  • Returns Promise<GraphInfo>

    +
  • Defined in graph.ts:1681
  • +
  • Defined in graph.ts:1800
  • +
  • Defined in graph.ts:1359
    • @@ -421,7 +421,7 @@

      Example

      const
       

      Returns Promise<GraphVertexCollection<any>[]>

    +
  • Defined in graph.ts:1422
  • diff --git a/devel/classes/graph.GraphVertexCollection.html b/devel/classes/graph.GraphVertexCollection.html index 86a1ec4d2..f152613fc 100644 --- a/devel/classes/graph.GraphVertexCollection.html +++ b/devel/classes/graph.GraphVertexCollection.html @@ -311,7 +311,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/classes/job.Job.html b/devel/classes/job.Job.html deleted file mode 100644 index d064742d9..000000000 --- a/devel/classes/job.Job.html +++ /dev/null @@ -1,165 +0,0 @@ -Job | arangojs
    -
    - -
    -
    -
    -
    - -

    Class Job<T>

    -
    -

    Represents an async job in a Database.

    -
    -
    -

    Type Parameters

    -
      -
    • -

      T = any

    -
    -

    Hierarchy

    -
      -
    • Job
    -
    -
    -
    - -
    -
    -

    Accessors

    -
    -
    -

    Methods

    -
    -
    -

    Accessors

    -
    - -
      -
    • get isLoaded(): boolean
    • -
    • -

      Whether the job's results have been loaded. If set to true, the job's -result can be accessed from result.

      -
      -

      Returns boolean

    -
    - -
      -
    • get result(): undefined | T
    • -
    • -

      The job's result if it has been loaded or undefined otherwise.

      -
      -

      Returns undefined | T

    -
    -

    Methods

    -
    - -
      - -
    • -

      Cancels the job if it is still running. Note that it may take some time to -actually cancel the job.

      -
      -

      Returns Promise<void>

    -
    - -
      - -
    • -

      Deletes the result if it has not already been retrieved or deleted.

      -
      -

      Returns Promise<void>

    -
    - -
      - -
    • -

      Fetches the job's completion state.

      -

      Returns true if the job has completed, false otherwise.

      - -

      Example

      // poll for the job to complete
      while (!(await job.getCompleted())) {
      await timeout(1000);
      }
      // job result is now available and can be loaded
      await job.load();
      console.log(job.result); -
      -
      -

      Returns Promise<boolean>

    -
    - -
      - -
    • -

      Loads the job's result from the database if it is not already loaded.

      - -

      Example

      // poll for the job to complete
      while (!job.isLoaded) {
      await timeout(1000);
      const result = await job.load();
      console.log(result);
      }
      // job result is now loaded and can also be accessed from job.result
      console.log(job.result); -
      -
      -

      Returns Promise<undefined | T>

    -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/devel/classes/route.Route.html b/devel/classes/route.Route.html index 1fa3ff001..222c49c27 100644 --- a/devel/classes/route.Route.html +++ b/devel/classes/route.Route.html @@ -379,7 +379,7 @@

    Returns Promise
      - +
    • Performs an arbitrary HTTP request relative to this route and returns the server response.

      @@ -394,7 +394,7 @@

      Parameters

      Optional options: RequestOptions

      Options for performing the request.

    -

    Returns Promise<ArangojsResponse>

    const collection = db.collection("some-collection");
    const color = "green";
    const filter = aql`FILTER d.color == ${color}'`;
    const result = await db.query(aql`
    FOR d IN ${collection}
    ${filter}
    RETURN d
    `);
    -
    -

    Type Parameters

    -
      -
    • -

      T = any

    Parameters

      @@ -58,9 +53,9 @@

      Parameters

      templateStrings: TemplateStringsArray
    • Rest ...args: AqlValue[]
    -

    Returns GeneratedAqlQuery<T>

    Returns literal is AqlLiteral

    +
  • Defined in aql.ts:110
    • - +
    • Indicates whether the given value is an AqlQuery.

      @@ -29,9 +29,9 @@

      Parameters

      query: any

      A value that might be an AqlQuery.

    -

    Returns query is AqlQuery<any>

    +
  • Defined in aql.ts:90
  • +
  • Defined in aql.ts:399
  • Returns AqlLiteral

    +
  • Defined in aql.ts:318
  • @@ -91,8 +90,6 @@

    ComputedValueProperties
  • CreateCollectionOptions
  • DocumentExistsOptions
  • -
  • DocumentOperationFailure
  • -
  • DocumentOperationMetadata
  • KeyGenerator
  • SchemaOptions
  • SchemaProperties
  • diff --git a/devel/functions/collection.isArangoCollection.html b/devel/functions/collection.isArangoCollection.html index 2f9fbaaa9..acc76963f 100644 --- a/devel/functions/collection.isArangoCollection.html +++ b/devel/functions/collection.isArangoCollection.html @@ -58,7 +58,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • @@ -90,8 +89,6 @@

    ComputedValueProperties
  • CreateCollectionOptions
  • DocumentExistsOptions
  • -
  • DocumentOperationFailure
  • -
  • DocumentOperationMetadata
  • KeyGenerator
  • SchemaOptions
  • SchemaProperties
  • diff --git a/devel/functions/database.isArangoDatabase.html b/devel/functions/database.isArangoDatabase.html index fa70164eb..ec6730c99 100644 --- a/devel/functions/database.isArangoDatabase.html +++ b/devel/functions/database.isArangoDatabase.html @@ -31,7 +31,7 @@

    database: any

    Returns database is Database

    +
  • Defined in database.ts:60
  • diff --git a/devel/functions/error.isSystemError.html b/devel/functions/error.isSystemError.html index ef562c12a..298d3c1e4 100644 --- a/devel/functions/error.isSystemError.html +++ b/devel/functions/error.isSystemError.html @@ -56,7 +56,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/functions/graph.isArangoGraph.html b/devel/functions/graph.isArangoGraph.html index 0f5efc804..a73ea3189 100644 --- a/devel/functions/graph.isArangoGraph.html +++ b/devel/functions/graph.isArangoGraph.html @@ -58,7 +58,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/functions/index.arangojs.html b/devel/functions/index.arangojs.html index 35cfe1848..5534e4748 100644 --- a/devel/functions/index.arangojs.html +++ b/devel/functions/index.arangojs.html @@ -83,7 +83,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/functions/transaction.isArangoTransaction.html b/devel/functions/transaction.isArangoTransaction.html index 8a6bc3100..c03889d2a 100644 --- a/devel/functions/transaction.isArangoTransaction.html +++ b/devel/functions/transaction.isArangoTransaction.html @@ -58,7 +58,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/functions/view.isArangoView.html b/devel/functions/view.isArangoView.html index 678abbc3e..68cbcf37b 100644 --- a/devel/functions/view.isArangoView.html +++ b/devel/functions/view.isArangoView.html @@ -58,7 +58,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/index.html b/devel/index.html index 2c3ab58ce..51d11b7d4 100644 --- a/devel/index.html +++ b/devel/index.html @@ -18,7 +18,7 @@

    ArangoDB JavaScript Driver

    The official ArangoDB JavaScript client for Node.js and the browser.

    license - APACHE-2.0 -Tests

    +Continuous Integration

    npm package status

    @@ -82,9 +82,7 @@

    Compatibility

    The arangojs driver is compatible with the latest stable version of ArangoDB available at the time of the driver release and remains compatible with the two most recent Node.js LTS versions in accordance with the official -Node.js long-term support schedule. Versions -of ArangoDB that have reached their end of life -by the time of a driver release are explicitly not supported.

    +Node.js long-term support schedule.

    For a list of changes between recent versions of the driver, see the CHANGELOG.

    Note: arangojs is only intended to be used in Node.js or a browser to access @@ -255,7 +253,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/interfaces/aql.AqlLiteral.html b/devel/interfaces/aql.AqlLiteral.html index f38a7f77d..d5017add9 100644 --- a/devel/interfaces/aql.AqlLiteral.html +++ b/devel/interfaces/aql.AqlLiteral.html @@ -27,7 +27,7 @@

    Hierarchy

    • AqlLiteral
    +
  • Defined in aql.ts:57
  • +

    Interface AqlQuery

    Generic AQL query object consisting of an AQL query string and its bind parameters.

    -
    -
    -

    Type Parameters

    -
      -
    • -

      T = any

    +

    Hierarchy

    • AqlQuery
    +
  • Defined in aql.ts:22
  • @@ -38,33 +33,27 @@

    Properties

    -
    - -
    [type]?: any
    - +
    bindVars: Record<string, any>

    An object mapping AQL bind parameter names to their respective values.

    Names of parameters representing collections are prefixed with an at-symbol.

    +
  • Defined in aql.ts:33
  • query: string

    An AQL query string.

    +
  • Defined in aql.ts:26
  • diff --git a/devel/interfaces/collection.ArangoCollection.html b/devel/interfaces/collection.ArangoCollection.html index f9860d02c..48857d8e4 100644 --- a/devel/interfaces/collection.ArangoCollection.html +++ b/devel/interfaces/collection.ArangoCollection.html @@ -78,7 +78,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/interfaces/collection.DocumentCollection.html b/devel/interfaces/collection.DocumentCollection.html index 38cb312ca..583568be2 100644 --- a/devel/interfaces/collection.DocumentCollection.html +++ b/devel/interfaces/collection.DocumentCollection.html @@ -42,7 +42,7 @@

    Hierarchy

    +
  • Defined in collection.ts:1407
  • @@ -132,7 +132,7 @@
    Optional options: Returns Promise<ArrayCursor<Document<T>>>
    +
  • Defined in collection.ts:2234
    • @@ -148,7 +148,7 @@

      Example

      const
       

      Returns Promise<Document<T>>

    +
  • Defined in collection.ts:2256
  • +
  • Defined in collection.ts:2279
  • +
  • Defined in collection.ts:1593
    • @@ -208,7 +208,7 @@

      Example

      const
       

      Returns Promise<ArangoApiResponse<Record<string, never>>>

    +
  • Defined in collection.ts:2683
  • +
  • Defined in collection.ts:1521
  • +
  • Defined in collection.ts:1476
    • @@ -283,7 +283,7 @@
      Optional options: Returns Promise<Document<T>>
      +
    • Defined in collection.ts:1772
  • Retrieves the document matching the given key or id.

    @@ -311,7 +311,7 @@
    graceful: boolean
  • Returns Promise<Document<T>>

    +
  • Defined in collection.ts:1811
  • Returns Promise<boolean>

    +
  • Defined in collection.ts:1734
  • +
  • Defined in collection.ts:1713
  • +
  • Defined in collection.ts:1834
  • +
  • Defined in collection.ts:1662
  • +
  • Defined in collection.ts:2669
    • @@ -450,7 +450,7 @@
      details:

    Returns Promise<ArangoApiResponse<GenericIndex & {
        cacheEnabled: boolean;
        deduplicate: boolean;
        estimates: boolean;
        fields: string[];
        storedValues?: string[];
        type: "persistent";
    } & {
        isNewlyCreated: boolean;
    }>>

    +
  • Defined in collection.ts:2538
  • Creates a TTL index on the collection if it does not already exist.

    @@ -470,12 +470,12 @@
    details: Returns Promise<ArangoApiResponse<GenericIndex & {
        expireAfter: number;
        fields: [string];
        selectivityEstimate: number;
        type: "ttl";
    } & {
        isNewlyCreated: boolean;
    }>>
  • - +
  • Defined in collection.ts:2570
  • +
  • Creates a multi-dimensional index on the collection if it does not already exist.

    -

    Example

    const db = new Database();
    const collection = db.collection("some-points");
    // Create a multi-dimensional index for the attributes x, y and z
    await collection.ensureIndex({
    type: "mdi",
    fields: ["x", "y", "z"],
    fieldValueTypes: "double"
    }); +

    Example

    const db = new Database();
    const collection = db.collection("some-points");
    // Create a multi-dimensional index for the attributes x, y and z
    await collection.ensureIndex({
    type: "zkd",
    fields: ["x", "y", "z"],
    fieldValueTypes: "double"
    });
    
     
    @@ -484,12 +484,12 @@

    Example

    constParameters
     
    -

    Returns Promise<ArangoApiResponse<GenericIndex & {
        fieldValueTypes: "double";
        fields: string[];
        type: "mdi";
    } & {
        isNewlyCreated: boolean;
    }>>

  • +
  • Defined in collection.ts:2591
  • Creates a fulltext index on the collection if it does not already exist.

    @@ -509,7 +509,7 @@
    details: Returns Promise<ArangoApiResponse<GenericIndex & {
        fields: [string];
        minLength: number;
        type: "fulltext";
    } & {
        isNewlyCreated: boolean;
    }>>
  • +
  • Defined in collection.ts:2614
  • Creates a geo index on the collection if it does not already exist.

    @@ -526,7 +526,7 @@
    details: Returns Promise<ArangoApiResponse<GenericIndex & {
        bestIndexedLevel: number;
        fields: [string, string] | [string];
        geoJson: boolean;
        legacyPolygons: boolean;
        maxNumCoverCells: number;
        type: "geo";
        worstIndexedLevel: number;
    } & {
        isNewlyCreated: boolean;
    }>>
  • +
  • Defined in collection.ts:2634
  • Creates a inverted index on the collection if it does not already exist.

    @@ -543,7 +543,7 @@
    details: Returns Promise<ArangoApiResponse<GenericIndex & {
        analyzer: string;
        cache?: boolean;
        cleanupIntervalStep: number;
        commitIntervalMsec: number;
        consolidationIntervalMsec: number;
        consolidationPolicy: Required<TierConsolidationPolicy>;
        features: AnalyzerFeature[];
        fields: {
            analyzer?: string;
            cache?: boolean;
            features?: AnalyzerFeature[];
            includeAllFields?: boolean;
            name: string;
            nested?: InvertedIndexNestedField[];
            searchField?: boolean;
            trackListPositions?: boolean;
        }[];
        includeAllFields: boolean;
        optimizeTopK: string[];
        parallelism: number;
        primaryKeyCache?: boolean;
        primarySort: {
            cache?: boolean;
            compression: Compression;
            fields: {
                direction: Direction;
                field: string;
            }[];
        };
        searchField: boolean;
        storedValues: {
            cache?: boolean;
            compression: Compression;
            fields: string[];
        }[];
        trackListPositions: boolean;
        type: "inverted";
        writeBufferActive: number;
        writeBufferIdle: number;
        writeBufferSizeMax: number;
    } & {
        isNewlyCreated: boolean;
    }>>
  • +
  • Defined in collection.ts:2653
    • @@ -556,7 +556,7 @@

      Example

      const
       

      Returns Promise<boolean>

    +
  • Defined in collection.ts:1420
  • +
  • Defined in collection.ts:1556
    • @@ -600,7 +600,7 @@
      example: PartialReturns Promise<Document<T>>
    +
  • Defined in collection.ts:2306
  • +
  • Defined in collection.ts:2488
  • +
  • Defined in collection.ts:1432
    • @@ -664,7 +664,7 @@
      document: PartialReturns Promise<string>
    +
  • Defined in collection.ts:1679
  • Bulk imports the given data into the collection.

    @@ -711,7 +711,7 @@
    Optional options: Returns Promise<CollectionImportResult>
  • +
  • Defined in collection.ts:2102
  • Bulk imports the given data into the collection.

    @@ -748,7 +748,7 @@
    Optional options: Returns Promise<CollectionImportResult>
  • +
  • Defined in collection.ts:2162
  • +
  • Defined in collection.ts:2519
    • @@ -781,7 +781,7 @@

      Example

      const
       

      Returns Promise<Index[]>

    +
  • Defined in collection.ts:2506
  • +
  • Defined in collection.ts:2213
    • @@ -824,7 +824,7 @@

      Example

      const
       

      Returns Promise<boolean>

    +
  • Defined in collection.ts:1612
    • @@ -847,7 +847,7 @@
      keys: stringReturns Promise<Document<T>[]>
    +
  • Defined in collection.ts:2434
  • Replaces the properties of the collection.

    @@ -875,7 +875,7 @@

    Parameters

    properties: CollectionPropertiesOptions
  • Returns Promise<ArangoApiResponse<CollectionMetadata & CollectionProperties>>

    +
  • Defined in collection.ts:1507
    • @@ -889,7 +889,7 @@

      Example

      const
       

      Returns Promise<boolean>

    +
  • Defined in collection.ts:1541
  • +
  • Defined in collection.ts:2031
  • -

    Returns Promise<(DocumentOperationFailure | DocumentMetadata & {
        old?: Document<T>;
    })[]>

    +
  • Defined in collection.ts:2053
  • +
  • Defined in collection.ts:2335
  • +
  • Defined in collection.ts:2462
    • @@ -1024,11 +1024,11 @@
      newName: string

    Returns Promise<ArangoApiResponse<CollectionMetadata>>

    +
  • Defined in collection.ts:1635
  • -

    Returns Promise<DocumentMetadata & {
        _oldRev?: string;
    } & {
        new?: Document<T>;
        old?: Document<T>;
    }>

    +
  • Defined in collection.ts:1908
  • -

    Returns Promise<(DocumentOperationFailure | DocumentMetadata & {
        _oldRev?: string;
    } & {
        new?: Document<T>;
        old?: Document<T>;
    })[]>

    +
  • Defined in collection.ts:1937
  • +
  • Defined in collection.ts:2370
  • +
  • Defined in collection.ts:1575
  • -

    Returns Promise<DocumentMetadata & {
        _oldRev?: string;
    } & {
        new?: Document<T>;
        old?: Document<T>;
    }>

    +
  • Defined in collection.ts:1855
  • -

    Returns Promise<(DocumentOperationFailure | DocumentMetadata & {
        _oldRev?: string;
    } & {
        new?: Document<T>;
        old?: Document<T>;
    })[]>

    +
  • Defined in collection.ts:1880
  • +
  • Defined in collection.ts:1648
  • -

    Returns Promise<DocumentMetadata & {
        _oldRev?: string;
    } & {
        new?: Document<T>;
        old?: Document<T>;
    }>

    +
  • Defined in collection.ts:1967
  • -

    Returns Promise<(DocumentOperationFailure | DocumentMetadata & {
        _oldRev?: string;
    } & {
        new?: Document<T>;
        old?: Document<T>;
    })[]>

    +
  • Defined in collection.ts:1996
  • +
  • Defined in collection.ts:2406
  • Returns Promise<ArangoApiResponse<CollectionEdgesResult<T>>>

    +
  • Defined in collection.ts:3344
    • @@ -497,7 +497,7 @@
      details: Returns Promise<ArangoApiResponse<GenericIndex & {
          cacheEnabled: boolean;
          deduplicate: boolean;
          estimates: boolean;
          fields: string[];
          storedValues?: string[];
          type: "persistent";
      } & {
          isNewlyCreated: boolean;
      }>>
      +
    • Defined in collection.ts:2538
  • Creates a TTL index on the collection if it does not already exist.

    @@ -518,12 +518,12 @@
    details: Returns Promise<ArangoApiResponse<GenericIndex & {
        expireAfter: number;
        fields: [string];
        selectivityEstimate: number;
        type: "ttl";
    } & {
        isNewlyCreated: boolean;
    }>>
  • - +
  • Defined in collection.ts:2570
  • +
  • Creates a multi-dimensional index on the collection if it does not already exist.

    -

    Example

    const db = new Database();
    const collection = db.collection("some-points");
    // Create a multi-dimensional index for the attributes x, y and z
    await collection.ensureIndex({
    type: "mdi",
    fields: ["x", "y", "z"],
    fieldValueTypes: "double"
    }); +

    Example

    const db = new Database();
    const collection = db.collection("some-points");
    // Create a multi-dimensional index for the attributes x, y and z
    await collection.ensureIndex({
    type: "zkd",
    fields: ["x", "y", "z"],
    fieldValueTypes: "double"
    });
    
     
    @@ -532,13 +532,13 @@

    Example

    constParameters
     
    -

    Returns Promise<ArangoApiResponse<GenericIndex & {
        fieldValueTypes: "double";
        fields: string[];
        type: "mdi";
    } & {
        isNewlyCreated: boolean;
    }>>

  • +
  • Defined in collection.ts:2591
  • Creates a fulltext index on the collection if it does not already exist.

    @@ -559,7 +559,7 @@
    details: Returns Promise<ArangoApiResponse<GenericIndex & {
        fields: [string];
        minLength: number;
        type: "fulltext";
    } & {
        isNewlyCreated: boolean;
    }>>
  • +
  • Defined in collection.ts:2614
  • Creates a geo index on the collection if it does not already exist.

    @@ -577,7 +577,7 @@
    details: Returns Promise<ArangoApiResponse<GenericIndex & {
        bestIndexedLevel: number;
        fields: [string, string] | [string];
        geoJson: boolean;
        legacyPolygons: boolean;
        maxNumCoverCells: number;
        type: "geo";
        worstIndexedLevel: number;
    } & {
        isNewlyCreated: boolean;
    }>>
  • +
  • Defined in collection.ts:2634
  • Creates a inverted index on the collection if it does not already exist.

    @@ -595,7 +595,7 @@
    details: Returns Promise<ArangoApiResponse<GenericIndex & {
        analyzer: string;
        cache?: boolean;
        cleanupIntervalStep: number;
        commitIntervalMsec: number;
        consolidationIntervalMsec: number;
        consolidationPolicy: Required<TierConsolidationPolicy>;
        features: AnalyzerFeature[];
        fields: {
            analyzer?: string;
            cache?: boolean;
            features?: AnalyzerFeature[];
            includeAllFields?: boolean;
            name: string;
            nested?: InvertedIndexNestedField[];
            searchField?: boolean;
            trackListPositions?: boolean;
        }[];
        includeAllFields: boolean;
        optimizeTopK: string[];
        parallelism: number;
        primaryKeyCache?: boolean;
        primarySort: {
            cache?: boolean;
            compression: Compression;
            fields: {
                direction: Direction;
                field: string;
            }[];
        };
        searchField: boolean;
        storedValues: {
            cache?: boolean;
            compression: Compression;
            fields: string[];
        }[];
        trackListPositions: boolean;
        type: "inverted";
        writeBufferActive: number;
        writeBufferIdle: number;
        writeBufferSizeMax: number;
    } & {
        isNewlyCreated: boolean;
    }>>
  • +
  • Defined in collection.ts:2653
    • @@ -609,7 +609,7 @@

      Example

      constReturns Promise<boolean>
    +
  • Defined in collection.ts:1420
  • +
  • Defined in collection.ts:1556
  • +
  • Defined in collection.ts:3264
  • +
  • Defined in collection.ts:3311
  • +
  • Defined in collection.ts:1432
  • +
  • Defined in collection.ts:1679
  • Bulk imports the given data into the collection.

    @@ -771,7 +771,7 @@
    Optional options: Returns Promise<CollectionImportResult>
  • +
  • Defined in collection.ts:3106
  • Bulk imports the given data into the collection.

    @@ -809,11 +809,11 @@
    Optional options: Returns Promise<CollectionImportResult>
  • +
  • Defined in collection.ts:3163
  • Returns Promise<ArangoApiResponse<CollectionEdgesResult<T>>>

    +
  • Defined in collection.ts:3373
  • +
  • Defined in collection.ts:2519
  • +
  • Defined in collection.ts:2506
  • +
  • Defined in collection.ts:2213
  • +
  • Defined in collection.ts:1612
  • +
  • Defined in collection.ts:3288
  • Returns Promise<ArangoApiResponse<CollectionEdgesResult<T>>>

    +
  • Defined in collection.ts:3402
  • Replaces the properties of the collection.

    @@ -999,7 +999,7 @@
    properties: Returns Promise<ArangoApiResponse<CollectionMetadata & CollectionProperties>>
  • +
  • Defined in collection.ts:1507
  • +
  • Defined in collection.ts:1541
  • +
  • Defined in collection.ts:3037
  • -

    Returns Promise<(DocumentOperationFailure | DocumentMetadata & {
        old?: Edge<T>;
    })[]>

    +
  • Defined in collection.ts:3059
  • +
  • Defined in collection.ts:2335
  • +
  • Defined in collection.ts:2462
  • +
  • Defined in collection.ts:1635
  • -

    Returns Promise<DocumentMetadata & {
        _oldRev?: string;
    } & {
        new?: Edge<T>;
        old?: Edge<T>;
    }>

    +
  • Defined in collection.ts:2888
  • -

    Returns Promise<(DocumentOperationFailure | DocumentMetadata & {
        _oldRev?: string;
    } & {
        new?: Edge<T>;
        old?: Edge<T>;
    })[]>

    +
  • Defined in collection.ts:2933
  • +
  • Defined in collection.ts:2370
  • +
  • Defined in collection.ts:1575
  • -

    Returns Promise<DocumentMetadata & {
        _oldRev?: string;
    } & {
        new?: Edge<T>;
        old?: Edge<T>;
    }>

    +
  • Defined in collection.ts:2829
  • -

    Returns Promise<(DocumentOperationFailure | DocumentMetadata & {
        _oldRev?: string;
    } & {
        new?: Edge<T>;
        old?: Edge<T>;
    })[]>

    +
  • Defined in collection.ts:2852
  • +
  • Defined in collection.ts:3442
  • +
  • Defined in collection.ts:1648
  • -

    Returns Promise<DocumentMetadata & {
        _oldRev?: string;
    } & {
        new?: Edge<T>;
        old?: Edge<T>;
    }>

    +
  • Defined in collection.ts:2969
  • -

    Returns Promise<(DocumentOperationFailure | DocumentMetadata & {
        _oldRev?: string;
    } & {
        new?: Edge<T>;
        old?: Edge<T>;
    })[]>

    +
  • Defined in collection.ts:3012
  • +
  • Defined in collection.ts:2406
  • diff --git a/devel/interfaces/cursor.CursorStats.html b/devel/interfaces/cursor.CursorStats.html index ac9dd95d9..6848faf1d 100644 --- a/devel/interfaces/cursor.CursorStats.html +++ b/devel/interfaces/cursor.CursorStats.html @@ -175,7 +175,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/interfaces/error.SystemError.html b/devel/interfaces/error.SystemError.html index d686748ae..06a8ea532 100644 --- a/devel/interfaces/error.SystemError.html +++ b/devel/interfaces/error.SystemError.html @@ -81,7 +81,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/interfaces/view.ArangoSearchViewStoredValueOptions.html b/devel/interfaces/view.ArangoSearchViewStoredValueOptions.html index a060c3679..7fbb32226 100644 --- a/devel/interfaces/view.ArangoSearchViewStoredValueOptions.html +++ b/devel/interfaces/view.ArangoSearchViewStoredValueOptions.html @@ -89,7 +89,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/modules.html b/devel/modules.html index 6861b4ef7..821c9ab8e 100644 --- a/devel/modules.html +++ b/devel/modules.html @@ -29,7 +29,6 @@

    Modules

    graph index indexes -job route transaction view @@ -60,7 +59,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/modules/analyzer.html b/devel/modules/analyzer.html index 7175bf388..c9a17d6a4 100644 --- a/devel/modules/analyzer.html +++ b/devel/modules/analyzer.html @@ -49,7 +49,6 @@

    Type Aliases

    CreateGeoS2AnalyzerOptions CreateIdentityAnalyzerOptions CreateMinHashAnalyzerOptions -CreateMultiDelimiterAnalyzerOptions CreateNearestNeighborsAnalyzerOptions CreateNgramAnalyzerOptions CreateNormAnalyzerOptions @@ -58,7 +57,6 @@

    Type Aliases

    CreateStemAnalyzerOptions CreateStopwordsAnalyzerOptions CreateTextAnalyzerOptions -CreateWildcardAnalyzerOptions DelimiterAnalyzerDescription GenericAnalyzerDescription GeoJsonAnalyzerDescription @@ -66,7 +64,6 @@

    Type Aliases

    GeoS2AnalyzerDescription IdentityAnalyzerDescription MinHashAnalyzerDescription -MultiDelimiterAnalyzerDescription NearestNeighborsAnalyzerDescription NgramAnalyzerDescription NormAnalyzerDescription @@ -75,7 +72,6 @@

    Type Aliases

    StemAnalyzerDescription StopwordsAnalyzerDescription TextAnalyzerDescription -WildcardAnalyzerDescription

    Functions

    @@ -107,7 +103,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • @@ -129,7 +124,6 @@

    CreateGeoS2AnalyzerOptions
  • CreateIdentityAnalyzerOptions
  • CreateMinHashAnalyzerOptions
  • -
  • CreateMultiDelimiterAnalyzerOptions
  • CreateNearestNeighborsAnalyzerOptions
  • CreateNgramAnalyzerOptions
  • CreateNormAnalyzerOptions
  • @@ -138,7 +132,6 @@

    CreateStemAnalyzerOptions
  • CreateStopwordsAnalyzerOptions
  • CreateTextAnalyzerOptions
  • -
  • CreateWildcardAnalyzerOptions
  • DelimiterAnalyzerDescription
  • GenericAnalyzerDescription
  • GeoJsonAnalyzerDescription
  • @@ -146,7 +139,6 @@

    GeoS2AnalyzerDescription
  • IdentityAnalyzerDescription
  • MinHashAnalyzerDescription
  • -
  • MultiDelimiterAnalyzerDescription
  • NearestNeighborsAnalyzerDescription
  • NgramAnalyzerDescription
  • NormAnalyzerDescription
  • @@ -155,7 +147,6 @@

    StemAnalyzerDescription
  • StopwordsAnalyzerDescription
  • TextAnalyzerDescription
  • -
  • WildcardAnalyzerDescription
  • isArangoAnalyzer
  • Generated using TypeDoc

    diff --git a/devel/modules/aql.html b/devel/modules/aql.html index 040a38a9e..6c61b4a2c 100644 --- a/devel/modules/aql.html +++ b/devel/modules/aql.html @@ -72,7 +72,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/modules/collection.html b/devel/modules/collection.html index 6c1e9441d..169d9ebe6 100644 --- a/devel/modules/collection.html +++ b/devel/modules/collection.html @@ -62,8 +62,6 @@

    Type Aliases

    ComputedValueProperties CreateCollectionOptions DocumentExistsOptions -DocumentOperationFailure -DocumentOperationMetadata KeyGenerator SchemaOptions SchemaProperties @@ -115,7 +113,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • @@ -147,8 +144,6 @@

    ComputedValueProperties
  • CreateCollectionOptions
  • DocumentExistsOptions
  • -
  • DocumentOperationFailure
  • -
  • DocumentOperationMetadata
  • KeyGenerator
  • SchemaOptions
  • SchemaProperties
  • diff --git a/devel/modules/connection.html b/devel/modules/connection.html index 46d24021c..8c3fb792f 100644 --- a/devel/modules/connection.html +++ b/devel/modules/connection.html @@ -69,7 +69,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/modules/cursor.html b/devel/modules/cursor.html index 5e6bf6737..039d856c2 100644 --- a/devel/modules/cursor.html +++ b/devel/modules/cursor.html @@ -63,7 +63,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/modules/database.html b/devel/modules/database.html index 9d406ec92..c902c8b85 100644 --- a/devel/modules/database.html +++ b/devel/modules/database.html @@ -30,10 +30,6 @@

    Module database

    Index

    -

    Enumerations

    -
    -

    Classes

    @@ -43,28 +39,13 @@

    Type Aliases

    AqlUserFunction ArangoUser AstNode -ClusterImbalanceInfo -ClusterRebalanceMove -ClusterRebalanceOptions -ClusterRebalanceResult -ClusterRebalanceState CreateDatabaseOptions CreateDatabaseUser CreateUserOptions DatabaseInfo ExplainOptions ExplainPlan -ExplainStats -HotBackupList -HotBackupOptions -HotBackupResult InstallServiceOptions -LogEntries -LogEntriesOptions -LogLevelLabel -LogLevelSetting -LogMessage -LogSortDirection MultiExplainResult MultiServiceDependency ParseResult @@ -131,40 +112,23 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/modules/error.html b/devel/modules/error.html index 9f9d8d332..aa3172dcb 100644 --- a/devel/modules/error.html +++ b/devel/modules/error.html @@ -68,7 +68,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/modules/foxx_manifest.html b/devel/modules/foxx_manifest.html index c85eddab2..c440910df 100644 --- a/devel/modules/foxx_manifest.html +++ b/devel/modules/foxx_manifest.html @@ -62,7 +62,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/modules/graph.html b/devel/modules/graph.html index 6e3818da7..564bcd5fe 100644 --- a/devel/modules/graph.html +++ b/devel/modules/graph.html @@ -78,7 +78,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/modules/index.html b/devel/modules/index.html index 2045a1480..8339cb6c2 100644 --- a/devel/modules/index.html +++ b/devel/modules/index.html @@ -77,7 +77,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/modules/indexes.html b/devel/modules/indexes.html index f62a17ff4..2fbe1e7e1 100644 --- a/devel/modules/indexes.html +++ b/devel/modules/indexes.html @@ -16,7 +16,7 @@
  • indexes
  • Module indexes

    -
    import type {
    FulltextIndex,
    GeoIndex,
    MdiIndex,
    PersistentIndex,
    PrimaryIndex,
    TtlIndex,
    } from "arangojs/indexes"; +
    import type {
    FulltextIndex,
    GeoIndex,
    PersistentIndex,
    PrimaryIndex,
    TtlIndex,
    ZkdIndex,
    } from "arangojs/indexes";

    The "indexes" module provides index-related types for TypeScript.

    +
  • TtlIndex
  • +
  • ZkdIndex
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/devel/modules/job.html b/devel/modules/job.html deleted file mode 100644 index 06e257e85..000000000 --- a/devel/modules/job.html +++ /dev/null @@ -1,64 +0,0 @@ -job | arangojs
    -
    - -
    -
    -
    -
    - -

    Module job

    -
    -
    -
    -
    -

    Index

    -
    -

    Classes

    -
    Job -
    -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/devel/modules/route.html b/devel/modules/route.html index e573c9d7a..5ccc75108 100644 --- a/devel/modules/route.html +++ b/devel/modules/route.html @@ -57,7 +57,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/modules/transaction.html b/devel/modules/transaction.html index b637fe927..1da69660b 100644 --- a/devel/modules/transaction.html +++ b/devel/modules/transaction.html @@ -68,7 +68,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/modules/view.html b/devel/modules/view.html index 496d45561..0d7948334 100644 --- a/devel/modules/view.html +++ b/devel/modules/view.html @@ -92,7 +92,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/types/analyzer.AnalyzerDescription.html b/devel/types/analyzer.AnalyzerDescription.html index c2be9281a..ea0d207b0 100644 --- a/devel/types/analyzer.AnalyzerDescription.html +++ b/devel/types/analyzer.AnalyzerDescription.html @@ -16,11 +16,11 @@
  • analyzer
  • AnalyzerDescription
  • Type alias AnalyzerDescription

    - +

    An object describing an Analyzer.

    +
  • Defined in analyzer.ts:632
  • Generated using TypeDoc

    diff --git a/devel/types/analyzer.AnalyzerFeature.html b/devel/types/analyzer.AnalyzerFeature.html index 9aa83e722..5426bb6a1 100644 --- a/devel/types/analyzer.AnalyzerFeature.html +++ b/devel/types/analyzer.AnalyzerFeature.html @@ -47,7 +47,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • @@ -69,7 +68,6 @@

    CreateGeoS2AnalyzerOptions
  • CreateIdentityAnalyzerOptions
  • CreateMinHashAnalyzerOptions
  • -
  • CreateMultiDelimiterAnalyzerOptions
  • CreateNearestNeighborsAnalyzerOptions
  • CreateNgramAnalyzerOptions
  • CreateNormAnalyzerOptions
  • @@ -78,7 +76,6 @@

    CreateStemAnalyzerOptions
  • CreateStopwordsAnalyzerOptions
  • CreateTextAnalyzerOptions
  • -
  • CreateWildcardAnalyzerOptions
  • DelimiterAnalyzerDescription
  • GenericAnalyzerDescription
  • GeoJsonAnalyzerDescription
  • @@ -86,7 +83,6 @@

    GeoS2AnalyzerDescription
  • IdentityAnalyzerDescription
  • MinHashAnalyzerDescription
  • -
  • MultiDelimiterAnalyzerDescription
  • NearestNeighborsAnalyzerDescription
  • NgramAnalyzerDescription
  • NormAnalyzerDescription
  • @@ -95,7 +91,6 @@

    StemAnalyzerDescription
  • StopwordsAnalyzerDescription
  • TextAnalyzerDescription
  • -
  • WildcardAnalyzerDescription
  • isArangoAnalyzer
  • Generated using TypeDoc

    diff --git a/devel/types/analyzer.AqlAnalyzerDescription.html b/devel/types/analyzer.AqlAnalyzerDescription.html index 316063b04..6028f9412 100644 --- a/devel/types/analyzer.AqlAnalyzerDescription.html +++ b/devel/types/analyzer.AqlAnalyzerDescription.html @@ -20,7 +20,7 @@

    Type alias AqlAnalyzerDescription

    An object describing an AQL Analyzer

    +
  • Defined in analyzer.ts:729
  • Generated using TypeDoc

    diff --git a/devel/types/analyzer.ClassificationAnalyzerDescription.html b/devel/types/analyzer.ClassificationAnalyzerDescription.html index 4a010799b..d299b16c2 100644 --- a/devel/types/analyzer.ClassificationAnalyzerDescription.html +++ b/devel/types/analyzer.ClassificationAnalyzerDescription.html @@ -20,7 +20,7 @@

    Type alias ClassificationAnalyzerDescription

    (Enterprise Edition only.) An object describing a Classification Analyzer

    +
  • Defined in analyzer.ts:786
  • Generated using TypeDoc

    diff --git a/devel/types/analyzer.CollationAnalyzerDescription.html b/devel/types/analyzer.CollationAnalyzerDescription.html index e381f84c3..ff7b3c1b0 100644 --- a/devel/types/analyzer.CollationAnalyzerDescription.html +++ b/devel/types/analyzer.CollationAnalyzerDescription.html @@ -20,7 +20,7 @@

    Type alias CollationAnalyzerDescription

    An object describing a Collation Analyzer

    +
  • Defined in analyzer.ts:765
  • Generated using TypeDoc

    diff --git a/devel/types/analyzer.CreateAnalyzerOptions.html b/devel/types/analyzer.CreateAnalyzerOptions.html index ceb4d2aaf..a79dc883f 100644 --- a/devel/types/analyzer.CreateAnalyzerOptions.html +++ b/devel/types/analyzer.CreateAnalyzerOptions.html @@ -16,7 +16,7 @@
  • analyzer
  • CreateAnalyzerOptions
  • Type alias CreateAnalyzerOptions

    - +

    Analyzer type and its type-specific properties.

    Generated using TypeDoc

    diff --git a/devel/types/analyzer.CreateClassificationAnalyzerOptions.html b/devel/types/analyzer.CreateClassificationAnalyzerOptions.html index 397b78c91..1d49a6e8d 100644 --- a/devel/types/analyzer.CreateClassificationAnalyzerOptions.html +++ b/devel/types/analyzer.CreateClassificationAnalyzerOptions.html @@ -50,7 +50,7 @@
    type:

    Type of the Analyzer.

    +
  • Defined in analyzer.ts:436
  • Generated using TypeDoc

    diff --git a/devel/types/analyzer.CreateCollationAnalyzerOptions.html b/devel/types/analyzer.CreateCollationAnalyzerOptions.html index cf12ce204..449571fcd 100644 --- a/devel/types/analyzer.CreateCollationAnalyzerOptions.html +++ b/devel/types/analyzer.CreateCollationAnalyzerOptions.html @@ -41,7 +41,7 @@
    type:

    Type of the Analyzer.

    +
  • Defined in analyzer.ts:384
  • Generated using TypeDoc

    diff --git a/devel/types/analyzer.CreateDelimiterAnalyzerOptions.html b/devel/types/analyzer.CreateDelimiterAnalyzerOptions.html index 1c1ce039d..acbceb692 100644 --- a/devel/types/analyzer.CreateDelimiterAnalyzerOptions.html +++ b/devel/types/analyzer.CreateDelimiterAnalyzerOptions.html @@ -37,7 +37,7 @@
    type:

    Type of the Analyzer.

    +
  • Defined in analyzer.ts:75
  • Generated using TypeDoc

    diff --git a/devel/types/analyzer.CreateGeoJsonAnalyzerOptions.html b/devel/types/analyzer.CreateGeoJsonAnalyzerOptions.html index 01142824b..192862667 100644 --- a/devel/types/analyzer.CreateGeoJsonAnalyzerOptions.html +++ b/devel/types/analyzer.CreateGeoJsonAnalyzerOptions.html @@ -56,7 +56,7 @@
    type:

    Type of the Analyzer.

    +
  • Defined in analyzer.ts:500
  • Generated using TypeDoc

    diff --git a/devel/types/analyzer.CreateGeoPointAnalyzerOptions.html b/devel/types/analyzer.CreateGeoPointAnalyzerOptions.html index d426afc77..fd2136165 100644 --- a/devel/types/analyzer.CreateGeoPointAnalyzerOptions.html +++ b/devel/types/analyzer.CreateGeoPointAnalyzerOptions.html @@ -58,7 +58,7 @@
    type:

    Type of the Analyzer.

    +
  • Defined in analyzer.ts:535
  • Generated using TypeDoc

    diff --git a/devel/types/analyzer.CreateGeoS2AnalyzerOptions.html b/devel/types/analyzer.CreateGeoS2AnalyzerOptions.html index 548de88b0..50d976682 100644 --- a/devel/types/analyzer.CreateGeoS2AnalyzerOptions.html +++ b/devel/types/analyzer.CreateGeoS2AnalyzerOptions.html @@ -66,7 +66,7 @@
    type:

    Type of the Analyzer.

    +
  • Defined in analyzer.ts:570
  • Generated using TypeDoc

    diff --git a/devel/types/analyzer.CreateIdentityAnalyzerOptions.html b/devel/types/analyzer.CreateIdentityAnalyzerOptions.html index 1671c813f..35b5eafd1 100644 --- a/devel/types/analyzer.CreateIdentityAnalyzerOptions.html +++ b/devel/types/analyzer.CreateIdentityAnalyzerOptions.html @@ -36,7 +36,7 @@
    type:

    Type of the Analyzer.

    +
  • Defined in analyzer.ts:55
  • Generated using TypeDoc

    diff --git a/devel/types/analyzer.CreateMinHashAnalyzerOptions.html b/devel/types/analyzer.CreateMinHashAnalyzerOptions.html index 7074a1ce7..fd2e9be0f 100644 --- a/devel/types/analyzer.CreateMinHashAnalyzerOptions.html +++ b/devel/types/analyzer.CreateMinHashAnalyzerOptions.html @@ -44,7 +44,7 @@
    type:

    Type of the Analyzer.

    +
  • Defined in analyzer.ts:409
  • Generated using TypeDoc

    diff --git a/devel/types/analyzer.CreateMultiDelimiterAnalyzerOptions.html b/devel/types/analyzer.CreateMultiDelimiterAnalyzerOptions.html deleted file mode 100644 index c75b84087..000000000 --- a/devel/types/analyzer.CreateMultiDelimiterAnalyzerOptions.html +++ /dev/null @@ -1,122 +0,0 @@ -CreateMultiDelimiterAnalyzerOptions | arangojs
    -
    - -
    -
    -
    -
    - -

    Type alias CreateMultiDelimiterAnalyzerOptions

    -
    CreateMultiDelimiterAnalyzerOptions: {
        features?: AnalyzerFeature[];
        properties: {
            delimiters: string[];
        };
        type: "multi_delimiter";
    }
    -

    Options for creating a Multi-Delimiter Analyzer.

    -
    -
    -

    Type declaration

    -
      -
    • -
      Optional features?: AnalyzerFeature[]
      -

      Features to enable for this Analyzer.

      -
    • -
    • -
      properties: {
          delimiters: string[];
      }
      -

      Additional properties for the Analyzer.

      -

      The value will be used as delimiter to split text into tokens as specified -in RFC 4180, without starting new records on newlines.

      -
      -
        -
      • -
        delimiters: string[]
    • -
    • -
      type: "multi_delimiter"
      -

      Type of the Analyzer.

      -
    -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/devel/types/analyzer.CreateNearestNeighborsAnalyzerOptions.html b/devel/types/analyzer.CreateNearestNeighborsAnalyzerOptions.html index 3c9bc2c2e..accffe577 100644 --- a/devel/types/analyzer.CreateNearestNeighborsAnalyzerOptions.html +++ b/devel/types/analyzer.CreateNearestNeighborsAnalyzerOptions.html @@ -45,7 +45,7 @@
    type:

    Type of the Analyzer.

    +
  • Defined in analyzer.ts:471
  • Generated using TypeDoc

    diff --git a/devel/types/analyzer.CreateNgramAnalyzerOptions.html b/devel/types/analyzer.CreateNgramAnalyzerOptions.html index bb5cfec19..d5d2f4df6 100644 --- a/devel/types/analyzer.CreateNgramAnalyzerOptions.html +++ b/devel/types/analyzer.CreateNgramAnalyzerOptions.html @@ -48,7 +48,7 @@
    type:

    Type of the Analyzer.

    +
  • Defined in analyzer.ts:155
  • Generated using TypeDoc

    diff --git a/devel/types/analyzer.CreateNormAnalyzerOptions.html b/devel/types/analyzer.CreateNormAnalyzerOptions.html index 6d96d3b8a..ae97bf0b6 100644 --- a/devel/types/analyzer.CreateNormAnalyzerOptions.html +++ b/devel/types/analyzer.CreateNormAnalyzerOptions.html @@ -51,7 +51,7 @@
    type:

    Type of the Analyzer.

    +
  • Defined in analyzer.ts:118
  • Generated using TypeDoc

    diff --git a/devel/types/analyzer.CreatePipelineAnalyzerOptions.html b/devel/types/analyzer.CreatePipelineAnalyzerOptions.html index 7663d12e2..183fe8365 100644 --- a/devel/types/analyzer.CreatePipelineAnalyzerOptions.html +++ b/devel/types/analyzer.CreatePipelineAnalyzerOptions.html @@ -40,7 +40,7 @@
    type:

    Type of the Analyzer.

    +
  • Defined in analyzer.ts:332
  • Generated using TypeDoc

    diff --git a/devel/types/analyzer.CreateSegmentationAnalyzerOptions.html b/devel/types/analyzer.CreateSegmentationAnalyzerOptions.html index 093eb396c..61e3626e4 100644 --- a/devel/types/analyzer.CreateSegmentationAnalyzerOptions.html +++ b/devel/types/analyzer.CreateSegmentationAnalyzerOptions.html @@ -46,7 +46,7 @@
    type:

    Type of the Analyzer.

    +
  • Defined in analyzer.ts:247
  • Generated using TypeDoc

    diff --git a/devel/types/analyzer.CreateStemAnalyzerOptions.html b/devel/types/analyzer.CreateStemAnalyzerOptions.html index db49c6e5a..6006e27d5 100644 --- a/devel/types/analyzer.CreateStemAnalyzerOptions.html +++ b/devel/types/analyzer.CreateStemAnalyzerOptions.html @@ -40,7 +40,7 @@
    type:

    Type of the Analyzer.

    +
  • Defined in analyzer.ts:96
  • Generated using TypeDoc

    diff --git a/devel/types/analyzer.CreateStopwordsAnalyzerOptions.html b/devel/types/analyzer.CreateStopwordsAnalyzerOptions.html index cd5fcb387..4b5691022 100644 --- a/devel/types/analyzer.CreateStopwordsAnalyzerOptions.html +++ b/devel/types/analyzer.CreateStopwordsAnalyzerOptions.html @@ -45,7 +45,7 @@
    type:

    Type of the Analyzer.

    +
  • Defined in analyzer.ts:355
  • Generated using TypeDoc

    diff --git a/devel/types/analyzer.CreateTextAnalyzerOptions.html b/devel/types/analyzer.CreateTextAnalyzerOptions.html index b8319b766..ff72e2775 100644 --- a/devel/types/analyzer.CreateTextAnalyzerOptions.html +++ b/devel/types/analyzer.CreateTextAnalyzerOptions.html @@ -79,7 +79,7 @@
    type:

    Type of the Analyzer.

    +
  • Defined in analyzer.ts:186
  • Generated using TypeDoc

    diff --git a/devel/types/analyzer.CreateWildcardAnalyzerOptions.html b/devel/types/analyzer.CreateWildcardAnalyzerOptions.html deleted file mode 100644 index 55e19376f..000000000 --- a/devel/types/analyzer.CreateWildcardAnalyzerOptions.html +++ /dev/null @@ -1,126 +0,0 @@ -CreateWildcardAnalyzerOptions | arangojs
    -
    - -
    -
    -
    -
    - -

    Type alias CreateWildcardAnalyzerOptions

    -
    CreateWildcardAnalyzerOptions: {
        features?: AnalyzerFeature[];
        properties: {
            analyzer?: Omit<CreateAnalyzerOptions, "features">;
            ngramSize: string;
        };
        type: "wildcard";
    }
    -

    Options for creating a Wildcard Analyzer.

    -
    -
    -

    Type declaration

    -
      -
    • -
      Optional features?: AnalyzerFeature[]
      -

      Features to enable for this Analyzer.

      -
    • -
    • -
      properties: {
          analyzer?: Omit<CreateAnalyzerOptions, "features">;
          ngramSize: string;
      }
      -

      Additional properties for the Analyzer.

      -
      -
        -
      • -
        Optional analyzer?: Omit<CreateAnalyzerOptions, "features">
        -

        An Analyzer definition-like object with type and properties attributes.

        -
      • -
      • -
        ngramSize: string
        -

        N-gram length. Must be a positive integer greater than or equal to 2.

        -
    • -
    • -
      type: "wildcard"
      -

      Type of the Analyzer.

      -
    -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/devel/types/analyzer.DelimiterAnalyzerDescription.html b/devel/types/analyzer.DelimiterAnalyzerDescription.html index e19e2b9ae..bf80ab53f 100644 --- a/devel/types/analyzer.DelimiterAnalyzerDescription.html +++ b/devel/types/analyzer.DelimiterAnalyzerDescription.html @@ -20,7 +20,7 @@

    Type alias DelimiterAnalyzerDescription

    An object describing a Delimiter Analyzer.

    +
  • Defined in analyzer.ts:662
  • Generated using TypeDoc

    diff --git a/devel/types/analyzer.GenericAnalyzerDescription.html b/devel/types/analyzer.GenericAnalyzerDescription.html index 564f17d51..ea4ccaebe 100644 --- a/devel/types/analyzer.GenericAnalyzerDescription.html +++ b/devel/types/analyzer.GenericAnalyzerDescription.html @@ -31,7 +31,7 @@
    name:

    A unique name for this Analyzer.

    +
  • Defined in analyzer.ts:618
  • Generated using TypeDoc

    diff --git a/devel/types/analyzer.GeoJsonAnalyzerDescription.html b/devel/types/analyzer.GeoJsonAnalyzerDescription.html index 886b665a5..afb80a561 100644 --- a/devel/types/analyzer.GeoJsonAnalyzerDescription.html +++ b/devel/types/analyzer.GeoJsonAnalyzerDescription.html @@ -20,7 +20,7 @@

    Type alias GeoJsonAnalyzerDescription

    An object describing a GeoJSON Analyzer

    +
  • Defined in analyzer.ts:809
  • Generated using TypeDoc

    diff --git a/devel/types/analyzer.GeoPointAnalyzerDescription.html b/devel/types/analyzer.GeoPointAnalyzerDescription.html index e36ad8f74..0614ccd84 100644 --- a/devel/types/analyzer.GeoPointAnalyzerDescription.html +++ b/devel/types/analyzer.GeoPointAnalyzerDescription.html @@ -20,7 +20,7 @@

    Type alias GeoPointAnalyzerDescription

    An object describing a GeoPoint Analyzer

    +
  • Defined in analyzer.ts:820
  • Generated using TypeDoc

    diff --git a/devel/types/analyzer.GeoS2AnalyzerDescription.html b/devel/types/analyzer.GeoS2AnalyzerDescription.html index 0df36f778..d17c8077a 100644 --- a/devel/types/analyzer.GeoS2AnalyzerDescription.html +++ b/devel/types/analyzer.GeoS2AnalyzerDescription.html @@ -20,7 +20,7 @@

    Type alias GeoS2AnalyzerDescription

    (Enterprise Edition only.) An object describing a GeoS2 Analyzer

    +
  • Defined in analyzer.ts:832
  • Generated using TypeDoc

    diff --git a/devel/types/analyzer.IdentityAnalyzerDescription.html b/devel/types/analyzer.IdentityAnalyzerDescription.html index e2a7c391a..5ed41df31 100644 --- a/devel/types/analyzer.IdentityAnalyzerDescription.html +++ b/devel/types/analyzer.IdentityAnalyzerDescription.html @@ -20,7 +20,7 @@

    Type alias IdentityAnalyzerDescription

    An object describing an Identity Analyzer.

    +
  • Defined in analyzer.ts:654
  • Generated using TypeDoc

    diff --git a/devel/types/analyzer.MinHashAnalyzerDescription.html b/devel/types/analyzer.MinHashAnalyzerDescription.html index 07b983ea8..f7e01693c 100644 --- a/devel/types/analyzer.MinHashAnalyzerDescription.html +++ b/devel/types/analyzer.MinHashAnalyzerDescription.html @@ -20,7 +20,7 @@

    Type alias MinHashAnalyzerDescription

    (Enterprise Edition only.) An object describing a MinHash Analyzer

    +
  • Defined in analyzer.ts:775
  • Generated using TypeDoc

    diff --git a/devel/types/analyzer.MultiDelimiterAnalyzerDescription.html b/devel/types/analyzer.MultiDelimiterAnalyzerDescription.html deleted file mode 100644 index 4106b01f8..000000000 --- a/devel/types/analyzer.MultiDelimiterAnalyzerDescription.html +++ /dev/null @@ -1,102 +0,0 @@ -MultiDelimiterAnalyzerDescription | arangojs
    -
    - -
    -
    -
    -
    - -

    Type alias MultiDelimiterAnalyzerDescription

    -
    MultiDelimiterAnalyzerDescription: GenericAnalyzerDescription & {
        properties: {
            delimiters: string[];
        };
        type: "multi_delimiter";
    }
    -

    An object describing a Multi Delimiter Analyzer.

    -
    -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/devel/types/analyzer.NearestNeighborsAnalyzerDescription.html b/devel/types/analyzer.NearestNeighborsAnalyzerDescription.html index daf7d3740..917634af8 100644 --- a/devel/types/analyzer.NearestNeighborsAnalyzerDescription.html +++ b/devel/types/analyzer.NearestNeighborsAnalyzerDescription.html @@ -20,7 +20,7 @@

    Type alias NearestNeighborsAnalyzerDescription

    (Enterprise Edition only.) An object describing a NearestNeighbors Analyzer

    +
  • Defined in analyzer.ts:798
  • Generated using TypeDoc

    diff --git a/devel/types/analyzer.NgramAnalyzerDescription.html b/devel/types/analyzer.NgramAnalyzerDescription.html index d7f37f181..45f6fae5d 100644 --- a/devel/types/analyzer.NgramAnalyzerDescription.html +++ b/devel/types/analyzer.NgramAnalyzerDescription.html @@ -20,7 +20,7 @@

    Type alias NgramAnalyzerDescription

    An object describing an Ngram Analyzer.

    +
  • Defined in analyzer.ts:690
  • Generated using TypeDoc

    diff --git a/devel/types/analyzer.NormAnalyzerDescription.html b/devel/types/analyzer.NormAnalyzerDescription.html index 43eb94ae8..4f9b9fa29 100644 --- a/devel/types/analyzer.NormAnalyzerDescription.html +++ b/devel/types/analyzer.NormAnalyzerDescription.html @@ -20,7 +20,7 @@

    Type alias NormAnalyzerDescription

    An object describing a Norm Analyzer.

    +
  • Defined in analyzer.ts:678
  • Generated using TypeDoc

    diff --git a/devel/types/analyzer.PipelineAnalyzerDescription.html b/devel/types/analyzer.PipelineAnalyzerDescription.html index bde28d1a8..28744c4a5 100644 --- a/devel/types/analyzer.PipelineAnalyzerDescription.html +++ b/devel/types/analyzer.PipelineAnalyzerDescription.html @@ -20,7 +20,7 @@

    Type alias PipelineAnalyzerDescription

    An object describing a Pipeline Analyzer

    +
  • Defined in analyzer.ts:744
  • Generated using TypeDoc

    diff --git a/devel/types/analyzer.SegmentationAnalyzerDescription.html b/devel/types/analyzer.SegmentationAnalyzerDescription.html index fed3b0618..1722c0d31 100644 --- a/devel/types/analyzer.SegmentationAnalyzerDescription.html +++ b/devel/types/analyzer.SegmentationAnalyzerDescription.html @@ -20,7 +20,7 @@

    Type alias SegmentationAnalyzerDescription

    An object describing a Segmentation Analyzer

    +
  • Defined in analyzer.ts:718
  • Generated using TypeDoc

    diff --git a/devel/types/analyzer.StemAnalyzerDescription.html b/devel/types/analyzer.StemAnalyzerDescription.html index f84ad3872..cc07a64ed 100644 --- a/devel/types/analyzer.StemAnalyzerDescription.html +++ b/devel/types/analyzer.StemAnalyzerDescription.html @@ -20,7 +20,7 @@

    Type alias StemAnalyzerDescription

    An object describing a Stem Analyzer.

    +
  • Defined in analyzer.ts:670
  • Generated using TypeDoc

    diff --git a/devel/types/analyzer.StopwordsAnalyzerDescription.html b/devel/types/analyzer.StopwordsAnalyzerDescription.html index 9bfe8ee76..208a166c0 100644 --- a/devel/types/analyzer.StopwordsAnalyzerDescription.html +++ b/devel/types/analyzer.StopwordsAnalyzerDescription.html @@ -20,7 +20,7 @@

    Type alias StopwordsAnalyzerDescription

    An object describing a Stopwords Analyzer

    +
  • Defined in analyzer.ts:754
  • Generated using TypeDoc

    diff --git a/devel/types/analyzer.TextAnalyzerDescription.html b/devel/types/analyzer.TextAnalyzerDescription.html index c4709d461..216b1e66c 100644 --- a/devel/types/analyzer.TextAnalyzerDescription.html +++ b/devel/types/analyzer.TextAnalyzerDescription.html @@ -20,7 +20,7 @@

    Type alias TextAnalyzerDescription

    An object describing a Text Analyzer.

    +
  • Defined in analyzer.ts:702
  • Generated using TypeDoc

    diff --git a/devel/types/analyzer.WildcardAnalyzerDescription.html b/devel/types/analyzer.WildcardAnalyzerDescription.html deleted file mode 100644 index e270ec992..000000000 --- a/devel/types/analyzer.WildcardAnalyzerDescription.html +++ /dev/null @@ -1,102 +0,0 @@ -WildcardAnalyzerDescription | arangojs
    -
    - -
    -
    -
    -
    - -

    Type alias WildcardAnalyzerDescription

    -
    WildcardAnalyzerDescription: GenericAnalyzerDescription & {
        properties: {
            analyzer?: Omit<AnalyzerDescription, "name" | "features">;
            ngramSize: number;
        };
        type: "wildcard";
    }
    -

    An object describing a Wildcard Analyzer

    -
    -
    -
    -

    Generated using TypeDoc

    -
    \ No newline at end of file diff --git a/devel/types/aql.AqlValue.html b/devel/types/aql.AqlValue.html index d71a845e6..119a6343b 100644 --- a/devel/types/aql.AqlValue.html +++ b/devel/types/aql.AqlValue.html @@ -21,7 +21,7 @@

    Type alias AqlValue

    helper function.

    +
  • Defined in aql.ts:71
  • +
  • Defined in collection.ts:653
  • +
  • Defined in collection.ts:453
  • +
  • Defined in collection.ts:473
  • +
  • Defined in collection.ts:928
  • +
  • Defined in collection.ts:1308
  • +
  • Defined in collection.ts:883
  • +
  • Defined in collection.ts:1274
  • -
    CollectionInsertOptions: {
        mergeObjects?: boolean;
        overwriteMode?: "ignore" | "update" | "replace" | "conflict";
        refillIndexCaches?: boolean;
        returnNew?: boolean;
        returnOld?: boolean;
        silent?: boolean;
        versionAttribute?: string;
        waitForSync?: boolean;
    }
    +
    CollectionInsertOptions: {
        mergeObjects?: boolean;
        overwriteMode?: "ignore" | "update" | "replace" | "conflict";
        refillIndexCaches?: boolean;
        returnNew?: boolean;
        returnOld?: boolean;
        silent?: boolean;
        waitForSync?: boolean;
    }

    Options for inserting a new document into a collection.

    @@ -63,19 +63,12 @@
    Optional silent -
    Optional versionAttribute?: string
    -

    If set, the attribute with the name specified by the option is looked up -in the stored document and the attribute value is compared numerically to -the value of the versioning attribute in the supplied document that is -supposed to update/replace it.

    -
    -
  • Optional waitForSync?: boolean

    If set to true, data will be synchronized to disk before returning.

    Default: false

  • +
  • Defined in collection.ts:665
  • +
  • Defined in collection.ts:487
  • +
  • Defined in collection.ts:221
  • +
  • Defined in collection.ts:193
  • +
  • Defined in collection.ts:269
  • +
  • Defined in collection.ts:417
  • +
  • Defined in collection.ts:625
  • +
  • Defined in collection.ts:844
  • -
    CollectionReplaceOptions: {
        ifMatch?: string;
        ignoreRevs?: boolean;
        refillIndexCaches?: boolean;
        returnNew?: boolean;
        returnOld?: boolean;
        silent?: boolean;
        versionAttribute?: string;
        waitForSync?: boolean;
    }
    +
    CollectionReplaceOptions: {
        ifMatch?: string;
        ignoreRevs?: boolean;
        refillIndexCaches?: boolean;
        returnNew?: boolean;
        returnOld?: boolean;
        silent?: boolean;
        waitForSync?: boolean;
    }

    Options for replacing an existing document in a collection.

    @@ -59,19 +59,12 @@
    Optional silent -
    Optional versionAttribute?: string
    -

    If set, the attribute with the name specified by the option is looked up -in the stored document and the attribute value is compared numerically to -the value of the versioning attribute in the supplied document that is -supposed to update/replace it.

    -
    -
  • Optional waitForSync?: boolean

    If set to true, data will be synchronized to disk before returning.

    Default: false

  • +
  • Defined in collection.ts:723
  • -
    CollectionUpdateOptions: {
        ifMatch?: string;
        ignoreRevs?: boolean;
        keepNull?: boolean;
        mergeObjects?: boolean;
        refillIndexCaches?: boolean;
        returnNew?: boolean;
        returnOld?: boolean;
        silent?: boolean;
        versionAttribute?: string;
        waitForSync?: boolean;
    }
    +
    CollectionUpdateOptions: {
        ifMatch?: string;
        ignoreRevs?: boolean;
        keepNull?: boolean;
        mergeObjects?: boolean;
        refillIndexCaches?: boolean;
        returnNew?: boolean;
        returnOld?: boolean;
        silent?: boolean;
        waitForSync?: boolean;
    }

    Options for updating a document in a collection.

    @@ -72,19 +72,12 @@
    Optional silent -
    Optional versionAttribute?: string
    -

    If set, the attribute with the name specified by the option is looked up -in the stored document and the attribute value is compared numerically to -the value of the versioning attribute in the supplied document that is -supposed to update/replace it.

    -
    -
  • Optional waitForSync?: boolean

    If set to true, data will be synchronized to disk before returning.

    Default: false

  • +
  • Defined in collection.ts:776
  • +
  • Defined in collection.ts:351
  • +
  • Defined in collection.ts:159
  • +
  • Defined in collection.ts:515
  • +
  • Defined in collection.ts:609
  • @@ -79,8 +78,6 @@

    ComputedValueProperties
  • CreateCollectionOptions
  • DocumentExistsOptions
  • -
  • DocumentOperationFailure
  • -
  • DocumentOperationMetadata
  • KeyGenerator
  • SchemaOptions
  • SchemaProperties
  • diff --git a/devel/types/collection.SchemaOptions.html b/devel/types/collection.SchemaOptions.html index 37fd43aaf..3910c753a 100644 --- a/devel/types/collection.SchemaOptions.html +++ b/devel/types/collection.SchemaOptions.html @@ -36,7 +36,7 @@

    rule:

    JSON Schema description of the validation schema for documents.

    +
  • Defined in collection.ts:395
  • +
  • Defined in collection.ts:247
  • @@ -79,8 +78,6 @@

    ComputedValueProperties
  • CreateCollectionOptions
  • DocumentExistsOptions
  • -
  • DocumentOperationFailure
  • -
  • DocumentOperationMetadata
  • KeyGenerator
  • SchemaOptions
  • SchemaProperties
  • diff --git a/devel/types/collection.SimpleQueryAllOptions.html b/devel/types/collection.SimpleQueryAllOptions.html index 4bfdfe9c9..711655109 100644 --- a/devel/types/collection.SimpleQueryAllOptions.html +++ b/devel/types/collection.SimpleQueryAllOptions.html @@ -52,7 +52,7 @@

    Optional ttlQueryOptions.

    +
  • Defined in collection.ts:976
  • +
  • Defined in collection.ts:943
  • +
  • Defined in collection.ts:1109
  • @@ -83,8 +82,6 @@

    ComputedValueProperties
  • CreateCollectionOptions
  • DocumentExistsOptions
  • -
  • DocumentOperationFailure
  • -
  • DocumentOperationMetadata
  • KeyGenerator
  • SchemaOptions
  • SchemaProperties
  • diff --git a/devel/types/collection.SimpleQueryRemoveByExampleOptions.html b/devel/types/collection.SimpleQueryRemoveByExampleOptions.html index 40f00b19e..b4917dadc 100644 --- a/devel/types/collection.SimpleQueryRemoveByExampleOptions.html +++ b/devel/types/collection.SimpleQueryRemoveByExampleOptions.html @@ -36,7 +36,7 @@

    Optional waitForSyn

    Default: false

    +
  • Defined in collection.ts:1050
  • +
  • Defined in collection.ts:1324
  • +
  • Defined in collection.ts:1079
  • +
  • Defined in collection.ts:1369
  • +
  • Defined in collection.ts:1070
  • +
  • Defined in collection.ts:1339
  • +
  • Defined in collection.ts:1015
  • +
  • Defined in collection.ts:1354
  • +
  • Defined in collection.ts:1130
  • @@ -86,8 +85,6 @@

    ComputedValueProperties
  • CreateCollectionOptions
  • DocumentExistsOptions
  • -
  • DocumentOperationFailure
  • -
  • DocumentOperationMetadata
  • KeyGenerator
  • SchemaOptions
  • SchemaProperties
  • diff --git a/devel/types/collection.WriteOperation.html b/devel/types/collection.WriteOperation.html index 4c7d572d9..f7e6579c7 100644 --- a/devel/types/collection.WriteOperation.html +++ b/devel/types/collection.WriteOperation.html @@ -47,7 +47,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • @@ -79,8 +78,6 @@

    ComputedValueProperties
  • CreateCollectionOptions
  • DocumentExistsOptions
  • -
  • DocumentOperationFailure
  • -
  • DocumentOperationMetadata
  • KeyGenerator
  • SchemaOptions
  • SchemaProperties
  • diff --git a/devel/types/connection.AgentOptions.html b/devel/types/connection.AgentOptions.html index b1f507c80..67eab09b8 100644 --- a/devel/types/connection.AgentOptions.html +++ b/devel/types/connection.AgentOptions.html @@ -53,7 +53,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/types/connection.ArangoApiResponse.html b/devel/types/connection.ArangoApiResponse.html index dbec6802c..0a787a558 100644 --- a/devel/types/connection.ArangoApiResponse.html +++ b/devel/types/connection.ArangoApiResponse.html @@ -52,7 +52,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/types/connection.ArangoResponseMetadata.html b/devel/types/connection.ArangoResponseMetadata.html index 280d7a709..c12c988e4 100644 --- a/devel/types/connection.ArangoResponseMetadata.html +++ b/devel/types/connection.ArangoResponseMetadata.html @@ -58,7 +58,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/types/connection.BasicAuthCredentials.html b/devel/types/connection.BasicAuthCredentials.html index a6f9bc8f8..2a6b60a50 100644 --- a/devel/types/connection.BasicAuthCredentials.html +++ b/devel/types/connection.BasicAuthCredentials.html @@ -58,7 +58,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/types/connection.BearerAuthCredentials.html b/devel/types/connection.BearerAuthCredentials.html index fa07cc6ad..a2db65bd5 100644 --- a/devel/types/connection.BearerAuthCredentials.html +++ b/devel/types/connection.BearerAuthCredentials.html @@ -54,7 +54,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/types/connection.Config.html b/devel/types/connection.Config.html index 4734ced44..d6462388c 100644 --- a/devel/types/connection.Config.html +++ b/devel/types/connection.Config.html @@ -109,8 +109,8 @@

    Optional maxRetries -

    When working with a single server, the retries (if any) will be made to -the same server.

    +

    When working with a single server without leader/follower failover, the +retries (if any) will be made to the same server.

    This setting currently has no effect when using arangojs in a browser.

    Note: Requests bound to a specific server (e.g. fetching query results) will never be retried automatically and ignore this setting.

    @@ -143,9 +143,9 @@
    Optional retryOnCon
  • Optional url?: string | string[]

    Base URL of the ArangoDB server or list of server URLs.

    -

    When working with a cluster, the method acquireHostList -can be used to automatically pick up additional coordinators/followers at -any point.

    +

    When working with a cluster or a single server with leader/follower +failover, the method acquireHostList can be used to +automatically pick up additional coordinators/followers at any point.

    When running ArangoDB on a unix socket, e.g. /tmp/arangodb.sock, the following URL formats are supported for unix sockets:

  • diff --git a/devel/types/connection.Headers.html b/devel/types/connection.Headers.html index 1d12ad11d..18fddc638 100644 --- a/devel/types/connection.Headers.html +++ b/devel/types/connection.Headers.html @@ -49,7 +49,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/types/connection.LoadBalancingStrategy.html b/devel/types/connection.LoadBalancingStrategy.html index 15d600418..f788e8545 100644 --- a/devel/types/connection.LoadBalancingStrategy.html +++ b/devel/types/connection.LoadBalancingStrategy.html @@ -58,7 +58,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/types/connection.Params.html b/devel/types/connection.Params.html index f2ed05ea0..101497509 100644 --- a/devel/types/connection.Params.html +++ b/devel/types/connection.Params.html @@ -48,7 +48,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/types/connection.RequestInterceptors.html b/devel/types/connection.RequestInterceptors.html index 10143f978..71456ddb9 100644 --- a/devel/types/connection.RequestInterceptors.html +++ b/devel/types/connection.RequestInterceptors.html @@ -93,7 +93,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/types/connection.RequestOptions.html b/devel/types/connection.RequestOptions.html index 47f7d3a72..c32b928c3 100644 --- a/devel/types/connection.RequestOptions.html +++ b/devel/types/connection.RequestOptions.html @@ -104,7 +104,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/types/connection.XhrOptions.html b/devel/types/connection.XhrOptions.html index a760200ac..b6e749a9d 100644 --- a/devel/types/connection.XhrOptions.html +++ b/devel/types/connection.XhrOptions.html @@ -97,7 +97,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/types/database.AccessLevel.html b/devel/types/database.AccessLevel.html index ee0de5cec..633a6ef6f 100644 --- a/devel/types/database.AccessLevel.html +++ b/devel/types/database.AccessLevel.html @@ -20,7 +20,7 @@

    Type alias AccessLevel

    Access level for an ArangoDB user's access to a collection or database.

    +
  • Defined in database.ts:1322
  • +
  • Defined in database.ts:780
  • +
  • Defined in database.ts:1327
  • +
  • Defined in database.ts:518
  • +
  • Defined in database.ts:691
  • +
  • Defined in database.ts:663
  • +
  • Defined in database.ts:1345
  • +
  • Defined in database.ts:721
  • +
  • Defined in database.ts:351
  • +
  • Defined in database.ts:393
  • +
  • Defined in database.ts:802
  • -
    MultiExplainResult: {
        cacheable: boolean;
        plans: ExplainPlan[];
        stats: ExplainStats;
        warnings: {
            code: number;
            message: string;
        }[];
    }
    +
    MultiExplainResult: {
        cacheable: boolean;
        plans: ExplainPlan[];
        stats: {
            plansCreated: number;
            rulesExecuted: number;
            rulesSkipped: number;
        };
        warnings: {
            code: number;
            message: string;
        }[];
    }

    Result of explaining a query with multiple plans.

    @@ -31,15 +31,28 @@
    plans:

    Query plans.

  • -
    stats: ExplainStats
    -

    Optimizer statistics for the explained query.

    +
    stats: {
        plansCreated: number;
        rulesExecuted: number;
        rulesSkipped: number;
    }
    +

    Statistical information about the query plan generation.

    +
    +
      +
    • +
      plansCreated: number
      +

      Total number of plans created.

    • +
      rulesExecuted: number
      +

      Total number of rules executed for this query.

      +
    • +
    • +
      rulesSkipped: number
      +

      Number of rules skipped for this query.

      +
  • +
  • warnings: {
        code: number;
        message: string;
    }[]

    Warnings encountered while planning the query execution.

  • +
  • Defined in database.ts:483
  • +
  • Defined in database.ts:1142
  • +
  • Defined in database.ts:527
  • -
    QueryInfo: {
        bindVars: Record<string, any>;
        database: string;
        id: string;
        peakMemoryUsage: number;
        query: string;
        runTime: number;
        started: string;
        state: "executing" | "finished" | "killed";
        stream: boolean;
        user: string;
    }
    +
    QueryInfo: {
        bindVars: Record<string, any>;
        id: string;
        query: string;
        runTime: number;
        started: string;
        state: "executing" | "finished" | "killed";
        stream: boolean;
    }

    Object describing a query.

    @@ -27,18 +27,10 @@
    bindVars:

    Bind parameters used in the query.

  • -
    database: string
    -

    Name of the database the query runs in.

    -
  • -
  • id: string

    Unique identifier for this query.

  • -
    peakMemoryUsage: number
    -

    Maximum memory usage in bytes of the query.

    -
  • -
  • query: string

    Query string (potentially truncated).

  • @@ -57,13 +49,9 @@
    state:
    stream: boolean

    Whether the query uses a streaming cursor.

    -
    -
  • -
    user: string
    -

    Name of the user that started the query.

  • +
  • Defined in database.ts:629
  • +
  • Defined in database.ts:549
  • +
  • Defined in database.ts:178
  • +
  • Defined in database.ts:564
  • +
  • Defined in database.ts:597
  • +
  • Defined in database.ts:1412
  • +
  • Defined in database.ts:844
  • +
  • Defined in database.ts:1058
  • +
  • Defined in database.ts:1007
  • +
  • Defined in database.ts:976
  • +
  • Defined in database.ts:1295
  • +
  • Defined in database.ts:1285
  • +
  • Defined in database.ts:1177
  • Test results for a Foxx service's tests using the stream reporter.

    +
  • Defined in database.ts:1213
  • +
  • Defined in database.ts:1203
  • +
  • Defined in database.ts:1233
  • +
  • Defined in database.ts:1242
  • +
  • Defined in database.ts:1223
  • Test results for a Foxx service's tests in TAP format.

    +
  • Defined in database.ts:1280
  • representation.

    +
  • Defined in database.ts:1264
  • representation.

    +
  • Defined in database.ts:1252
  • -
    SingleExplainResult: {
        cacheable: boolean;
        plan: ExplainPlan;
        stats: ExplainStats;
        warnings: {
            code: number;
            message: string;
        }[];
    }
    +
    SingleExplainResult: {
        cacheable: boolean;
        plan: ExplainPlan;
        stats: {
            executionTime: number;
            peakMemoryUsage: number;
            plansCreated: number;
            rulesExecuted: number;
            rulesSkipped: number;
        };
        warnings: {
            code: number;
            message: string;
        }[];
    }

    Result of explaining a query with a single plan.

    @@ -31,15 +31,36 @@
    plan:

    Query plan.

  • -
    stats: ExplainStats
    -

    Optimizer statistics for the explained query.

    +
    stats: {
        executionTime: number;
        peakMemoryUsage: number;
        plansCreated: number;
        rulesExecuted: number;
        rulesSkipped: number;
    }
    +

    Statistical information about the query plan generation.

    +
    +
      +
    • +
      executionTime: number
      +

      Time in seconds needed to explain the query.

      +
    • +
    • +
      peakMemoryUsage: number
      +

      Maximum memory usage in bytes of the query during explain.

    • +
      plansCreated: number
      +

      Total number of plans created.

      +
    • +
    • +
      rulesExecuted: number
      +

      Total number of rules executed for this query.

      +
    • +
    • +
      rulesSkipped: number
      +

      Number of rules skipped for this query.

      +
  • +
  • warnings: {
        code: number;
        message: string;
    }[]

    Warnings encountered while planning the query execution.

  • +
  • Defined in database.ts:440
  • +
  • Defined in database.ts:1107
  • +
  • Defined in database.ts:1306
  • +
  • Defined in database.ts:120
  • +
  • Defined in database.ts:379
  • +
  • Defined in database.ts:142
  • +
  • Defined in database.ts:956
  • +
  • Defined in database.ts:900
  • +
  • Defined in database.ts:1393
  • +
  • Defined in database.ts:1371
  • +
  • Defined in database.ts:758
  • diff --git a/devel/types/documents.DocumentData.html b/devel/types/documents.DocumentData.html index 71229ae03..476b501b3 100644 --- a/devel/types/documents.DocumentData.html +++ b/devel/types/documents.DocumentData.html @@ -52,7 +52,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/types/documents.DocumentMetadata.html b/devel/types/documents.DocumentMetadata.html index 2a931ca8e..9961f8464 100644 --- a/devel/types/documents.DocumentMetadata.html +++ b/devel/types/documents.DocumentMetadata.html @@ -64,7 +64,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/types/documents.DocumentSelector.html b/devel/types/documents.DocumentSelector.html index e1cc27551..afc98f7ea 100644 --- a/devel/types/documents.DocumentSelector.html +++ b/devel/types/documents.DocumentSelector.html @@ -50,7 +50,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/types/documents.Edge.html b/devel/types/documents.Edge.html index 613a38711..b9d81b910 100644 --- a/devel/types/documents.Edge.html +++ b/devel/types/documents.Edge.html @@ -52,7 +52,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/types/documents.EdgeData.html b/devel/types/documents.EdgeData.html index 41369406f..1ec7b72e7 100644 --- a/devel/types/documents.EdgeData.html +++ b/devel/types/documents.EdgeData.html @@ -52,7 +52,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/types/documents.EdgeMetadata.html b/devel/types/documents.EdgeMetadata.html index 0701d9034..ce59b3c96 100644 --- a/devel/types/documents.EdgeMetadata.html +++ b/devel/types/documents.EdgeMetadata.html @@ -58,7 +58,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/types/documents.ObjectWithId.html b/devel/types/documents.ObjectWithId.html index 692cf89a0..aae0cfd90 100644 --- a/devel/types/documents.ObjectWithId.html +++ b/devel/types/documents.ObjectWithId.html @@ -55,7 +55,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/types/documents.ObjectWithKey.html b/devel/types/documents.ObjectWithKey.html index e39707611..02ad253c6 100644 --- a/devel/types/documents.ObjectWithKey.html +++ b/devel/types/documents.ObjectWithKey.html @@ -55,7 +55,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/types/documents.Patch.html b/devel/types/documents.Patch.html index 84bfd7f7a..33e3483d6 100644 --- a/devel/types/documents.Patch.html +++ b/devel/types/documents.Patch.html @@ -55,7 +55,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/types/foxx_manifest.Configuration.html b/devel/types/foxx_manifest.Configuration.html index 8af94b601..39d71f465 100644 --- a/devel/types/foxx_manifest.Configuration.html +++ b/devel/types/foxx_manifest.Configuration.html @@ -66,7 +66,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/types/foxx_manifest.Dependency.html b/devel/types/foxx_manifest.Dependency.html index 8da6bd538..010192c81 100644 --- a/devel/types/foxx_manifest.Dependency.html +++ b/devel/types/foxx_manifest.Dependency.html @@ -70,7 +70,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/types/foxx_manifest.File.html b/devel/types/foxx_manifest.File.html index 5a7ea5406..6cbf2f5db 100644 --- a/devel/types/foxx_manifest.File.html +++ b/devel/types/foxx_manifest.File.html @@ -62,7 +62,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/types/foxx_manifest.FoxxManifest.html b/devel/types/foxx_manifest.FoxxManifest.html index c7d467e5a..16f66af64 100644 --- a/devel/types/foxx_manifest.FoxxManifest.html +++ b/devel/types/foxx_manifest.FoxxManifest.html @@ -122,7 +122,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/types/graph.AddEdgeDefinitionOptions.html b/devel/types/graph.AddEdgeDefinitionOptions.html index 43804b237..24b17bae2 100644 --- a/devel/types/graph.AddEdgeDefinitionOptions.html +++ b/devel/types/graph.AddEdgeDefinitionOptions.html @@ -53,7 +53,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/types/graph.AddVertexCollectionOptions.html b/devel/types/graph.AddVertexCollectionOptions.html index ce7a0bdf9..8655731f9 100644 --- a/devel/types/graph.AddVertexCollectionOptions.html +++ b/devel/types/graph.AddVertexCollectionOptions.html @@ -53,7 +53,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/types/graph.CreateGraphOptions.html b/devel/types/graph.CreateGraphOptions.html index 7ba423ceb..a34c8cf0a 100644 --- a/devel/types/graph.CreateGraphOptions.html +++ b/devel/types/graph.CreateGraphOptions.html @@ -100,7 +100,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/types/graph.EdgeDefinition.html b/devel/types/graph.EdgeDefinition.html index e3a030588..e2d434332 100644 --- a/devel/types/graph.EdgeDefinition.html +++ b/devel/types/graph.EdgeDefinition.html @@ -62,7 +62,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/types/graph.EdgeDefinitionOptions.html b/devel/types/graph.EdgeDefinitionOptions.html index 68cb41147..b252b1895 100644 --- a/devel/types/graph.EdgeDefinitionOptions.html +++ b/devel/types/graph.EdgeDefinitionOptions.html @@ -62,7 +62,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/types/graph.GraphCollectionInsertOptions.html b/devel/types/graph.GraphCollectionInsertOptions.html index 56832d4c7..1682e471b 100644 --- a/devel/types/graph.GraphCollectionInsertOptions.html +++ b/devel/types/graph.GraphCollectionInsertOptions.html @@ -61,7 +61,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/types/graph.GraphCollectionReadOptions.html b/devel/types/graph.GraphCollectionReadOptions.html index 036d50a5a..2bca20f36 100644 --- a/devel/types/graph.GraphCollectionReadOptions.html +++ b/devel/types/graph.GraphCollectionReadOptions.html @@ -69,7 +69,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/types/graph.GraphCollectionRemoveOptions.html b/devel/types/graph.GraphCollectionRemoveOptions.html index 2f332f4df..43c0ae1d2 100644 --- a/devel/types/graph.GraphCollectionRemoveOptions.html +++ b/devel/types/graph.GraphCollectionRemoveOptions.html @@ -67,7 +67,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/types/graph.GraphCollectionReplaceOptions.html b/devel/types/graph.GraphCollectionReplaceOptions.html index 270fc85d4..aaa575495 100644 --- a/devel/types/graph.GraphCollectionReplaceOptions.html +++ b/devel/types/graph.GraphCollectionReplaceOptions.html @@ -79,7 +79,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/types/graph.GraphInfo.html b/devel/types/graph.GraphInfo.html index 8c36908fc..337096246 100644 --- a/devel/types/graph.GraphInfo.html +++ b/devel/types/graph.GraphInfo.html @@ -97,7 +97,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/types/graph.ReplaceEdgeDefinitionOptions.html b/devel/types/graph.ReplaceEdgeDefinitionOptions.html index e3b84af86..ee6b0230b 100644 --- a/devel/types/graph.ReplaceEdgeDefinitionOptions.html +++ b/devel/types/graph.ReplaceEdgeDefinitionOptions.html @@ -53,7 +53,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • diff --git a/devel/types/indexes.EnsureFulltextIndexOptions.html b/devel/types/indexes.EnsureFulltextIndexOptions.html index 75afaaa31..190692f8f 100644 --- a/devel/types/indexes.EnsureFulltextIndexOptions.html +++ b/devel/types/indexes.EnsureFulltextIndexOptions.html @@ -75,7 +75,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • @@ -84,9 +83,9 @@

    EnsureFulltextIndexOptions
  • EnsureGeoIndexOptions
  • EnsureInvertedIndexOptions
  • -
  • EnsureMdiIndexOptions
  • EnsurePersistentIndexOptions
  • EnsureTtlIndexOptions
  • +
  • EnsureZkdIndexOptions
  • FulltextIndex
  • GenericIndex
  • GeoIndex
  • @@ -98,12 +97,12 @@

    InvertedIndexNestedFieldOptions
  • InvertedIndexPrimarySortFieldOptions
  • InvertedIndexStoredValueOptions
  • -
  • MdiIndex
  • ObjectWithId
  • ObjectWithName
  • PersistentIndex
  • PrimaryIndex
  • -
  • TtlIndex
  • +
  • TtlIndex
  • +
  • ZkdIndex
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/devel/types/indexes.EnsureGeoIndexOptions.html b/devel/types/indexes.EnsureGeoIndexOptions.html index 223d23179..73267ee6a 100644 --- a/devel/types/indexes.EnsureGeoIndexOptions.html +++ b/devel/types/indexes.EnsureGeoIndexOptions.html @@ -47,7 +47,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • @@ -56,9 +55,9 @@

    EnsureFulltextIndexOptions
  • EnsureGeoIndexOptions
  • EnsureInvertedIndexOptions
  • -
  • EnsureMdiIndexOptions
  • EnsurePersistentIndexOptions
  • EnsureTtlIndexOptions
  • +
  • EnsureZkdIndexOptions
  • FulltextIndex
  • GenericIndex
  • GeoIndex
  • @@ -70,12 +69,12 @@

    InvertedIndexNestedFieldOptions
  • InvertedIndexPrimarySortFieldOptions
  • InvertedIndexStoredValueOptions
  • -
  • MdiIndex
  • ObjectWithId
  • ObjectWithName
  • PersistentIndex
  • PrimaryIndex
  • -
  • TtlIndex
  • +
  • TtlIndex
  • +
  • ZkdIndex
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/devel/types/indexes.EnsureInvertedIndexOptions.html b/devel/types/indexes.EnsureInvertedIndexOptions.html index 6b874b368..17f21e79a 100644 --- a/devel/types/indexes.EnsureInvertedIndexOptions.html +++ b/devel/types/indexes.EnsureInvertedIndexOptions.html @@ -189,7 +189,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • @@ -198,9 +197,9 @@

    EnsureFulltextIndexOptions
  • EnsureGeoIndexOptions
  • EnsureInvertedIndexOptions
  • -
  • EnsureMdiIndexOptions
  • EnsurePersistentIndexOptions
  • EnsureTtlIndexOptions
  • +
  • EnsureZkdIndexOptions
  • FulltextIndex
  • GenericIndex
  • GeoIndex
  • @@ -212,12 +211,12 @@

    InvertedIndexNestedFieldOptions
  • InvertedIndexPrimarySortFieldOptions
  • InvertedIndexStoredValueOptions
  • -
  • MdiIndex
  • ObjectWithId
  • ObjectWithName
  • PersistentIndex
  • PrimaryIndex
  • -
  • TtlIndex
  • +
  • TtlIndex
  • +
  • ZkdIndex
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/devel/types/indexes.EnsurePersistentIndexOptions.html b/devel/types/indexes.EnsurePersistentIndexOptions.html index c22c43c21..313460243 100644 --- a/devel/types/indexes.EnsurePersistentIndexOptions.html +++ b/devel/types/indexes.EnsurePersistentIndexOptions.html @@ -103,7 +103,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • @@ -112,9 +111,9 @@

    EnsureFulltextIndexOptions
  • EnsureGeoIndexOptions
  • EnsureInvertedIndexOptions
  • -
  • EnsureMdiIndexOptions
  • EnsurePersistentIndexOptions
  • EnsureTtlIndexOptions
  • +
  • EnsureZkdIndexOptions
  • FulltextIndex
  • GenericIndex
  • GeoIndex
  • @@ -126,12 +125,12 @@

    InvertedIndexNestedFieldOptions
  • InvertedIndexPrimarySortFieldOptions
  • InvertedIndexStoredValueOptions
  • -
  • MdiIndex
  • ObjectWithId
  • ObjectWithName
  • PersistentIndex
  • PrimaryIndex
  • -
  • TtlIndex
  • +
  • TtlIndex
  • +
  • ZkdIndex
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/devel/types/indexes.EnsureTtlIndexOptions.html b/devel/types/indexes.EnsureTtlIndexOptions.html index 1297ad1ae..657e3accb 100644 --- a/devel/types/indexes.EnsureTtlIndexOptions.html +++ b/devel/types/indexes.EnsureTtlIndexOptions.html @@ -73,7 +73,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • @@ -82,9 +81,9 @@

    EnsureFulltextIndexOptions
  • EnsureGeoIndexOptions
  • EnsureInvertedIndexOptions
  • -
  • EnsureMdiIndexOptions
  • EnsurePersistentIndexOptions
  • EnsureTtlIndexOptions
  • +
  • EnsureZkdIndexOptions
  • FulltextIndex
  • GenericIndex
  • GeoIndex
  • @@ -96,12 +95,12 @@

    InvertedIndexNestedFieldOptions
  • InvertedIndexPrimarySortFieldOptions
  • InvertedIndexStoredValueOptions
  • -
  • MdiIndex
  • ObjectWithId
  • ObjectWithName
  • PersistentIndex
  • PrimaryIndex
  • -
  • TtlIndex
  • +
  • TtlIndex
  • +
  • ZkdIndex
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/devel/types/indexes.EnsureMdiIndexOptions.html b/devel/types/indexes.EnsureZkdIndexOptions.html similarity index 95% rename from devel/types/indexes.EnsureMdiIndexOptions.html rename to devel/types/indexes.EnsureZkdIndexOptions.html index 10da7b0af..a87975970 100644 --- a/devel/types/indexes.EnsureMdiIndexOptions.html +++ b/devel/types/indexes.EnsureZkdIndexOptions.html @@ -1,4 +1,4 @@ -EnsureMdiIndexOptions | arangojs
    +EnsureZkdIndexOptions | arangojs
    -
    EnsureMdiIndexOptions: {
        fieldValueTypes: "double";
        fields: string[];
        inBackground?: boolean;
        name?: string;
        type: "mdi";
        unique?: boolean;
    }
    -

    Options for creating a MDI index.

    +
  • EnsureZkdIndexOptions
  • +

    Type alias EnsureZkdIndexOptions

    +
    EnsureZkdIndexOptions: {
        fieldValueTypes: "double";
        fields: string[];
        inBackground?: boolean;
        name?: string;
        type: "zkd";
        unique?: boolean;
    }
    +

    Options for creating a ZKD index.

    Type declaration

    @@ -41,7 +41,7 @@
    Optional name

    A unique name for this index.

  • -
    type: "mdi"
    +
    type: "zkd"

    Type of this index.

  • @@ -77,7 +77,6 @@

    graph

  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • @@ -86,9 +85,9 @@

    EnsureFulltextIndexOptions
  • EnsureGeoIndexOptions
  • EnsureInvertedIndexOptions
  • -
  • EnsureMdiIndexOptions
  • EnsurePersistentIndexOptions
  • EnsureTtlIndexOptions
  • +
  • EnsureZkdIndexOptions
  • FulltextIndex
  • GenericIndex
  • GeoIndex
  • @@ -100,12 +99,12 @@

    InvertedIndexNestedFieldOptions
  • InvertedIndexPrimarySortFieldOptions
  • InvertedIndexStoredValueOptions
  • -
  • MdiIndex
  • ObjectWithId
  • ObjectWithName
  • PersistentIndex
  • PrimaryIndex
  • -
  • TtlIndex
  • +
  • TtlIndex
  • +
  • ZkdIndex
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/devel/types/indexes.FulltextIndex.html b/devel/types/indexes.FulltextIndex.html index 75118a674..2c74026f7 100644 --- a/devel/types/indexes.FulltextIndex.html +++ b/devel/types/indexes.FulltextIndex.html @@ -50,7 +50,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • @@ -59,9 +58,9 @@

    EnsureFulltextIndexOptions
  • EnsureGeoIndexOptions
  • EnsureInvertedIndexOptions
  • -
  • EnsureMdiIndexOptions
  • EnsurePersistentIndexOptions
  • EnsureTtlIndexOptions
  • +
  • EnsureZkdIndexOptions
  • FulltextIndex
  • GenericIndex
  • GeoIndex
  • @@ -73,12 +72,12 @@

    InvertedIndexNestedFieldOptions
  • InvertedIndexPrimarySortFieldOptions
  • InvertedIndexStoredValueOptions
  • -
  • MdiIndex
  • ObjectWithId
  • ObjectWithName
  • PersistentIndex
  • PrimaryIndex
  • -
  • TtlIndex
  • +
  • TtlIndex
  • +
  • ZkdIndex
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/devel/types/indexes.GenericIndex.html b/devel/types/indexes.GenericIndex.html index 662d97336..c8f94bacb 100644 --- a/devel/types/indexes.GenericIndex.html +++ b/devel/types/indexes.GenericIndex.html @@ -67,7 +67,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • @@ -76,9 +75,9 @@

    EnsureFulltextIndexOptions
  • EnsureGeoIndexOptions
  • EnsureInvertedIndexOptions
  • -
  • EnsureMdiIndexOptions
  • EnsurePersistentIndexOptions
  • EnsureTtlIndexOptions
  • +
  • EnsureZkdIndexOptions
  • FulltextIndex
  • GenericIndex
  • GeoIndex
  • @@ -90,12 +89,12 @@

    InvertedIndexNestedFieldOptions
  • InvertedIndexPrimarySortFieldOptions
  • InvertedIndexStoredValueOptions
  • -
  • MdiIndex
  • ObjectWithId
  • ObjectWithName
  • PersistentIndex
  • PrimaryIndex
  • -
  • TtlIndex
  • +
  • TtlIndex
  • +
  • ZkdIndex
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/devel/types/indexes.GeoIndex.html b/devel/types/indexes.GeoIndex.html index a8ce8ee16..1f3d7cad8 100644 --- a/devel/types/indexes.GeoIndex.html +++ b/devel/types/indexes.GeoIndex.html @@ -47,7 +47,6 @@

    graph
  • index
  • indexes
  • -
  • job
  • route
  • transaction
  • view
  • @@ -56,9 +55,9 @@

    EnsureFulltextIndexOptions
  • EnsureGeoIndexOptions
  • EnsureInvertedIndexOptions
  • -
  • EnsureMdiIndexOptions
  • EnsurePersistentIndexOptions
  • EnsureTtlIndexOptions
  • +
  • EnsureZkdIndexOptions
  • FulltextIndex
  • GenericIndex
  • GeoIndex
  • @@ -70,12 +69,12 @@

    InvertedIndexNestedFieldOptions
  • InvertedIndexPrimarySortFieldOptions
  • InvertedIndexStoredValueOptions
  • -
  • MdiIndex
  • ObjectWithId
  • ObjectWithName
  • PersistentIndex
  • PrimaryIndex
  • -
  • TtlIndex
  • +
  • TtlIndex
  • +
  • ZkdIndex
  • Generated using TypeDoc

    \ No newline at end of file diff --git a/devel/types/indexes.Index.html b/devel/types/indexes.Index.html index f40c5c264..15939ea91 100644 --- a/devel/types/indexes.Index.html +++ b/devel/types/indexes.Index.html @@ -16,7 +16,7 @@
  • indexes
  • Index
  • Type alias Index

    - +

    An object representing an index.