diff --git a/3.10/administration-cluster.md b/3.10/administration-cluster.md index f7925b7e60..17768e0ea6 100644 --- a/3.10/administration-cluster.md +++ b/3.10/administration-cluster.md @@ -165,10 +165,13 @@ The available sharding strategies are: (excluding smart edge collections) - `enterprise-hash-smart-edge`: default sharding used for new smart edge collections starting from version 3.4 +- `enterprise-hex-smart-vertex`: sharding used for vertex collections of + EnterpriseGraphs -If no sharding strategy is specified, the default will be `hash` for -all collections, and `enterprise-hash-smart-edge` for all smart edge -collections (requires the *Enterprise Edition* of ArangoDB). +If no sharding strategy is specified, the default is `hash` for +all normal collections, `enterprise-hash-smart-edge` for all smart edge +collections, and `enterprise-hex-smart-vertex` for EnterpriseGraph +vertex collections (the latter two require the *Enterprise Edition* of ArangoDB). Manually overriding the sharding strategy does not yet provide a benefit, but it may later in case other sharding strategies are added. diff --git a/3.10/appendix-references-dbobject.md b/3.10/appendix-references-dbobject.md index ab006a2e5f..8f2405e6a1 100644 --- a/3.10/appendix-references-dbobject.md +++ b/3.10/appendix-references-dbobject.md @@ -42,9 +42,9 @@ The following methods exist on the *_db* object: *AQL* -* [db._createStatement(query)](aql/invocation-with-arangosh.html#with-_createstatement-arangostatement) +* [db._createStatement(query)](aql/invocation-with-arangosh.html#with-db_createstatement-arangostatement) * [db._query(query)](aql/invocation-with-arangosh.html#with-db_query) -* [db._explain(query)](release-notes-new-features28.html#miscellaneous-improvements) +* [db._explain(query)](aql/execution-and-performance-explaining-queries.html) * [db._parse(query)](aql/invocation-with-arangosh.html#query-validation) *Document* diff --git a/3.10/aql/execution-and-performance-query-profiler.md b/3.10/aql/execution-and-performance-query-profiler.md index 17dcce1b15..cc77bfa200 100644 --- a/3.10/aql/execution-and-performance-query-profiler.md +++ b/3.10/aql/execution-and-performance-query-profiler.md @@ -59,7 +59,7 @@ each stage had to do. Without any indexes this query should have to perform the following operations: -1. Perfom a full collection scan via a _EnumerateCollectionNode_ and outputting +1. Perform a full collection scan via a _EnumerateCollectionNode_ and outputting a row containing the document in `doc`. 2. Calculate the boolean expression `LET #1 = doc.value < 10` from all inputs via a _CalculationNode_ @@ -128,7 +128,7 @@ The resulting query profile contains a _SubqueryNode_ which has the runtime of all its children combined. Actually, we cheated a little. The optimizer would have completely removed the -subquery if it had not been deactivated (`rules:["-all"]`). The optimimized +subquery if it had not been deactivated (`rules:["-all"]`). The optimized version would take longer in the "optimizing plan" stage, but should perform better with a lot of results. @@ -165,8 +165,8 @@ The following query gets us all age groups in buckets (0-9, 10-19, 20-29, ...): Without any indexes this query should have to perform the following operations: -1. Perfom a full collection scan via a _EnumerateCollectionNode_ and outputing - a row containg the document in `doc`. +1. Perform a full collection scan via a _EnumerateCollectionNode_ and outputting + a row containing the document in `doc`. 2. Compute the expression `LET #1 = FLOOR(u.age / 10) * 10` for all inputs via a _CalculationNode_ 3. Perform the aggregations via the _CollectNode_ @@ -212,10 +212,10 @@ Another mistake is to start a graph traversal from the wrong side Assume we have two vertex collections _users_ and _products_ as well as an edge collection _purchased_. The graph model looks like this: `(users) <--[purchased]--> (products)`, i.e. every user is connected with an -edge in _pruchased_ to zero or more _products_. +edge in _purchased_ to zero or more _products_. If we want to know all users that have purchased the product _playstation_ -as well as produts of `type` _legwarmer_ we could use this query: +as well as products of `type` _legwarmer_ we could use this query: ```aql FOR prod IN products diff --git a/3.10/aql/execution-and-performance-query-statistics.md b/3.10/aql/execution-and-performance-query-statistics.md index 82ff9e1981..b61f77ef8b 100644 --- a/3.10/aql/execution-and-performance-query-statistics.md +++ b/3.10/aql/execution-and-performance-query-statistics.md @@ -9,23 +9,23 @@ A query that has been executed will always return execution statistics. Executio can be retrieved by calling `getExtra()` on the cursor. The statistics are returned in the return value's `stats` attribute: -{% arangoshexample examplevar="examplevar" script="script" result="result" %} + {% arangoshexample examplevar="examplevar" script="script" result="result" %} @startDocuBlockInline 06_workWithAQL_statementsExtra @EXAMPLE_ARANGOSH_OUTPUT{06_workWithAQL_statementsExtra} - |db._query(` + | db._query(` | FOR i IN 1..@count INSERT | { _key: CONCAT('anothertest', TO_STRING(i)) } | INTO mycollection`, - | {count: 100}, + | { count: 100 }, | {}, - | {fullCount: true} + | { fullCount: true } ).getExtra(); - |db._query({ - | "query": `FOR i IN 200..@count INSERT - | { _key: CONCAT('anothertest', TO_STRING(i)) } - | INTO mycollection`, - | "bindVars": {count: 300}, - | "options": { fullCount: true} + | db._query({ + | "query": `FOR i IN 200..@count INSERT + | { _key: CONCAT('anothertest', TO_STRING(i)) } + | INTO mycollection`, + | "bindVars": { count: 300 }, + | "options": { fullCount: true } }).getExtra(); @END_EXAMPLE_ARANGOSH_OUTPUT @endDocuBlock 06_workWithAQL_statementsExtra @@ -34,53 +34,59 @@ return value's `stats` attribute: The meaning of the statistics attributes is as follows: -- **writesExecuted**: the total number of data-modification operations successfully executed. - This is equivalent to the number of documents created, updated or removed by `INSERT`, - `UPDATE`, `REPLACE`, `REMOVE` or `UPSERT` operations. -- **writesIgnored**: the total number of data-modification operations that were unsuccessful, - but have been ignored because of query option `ignoreErrors`. -- **scannedFull**: the total number of documents iterated over when scanning a collection - without an index. Documents scanned by subqueries will be included in the result, but - operations triggered by built-in or user-defined AQL functions will not. -- **scannedIndex**: the total number of documents iterated over when scanning a collection using - an index. Documents scanned by subqueries will be included in the result, but operations - triggered by built-in or user-defined AQL functions will not. -- **cursorsCreated**: the total number of cursor objects created during query execution. Cursor +- **writesExecuted**: The total number of data-modification operations successfully executed. + This is equivalent to the number of documents created, updated, or removed by `INSERT`, + `UPDATE`, `REPLACE`, `REMOVE`, or `UPSERT` operations. +- **writesIgnored**: The total number of data-modification operations that were unsuccessful, + but have been ignored because of the `ignoreErrors` query option. +- **scannedFull**: The total number of documents iterated over when scanning a collection + without an index. Documents scanned by subqueries are included in the result, but + operations triggered by built-in or user-defined AQL functions are not. +- **scannedIndex**: The total number of documents iterated over when scanning a collection using + an index. Documents scanned by subqueries are included in the result, but operations + triggered by built-in or user-defined AQL functions are not. +- **cursorsCreated**: The total number of cursor objects created during query execution. Cursor objects are created for index lookups. -- **cursorsRearmed**: the total number of times an existing cursor object was repurposed. +- **cursorsRearmed**: The total number of times an existing cursor object was repurposed. Repurposing an existing cursor object is normally more efficient compared to destroying an existing cursor object and creating a new one from scratch. -- **cacheHits**: the total number of index entries read from in-memory caches for indexes - of type edge or persistent. This value will only be non-zero when reading from indexes +- **cacheHits**: The total number of index entries read from in-memory caches for indexes + of type edge or persistent. This value is only non-zero when reading from indexes that have an in-memory cache enabled, and when the query allows using the in-memory cache (i.e. using equality lookups on all index attributes). -- **cacheMisses**: the total number of cache read attempts for index entries that could not - be served from in-memory caches for indexes of type edge or persistent. This value will - only be non-zero when reading from indexes that have an in-memory cache enabled, the +- **cacheMisses**: The total number of cache read attempts for index entries that could not + be served from in-memory caches for indexes of type edge or persistent. This value + is only non-zero when reading from indexes that have an in-memory cache enabled, the query allows using the in-memory cache (i.e. using equality lookups on all index attributes) and the looked up values are not present in the cache. -- **filtered**: the total number of documents that were removed after executing a filter condition - in a `FilterNode` or another node that post-filters data. - Note that `IndexNode`s can also filter documents by selecting only the required index range +- **filtered**: The total number of documents removed after executing a filter condition + in a `FilterNode` or another node that post-filters data. Note that nodes of the + `IndexNode` type can also filter documents by selecting only the required index range from a collection, and the `filtered` value only indicates how much filtering was done by a - post filter in the `IndexNode` itself or following `FilterNode`s. - `EnumerateCollectionNode`s and `TraversalNode`s can also apply filter conditions and can - reported the number of filtered documents. -- **fullCount**: the total number of documents that matched the search condition if the query's - final top-level `LIMIT` statement were not present. + post-filter in the `IndexNode` itself or following `FilterNode` nodes. + Nodes of the `EnumerateCollectionNode` and `TraversalNode` types can also apply + filter conditions and can report the number of filtered documents. +- **httpRequests**: The total number of cluster-internal HTTP requests performed. +- **fullCount** (_optional_): The total number of documents that matched the search condition if the query's + final top-level `LIMIT` operation were not present. This attribute may only be returned if the `fullCount` option was set when starting the - query and will only contain a sensible value if the query contained a `LIMIT` operation on + query and only contains a sensible value if the query contains a `LIMIT` operation on the top level. -- **peakMemoryUsage**: the maximum memory usage of the query while it was running. In a cluster, +- **executionTime**: The query execution time (wall-clock time) in seconds. +- **peakMemoryUsage**: The maximum memory usage of the query while it was running. In a cluster, the memory accounting is done per shard, and the memory usage reported is the peak memory usage value from the individual shards. Note that to keep things light-weight, the per-query memory usage is tracked on a relatively high level, not including any memory allocator overhead nor any memory used for temporary results calculations (e.g. memory allocated/deallocated inside AQL expressions and function calls). -- **nodes**: _(optional)_ when the query was executed with the option `profile` set to at least `2`, - then this value contains runtime statistics per query execution node. This field contains the - node id (in `id`), the number of calls to this node `calls` and the number of items returned - by this node `items` (Items are the temporary results returned at this stage). You can correlate - this statistics with the `plan` returned in `extra`. For a human readable output you can execute - `db._profileQuery(, )` in the arangosh. +- **nodes** (_optional_): When the query is executed with the option `profile` set to at least `2`, + then this value contains runtime statistics per query execution node. + For a human readable output you can execute `db._profileQuery(, )` + in the arangosh. + - **id**: The execution node ID to correlate the statistics with the `plan` returned in + the `extra` attribute. + - **calls**: The number of calls to this node. + - **items**: The number of items returned by this node. Items are the temporary results + returned at this stage. + - **runtime**: The execution time of this node in seconds. diff --git a/3.10/aql/functions-miscellaneous.md b/3.10/aql/functions-miscellaneous.md index c4dfb2e3f9..fc281e42bb 100644 --- a/3.10/aql/functions-miscellaneous.md +++ b/3.10/aql/functions-miscellaneous.md @@ -478,7 +478,7 @@ The result can be used to approximate the Jaccard similarity of sets. Calculate the number of hashes (MinHash signature size) needed to not exceed the specified error amount. -- **error** (number): the probabilistic error you can tolerate in the range `[0, 1]` +- **error** (number): the probabilistic error you can tolerate in the range `[0, 1)` - returns **numHashes** (number): the required number of hashes to not exceed the specified error amount @@ -487,7 +487,7 @@ specified error amount. {% aqlexample examplevar="examplevar" type="type" query="query" bind="bind" result="result" %} @startDocuBlockInline aqlMinHashCount @EXAMPLE_AQL{aqlMinHashCount} - RETURN MINHASH_ERROR(0.05) + RETURN MINHASH_COUNT(0.05) @END_EXAMPLE_AQL @endDocuBlock aqlMinHashCount {% endaqlexample %} diff --git a/3.10/aql/functions-string.md b/3.10/aql/functions-string.md index 79457f035e..e7fad4c70b 100644 --- a/3.10/aql/functions-string.md +++ b/3.10/aql/functions-string.md @@ -1500,7 +1500,7 @@ SHA512() `SHA512(text) → hash` -Calculate the SHA512 checksum for `text` and returns it in a hexadecimal +Calculate the SHA512 checksum for `text` and return it in a hexadecimal string representation. - **text** (string): a string @@ -1508,14 +1508,14 @@ string representation. **Examples** -{% aqlexample examplevar="examplevar" type="type" query="query" bind="bind" result="result" %} -@startDocuBlockInline aqlSha512 -@EXAMPLE_AQL{aqlSha512} - RETURN SHA512("foobar") -@END_EXAMPLE_AQL -@endDocuBlock aqlSha512 -{% endaqlexample %} -{% include aqlexample.html id=examplevar type=type query=query bind=bind result=result %} + {% aqlexample examplevar="examplevar" type="type" query="query" bind="bind" result="result" %} + @startDocuBlockInline aqlSha512 + @EXAMPLE_AQL{aqlSha512} + RETURN SHA512("foobar") + @END_EXAMPLE_AQL + @endDocuBlock aqlSha512 + {% endaqlexample %} + {% include aqlexample.html id=examplevar type=type query=query bind=bind result=result %} SOUNDEX() --------- diff --git a/3.10/aql/invocation-with-arangosh.md b/3.10/aql/invocation-with-arangosh.md index a0f67795df..8968821522 100644 --- a/3.10/aql/invocation-with-arangosh.md +++ b/3.10/aql/invocation-with-arangosh.md @@ -1,22 +1,23 @@ --- layout: default -description: Within the ArangoDB shell, the _query and _createStatement methods of the db object can be used to execute AQL queries +description: >- + In the ArangoDB shell, you can use the db._query() and db._createStatement() + methods to execute AQL queries. --- # Executing queries from _arangosh_ -Within the ArangoDB shell, the *_query* and *_createStatement* methods of the -*db* object can be used to execute AQL queries. This chapter also describes +In the ArangoDB shell, you can use the `db._query()` and `db._createStatement()` +methods to execute AQL queries. This chapter also describes how to use bind parameters, counting, statistics and cursors. -With db._query --------------- +## With `db._query()` -One can execute queries with the *_query* method of the *db* object. -This will run the specified query in the context of the currently -selected database and return the query results in a cursor. The results of the cursor -can be printed using its *toArray* method: +You can execute queries with the `_query()` method of the `db` object. +This runs the specified query in the context of the currently +selected database and returns the query results in a cursor. +You can print the results of the cursor using its `toArray()` method: -{% arangoshexample examplevar="examplevar" script="script" result="result" %} + {% arangoshexample examplevar="examplevar" script="script" result="result" %} @startDocuBlockInline 01_workWithAQL_all @EXAMPLE_ARANGOSH_OUTPUT{01_workWithAQL_all} ~addIgnoreCollection("mycollection") @@ -25,167 +26,171 @@ can be printed using its *toArray* method: db._query('FOR my IN mycollection RETURN my._key').toArray() @END_EXAMPLE_ARANGOSH_OUTPUT @endDocuBlock 01_workWithAQL_all -{% endarangoshexample %} -{% include arangoshexample.html id=examplevar script=script result=result %} + {% endarangoshexample %} + {% include arangoshexample.html id=examplevar script=script result=result %} -### db._query Bind parameters +### `db._query()` bind parameters -To pass bind parameters into a query, they can be specified as second argument to the -*_query* method: +To pass bind parameters into a query, you can specify a second argument when +calling the `_query()` method: -{% arangoshexample examplevar="examplevar" script="script" result="result" %} + {% arangoshexample examplevar="examplevar" script="script" result="result" %} @startDocuBlockInline 02_workWithAQL_bindValues @EXAMPLE_ARANGOSH_OUTPUT{02_workWithAQL_bindValues} - |db._query( - | 'FOR c IN @@collection FILTER c._key == @key RETURN c._key', { + | db._query('FOR c IN @@collection FILTER c._key == @key RETURN c._key', { | '@collection': 'mycollection', | 'key': 'testKey' - }).toArray(); + }).toArray(); @END_EXAMPLE_ARANGOSH_OUTPUT @endDocuBlock 02_workWithAQL_bindValues -{% endarangoshexample %} -{% include arangoshexample.html id=examplevar script=script result=result %} + {% endarangoshexample %} + {% include arangoshexample.html id=examplevar script=script result=result %} ### ES6 template strings It is also possible to use ES6 template strings for generating AQL queries. There is -a template string generator function named *aql*; we call it once to demonstrate -its result, and once putting it directly into the query: - -```js -var key = 'testKey'; -aql`FOR c IN mycollection FILTER c._key == ${key} RETURN c._key`; -{ - "query" : "FOR c IN mycollection FILTER c._key == @value0 RETURN c._key", - "bindVars" : { - "value0" : "testKey" - } -} -``` - -{% arangoshexample examplevar="examplevar" script="script" result="result" %} +a template string generator function named `aql`. + +The following example demonstrates what the template string function generates: + + {% arangoshexample examplevar="examplevar" script="script" result="result" %} + @startDocuBlockInline 02_workWithAQL_aqlTemplateString + @EXAMPLE_ARANGOSH_OUTPUT{02_workWithAQL_aqlTemplateString} + var key = 'testKey'; + aql`FOR c IN mycollection FILTER c._key == ${key} RETURN c._key` + @END_EXAMPLE_ARANGOSH_OUTPUT + @endDocuBlock 02_workWithAQL_aqlTemplateString + {% endarangoshexample %} + {% include arangoshexample.html id=examplevar script=script result=result %} + +The next example directly uses the generated result to execute a query: + + {% arangoshexample examplevar="examplevar" script="script" result="result" %} @startDocuBlockInline 02_workWithAQL_aqlQuery @EXAMPLE_ARANGOSH_OUTPUT{02_workWithAQL_aqlQuery} var key = 'testKey'; - |db._query( - | aql`FOR c IN mycollection FILTER c._key == ${key} RETURN c._key` - ).toArray(); + | db._query( + | aql`FOR c IN mycollection FILTER c._key == ${key} RETURN c._key` + ).toArray(); @END_EXAMPLE_ARANGOSH_OUTPUT @endDocuBlock 02_workWithAQL_aqlQuery -{% endarangoshexample %} -{% include arangoshexample.html id=examplevar script=script result=result %} + {% endarangoshexample %} + {% include arangoshexample.html id=examplevar script=script result=result %} Arbitrary JavaScript expressions can be used in queries that are generated with the -*aql* template string generator. Collection objects are handled automatically: +`aql` template string generator. Collection objects are handled automatically: -{% arangoshexample examplevar="examplevar" script="script" result="result" %} + {% arangoshexample examplevar="examplevar" script="script" result="result" %} @startDocuBlockInline 02_workWithAQL_aqlCollectionQuery @EXAMPLE_ARANGOSH_OUTPUT{02_workWithAQL_aqlCollectionQuery} var key = 'testKey'; - |db._query(aql`FOR doc IN ${ db.mycollection } RETURN doc` - ).toArray(); + db._query(aql`FOR doc IN ${ db.mycollection } RETURN doc`).toArray(); @END_EXAMPLE_ARANGOSH_OUTPUT @endDocuBlock 02_workWithAQL_aqlCollectionQuery -{% endarangoshexample %} -{% include arangoshexample.html id=examplevar script=script result=result %} + {% endarangoshexample %} + {% include arangoshexample.html id=examplevar script=script result=result %} -Note: data-modification AQL queries normally do not return a result (unless the AQL query -contains an extra *RETURN* statement). When not using a *RETURN* statement in the query, the -*toArray* method will return an empty array. +Note: data-modification AQL queries normally do not return a result unless the +AQL query contains a `RETURN` operation at the top-level. Without a `RETURN` +operation, the `toArray()` method returns an empty array. ### Statistics and extra Information -It is always possible to retrieve statistics for a query with the *getExtra* method: +It is always possible to retrieve statistics for a query with the `getExtra()` method: -{% arangoshexample examplevar="examplevar" script="script" result="result" %} + {% arangoshexample examplevar="examplevar" script="script" result="result" %} @startDocuBlockInline 03_workWithAQL_getExtra @EXAMPLE_ARANGOSH_OUTPUT{03_workWithAQL_getExtra} - |db._query(`FOR i IN 1..100 - | INSERT { _key: CONCAT('test', TO_STRING(i)) } - | INTO mycollection` + | db._query(`FOR i IN 1..100 + | INSERT { _key: CONCAT('test', TO_STRING(i)) } INTO mycollection` ).getExtra(); @END_EXAMPLE_ARANGOSH_OUTPUT @endDocuBlock 03_workWithAQL_getExtra {% endarangoshexample %} {% include arangoshexample.html id=examplevar script=script result=result %} -The meaning of the statistics values is described in [Execution statistics](execution-and-performance-query-statistics.html). -You also will find warnings in here; If you're designing queries on the shell be sure to also look at it. +The meaning of the statistics values is described in +[Query statistics](execution-and-performance-query-statistics.html). + +Query warnings are also reported here. If you design queries on the shell, +be sure to check for warnings. ### Setting a memory limit -To set a memory limit for the query, pass *options* to the *_query* method. +To set a memory limit for the query, pass `options` to the `_query()` method. The memory limit specifies the maximum number of bytes that the query is allowed to use. When a single AQL query reaches the specified limit value, the query will be aborted with a *resource limit exceeded* exception. In a cluster, the memory accounting is done per shard, so the limit value is effectively a memory limit per query per shard. -{% arangoshexample examplevar="examplevar" script="script" result="result" %} + {% arangoshexample examplevar="examplevar" script="script" result="result" %} @startDocuBlockInline 02_workWithAQL_memoryLimit @EXAMPLE_ARANGOSH_OUTPUT{02_workWithAQL_memoryLimit} - |db._query( - | 'FOR i IN 1..100000 SORT i RETURN i', {}, { - | memoryLimit: 100000 - }).toArray(); // xpError(ERROR_RESOURCE_LIMIT) + | db._query( + | 'FOR i IN 1..100000 SORT i RETURN i', + | {}, + | { memoryLimit: 100000 } + ).toArray(); // xpError(ERROR_RESOURCE_LIMIT) @END_EXAMPLE_ARANGOSH_OUTPUT @endDocuBlock 02_workWithAQL_memoryLimit {% endarangoshexample %} {% include arangoshexample.html id=examplevar script=script result=result %} If no memory limit is specified, then the server default value (controlled by -startup option *--query.memory-limit* will be used for restricting the maximum amount -of memory the query can use. A memory limit value of *0* means that the maximum +the `--query.memory-limit` startup option) is used for restricting the maximum amount +of memory the query can use. A memory limit value of `0` means that the maximum amount of memory for the query is not restricted. ### Setting options -There are further options that can be passed in the *options* attribute of the *_query* method: +There are further options that you can pass in the `options` attribute of the `_query()` method: -- `fullCount`: if set to _true_ and the query contains a _LIMIT_ clause, then the - result will have an extra attribute with the sub-attributes _stats_ and _fullCount_, - `{ ... , "extra": { "stats": { "fullCount": 123 } } }`. The _fullCount_ attribute will - contain the number of documents in the result before the last top-level LIMIT in the +- `fullCount`: if set to `true` and if the query contains a `LIMIT` operation, then the + result has an extra attribute with the sub-attributes `stats` and `fullCount`, like + `{ ... , "extra": { "stats": { "fullCount": 123 } } }`. The `fullCount` attribute + contains the number of documents in the result before the last top-level `LIMIT` in the query was applied. It can be used to count the number of documents that match certain filter criteria, but only return a subset of them, in one go. It is thus similar to - MySQL's _SQL_CALC_FOUND_ROWS_ hint. Note that setting the option will disable a few - LIMIT optimizations and may lead to more documents being processed, and thus make - queries run longer. Note that the _fullCount_ attribute may only be present in the - result if the query has a top-level LIMIT clause and the LIMIT clause is actually - used in the query. - -- `failOnWarning`: when set to *true*, this will make the query throw an exception and - abort in case a warning occurs. This option should be used in development to catch - errors early. If set to *false*, warnings will not be propagated to exceptions and - will be returned with the query results. There is also a server configuration option - `--query.fail-on-warning` for setting the default value for *failOnWarning* so it does - not need to be set on a per-query level. - -- `cache`: if set to *true*, this will put the query result into the query result cache + MySQL's `SQL_CALC_FOUND_ROWS` hint. Note that setting the option disables a few + `LIMIT` optimizations and may lead to more documents being processed, and thus make + queries run longer. Note that the `fullCount` attribute may only be present in the + result if the query has a top-level `LIMIT` operation and the `LIMIT` operation + is actually used in the query. + +- `failOnWarning`: when set to `true`, this makes the query throw an exception and + abort in case a warning occurs. You should use this option in development to catch + errors early. If set to `false`, warnings don't propagate to exceptions and are + returned with the query results. There is also a `--query.fail-on-warning` + startup options for setting the default value for `failOnWarning`, so that you + don't need to set it on a per-query level. + +- `cache`: if set to `true`, this puts the query result into the query result cache if the query result is eligible for caching and the query cache is running in demand - mode. If set to *false*, the query result will not be inserted into the query result - cache. Note that query results will never be inserted into the query result cache if - the query result cache is disabled, and that they will be automatically inserted into - the query result cache when it is active in non-demand mode. + mode. If set to `false`, the query result is not inserted into the query result + cache. Note that query results are never inserted into the query result cache if + the query result cache is disabled, and that they are automatically inserted into + the query result cache if it is active in non-demand mode. -- `fillBlockCache`: if set to *true* or not specified, this will make the query store +- `fillBlockCache`: if set to `true` or not specified, this makes the query store the data it reads via the RocksDB storage engine in the RocksDB block cache. This is - usually the desired behavior. The option can be set to *false* for queries that are + usually the desired behavior. You can set the option to `false` for queries that are known to either read a lot of data that would thrash the block cache, or for queries that read data known to be outside of the hot set. By setting the option - to *false*, data read by the query will not make it into the RocksDB block cache if + to `false`, data read by the query does not make it into the RocksDB block cache if it is not already in there, thus leaving more room for the actual hot set. -- `profile`: if set to *true* or *1*, returns extra timing information for the query. The timing - information is accessible via the *getExtra* method of the query result. Set to *2* the query will - include execution stats per query plan node in sub-attribute *stats.nodes* of the *extra* return attribute. - Additionally the query plan is returned in the sub-attribute *extra.plan*. +- `profile`: if set to `true` or `1`, returns extra timing information for the query. + The timing information is accessible via the `getExtra()` method of the query + result. If set to `2`, the query includes execution statistics per query plan + execution node in `stats.nodes` sub-attribute of the `extra` return attribute. + Additionally, the query plan is returned in the `extra.plan` sub-attribute. - `maxWarningCount`: limits the number of warnings that are returned by the query if - *failOnWarning* is not set to *true*. The default value is *10*. + `failOnWarning` is not set to `true`. The default value is `10`. -- `maxNumberOfPlans`: limits the number of query execution plans the optimizer will - create at most. Reducing the number of query execution plans may speed up query plan +- `maxNumberOfPlans`: limits the number of query execution plans the optimizer + creates at most. Reducing the number of query execution plans may speed up query plan creation and optimization for complex queries, but normally there is no need to adjust this value. @@ -196,21 +201,21 @@ There are further options that can be passed in the *options* attribute of the * a rule, prefix its name with a `-`, to enable a rule, prefix it with a `+`. There is also a pseudo-rule `all`, which matches all optimizer rules. `-all` disables all rules. -- `stream`: Specify *true* and the query will be executed in a **streaming** fashion. The query result is - not stored on the server, but calculated on the fly. *Beware*: long-running queries will +- `stream`: Specify `true` and the query is executed in a **streaming** fashion. The query result is + not stored on the server, but calculated on the fly. **Warning**: long-running queries need to hold the collection locks for as long as the query cursor exists. It is advisable to *only* use this option on short-running queries *or* without exclusive locks. - When set to *false* the query will be executed right away in its entirety. - In that case query results are either returned right away (if the result set is small enough), - or stored on the arangod instance and accessible via the cursor API. + When set to `false`, the query is executed right away in its entirety. + In that case, the query results are either returned right away (if the result + set is small enough), or stored on the arangod instance and can be accessed + via the cursor API. - Please note that the query options `cache`, `count` and `fullCount` will not work on streaming - queries. Additionally query statistics, warnings and profiling data will only be available - after the query is finished. - The default value is *false* + Please note that the query options `cache`, `count` and `fullCount` don't work on streaming + queries. Additionally, query statistics, warnings, and profiling data is only + available after the query has finished. The default value is `false`. -- `maxRuntime`: The query has to be executed within the given runtime or it will be killed. - The value is specified in seconds. The default value is *0.0* (no timeout). +- `maxRuntime`: The query has to be executed within the given runtime or it is killed. + The value is specified in seconds. The default value is `0.0` (no timeout). - `maxNodesPerCallstack`: The number of execution nodes in the query plan after that stack splitting is performed to avoid a potential stack overflow. @@ -220,39 +225,38 @@ There are further options that can be passed in the *options* attribute of the * This option is only useful for testing and debugging and normally does not need any adjustment. -- `maxTransactionSize`: transaction size limit in bytes +- `maxTransactionSize`: The transaction size limit in bytes. -- `intermediateCommitSize`: maximum total size of operations after which an intermediate - commit is performed automatically +- `intermediateCommitSize`: The maximum total size of operations after which an intermediate + commit is performed automatically. -- `intermediateCommitCount`: maximum number of operations after which an intermediate - commit is performed automatically +- `intermediateCommitCount`: The maximum number of operations after which an intermediate + commit is performed automatically. -In the ArangoDB Enterprise Edition there is an additional parameter: +In the ArangoDB Enterprise Edition, there are additional parameters: -- `skipInaccessibleCollections`: AQL queries (especially graph traversals) will treat - collection to which a user has **no access** rights as if these collections were empty. - Instead of returning a *forbidden access* error, your queries will execute normally. +- `skipInaccessibleCollections`: Let AQL queries (especially graph traversals) treat + collection to which a user has **no access** rights for as if these collections are empty. + Instead of returning a *forbidden access* error, your queries execute normally. This is intended to help with certain use-cases: A graph contains several collections - and different users execute AQL queries on that graph. You can now naturally limit the + and different users execute AQL queries on that graph. You can naturally limit the accessible results by changing the access rights of users on collections. - `satelliteSyncWait`: This Enterprise Edition parameter allows to configure how long - a DB-Server will have time to bring the SatelliteCollections involved in the query - into sync. The default value is 60.0 (seconds). When the max time has been reached - the query will be stopped. + a DB-Server has time to bring the SatelliteCollections involved in the query + into sync. The default value is `60.0` seconds. When the maximal time is reached, + the query is stopped. -Additional parameters for spilling data from the query onto disk ------------------------------------------------------------------ +## Additional parameters for spilling data from the query onto disk Starting from ArangoDB 3.10, there are two additional parameters that allow spilling -intermediate data from a query onto a disk to descrease the memory usage. +intermediate data from a query onto a disk to decrease the memory usage. {% hint 'info' %} The option of spilling data from RAM onto disk is experimental and is turned off by default. This parameter currently only has effect for sorting - -for a query that uses the SORT keyword, but without LIMIT. -Also, the query results are still built up entirely in RAM on coordinators +for a query that uses the `SORT` operation but without `LIMIT`. +Also, the query results are still built up entirely in RAM on Coordinators and single servers for non-streaming queries. To avoid the buildup of the entire query result in RAM, a streaming query should be used. {% endhint %} @@ -265,82 +269,78 @@ the entire query result in RAM, a streaming query should be used. document and, in a query that iterates over temporary values (i.e. `FOR i IN 1..100`), each row is one of such temporary values. This parameter is experimental and is only taken into account if a path for a - directory to store the temporary data is provided with the [`--temp.intermediate-results-path` - server startup option](../programs-arangod-query.html#aql-query-with-spilling-input-data-to-disk). - Default value: 5000000 rows. - + directory to store the temporary data is provided with the + [`--temp.intermediate-results-path` startup option](../programs-arangod-query.html#aql-query-with-spilling-input-data-to-disk). + Default value: `5000000` rows. - `spillOverThresholdMemoryUsage`: This parameter allows for input data and intermediate results to be spilled onto disk for a query execution after the memory usage reaches the specified value (in bytes). This is used for decreasing the memory usage during the query execution. This parameter is experimental and is only taken into account if a path for a - directory to store the temporary data is provided with the [`--temp.intermediate-results-path` - server startup option](../programs-arangod-query.html#aql-query-with-spilling-input-data-to-disk). + directory to store the temporary data is provided with the + [`--temp.intermediate-results-path` startup option](../programs-arangod-query.html#aql-query-with-spilling-input-data-to-disk). Default value: 128MB. +## With `db._createStatement()` (ArangoStatement) -With _createStatement (ArangoStatement) ---------------------------------------- - -The *_query* method is a shorthand for creating an ArangoStatement object, +The `_query()` method is a shorthand for creating an `ArangoStatement` object, executing it and iterating over the resulting cursor. If more control over the result set iteration is needed, it is recommended to first create an -ArangoStatement object as follows: +`ArangoStatement` object as follows: -{% arangoshexample examplevar="examplevar" script="script" result="result" %} + {% arangoshexample examplevar="examplevar" script="script" result="result" %} @startDocuBlockInline 04_workWithAQL_statements1 @EXAMPLE_ARANGOSH_OUTPUT{04_workWithAQL_statements1} - |stmt = db._createStatement( { - "query": "FOR i IN [ 1, 2 ] RETURN i * 2" } ); + stmt = db._createStatement( { "query": "FOR i IN [ 1, 2 ] RETURN i * 2" } ); @END_EXAMPLE_ARANGOSH_OUTPUT @endDocuBlock 04_workWithAQL_statements1 -{% endarangoshexample %} -{% include arangoshexample.html id=examplevar script=script result=result %} + {% endarangoshexample %} + {% include arangoshexample.html id=examplevar script=script result=result %} -To execute the query, use the *execute* method of the statement: +To execute the query, use the `execute()` method of the statement: -{% arangoshexample examplevar="examplevar" script="script" result="result" %} + {% arangoshexample examplevar="examplevar" script="script" result="result" %} @startDocuBlockInline 05_workWithAQL_statements2 @EXAMPLE_ARANGOSH_OUTPUT{05_workWithAQL_statements2} - ~var stmt = db._createStatement( { "query": "FOR i IN [ 1, 2 ] RETURN i * 2" } ); - c = stmt.execute(); + ~ var stmt = db._createStatement( { "query": "FOR i IN [ 1, 2 ] RETURN i * 2" } ); + cursor = stmt.execute(); @END_EXAMPLE_ARANGOSH_OUTPUT @endDocuBlock 05_workWithAQL_statements2 -{% endarangoshexample %} -{% include arangoshexample.html id=examplevar script=script result=result %} + {% endarangoshexample %} + {% include arangoshexample.html id=examplevar script=script result=result %} ### Cursors Once the query executed the query results are available in a cursor. -The cursor can return all its results at once using the *toArray* method. +The cursor can return all its results at once using the `toArray()` method. This is a short-cut that you can use if you want to access the full result set without iterating over it yourself. -{% arangoshexample examplevar="examplevar" script="script" result="result" %} + {% arangoshexample examplevar="examplevar" script="script" result="result" %} @startDocuBlockInline 05_workWithAQL_statements3 @EXAMPLE_ARANGOSH_OUTPUT{05_workWithAQL_statements3} - ~var stmt = db._createStatement( { "query": "FOR i IN [ 1, 2 ] RETURN i * 2" } ); - ~var c = stmt.execute(); - c.toArray(); + ~ var stmt = db._createStatement( { "query": "FOR i IN [ 1, 2 ] RETURN i * 2" } ); + ~ var cursor = stmt.execute(); + cursor.toArray(); @END_EXAMPLE_ARANGOSH_OUTPUT @endDocuBlock 05_workWithAQL_statements3 {% endarangoshexample %} {% include arangoshexample.html id=examplevar script=script result=result %} Cursors can also be used to iterate over the result set document-by-document. -To do so, use the *hasNext* and *next* methods of the cursor: +To do so, use the `hasNext()` and `next()` methods of the cursor: -{% arangoshexample examplevar="examplevar" script="script" result="result" %} + {% arangoshexample examplevar="examplevar" script="script" result="result" %} @startDocuBlockInline 05_workWithAQL_statements4 @EXAMPLE_ARANGOSH_OUTPUT{05_workWithAQL_statements4} - ~var stmt = db._createStatement( { "query": "FOR i IN [ 1, 2 ] RETURN i * 2" } ); - ~var c = stmt.execute(); - while (c.hasNext()) { require("@arangodb").print(c.next()); } + ~ var stmt = db._createStatement( { "query": "FOR i IN [ 1, 2 ] RETURN i * 2" } ); + ~ var c = stmt.execute(); + while (c.hasNext()) { require("@arangodb").print(c.next()); } @END_EXAMPLE_ARANGOSH_OUTPUT @endDocuBlock 05_workWithAQL_statements4 -{% endarangoshexample %} -{% include arangoshexample.html id=examplevar script=script result=result %} + {% endarangoshexample %} + {% include arangoshexample.html id=examplevar script=script result=result %} Please note that you can iterate over the results of a cursor only once, and that the cursor will be empty when you have fully iterated over it. To iterate over @@ -354,111 +354,110 @@ backwards iteration or random access to elements in a cursor. To execute an AQL query using bind parameters, you need to create a statement first and then bind the parameters to it before execution: -{% arangoshexample examplevar="examplevar" script="script" result="result" %} + {% arangoshexample examplevar="examplevar" script="script" result="result" %} @startDocuBlockInline 05_workWithAQL_statements5 @EXAMPLE_ARANGOSH_OUTPUT{05_workWithAQL_statements5} - |var stmt = db._createStatement( { - "query": "FOR i IN [ @one, @two ] RETURN i * 2" } ); - stmt.bind("one", 1); - stmt.bind("two", 2); - c = stmt.execute(); + var stmt = db._createStatement( { "query": "FOR i IN [ @one, @two ] RETURN i * 2" } ); + stmt.bind("one", 1); + stmt.bind("two", 2); + cursor = stmt.execute(); @END_EXAMPLE_ARANGOSH_OUTPUT @endDocuBlock 05_workWithAQL_statements5 -{% endarangoshexample %} -{% include arangoshexample.html id=examplevar script=script result=result %} + {% endarangoshexample %} + {% include arangoshexample.html id=examplevar script=script result=result %} The cursor results can then be dumped or iterated over as usual, e.g.: -{% arangoshexample examplevar="examplevar" script="script" result="result" %} + {% arangoshexample examplevar="examplevar" script="script" result="result" %} @startDocuBlockInline 05_workWithAQL_statements6 @EXAMPLE_ARANGOSH_OUTPUT{05_workWithAQL_statements6} - ~var stmt = db._createStatement( { "query": "FOR i IN [ @one, @two ] RETURN i * 2" } ); - ~stmt.bind("one", 1); - ~stmt.bind("two", 2); - ~var c = stmt.execute(); - c.toArray(); + ~ var stmt = db._createStatement( { "query": "FOR i IN [ @one, @two ] RETURN i * 2" } ); + ~ stmt.bind("one", 1); + ~ stmt.bind("two", 2); + ~ var cursor = stmt.execute(); + cursor.toArray(); @END_EXAMPLE_ARANGOSH_OUTPUT @endDocuBlock 05_workWithAQL_statements6 -{% endarangoshexample %} -{% include arangoshexample.html id=examplevar script=script result=result %} + {% endarangoshexample %} + {% include arangoshexample.html id=examplevar script=script result=result %} or -{% arangoshexample examplevar="examplevar" script="script" result="result" %} + {% arangoshexample examplevar="examplevar" script="script" result="result" %} @startDocuBlockInline 05_workWithAQL_statements7 @EXAMPLE_ARANGOSH_OUTPUT{05_workWithAQL_statements7} - ~var stmt = db._createStatement( { "query": "FOR i IN [ @one, @two ] RETURN i * 2" } ); - ~stmt.bind("one", 1); - ~stmt.bind("two", 2); - ~var c = stmt.execute(); - while (c.hasNext()) { require("@arangodb").print(c.next()); } + ~ var stmt = db._createStatement( { "query": "FOR i IN [ @one, @two ] RETURN i * 2" } ); + ~ stmt.bind("one", 1); + ~ stmt.bind("two", 2); + ~ var cursor = stmt.execute(); + while (cursor.hasNext()) { require("@arangodb").print(cursor.next()); } @END_EXAMPLE_ARANGOSH_OUTPUT @endDocuBlock 05_workWithAQL_statements7 -{% endarangoshexample %} -{% include arangoshexample.html id=examplevar script=script result=result %} + {% endarangoshexample %} + {% include arangoshexample.html id=examplevar script=script result=result %} -Please note that bind parameters can also be passed into the *_createStatement* method directly, -making it a bit more convenient: +Please note that bind parameters can also be passed into the `_createStatement()` +method directly, making it a bit more convenient: -{% arangoshexample examplevar="examplevar" script="script" result="result" %} + {% arangoshexample examplevar="examplevar" script="script" result="result" %} @startDocuBlockInline 05_workWithAQL_statements8 @EXAMPLE_ARANGOSH_OUTPUT{05_workWithAQL_statements8} - |stmt = db._createStatement( { - | "query": "FOR i IN [ @one, @two ] RETURN i * 2", - | "bindVars": { - | "one": 1, - | "two": 2 - | } - } ); + | stmt = db._createStatement( { + | "query": "FOR i IN [ @one, @two ] RETURN i * 2", + | "bindVars": { + | "one": 1, + | "two": 2 + | } + }); @END_EXAMPLE_ARANGOSH_OUTPUT @endDocuBlock 05_workWithAQL_statements8 -{% endarangoshexample %} -{% include arangoshexample.html id=examplevar script=script result=result %} + {% endarangoshexample %} + {% include arangoshexample.html id=examplevar script=script result=result %} ### Counting with a cursor Cursors also optionally provide the total number of results. By default, they do not. -To make the server return the total number of results, you may set the *count* attribute to -*true* when creating a statement: +To make the server return the total number of results, you may set the `count` attribute to +`true` when creating a statement: -{% arangoshexample examplevar="examplevar" script="script" result="result" %} + {% arangoshexample examplevar="examplevar" script="script" result="result" %} @startDocuBlockInline 05_workWithAQL_statements9 @EXAMPLE_ARANGOSH_OUTPUT{05_workWithAQL_statements9} - |stmt = db._createStatement( { - | "query": "FOR i IN [ 1, 2, 3, 4 ] RETURN i", - "count": true } ); + | stmt = db._createStatement( { + | "query": "FOR i IN [ 1, 2, 3, 4 ] RETURN i", + "count": true } ); @END_EXAMPLE_ARANGOSH_OUTPUT @endDocuBlock 05_workWithAQL_statements9 -{% endarangoshexample %} -{% include arangoshexample.html id=examplevar script=script result=result %} + {% endarangoshexample %} + {% include arangoshexample.html id=examplevar script=script result=result %} -After executing this query, you can use the *count* method of the cursor to get the +After executing this query, you can use the `count` method of the cursor to get the number of total results from the result set: -{% arangoshexample examplevar="examplevar" script="script" result="result" %} + {% arangoshexample examplevar="examplevar" script="script" result="result" %} @startDocuBlockInline 05_workWithAQL_statements10 @EXAMPLE_ARANGOSH_OUTPUT{05_workWithAQL_statements10} - ~var stmt = db._createStatement( { "query": "FOR i IN [ 1, 2, 3, 4 ] RETURN i", "count": true } ); - var c = stmt.execute(); - c.count(); + ~ var stmt = db._createStatement( { "query": "FOR i IN [ 1, 2, 3, 4 ] RETURN i", "count": true } ); + var cursor = stmt.execute(); + cursor.count(); @END_EXAMPLE_ARANGOSH_OUTPUT @endDocuBlock 05_workWithAQL_statements10 {% endarangoshexample %} {% include arangoshexample.html id=examplevar script=script result=result %} -Please note that the *count* method returns nothing if you did not specify the *count* +Please note that the `count` method returns nothing if you did not specify the `count` attribute when creating the query. This is intentional so that the server may apply optimizations when executing the query and construct the result set incrementally. Incremental creation of the result sets is no possible if all of the results need to be shipped to the client anyway. Therefore, the client -has the choice to specify *count* and retrieve the total number of results for a query (and +has the choice to specify `count` and retrieve the total number of results for a query (and disable potential incremental result set creation on the server), or to not retrieve the total number of results and allow the server to apply optimizations. Please note that at the moment the server will always create the full result set for each query so -specifying or omitting the *count* attribute currently does not have any impact on query execution. +specifying or omitting the `count` attribute currently does not have any impact on query execution. This may change in the future. Future versions of ArangoDB may create result sets incrementally on the server-side and may be able to apply optimizations if a result set is not fully fetched by a client. @@ -467,45 +466,44 @@ a client. Cursors can also optionally provide statistics of the internal execution phases. By default, they do not. To get to know how long parsing, optimization, instantiation and execution took, -make the server return that by setting the *profile* attribute to -*true* when creating a statement: +make the server return that by setting the `profile` attribute to +`true` when creating a statement: -{% arangoshexample examplevar="examplevar" script="script" result="result" %} + {% arangoshexample examplevar="examplevar" script="script" result="result" %} @startDocuBlockInline 06_workWithAQL_statements11 @EXAMPLE_ARANGOSH_OUTPUT{06_workWithAQL_statements11} - |stmt = db._createStatement( { - | "query": "FOR i IN [ 1, 2, 3, 4 ] RETURN i", - options: {"profile": true}} ); + | stmt = db._createStatement( { + | "query": "FOR i IN [ 1, 2, 3, 4 ] RETURN i", + options: {"profile": true}} ); @END_EXAMPLE_ARANGOSH_OUTPUT @endDocuBlock 06_workWithAQL_statements11 -{% endarangoshexample %} -{% include arangoshexample.html id=examplevar script=script result=result %} + {% endarangoshexample %} + {% include arangoshexample.html id=examplevar script=script result=result %} -After executing this query, you can use the *getExtra()* method of the cursor to get the +After executing this query, you can use the `getExtra()` method of the cursor to get the produced statistics: -{% arangoshexample examplevar="examplevar" script="script" result="result" %} + {% arangoshexample examplevar="examplevar" script="script" result="result" %} @startDocuBlockInline 06_workWithAQL_statements12 @EXAMPLE_ARANGOSH_OUTPUT{06_workWithAQL_statements12} - ~var stmt = db._createStatement( { "query": "FOR i IN [ 1, 2, 3, 4 ] RETURN i", options: {"profile": true}} ); - var c = stmt.execute(); - c.getExtra(); + ~ var stmt = db._createStatement( { "query": "FOR i IN [ 1, 2, 3, 4 ] RETURN i", options: {"profile": true}} ); + var cursor = stmt.execute(); + cursor.getExtra(); @END_EXAMPLE_ARANGOSH_OUTPUT @endDocuBlock 06_workWithAQL_statements12 {% endarangoshexample %} {% include arangoshexample.html id=examplevar script=script result=result %} -Query validation ----------------- +## Query validation -The *_parse* method of the *db* object can be used to parse and validate a +The `_parse()` method of the `db` object can be used to parse and validate a query syntactically, without actually executing it. -{% arangoshexample examplevar="examplevar" script="script" result="result" %} + {% arangoshexample examplevar="examplevar" script="script" result="result" %} @startDocuBlockInline 06_workWithAQL_statements13 @EXAMPLE_ARANGOSH_OUTPUT{06_workWithAQL_statements13} - db._parse( "FOR i IN [ 1, 2 ] RETURN i" ); + db._parse( "FOR i IN [ 1, 2 ] RETURN i" ); @END_EXAMPLE_ARANGOSH_OUTPUT @endDocuBlock 06_workWithAQL_statements13 -{% endarangoshexample %} -{% include arangoshexample.html id=examplevar script=script result=result %} + {% endarangoshexample %} + {% include arangoshexample.html id=examplevar script=script result=result %} diff --git a/3.10/aql/invocation.md b/3.10/aql/invocation.md index afef950a8e..524a94c5a1 100644 --- a/3.10/aql/invocation.md +++ b/3.10/aql/invocation.md @@ -19,7 +19,7 @@ The ArangoDB Web Interface has a [specific tab for AQL queries execution](invoca You can run [AQL queries from the ArangoDB Shell](invocation-with-arangosh.html) with the [_query](invocation-with-arangosh.html#with-db_query) and -[_createStatement](invocation-with-arangosh.html#with-_createstatement-arangostatement) methods +[_createStatement](invocation-with-arangosh.html#with-db_createstatement-arangostatement) methods of the [`db` object](../appendix-references-dbobject.html). This chapter also describes how to use bind parameters, statistics, counting and cursors with arangosh. diff --git a/3.10/data-modeling-collections-collection-methods.md b/3.10/data-modeling-collections-collection-methods.md index a321f2928e..5a15545a45 100644 --- a/3.10/data-modeling-collections-collection-methods.md +++ b/3.10/data-modeling-collections-collection-methods.md @@ -8,8 +8,6 @@ Collection Methods Drop ---- - - Drops a collection: `collection.drop(options)` @@ -59,8 +57,6 @@ Drop a system collection: Truncate -------- - - Truncate a collection: `collection.truncate()` @@ -90,8 +86,6 @@ Truncates a collection: Compact ------- - - Introduced in: v3.4.5 Compacts the data of a collection: @@ -119,72 +113,136 @@ Get or set the properties of a collection: Returns an object containing all collection properties. -- `waitForSync`: If `true`, creating a document only returns - after the data was synced to disk. - -- `keyOptions` (optional) additional options for key generation. This is - a JSON object containing the following attributes (note: some of the - attributes are optional): - - `type`: the type of the key generator used for the collection. - - `allowUserKeys`: if set to `true`, then it is allowed to supply - own key values in the `_key` attribute of a document. If set to +- `waitForSync` (boolean): If `true`, creating, changing, or removing documents waits + until the data has been synchronized to disk. + +- `keyOptions` (object): An object which contains key generation options. + - `type` (string): Specifies the type of the key generator. Possible values: + - `"traditional"` + - `"autoincrement"` + - `"uuid"` + - `"padded"` + - `allowUserKeys` (boolean): If set to `true`, then you are allowed to supply + own key values in the `_key` attribute of documents. If set to `false`, then the key generator is solely responsible for - generating keys and supplying own key values in the `_key` attribute - of documents is considered an error. - - `increment`: increment value for `autoincrement` key generator. + generating keys and an error is raised if you supply own key values in the + `_key` attribute of documents. + - `increment` (number): The increment value for the `autoincrement` key generator. Not used for other key generator types. - - `offset`: initial offset value for `autoincrement` key generator. + - `offset` (number): The initial offset value for the `autoincrement` key generator. Not used for other key generator types. + - `lastValue` (number): the current offset value of the `autoincrement` or `padded` + key generator. This an internal property for restoring dumps properly. -- `schema` (optional, default: `null`): - Object that specifies the collection level document schema for documents. +- `schema` (object\|null): + An object that specifies the collection-level document schema for documents. The attribute keys `rule`, `level` and `message` must follow the rules documented in [Document Schema Validation](document-schema-validation.html) -- `computedValues` (optional, default: `null`): An array of objects, +- `computedValues` (array\|null): An array of objects, each representing a [Computed Value](data-modeling-documents-computed-values.html). +- `cacheEnabled` (boolean): Whether the in-memory hash cache for documents is + enabled for this collection (default: `false`). + +- `isSystem` (boolean): Whether the collection is a system collection. + Collection names that starts with an underscore are usually system collections. + +- `syncByRevision` (boolean): Whether the newer revision-based replication protocol + is enabled for this collection. This is an internal property. + +- `globallyUniqueId` (string): A unique identifier of the collection. + This is an internal property. + In a cluster setup, the result also contains the following attributes: -- `numberOfShards`: the number of shards of the collection. +- `numberOfShards` (number): The number of shards of the collection. -- `shardKeys`: contains the names of document attributes that are used to +- `shardKeys` (array): Contains the names of document attributes that are used to determine the target shard for documents. -- `replicationFactor`: determines how many copies of each shard are kept +- `replicationFactor` (number\|string): Determines how many copies of each shard are kept on different DB-Servers. Has to be in the range of 1-10 or the string `"satellite"` for a SatelliteCollection (Enterprise Edition only). _(cluster only)_ -- `writeConcern`: determines how many copies of each shard are required to be +- `writeConcern` (number): Determines how many copies of each shard are required to be in sync on the different DB-Servers. If there are less then these many copies in the cluster, a shard refuses to write. Writes to shards with enough up-to-date copies succeed at the same time, however. The value of `writeConcern` can not be larger than `replicationFactor`. _(cluster only)_ -- `shardingStrategy`: the sharding strategy selected for the collection. - This attribute is only populated in cluster mode and is not populated - in single-server mode. _(cluster only)_ +- `shardingStrategy` (string): the sharding strategy selected for the collection. + _(cluster only)_ + + Possible values: + - `"community-compat"` + - `"enterprise-compat"` + - `"enterprise-smart-edge-compat"` + - `"hash"` + - `"enterprise-hash-smart-edge"` + - `"enterprise-hex-smart-vertex"` + +- `distributeShardsLike` (string): + The name of another collection. This collection uses the `replicationFactor`, + `numberOfShards` and `shardingStrategy` properties of the other collection and + the shards of this collection are distributed in the same way as the shards of + the other collection. + +- `isSmart` (boolean): Whether the collection is used in a SmartGraph or + EnterpriseGraph (Enterprise Edition only). This is an internal property. + +- `isDisjoint` (boolean): Whether the SmartGraph this collection belongs to is + disjoint (Enterprise Edition only). This is an internal property. + +- `smartGraphAttribute` (string): + The attribute that is used for sharding: vertices with the same value of + this attribute are placed in the same shard. All vertices are required to + have this attribute set and it has to be a string. Edges derive the + attribute from their connected vertices. + + This feature can only be used in the *Enterprise Edition*. + +- `smartJoinAttribute` (string): + In an *Enterprise Edition* cluster, this attribute determines an attribute + of the collection that must contain the shard key value of the referred-to + SmartJoin collection. + +--- `collection.properties(properties)` -Changes the collection properties. `properties` must be an object with +Changes the collection properties. `properties` must be an object and can have one or more of the following attribute(s): -- `waitForSync`: If `true`, creating a document only returns +- `waitForSync` (boolean): If `true`, creating a document only returns after the data was synced to disk. -- `replicationFactor`: Change the number of shard copies kept on +- `replicationFactor` (number\|string): Change the number of shard copies kept on different DB-Servers. Valid values are integer numbers in the range of 1-10 or the string `"satellite"` for a SatelliteCollection (Enterprise Edition only). _(cluster only)_ -- `writeConcern`: change how many copies of each shard are required to be +- `writeConcern` (number): Change how many copies of each shard are required to be in sync on the different DB-Servers. If there are less then these many copies in the cluster, a shard refuses to write. Writes to shards with enough up-to-date copies succeed at the same time however. The value of `writeConcern` can not be larger than `replicationFactor`. _(cluster only)_ +- `computedValues` (array\|null): An array of objects, each representing a + [Computed Value](data-modeling-documents-computed-values.html). + +- `schema` (object\|null): An object that specifies the collection level document schema for + documents. The attribute keys `rule`, `level` and `message` must follow the rules + documented in [Document Schema Validation](document-schema-validation.html) + +- `cacheEnabled` (boolean): Whether the in-memory hash cache for documents should be + enabled for this collection. Can be controlled globally + with the `--cache.size` startup option. The cache can speed up repeated reads + of the same documents via their document keys. If the same documents are not + fetched often or are modified frequently, then you may disable the cache to + avoid the maintenance costs. + {% hint 'info' %} Some other collection properties, such as `type`, `keyOptions`, `numberOfShards` or `shardingStrategy` cannot be changed once @@ -222,8 +280,6 @@ Change a property: Figures ------- - - Return the figures of a collection: `collection.figures(details)` @@ -274,8 +330,6 @@ Get the detailed collection figures: GetResponsibleShard ------------------- - - Return the responsible shard for the given document: `collection.getResponsibleShard(document)` @@ -292,8 +346,6 @@ in clusters. Shards ------ - - Return the available shards for the collection: `collection.shards(details)` @@ -314,8 +366,6 @@ The `shards()` method can only be used on Coordinators in clusters. Load ---- - - Load a collection: `collection.load()` @@ -350,8 +400,6 @@ any need to load a collection with the RocksDB storage engine. Revision -------- - - Return the revision ID of a collection: `collection.revision()` @@ -371,8 +419,6 @@ as an opaque string, and only use it for equality/non-equality comparisons. Checksum -------- - - Calculate a checksum for the data in a collection: `collection.checksum(withRevisions, withData)` @@ -390,8 +436,6 @@ checksumming makes the calculation slower, but is more accurate. Unload ------ - - Unload a collection: `collection.unload()` @@ -427,8 +471,6 @@ any need to unload a collection with the RocksDB storage engine. Rename ------ - - Rename a collection: `collection.rename(new-name)` diff --git a/3.10/data-modeling-collections-database-methods.md b/3.10/data-modeling-collections-database-methods.md index d16efe7eaf..40a2d023c4 100644 --- a/3.10/data-modeling-collections-database-methods.md +++ b/3.10/data-modeling-collections-database-methods.md @@ -8,8 +8,6 @@ Database Methods Collection ---------- - - Return a single collection: `db._collection(collection-name)` @@ -17,6 +15,8 @@ Return a single collection: Returns the collection with the given name, or `null` if no such collection exists. +--- + `db._collection(collection-identifier)` Returns the collection with the given identifier or `null` if no such @@ -57,8 +57,6 @@ Unknown collection: Create ------ - - Create a new document or edge collection: `db._create(collection-name)` @@ -68,25 +66,21 @@ If the collection name already exists or if the name format is invalid, an error is thrown. For more information on valid collection names please refer to the [naming conventions](data-modeling-naming-conventions.html). +--- + `db._create(collection-name, properties)` `properties` must be an object with the following attributes: -- `waitForSync` (optional, default `false`): If `true`, creating - a document only returns after the data is synced to disk. - -- `isSystem` (optional, default is `false`): If `true`, create a - system collection. In this case `collection-name` should start with - an underscore. End users should normally create non-system collections - only. API implementors may be required to create system collections in - very special occasions, but normally a regular collection is sufficient. +- `waitForSync` (boolean, _optional_, default `false`): If `true`, creating, + changing, or removing a document waits until the data is synchronized to disk. -- `keyOptions` (optional): additional options for key generation. If - specified, then `keyOptions` should be a JSON object containing the - following attributes (**note**: some of them are optional): - - `type`: specifies the type of the key generator. - The available generators are `traditional`, `autoincrement`, `uuid` and - `padded`. +- `keyOptions` (object, _optional_): The options for key generation. If + specified, then `keyOptions` should be an object containing the + following attributes: + - `type` (string): specifies the type of the key generator. + The available generators are `"traditional"` (default), `"autoincrement"`, + `"uuid"` and `"padded"`. - The `traditional` key generator generates numerical keys in ascending order. The sequence of keys is not guaranteed to be gap-free. - The `autoincrement` key generator generates numerical keys in ascending order, @@ -114,29 +108,46 @@ to the [naming conventions](data-modeling-naming-conventions.html). keys are generated on the leader DB-Server, which has full control over the key sequence. - - `allowUserKeys`: if set to `true`, then it is allowed to supply - own key values in the `_key` attribute of a document. If set to - `false`, then the key generator is solely responsible for - generating keys and supplying own key values in the `_key` attribute - of documents is considered an error. - - `increment`: increment value for `autoincrement` key generator. + - `allowUserKeys` (boolean, _optional_): If set to `true`, then you are allowed + to supply own key values in the `_key` attribute of documents. If set to + `false`, then the key generator is solely responsible for generating keys and + an error is raised if you supply own key values in the `_key` attribute + of documents. + - `increment`: The increment value for the `autoincrement` key generator. Not used for other key generator types. - - `offset`: initial offset value for `autoincrement` key generator. + - `offset`: The initial offset value for the `autoincrement` key generator. Not used for other key generator types. -- `schema` (optional, default: `null`): - Object that specifies the collection level document schema for documents. +- `schema` (object\|null, _optional_, default: `null`): + An object that specifies the collection-level document schema for documents. The attribute keys `rule`, `level` and `message` must follow the rules documented in [Document Schema Validation](document-schema-validation.html) -- `computedValues` (optional, default: `null`): An array of objects, +- `computedValues` (array\|null, _optional_, default: `null`): An array of objects, each representing a [Computed Value](data-modeling-documents-computed-values.html). -- `numberOfShards` (optional, default `1`): in a cluster, this value +- `cacheEnabled` (boolean): Whether the in-memory hash cache for documents should be + enabled for this collection (default: `false`). Can be controlled globally + with the `--cache.size` startup option. The cache can speed up repeated reads + of the same documents via their document keys. If the same documents are not + fetched often or are modified frequently, then you may disable the cache to + avoid the maintenance costs. + +- `isSystem` (boolean, _optional_, default: `false`): If `true`, create a + system collection. In this case, the collection name should start with + an underscore. End-users should normally create non-system collections + only. API implementors may be required to create system collections in + very special occasions, but normally a regular collection is sufficient. + +- `syncByRevision` (boolean, _optional_, default: `true`): + Whether the newer revision-based replication protocol + is enabled for this collection. This is an internal property. + +- `numberOfShards` (number, _optional_, default `1`): In a cluster, this value determines the number of shards to create for the collection. In a single server setup, this option is meaningless. -- `shardKeys` (optional, default is `[ "_key" ]`): in a cluster, this +- `shardKeys` (array, _optional_, default: `["_key"]`): In a cluster, this attribute determines which document attributes are used to determine the target shard for documents. Documents are sent to shards based on the values they have in their shard key attributes. The values of all shard @@ -159,7 +170,7 @@ to the [naming conventions](data-modeling-naming-conventions.html). attribute and this can only be done efficiently if this is the only shard key by delegating to the individual shards. -- `replicationFactor` (optional, default `1`): in a cluster, this +- `replicationFactor` (number\|string, _optional_, default `1`): In a cluster, this attribute determines how many copies of each shard are kept on different DB-Servers. The value 1 means that only one copy (no synchronous replication) is kept. A value of k means that @@ -178,7 +189,7 @@ to the [naming conventions](data-modeling-naming-conventions.html). dramatically when using joins in AQL at the costs of reduced write performance on these collections. -- `writeConcern` (optional, default `1`): in a cluster, this +- `writeConcern` (number, _optional_, default `1`): In a cluster, this attribute determines how many copies of each shard are required to be in sync on the different DB-Servers. If there are less then these many copies in the cluster, a shard refuses to write. The value of @@ -187,11 +198,6 @@ to the [naming conventions](data-modeling-naming-conventions.html). not being possible until the failover is sorted out and might cause write slow downs in trade for data durability. -- `distributeShardsLike`: distribute the shards of this collection - cloning the shard distribution of another. If this value is set, - it copies the attributes `replicationFactor`, `numberOfShards` and - `shardingStrategy` from the other collection. - - `shardingStrategy` (optional): specifies the name of the sharding strategy to use for the collection. Since ArangoDB 3.4 there are different sharding strategies to select from when creating a new @@ -202,27 +208,61 @@ to the [naming conventions](data-modeling-naming-conventions.html). initial sharding algorithm. The available sharding strategies are: - - `community-compat`: default sharding used by ArangoDB + - `"community-compat"`: default sharding used by ArangoDB Community Edition before version 3.4 - - `enterprise-compat`: default sharding used by ArangoDB + - `"enterprise-compat"`: default sharding used by ArangoDB Enterprise Edition before version 3.4 - - `enterprise-smart-edge-compat`: default sharding used by smart edge + - `"enterprise-smart-edge-compat"`: default sharding used by smart edge collections in ArangoDB Enterprise Edition before version 3.4 - - `hash`: default sharding used for new collections starting from version 3.4 + - `"hash"`: default sharding used for new collections starting from version 3.4 (excluding smart edge collections) - - `enterprise-hash-smart-edge`: default sharding used for new + - `"enterprise-hash-smart-edge"`: default sharding used for new smart edge collections starting from version 3.4 + - `enterprise-hex-smart-vertex`: sharding used for vertex collections of + EnterpriseGraphs If no sharding strategy is specified, the default is `hash` for - all collections, and `enterprise-hash-smart-edge` for all smart edge - collections (requires the *Enterprise Edition* of ArangoDB). + all normal collections, `enterprise-hash-smart-edge` for all smart edge + collections, and `enterprise-hex-smart-vertex` for EnterpriseGraph + vertex collections (the latter two require the *Enterprise Edition* of ArangoDB). Manually overriding the sharding strategy does not yet provide a benefit, but it may later in case other sharding strategies are added. In single-server mode, the `shardingStrategy` attribute is meaningless and is ignored. -- `smartJoinAttribute`: in an *Enterprise Edition* cluster, this attribute +- `distributeShardsLike` (string, _optional_, default: `""`): + The name of another collection. If this property is set in a cluster, the + collection copies the `replicationFactor`, `numberOfShards` and `shardingStrategy` + properties from the specified collection (referred to as the _prototype collection_) + and distributes the shards of this collection in the same way as the shards of + the other collection. In an Enterprise Edition cluster, this data co-location is + utilized to optimize queries. + + You need to use the same number of `shardKeys` as the prototype collection, but + you can use different attributes. + + **Note**: Using this parameter has consequences for the prototype + collection. It can no longer be dropped, before the sharding-imitating + collections are dropped. Equally, backups and restores of imitating + collections alone generate warnings (which can be overridden) + about a missing sharding prototype. + +- `isSmart` (boolean): Whether the collection is for a SmartGraph or + EnterpriseGraph (Enterprise Edition only). This is an internal property. + +- `isDisjoint` (boolean): Whether the collection is for a Disjoint SmartGraph + (Enterprise Edition only). This is an internal property. + +- `smartGraphAttribute` (string, _optional_): + The attribute that is used for sharding: vertices with the same value of + this attribute are placed in the same shard. All vertices are required to + have this attribute set and it has to be a string. Edges derive the + attribute from their connected vertices. + + This feature can only be used in the *Enterprise Edition*. + +- `smartJoinAttribute` (string, _optional_): In an *Enterprise Edition* cluster, this attribute determines an attribute of the collection that must contain the shard key value of the referred-to SmartJoin collection. Additionally, the sharding key for a document in this collection must contain the value of this attribute, @@ -236,12 +276,16 @@ to the [naming conventions](data-modeling-naming-conventions.html). A further restriction is that whenever documents are stored or updated in the collection, the value stored in the `smartJoinAttribute` must be a string. +--- + `db._create(collection-name, properties, type)` Specifies the optional `type` of the collection, it can either be `document` or `edge`. On default it is document. Instead of giving a type you can also use `db._createEdgeCollection()` or `db._createDocumentCollection()`. +--- + `db._create(collection-name, properties[, type], options)` As an optional third (if the `type` string is being omitted) or fourth @@ -318,7 +362,7 @@ With a special key option: {% endarangoshexample %} {% include arangoshexample.html id=examplevar script=script result=result %} - +--- Create a new edge collection: @@ -328,6 +372,8 @@ Creates a new edge collection named `collection-name`. If the collection name already exists an error is thrown. The default value for `waitForSync` is `false`. +--- + `db._createEdgeCollection(collection-name, properties)` `properties` must be an object with the following attributes: @@ -335,7 +381,7 @@ for `waitForSync` is `false`. - `waitForSync` (optional, default: `false`): If `true`, creating a document only returns after the data is synced to disk. - +--- Create a new document collection: @@ -347,8 +393,6 @@ document name already exists and error is thrown. All Collections --------------- - - Return all collections: `db._collections()` @@ -371,8 +415,6 @@ Returns all collections of the given database. Collection Name --------------- - - Select a collection from the database: `db.collection-name` @@ -397,24 +439,28 @@ default properties. Drop ---- - - Drop a collection: `db._drop(collection)` Drops a `collection` and all its indexes and data. +--- + `db._drop(collection-identifier)` Drops a collection identified by `collection-identifier` with all its indexes and data. No error is thrown if there is no such collection. +--- + `db._drop(collection-name)` Drops a collection named `collection-name` and all its indexes. No error is thrown if there is no such collection. +--- + `db._drop(collection-name, options)` In order to drop a system collection, you must specify an `options` object @@ -474,8 +520,6 @@ Drops a system collection Truncate -------- - - Truncate a collection: `db._truncate(collection)` @@ -483,11 +527,15 @@ Truncate a collection: Truncates a `collection`, removing all documents but keeping all its indexes. +--- + `db._truncate(collection-identifier)` Truncates a collection identified by `collection-identified`. No error is thrown if there is no such collection. +--- + `db._truncate(collection-name)` Truncates a collection named `collection-name`. No error is thrown if diff --git a/3.10/data-modeling-collections.md b/3.10/data-modeling-collections.md index 82c0f4b997..6099794464 100644 --- a/3.10/data-modeling-collections.md +++ b/3.10/data-modeling-collections.md @@ -1,6 +1,6 @@ --- layout: default -description: This is an introduction to ArangoDB's interface for collections and how to handlecollections from the JavaScript shell arangosh +description: This is an introduction to ArangoDB's interface for collections and how to handle collections from the JavaScript shell arangosh --- JavaScript Interface to Collections =================================== @@ -25,33 +25,38 @@ perspective, the [collection name](appendix-glossary.html#collection-name) should be used, i.e.: ### Collection + `db._collection(collection-name)` A collection is created by a ["db._create"](data-modeling-collections-database-methods.html) call. -For example: Assume that the [collection identifier](appendix-glossary.html#collection-identifier) is *7254820* and the name is -*demo*, then the collection can be accessed as: +For example: Assume that the [collection identifier](appendix-glossary.html#collection-identifier) is `7254820` and the name is +`demo`, then the collection can be accessed as: - db._collection("demo") +```js +db._collection("demo") +``` -If no collection with such a name exists, then *null* is returned. +If no collection with such a name exists, then `null` is returned. There is a short-cut that can be used for non-system collections: ### Collection name + `db.collection-name` -This call will either return the collection named *db.collection-name* or create +This call will either return the collection named `db.collection-name` or create a new one with that name and a set of default properties. -**Note**: Creating a collection on the fly using *db.collection-name* is +**Note**: Creating a collection on the fly using `db.collection-name` is not recommend and does not work in _arangosh_. To create a new collection, please -use +use `db._create()`. ### Create + `db._create(collection-name)` -This call will create a new collection called *collection-name*. +This call will create a new collection called `collection-name`. This method is a database method and is documented in detail at [Database Methods](data-modeling-collections-database-methods.html#create) ### Synchronous replication diff --git a/3.10/data-modeling-databases-working-with.md b/3.10/data-modeling-databases-working-with.md index f4bbb23856..854f7d67ca 100644 --- a/3.10/data-modeling-databases-working-with.md +++ b/3.10/data-modeling-databases-working-with.md @@ -14,9 +14,8 @@ database only. ### Name - +Return the database name: -return the database name `db._name()` Returns the name of the current database as a string. @@ -34,9 +33,8 @@ Returns the name of the current database as a string. ### ID - +Return the database ID: -return the database id `db._id()` Returns the id of the current database as a string. @@ -54,9 +52,8 @@ Returns the id of the current database as a string. ### Path - +Return the path to database files: -return the path to database files `db._path()` Returns the filesystem path of the current database as a string. @@ -74,36 +71,34 @@ Returns the filesystem path of the current database as a string. ### isSystem - +Return the database type: -return the database type `db._isSystem()` -Returns whether the currently used database is the *_system* database. +Returns whether the currently used database is the `_system` database. The system database has some special privileges and properties, for example, database management operations such as create or drop can only be executed -from within this database. Additionally, the *_system* database itself +from within this database. Additionally, the `_system` database itself cannot be dropped. ### Properties - +Return the path to database files: -return the path to database files `db._properties()` Returns the properties of the current database as an object with the following attributes: -- *id*: the database id -- *name*: the database name -- *isSystem*: the database type -- *path*: the path to database files -- *sharding*: the sharding method to use for new collections *(Cluster only)* -- *replicationFactor*: default replication factor for new collections - *(Cluster only)* -- *writeConcern*: a shard will refuse to write if less than this amount - of copies are in sync *(Cluster only)* +- `id`: the database ID +- `name`: the database name +- `isSystem`: the database type +- `path`: the path to the database files (not used anymore, always `""`) +- `sharding`: the sharding method to use for new collections _(cluster only)_ +- `replicationFactor`: default replication factor for new collections + _(cluster only)_ +- `writeConcern`: a shard will refuse to write if less than this amount + of copies are in sync _(cluster only)_ **Examples** @@ -118,20 +113,19 @@ attributes: ### Use Database - +Change the current database: -change the current database `db._useDatabase(name)` -Changes the current database to the database specified by *name*. Note -that the database specified by *name* must already exist. +Changes the current database to the database specified by `name`. Note +that the database specified by `name` must already exist. Changing the database might be disallowed in some contexts, for example server-side actions (including Foxx). When performing this command from arangosh, the current credentials (username and password) will be re-used. These credentials might not be valid to -connect to the database specified by *name*. Additionally, the database +connect to the database specified by `name`. Additionally, the database only be accessed from certain endpoints only. In this case, switching the database might not work, and the connection / session should be closed and restarted with different username and password credentials and/or @@ -139,58 +133,56 @@ endpoint data. ### List Databases - +Return the list of all existing databases: -return the list of all existing databases `db._databases()` Returns the list of all databases. This method can only be used from within -the *_system* database. +the `_system` database. ### Create Database - +Create a new database: -create a new database `db._createDatabase(name, options, users)` -Creates a new database with the name specified by *name*. +Creates a new database with the name specified by `name`. There are restrictions for database names (see [DatabaseNames](data-modeling-naming-conventions-database-names.html)). Note that even if the database is created successfully, there will be no change into the current database to the new database. Changing the current database must explicitly be requested by using the -*db._useDatabase* method. +`db._useDatabase()` method. -The *options* attribute can be used to set defaults for collections that will -be created in the new database (*Cluster only*): +The `options` attribute can be used to set defaults for collections that will +be created in the new database (_cluster only_): -- *sharding*: The sharding method to use. Valid values are: `""` or `"single"`. +- `sharding`: The sharding method to use. Valid values are: `""` or `"single"`. Setting this option to `"single"` will enable the OneShard feature in the Enterprise Edition. -- *replicationFactor*: Default replication factor. Special values include +- `replicationFactor`: Default replication factor. Special values include `"satellite"`, which will replicate the collection to every DB-Server, and `1`, which disables replication. -- *writeConcern*: how many copies of each shard are required to be in sync on +- `writeConcern`: how many copies of each shard are required to be in sync on the different DB-Servers. If there are less then these many copies in the - cluster a shard will refuse to write. The value of *writeConcern* can not be - larger than *replicationFactor*. + cluster a shard will refuse to write. The value of `writeConcern` can not be + larger than `replicationFactor`. -The optional *users* attribute can be used to create initial users for +The optional `users` attribute can be used to create initial users for the new database. If specified, it must be a list of user objects. Each user object can contain the following attributes: -- *username*: the user name as a string. This attribute is mandatory. -- *passwd*: the user password as a string. If not specified, then it defaults +- `username`: the user name as a string. This attribute is mandatory. +- `passwd`: the user password as a string. If not specified, then it defaults to an empty string. -- *active*: a boolean flag indicating whether the user account should be - active or not. The default value is *true*. -- *extra*: an optional JSON object with extra user information. The data - contained in *extra* will be stored for the user but not be interpreted +- `active`: a boolean flag indicating whether the user account should be + active or not. The default value is `true`. +- `extra`: an optional JSON object with extra user information. The data + contained in `extra` will be stored for the user but not be interpreted further by ArangoDB. -If no initial users are specified, a default user *root* will be created +If no initial users are specified, a default user `root` will be created with an empty string password. This ensures that the new database will be accessible via HTTP after it is created. @@ -209,20 +201,19 @@ Alternatively, you can specify user data directly. For example: db._createDatabase("newDB", {}, [{ username: "newUser", passwd: "123456", active: true}]) ``` -Those methods can only be used from within the *_system* database. +Those methods can only be used from within the `_system` database. ### Drop Database - +Drop an existing database: -drop an existing database `db._dropDatabase(name)` -Drops the database specified by *name*. The database specified by -*name* must exist. +Drops the database specified by `name`. The database specified by +`name` must exist. -**Note**: Dropping databases is only possible from within the *_system* -database. The *_system* database itself cannot be dropped. +**Note**: Dropping databases is only possible from within the `_system` +database. The `_system` database itself cannot be dropped. Databases are dropped asynchronously, and will be physically removed if all clients have disconnected and references have been garbage-collected. @@ -231,19 +222,20 @@ all clients have disconnected and references have been garbage-collected. Introduced in: v3.5.6, v3.6.7, v3.7.3 -compact the entire data, for all databases +Compact the entire data, for all databases: + `db._compact(options)` This command can be used to reclaim disk space after substantial data deletions have taken place. It requires superuser access. -The optional *options* attribute can be used to get more control over the +The optional `options` attribute can be used to get more control over the compaction. The following attributes can be used in it: -- *changeLevel*: whether or not compacted data should be moved to the minimum - possible level. The default value is *false*. -- *compactBottomMostLevel*: whether or not to compact the bottommost level of - data. The default value is *false*. +- `changeLevel`: whether or not compacted data should be moved to the minimum + possible level. The default value is `false`. +- `compactBottomMostLevel`: whether or not to compact the bottommost level of + data. The default value is `false`. {% hint 'warning' %} This command can cause a full rewrite of all data in all databases, which may @@ -253,7 +245,8 @@ and only when additional I/O load can be tolerated for a prolonged time. ### Engine -retrieve the storage engine type used by the server +Retrieve the storage engine type used by the server: + `db._engine()` Returns the name of the storage engine in use (`rocksdb`), as well @@ -261,7 +254,8 @@ as a list of supported features such as types of indexes. ### Engine statistics -retrieve statistics related to the storage engine +Retrieve statistics related to the storage engine: + `db._engineStats()` Returns some statistics related to the storage engine activity, including figures diff --git a/3.10/data-modeling-databases.md b/3.10/data-modeling-databases.md index d233d2f0f1..057d745f03 100644 --- a/3.10/data-modeling-databases.md +++ b/3.10/data-modeling-databases.md @@ -9,20 +9,20 @@ This is an introduction to managing databases in ArangoDB from within JavaScript. When you have an established connection to ArangoDB, the current -database can be changed explicitly using the *db._useDatabase()* +database can be changed explicitly using the `db._useDatabase()` method. This will switch to the specified database (provided it exists and the user can connect to it). From this point on, any following action in the same shell or connection will use the specified database, unless otherwise specified. -*Note*: If the database is changed, client drivers need to store the +**Note**: If the database is changed, client drivers need to store the current database name on their side, too. This is because connections in ArangoDB do not contain any state information. All state information is contained in the HTTP request/response data. To connect to a specific database after arangosh has started use the command described above. It is also possible to specify a database name when invoking -arangosh. For this purpose, use the command-line parameter *--server.database*, +arangosh. For this purpose, use the command-line parameter `--server.database`, e.g. > arangosh --server.database test @@ -32,4 +32,3 @@ access multiple databases, even if they exist. The only intended and supported way in ArangoDB is to use one database at a time for a command, an action, a script or a query. Operations started in one database must not switch the database later and continue operating in another. - diff --git a/3.10/data-modeling-documents-database-methods.md b/3.10/data-modeling-documents-database-methods.md index 94beb4286c..bb6ab88677 100644 --- a/3.10/data-modeling-documents-database-methods.md +++ b/3.10/data-modeling-documents-database-methods.md @@ -8,36 +8,33 @@ Database Methods Document -------- - - - `db._document(object)` -The *_document* method finds a document given an object *object* -containing the *_id* attribute. The method returns +The `db._document()` method finds a document given an object `object` +containing the `_id` attribute. The method returns the document if it can be found. -An error is thrown if *_rev* is specified but the document found has a +An error is thrown if `_rev` is specified but the document found has a different revision already. An error is also thrown if no document exists -with the given *_id*. +with the given `_id`. Please note that if the method is executed on the arangod server (e.g. from inside a Foxx application), an immutable document object will be returned for performance reasons. It is not possible to change attributes of this immutable object. To update or patch the returned document, it needs to be cloned/copied into a regular JavaScript object first. This is not necessary -if the *_document* method is called from out of arangosh or from any other +if the `db._document()` method is called from out of arangosh or from any other client. +--- + `db._document(document-handle)` -As before. Instead of *object* a *document-handle* can be passed as +As before. Instead of `object` a `document-handle` can be passed as first argument. No revision can be specified in this case. - **Examples** - Returns the document: {% arangoshexample examplevar="examplevar" script="script" result="result" %} @@ -52,95 +49,89 @@ Returns the document: {% endarangoshexample %} {% include arangoshexample.html id=examplevar script=script result=result %} - Exists ------ - - - `db._exists(object)` -The *_exists* method determines whether a document exists given an object -`object` containing the *_id* attribute. +The `db._exists()` method determines whether a document exists given an object +`object` containing the `_id` attribute. -An error is thrown if *_rev* is specified but the document found has a +An error is thrown if `_rev` is specified but the document found has a different revision already. Instead of returning the found document or an error, this method will -only return an object with the attributes *_id*, *_key* and *_rev*, or -*false* if no document with the given *_id* or *_key* exists. It can +only return an object with the attributes `_id`, `_key` and `_rev`, or +`false` if no document with the given `_id` or `_key` exists. It can thus be used for easy existence checks. This method will throw an error if used improperly, e.g. when called with a non-document handle, a non-document, or when a cross-collection request is performed. +--- + `db._exists(document-handle)` -As before. Instead of *object* a *document-handle* can be passed as +As before. Instead of `object` a `document-handle` can be passed as first argument. - Replace ------- - - - `db._replace(selector, data)` -Replaces an existing document described by the *selector*, which must -be an object containing the *_id* attribute. There must be -a document with that *_id* in the current database. This -document is then replaced with the *data* given as second argument. -Any attribute *_id*, *_key* or *_rev* in *data* is ignored. +Replaces an existing document described by the `selector`, which must +be an object containing the `_id` attribute. There must be +a document with that `_id` in the current database. This +document is then replaced with the `data` given as second argument. +Any attribute `_id`, `_key` or `_rev` in `data` is ignored. -The method returns a document with the attributes *_id*, *_key*, *_rev* -and *_oldRev*. The attribute *_id* contains the document handle of the -updated document, the attribute *_rev* contains the document revision of -the updated document, the attribute *_oldRev* contains the revision of +The method returns a document with the attributes `_id`, `_key`, `_rev` +and `_oldRev`. The attribute `_id` contains the document handle of the +updated document, the attribute `_rev` contains the document revision of +the updated document, the attribute `_oldRev` contains the revision of the old (now replaced) document. -If the selector contains a *_rev* attribute, the method first checks +If the selector contains a `_rev` attribute, the method first checks that the specified revision is the current revision of that document. If not, there is a conflict, and an error is thrown. `collection.replace(selector, data, options)` -As before, but *options* must be an object that can contain the following +As before, but `options` must be an object that can contain the following boolean attributes: - - *waitForSync*: One can force + - `waitForSync`: One can force synchronization of the document creation operation to disk even in - case that the *waitForSync* flag is been disabled for the entire - collection. Thus, the *waitForSync* option can be used to force + case that the `waitForSync` flag is been disabled for the entire + collection. Thus, the `waitForSync` option can be used to force synchronization of just specific operations. To use this, set the - *waitForSync* parameter to *true*. If the *waitForSync* parameter - is not specified or set to *false*, then the collection's default - *waitForSync* behavior is applied. The *waitForSync* parameter + `waitForSync` parameter to `true`. If the `waitForSync` parameter + is not specified or set to `false`, then the collection's default + `waitForSync` behavior is applied. The `waitForSync` parameter cannot be used to disable synchronization for collections that have - a default *waitForSync* value of *true*. - - *overwrite*: If this flag is set to *true*, a *_rev* attribute in + a default `waitForSync` value of `true`. + - `overwrite`: If this flag is set to `true`, a `_rev` attribute in the selector is ignored. - - *returnNew*: If this flag is set to *true*, the complete new document - is returned in the output under the attribute *new*. - - *returnOld*: If this flag is set to *true*, the complete previous + - `returnNew`: If this flag is set to `true`, the complete new document + is returned in the output under the attribute `new`. + - `returnOld`: If this flag is set to `true`, the complete previous revision of the document is returned in the output under the - attribute *old*. - - *silent*: If this flag is set to *true*, no output is returned. + attribute `old`. + - `silent`: If this flag is set to `true`, no output is returned. + +--- `db._replace(document-handle, data)` `db._replace(document-handle, data, options)` -As before. Instead of *selector* a *document-handle* can be passed as +As before. Instead of `selector` a `document-handle` can be passed as first argument. No revision precondition is tested. - **Examples** - Create and replace a document: {% arangoshexample examplevar="examplevar" script="script" result="result" %} @@ -156,76 +147,74 @@ Create and replace a document: {% endarangoshexample %} {% include arangoshexample.html id=examplevar script=script result=result %} - Update ------ - - `db._update(selector, data)` -Updates an existing document described by the *selector*, which must -be an object containing the *_id* attribute. There must be -a document with that *_id* in the current database. This -document is then patched with the *data* given as second argument. -Any attribute *_id*, *_key* or *_rev* in *data* is ignored. +Updates an existing document described by the `selector`, which must +be an object containing the `_id` attribute. There must be +a document with that `_id` in the current database. This +document is then patched with the `data` given as second argument. +Any attribute `_id`, `_key` or `_rev` in `data` is ignored. -The method returns a document with the attributes *_id*, *_key*, *_rev* -and *_oldRev*. The attribute *_id* contains the document handle of the -updated document, the attribute *_rev* contains the document revision of -the updated document, the attribute *_oldRev* contains the revision of +The method returns a document with the attributes `_id`, `_key`, `_rev` +and `_oldRev`. The attribute `_id` contains the document handle of the +updated document, the attribute `_rev` contains the document revision of +the updated document, the attribute `_oldRev` contains the revision of the old (now updated) document. -If the selector contains a *_rev* attribute, the method first checks +If the selector contains a `_rev` attribute, the method first checks that the specified revision is the current revision of that document. If not, there is a conflict, and an error is thrown. +--- + `db._update(selector, data, options)` -As before, but *options* must be an object that can contain the following +As before, but `options` must be an object that can contain the following boolean attributes: - - *waitForSync*: One can force + - `waitForSync`: One can force synchronization of the document creation operation to disk even in - case that the *waitForSync* flag is been disabled for the entire - collection. Thus, the *waitForSync* option can be used to force + case that the `waitForSync` flag is been disabled for the entire + collection. Thus, the `waitForSync` option can be used to force synchronization of just specific operations. To use this, set the - *waitForSync* parameter to *true*. If the *waitForSync* parameter - is not specified or set to *false*, then the collection's default - *waitForSync* behavior is applied. The *waitForSync* parameter + `waitForSync` parameter to `true`. If the `waitForSync` parameter + is not specified or set to `false`, then the collection's default + `waitForSync` behavior is applied. The `waitForSync` parameter cannot be used to disable synchronization for collections that have - a default *waitForSync* value of *true*. - - *overwrite*: If this flag is set to *true*, a *_rev* attribute in + a default `waitForSync` value of `true`. + - `overwrite`: If this flag is set to `true`, a `_rev` attribute in the selector is ignored. - - *returnNew*: If this flag is set to *true*, the complete new document - is returned in the output under the attribute *new*. - - *returnOld*: If this flag is set to *true*, the complete previous + - `returnNew`: If this flag is set to `true`, the complete new document + is returned in the output under the attribute `new`. + - `returnOld`: If this flag is set to `true`, the complete previous revision of the document is returned in the output under the - attribute *old*. - - *silent*: If this flag is set to *true*, no output is returned. - - *keepNull*: The optional *keepNull* parameter can be used to modify - the behavior when handling *null* values. Normally, *null* values - are stored in the database. By setting the *keepNull* parameter to - *false*, this behavior can be changed so that all attributes in - *data* with *null* values will be removed from the target document. - - *mergeObjects*: Controls whether objects (not arrays) will be + attribute `old`. + - `silent`: If this flag is set to `true`, no output is returned. + - `keepNull`: The optional `keepNull` parameter can be used to modify + the behavior when handling `null` values. Normally, `null` values + are stored in the database. By setting the `keepNull` parameter to + `false`, this behavior can be changed so that all attributes in + `data` with `null` values will be removed from the target document. + - `mergeObjects`: Controls whether objects (not arrays) will be merged if present in both the existing and the patch document. If - set to *false*, the value in the patch document will overwrite the - existing document's value. If set to *true*, objects will be merged. - The default is *true*. + set to `false`, the value in the patch document will overwrite the + existing document's value. If set to `true`, objects will be merged. + The default is `true`. +--- `db._update(document-handle, data)` `db._update(document-handle, data, options)` -As before. Instead of *selector* a *document-handle* can be passed as +As before. Instead of `selector` a `document-handle` can be passed as first argument. No revision precondition is tested. - **Examples** - Create and update a document: {% arangoshexample examplevar="examplevar" script="script" result="result" %} @@ -241,61 +230,60 @@ Create and update a document: {% endarangoshexample %} {% include arangoshexample.html id=examplevar script=script result=result %} - Remove ------ - - - `db._remove(selector)` -Removes a document described by the *selector*, which must be an object -containing the *_id* attribute. There must be a document with -that *_id* in the current database. This document is then +Removes a document described by the `selector`, which must be an object +containing the `_id` attribute. There must be a document with +that `_id` in the current database. This document is then removed. -The method returns a document with the attributes *_id*, *_key* and *_rev*. -The attribute *_id* contains the document handle of the -removed document, the attribute *_rev* contains the document revision of +The method returns a document with the attributes `_id`, `_key` and `_rev`. +The attribute `_id` contains the document handle of the +removed document, the attribute `_rev` contains the document revision of the removed document. -If the selector contains a *_rev* attribute, the method first checks +If the selector contains a `_rev` attribute, the method first checks that the specified revision is the current revision of that document. If not, there is a conflict, and an error is thrown. +--- + `db._remove(selector, options)` -As before, but *options* must be an object that can contain the following +As before, but `options` must be an object that can contain the following boolean attributes: - - *waitForSync*: One can force + - `waitForSync`: One can force synchronization of the document creation operation to disk even in - case that the *waitForSync* flag is been disabled for the entire - collection. Thus, the *waitForSync* option can be used to force + case that the `waitForSync` flag is been disabled for the entire + collection. Thus, the `waitForSync` option can be used to force synchronization of just specific operations. To use this, set the - *waitForSync* parameter to *true*. If the *waitForSync* parameter - is not specified or set to *false*, then the collection's default - *waitForSync* behavior is applied. The *waitForSync* parameter + `waitForSync` parameter to `true`. If the `waitForSync` parameter + is not specified or set to `false`, then the collection's default + `waitForSync` behavior is applied. The `waitForSync` parameter cannot be used to disable synchronization for collections that have - a default *waitForSync* value of *true*. - - *overwrite*: If this flag is set to *true*, a *_rev* attribute in + a default `waitForSync` value of `true`. + - `overwrite`: If this flag is set to `true`, a `_rev` attribute in the selector is ignored. - - *returnOld*: If this flag is set to *true*, the complete previous + - `returnOld`: If this flag is set to `true`, the complete previous revision of the document is returned in the output under the - attribute *old*. - - *silent*: If this flag is set to *true*, no output is returned. + attribute `old`. + - `silent`: If this flag is set to `true`, no output is returned. + +--- `db._remove(document-handle)` `db._remove(document-handle, options)` -As before. Instead of *selector* a *document-handle* can be passed as +As before. Instead of `selector` a `document-handle` can be passed as first argument. No revision check is performed. **Examples** - Remove a document: {% arangoshexample examplevar="examplevar" script="script" result="result" %} diff --git a/3.10/data-modeling-documents-document-methods.md b/3.10/data-modeling-documents-document-methods.md index 1a6f901ff9..79920f83a7 100644 --- a/3.10/data-modeling-documents-document-methods.md +++ b/3.10/data-modeling-documents-document-methods.md @@ -8,20 +8,15 @@ Collection Methods All --- - - - `collection.all()` Fetches all documents from a collection and returns a cursor. You can use -*toArray*, *next*, or *hasNext* to access the result. The result -can be limited using the *skip* and *limit* operator. - +`toArray()`, `next()`, or `hasNext()` to access the result. The result +can be limited using the `skip()` and `limit()` operator. **Examples** - -Use *toArray* to get all documents at once: +Use `toArray()` to get all documents at once: {% arangoshexample examplevar="examplevar" script="script" result="result" %} @startDocuBlockInline 001_collectionAll @@ -39,7 +34,7 @@ Use *toArray* to get all documents at once: {% endarangoshexample %} {% include arangoshexample.html id=examplevar script=script result=result %} -Use *limit* to restrict the documents: +Use `limit()` to restrict the documents: {% arangoshexample examplevar="examplevar" script="script" result="result" %} @startDocuBlockInline 002_collectionAllNext @@ -57,23 +52,19 @@ Use *limit* to restrict the documents: {% endarangoshexample %} {% include arangoshexample.html id=examplevar script=script result=result %} - Query by example ---------------- - - - `collection.byExample(example)` Fetches all documents from a collection that match the specified example and returns a cursor. -You can use *toArray*, *next*, or *hasNext* to access the -result. The result can be limited using the *skip* and *limit* +You can use `toArray()`, `next()`, or `hasNext()` to access the +result. The result can be limited using the `skip()` and `limit()` operator. -An attribute name of the form *a.b* is interpreted as attribute path, +An attribute name of the form `a.b` is interpreted as attribute path, not as attribute. If you use ```json @@ -81,7 +72,7 @@ not as attribute. If you use ``` as example, then you will find all documents, such that the attribute -*a* contains a document of the form *{c : 1 }*. For example the document +`a` contains a document of the form `{ "c" : 1 }`. For example the document ```json { "a" : { "c" : 1 }, "b" : 1 } @@ -101,8 +92,8 @@ However, if you use { "a.c" : 1 } ``` -then you will find all documents, which contain a sub-document in *a* -that has an attribute *c* of value *1*. Both the following documents +then you will find all documents, which contain a sub-document in `a` +that has an attribute `c` of value `1`. Both the following documents ```json { "a" : { "c" : 1 }, "b" : 1 } @@ -124,7 +115,7 @@ As alternative you can supply an array of paths and values. **Examples** -Use *toArray* to get all documents at once: +Use `toArray()` to get all documents at once: {% arangoshexample examplevar="examplevar" script="script" result="result" %} @startDocuBlockInline 003_collectionByExample @@ -143,7 +134,7 @@ Use *toArray* to get all documents at once: {% endarangoshexample %} {% include arangoshexample.html id=examplevar script=script result=result %} -Use *next* to loop over all documents: +Use `next()` to loop over all documents: {% arangoshexample examplevar="examplevar" script="script" result="result" %} @startDocuBlockInline 004_collectionByExampleNext @@ -163,21 +154,19 @@ Use *next* to loop over all documents: First Example ------------- - - - `collection.firstExample(example)` Returns some document of a collection that matches the specified -example. If no such document exists, *null* will be returned. +example. If no such document exists, `null` will be returned. The example has to be specified as paths and values. -See *byExample* for details. +See `byExample` for details. + +--- `collection.firstExample(path1, value1, ...)` As alternative you can supply an array of paths and values. - **Examples** {% arangoshexample examplevar="examplevar" script="script" result="result" %} @@ -197,26 +186,19 @@ As alternative you can supply an array of paths and values. Any --- - - - `collection.any()` -Returns a random document from the collection or *null* if none exists. +Returns a random document from the collection or `null` if none exists. **Note**: this method is expensive when using the RocksDB storage engine. Count ----- - - - `collection.count()` Returns the number of living documents in the collection. - **Examples** {% arangoshexample examplevar="examplevar" script="script" result="result" %} @@ -230,72 +212,70 @@ Returns the number of living documents in the collection. {% endarangoshexample %} {% include arangoshexample.html id=examplevar script=script result=result %} - toArray ------- - - - `collection.toArray()` Converts the collection into an array of documents. Never use this call in a production environment as it will basically create a copy of your collection in RAM which will use resources depending on the number and size -of the documents in your collecion. - +of the documents in your collection. Document -------- - - - `collection.document(object [, options])` -The *document* method finds a document given an object *object* -containing the *_id* or *_key* attribute. The method returns +The `document()` method finds a document given an object `object` +containing the `_id` or `_key` attribute. The method returns the document if it can be found. If both attributes are given, -the *_id* takes precedence, it is an error, if the collection part -of the *_id* does not match the *collection*. +the `_id` takes precedence, it is an error, if the collection part +of the `_id` does not match the `collection`. -An error is thrown if *_rev* is specified but the document found has a +An error is thrown if `_rev` is specified but the document found has a different revision already. An error is also thrown if no document exists -with the given *_id* or *_key* value. +with the given `_id` or `_key` value. Please note that if the method is executed on the arangod server (e.g. from inside a Foxx application), an immutable document object will be returned for performance reasons. It is not possible to change attributes of this immutable object. To update or patch the returned document, it needs to be cloned/copied into a regular JavaScript object first. This is not necessary -if the *document* method is called from out of arangosh or from any other +if the `document` method is called from out of arangosh or from any other client. -If you pass *options* as the second argument, it must be an object. If this +If you pass `options` as the second argument, it must be an object. If this object has the `allowDirtyReads` attribute set to `true`, then the Coordinator is allowed to read from any shard replica and not only from the leader. See [Read from Followers](http/document-address-and-etag.html#read-from-followers) for details. +--- + `collection.document(document-handle [, options])` -As before. Instead of *object* a *document-handle* can be passed as +As before. Instead of `object` a `document-handle` can be passed as first argument. No revision can be specified in this case. +--- + `collection.document(document-key [, options])` -As before. Instead of *object* a *document-key* can be passed as +As before. Instead of `object` a `document-key` can be passed as first argument. +--- + `collection.document(array [, options])` This variant allows to perform the operation on a whole array of arguments. -The behavior is exactly as if *document* would have been called on all members +The behavior is exactly as if `document` would have been called on all members of the array separately and all results are returned in an array. If an error occurs with any of the documents, no exception is risen! Instead of a document an error object is returned in the result array. -*Examples* +**Examples** Returns the document for a document-handle: @@ -381,73 +361,72 @@ An error is raised if the handle is invalid: {% endarangoshexample %} {% include arangoshexample.html id=examplevar script=script result=result %} - Exists ------ - - +Checks whether a document exists: -checks whether a document exists `collection.exists(object [, options])` -The *exists* method determines whether a document exists given an object -`object` containing the *_id* or *_key* attribute. If both attributes -are given, the *_id* takes precedence, it is an error, if the collection -part of the *_id* does not match the *collection*. +The `exists()` method determines whether a document exists given an object +`object` containing the `_id` or `_key` attribute. If both attributes +are given, the `_id` takes precedence, it is an error, if the collection +part of the `_id` does not match the `collection`. -An error is thrown if *_rev* is specified but the document found has a +An error is thrown if `_rev` is specified but the document found has a different revision already. Instead of returning the found document or an error, this method will -only return an object with the attributes *_id*, *_key* and *_rev*, or -*false* if no document with the given *_id* or *_key* exists. It can +only return an object with the attributes `_id`, `_key` and `_rev`, or +`false` if no document with the given `_id` or `_key` exists. It can thus be used for easy existence checks. This method will throw an error if used improperly, e.g. when called with a non-document handle, a non-document, or when a cross-collection request is performed. -If you pass *options* as the second argument, it must be an object. If this +If you pass `options` as the second argument, it must be an object. If this object has the `allowDirtyReads` attribute set to `true`, then the Coordinator is allowed to read from any shard replica and not only from the leader. See [Read from Followers](http/document-address-and-etag.html#read-from-followers) for details. +--- + `collection.exists(document-handle [, options])` -As before. Instead of *object* a *document-handle* can be passed as +As before. Instead of `object` a `document-handle` can be passed as first argument. +--- + `collection.exists(document-key [, options])` -As before. Instead of *object* a *document-key* can be passed as +As before. Instead of `object` a `document-key` can be passed as first argument. +--- + `collection.exists(array [, options])` This variant allows to perform the operation on a whole array of arguments. -The behavior is exactly as if *exists* would have been called on all +The behavior is exactly as if `exists()` would have been called on all members of the array separately and all results are returned in an array. If an error occurs with any of the documents, the operation stops immediately returning only an error object. - Lookup By Keys -------------- - - - `collection.documents(keys)` Looks up the documents in the specified collection using the array of keys provided. All documents for which a matching key was specified in -the *keys* array and that exist in the collection will be returned. Keys +the `keys` array and that exist in the collection will be returned. Keys for which no document can be found in the underlying collection are ignored, and no exception will be thrown for them. -This method is deprecated in favour of the array variant of *document*. +This method is deprecated in favor of the array variant of `document()`. **Examples** @@ -471,92 +450,94 @@ This method is deprecated in favour of the array variant of *document*. Insert / Save ------------- - - `collection.insert(data)`
`collection.save(data)` -Creates a new document in the *collection* from the given *data*. The -*data* must be an object. The attributes *_id* and *_rev* are ignored -and are automatically generated. A unique value for the attribute *_key* +Creates a new document in the `collection` from the given `data`. The +`data` must be an object. The attributes `_id` and `_rev` are ignored +and are automatically generated. A unique value for the attribute `_key` will be automatically generated if not specified. If specified, there -must not be a document with the given *_key* in the collection. +must not be a document with the given `_key` in the collection. -The method returns a document with the attributes *_id*, *_key* and -*_rev*. The attribute *_id* contains the document handle of the newly -created document, the attribute *_key* the document key and the -attribute *_rev* contains the document revision. +The method returns a document with the attributes `_id`, `_key` and +`_rev`. The attribute `_id` contains the document handle of the newly +created document, the attribute `_key` the document key and the +attribute `_rev` contains the document revision. + +--- `collection.insert(data, options)`
`collection.save(data, options)` -Creates a new document in the *collection* from the given *data* as -above. The optional *options* parameter must be an object and can be +Creates a new document in the `collection` from the given `data` as +above. The optional `options` parameter must be an object and can be used to specify the following options: - - *waitForSync*: One can force + - `waitForSync`: One can force synchronization of the document creation operation to disk even in - case that the *waitForSync* flag is been disabled for the entire - collection. Thus, the *waitForSync* option can be used to force + case that the `waitForSync` flag is been disabled for the entire + collection. Thus, the `waitForSync` option can be used to force synchronization of just specific operations. To use this, set the - *waitForSync* parameter to *true*. If the *waitForSync* parameter - is not specified or set to *false*, then the collection's default - *waitForSync* behavior is applied. The *waitForSync* parameter + `waitForSync` parameter to `true`. If the `waitForSync` parameter + is not specified or set to `false`, then the collection's default + `waitForSync` behavior is applied. The `waitForSync` parameter cannot be used to disable synchronization for collections that have - a default *waitForSync* value of *true*. - - *silent*: If this flag is set to *true*, the method does not return + a default `waitForSync` value of `true`. + - `silent`: If this flag is set to `true`, the method does not return any output. - - *returnNew*: If this flag is set to *true*, the complete new document - is returned in the output under the attribute *new*. - - *returnOld*: If this flag is set to *true*, the complete old document - is returned in the output under the attribute *old*. Only available - in combination with the *overwrite* option - - *overwrite*: If set to *true*, the insert becomes a replace-insert. - If a document with the same *_key* exists already the new document + - `returnNew`: If this flag is set to `true`, the complete new document + is returned in the output under the attribute `new`. + - `returnOld`: If this flag is set to `true`, the complete old document + is returned in the output under the attribute `old`. Only available + in combination with the `overwrite` option + - `overwrite`: If set to `true`, the insert becomes a replace-insert. + If a document with the same `_key` exists already the new document is not rejected with unique constraint violated but will replace the old document. Note that operations with `overwrite` parameter require a `_key` attribute in the request payload, therefore they can only be performed on collections sharded by `_key`. - - *overwriteMode*: this optional flag can have one of the following values: - - *ignore*: if a document with the specified *_key* value exists already, + - `overwriteMode`: this optional flag can have one of the following values: + - `ignore`: if a document with the specified `_key` value exists already, nothing will be done and no write operation will be carried out (introduced in v3.7.0). The insert operation will return success in this case. This mode does not - support returning the old document version using the *returnOld* - attribute. *returnNew* will only set the *new* attribute in the response + support returning the old document version using the `returnOld` + attribute. `returnNew` will only set the `new` attribute in the response if a new document was inserted. - - *replace*: if a document with the specified *_key* value exists already, + - `replace`: if a document with the specified `_key` value exists already, it will be overwritten with the specified document value. This mode will - also be used when no overwrite mode is specified but the *overwrite* - flag is set to *true*. - - *update*: if a document with the specified *_key* value exists already, + also be used when no overwrite mode is specified but the `overwrite` + flag is set to `true`. + - `update`: if a document with the specified `_key` value exists already, it will be patched (partially updated) with the specified document value (introduced in v3.7.0). - The overwrite mode can be further controlled via the *keepNull* and - *mergeObjects* parameters. - - *conflict*: if a document with the specified *_key* value exists already, + The overwrite mode can be further controlled via the `keepNull` and + `mergeObjects` parameters. + - `conflict`: if a document with the specified `_key` value exists already, return a unique constraint violation error so that the insert operation fails. This is also the default behavior in case the overwrite mode is - not set, and the *overwrite* flag is *false* or not set either. - - *keepNull*: The optional *keepNull* parameter can be used to modify - the behavior when handling *null* values. Normally, *null* values - are stored in the database. By setting the *keepNull* parameter to - *false*, this behavior can be changed so that all attributes in - *data* with *null* values will be removed from the target document. + not set, and the `overwrite` flag is `false` or not set either. + - `keepNull`: The optional `keepNull` parameter can be used to modify + the behavior when handling `null` values. Normally, `null` values + are stored in the database. By setting the `keepNull` parameter to + `false`, this behavior can be changed so that all attributes in + `data` with `null` values will be removed from the target document. This option controls the update-insert behavior only. - - *mergeObjects*: Controls whether objects (not arrays) will be + - `mergeObjects`: Controls whether objects (not arrays) will be merged if present in both the existing and the patch document. If - set to *false*, the value in the patch document will overwrite the - existing document's value. If set to *true*, objects will be merged. - The default is *true*. + set to `false`, the value in the patch document will overwrite the + existing document's value. If set to `true`, objects will be merged. + The default is `true`. This option controls the update-insert behavior only. +--- + `collection.insert(array)` `collection.insert(array, options)` These two variants allow to perform the operation on a whole array of -arguments. The behavior is exactly as if *insert* would have been called on all +arguments. The behavior is exactly as if `insert()` would have been called on all members of the array separately and all results are returned in an array. If an error occurs with any of the documents, no exception is risen! Instead of a document an error object is returned in the result array. The options behave @@ -603,72 +584,77 @@ exactly as before. Replace ------- - - - `collection.replace(selector, data)` -Replaces an existing document described by the *selector*, which must -be an object containing the *_id* or *_key* attribute. There must be -a document with that *_id* or *_key* in the current collection. This -document is then replaced with the *data* given as second argument. -Any attribute *_id*, *_key* or *_rev* in *data* is ignored. +Replaces an existing document described by the `selector`, which must +be an object containing the `_id` or `_key` attribute. There must be +a document with that `_id` or `_key` in the current collection. This +document is then replaced with the `data` given as second argument. +Any attribute `_id`, `_key` or `_rev` in `data` is ignored. -The method returns a document with the attributes *_id*, *_key*, *_rev* -and *_oldRev*. The attribute *_id* contains the document handle of the -updated document, the attribute *_rev* contains the document revision of -the updated document, the attribute *_oldRev* contains the revision of +The method returns a document with the attributes `_id`, `_key`, `_rev` +and `_oldRev`. The attribute `_id` contains the document handle of the +updated document, the attribute `_rev` contains the document revision of +the updated document, the attribute `_oldRev` contains the revision of the old (now replaced) document. -If the selector contains a *_rev* attribute, the method first checks +If the selector contains a `_rev` attribute, the method first checks that the specified revision is the current revision of that document. If not, there is a conflict, and an error is thrown. +--- + `collection.replace(selector, data, options)` -As before, but *options* must be an object that can contain the following +As before, but `options` must be an object that can contain the following boolean attributes: - - *waitForSync*: One can force + - `waitForSync`: One can force synchronization of the document creation operation to disk even in - case that the *waitForSync* flag is been disabled for the entire - collection. Thus, the *waitForSync* option can be used to force + case that the `waitForSync` flag is been disabled for the entire + collection. Thus, the `waitForSync` option can be used to force synchronization of just specific operations. To use this, set the - *waitForSync* parameter to *true*. If the *waitForSync* parameter - is not specified or set to *false*, then the collection's default - *waitForSync* behavior is applied. The *waitForSync* parameter + `waitForSync` parameter to `true`. If the `waitForSync` parameter + is not specified or set to `false`, then the collection's default + `waitForSync` behavior is applied. The `waitForSync` parameter cannot be used to disable synchronization for collections that have - a default *waitForSync* value of *true*. - - *overwrite*: If this flag is set to *true*, a *_rev* attribute in + a default `waitForSync` value of `true`. + - `overwrite`: If this flag is set to `true`, a `_rev` attribute in the selector is ignored. - - *returnNew*: If this flag is set to *true*, the complete new document - is returned in the output under the attribute *new*. - - *returnOld*: If this flag is set to *true*, the complete previous + - `returnNew`: If this flag is set to `true`, the complete new document + is returned in the output under the attribute `new`. + - `returnOld`: If this flag is set to `true`, the complete previous revision of the document is returned in the output under the - attribute *old*. - - *silent*: If this flag is set to *true*, no output is returned. + attribute `old`. + - `silent`: If this flag is set to `true`, no output is returned. + +--- `collection.replace(document-handle, data)` `collection.replace(document-handle, data, options)` -As before. Instead of *selector* a *document-handle* can be passed as +As before. Instead of `selector` a `document-handle` can be passed as first argument. No revision precondition is tested. +--- + `collection.replace(document-key, data)` `collection.replace(document-key, data, options)` -As before. Instead of *selector* a *document-key* can be passed as +As before. Instead of `selector` a `document-key` can be passed as first argument. No revision precondition is tested. -`collection.replace(selectorarray, dataarray)` +--- + +`collection.replace(selector-array, data-array)` -`collection.replace(selectorarray, dataarray, options)` +`collection.replace(selector-array, data-array, options)` These two variants allow to perform the operation on a whole array of -selector/data pairs. The two arrays given as *selectorarray* and *dataarray* -must have the same length. The behavior is exactly as if *replace* would have +selector/data pairs. The two arrays given as `selector-array` and `data-array` +must have the same length. The behavior is exactly as if `replace()` would have been called on all respective members of the two arrays and all results are returned in an array. If an error occurs with any of the documents, no exception is risen! Instead of a document an error object is returned in the @@ -676,7 +662,6 @@ result array. The options behave exactly as before. **Examples** - Create and update a document: {% arangoshexample examplevar="examplevar" script="script" result="result" %} @@ -707,92 +692,96 @@ Use a document handle: {% endarangoshexample %} {% include arangoshexample.html id=examplevar script=script result=result %} - Update ------ - - `collection.update(selector, data)` -Updates an existing document described by the *selector*, which must -be an object containing the *_id* or *_key* attribute. There must be -a document with that *_id* or *_key* in the current collection. This -document is then patched with the *data* given as second argument. -Any attribute *_id*, *_key* or *_rev* in *data* is ignored. +Updates an existing document described by the `selector`, which must +be an object containing the `_id` or `_key` attribute. There must be +a document with that `_id` or `_key` in the current collection. This +document is then patched with the `data` given as second argument. +Any attribute `_id`, `_key` or `_rev` in `data` is ignored. -The method returns a document with the attributes *_id*, *_key*, *_rev* -and *_oldRev*. The attribute *_id* contains the document handle of the -updated document, the attribute *_rev* contains the document revision of -the updated document, the attribute *_oldRev* contains the revision of +The method returns a document with the attributes `_id`, `_key`, `_rev` +and `_oldRev`. The attribute `_id` contains the document handle of the +updated document, the attribute `_rev` contains the document revision of +the updated document, the attribute `_oldRev` contains the revision of the old (now updated) document. -If the selector contains a *_rev* attribute, the method first checks +If the selector contains a `_rev` attribute, the method first checks that the specified revision is the current revision of that document. If not, there is a conflict, and an error is thrown. +--- + `collection.update(selector, data, options)` -As before, but *options* must be an object that can contain the following +As before, but `options` must be an object that can contain the following boolean attributes: - - *waitForSync*: One can force + - `waitForSync`: One can force synchronization of the document creation operation to disk even in - case that the *waitForSync* flag is been disabled for the entire - collection. Thus, the *waitForSync* option can be used to force + case that the `waitForSync` flag is been disabled for the entire + collection. Thus, the `waitForSync` option can be used to force synchronization of just specific operations. To use this, set the - *waitForSync* parameter to *true*. If the *waitForSync* parameter - is not specified or set to *false*, then the collection's default - *waitForSync* behavior is applied. The *waitForSync* parameter + `waitForSync` parameter to `true`. If the `waitForSync` parameter + is not specified or set to `false`, then the collection's default + `waitForSync` behavior is applied. The `waitForSync` parameter cannot be used to disable synchronization for collections that have - a default *waitForSync* value of *true*. - - *overwrite*: If this flag is set to *true*, a *_rev* attribute in + a default `waitForSync` value of `true`. + - `overwrite`: If this flag is set to `true`, a `_rev` attribute in the selector is ignored. - - *returnNew*: If this flag is set to *true*, the complete new document - is returned in the output under the attribute *new*. - - *returnOld*: If this flag is set to *true*, the complete previous + - `returnNew`: If this flag is set to `true`, the complete new document + is returned in the output under the attribute `new`. + - `returnOld`: If this flag is set to `true`, the complete previous revision of the document is returned in the output under the - attribute *old*. - - *silent*: If this flag is set to *true*, no output is returned. - - *keepNull*: The optional *keepNull* parameter can be used to modify - the behavior when handling *null* values. Normally, *null* values - are stored in the database. By setting the *keepNull* parameter to - *false*, this behavior can be changed so that all attributes in - *data* with *null* values will be removed from the target document. - - *mergeObjects*: Controls whether objects (not arrays) will be + attribute `old`. + - `silent`: If this flag is set to `true`, no output is returned. + - `keepNull`: The optional `keepNull` parameter can be used to modify + the behavior when handling `null` values. Normally, `null` values + are stored in the database. By setting the `keepNull` parameter to + `false`, this behavior can be changed so that all attributes in + `data` with `null` values will be removed from the target document. + - `mergeObjects`: Controls whether objects (not arrays) will be merged if present in both the existing and the patch document. If - set to *false*, the value in the patch document will overwrite the - existing document's value. If set to *true*, objects will be merged. - The default is *true*. + set to `false`, the value in the patch document will overwrite the + existing document's value. If set to `true`, objects will be merged. + The default is `true`. +--- `collection.update(document-handle, data)` `collection.update(document-handle, data, options)` -As before. Instead of *selector* a *document-handle* can be passed as +As before. Instead of `selector` a `document-handle` can be passed as first argument. No revision precondition is tested. +--- + `collection.update(document-key, data)` `collection.update(document-key, data, options)` -As before. Instead of *selector* a *document-key* can be passed as +--- + +As before. Instead of `selector` a `document-key` can be passed as first argument. No revision precondition is tested. -`collection.update(selectorarray, dataarray)` +`collection.update(selector-array, data-array)` -`collection.update(selectorarray, dataarray, options)` +`collection.update(selector-array, data-array, options)` These two variants allow to perform the operation on a whole array of -selector/data pairs. The two arrays given as *selectorarray* and *dataarray* -must have the same length. The behavior is exactly as if *update* would have +selector/data pairs. The two arrays given as `selector-array` and `data-array` +must have the same length. The behavior is exactly as if `update()` would have been called on all respective members of the two arrays and all results are returned in an array. If an error occurs with any of the documents, no exception is risen! Instead of a document an error object is returned in the result array. The options behave exactly as before. -*Examples* +**Examples** Create and update a document: @@ -872,70 +861,75 @@ Patching array values: {% endarangoshexample %} {% include arangoshexample.html id=examplevar script=script result=result %} - Remove ------ - - `collection.remove(selector)` -Removes a document described by the *selector*, which must be an object -containing the *_id* or *_key* attribute. There must be a document with -that *_id* or *_key* in the current collection. This document is then +Removes a document described by the `selector`, which must be an object +containing the `_id` or `_key` attribute. There must be a document with +that `_id` or `_key` in the current collection. This document is then removed. -The method returns a document with the attributes *_id*, *_key* and *_rev*. -The attribute *_id* contains the document handle of the -removed document, the attribute *_rev* contains the document revision of +The method returns a document with the attributes `_id`, `_key` and `_rev`. +The attribute `_id` contains the document handle of the +removed document, the attribute `_rev` contains the document revision of the removed document. -If the selector contains a *_rev* attribute, the method first checks +If the selector contains a `_rev` attribute, the method first checks that the specified revision is the current revision of that document. If not, there is a conflict, and an error is thrown. +--- + `collection.remove(selector, options)` -As before, but *options* must be an object that can contain the following +As before, but `options` must be an object that can contain the following boolean attributes: - - *waitForSync*: One can force + - `waitForSync`: One can force synchronization of the document creation operation to disk even in - case that the *waitForSync* flag is been disabled for the entire - collection. Thus, the *waitForSync* option can be used to force + case that the `waitForSync` flag is been disabled for the entire + collection. Thus, the `waitForSync` option can be used to force synchronization of just specific operations. To use this, set the - *waitForSync* parameter to *true*. If the *waitForSync* parameter - is not specified or set to *false*, then the collection's default - *waitForSync* behavior is applied. The *waitForSync* parameter + `waitForSync` parameter to `true`. If the `waitForSync` parameter + is not specified or set to `false`, then the collection's default + `waitForSync` behavior is applied. The `waitForSync` parameter cannot be used to disable synchronization for collections that have - a default *waitForSync* value of *true*. - - *overwrite*: If this flag is set to *true*, a *_rev* attribute in + a default `waitForSync` value of `true`. + - `overwrite`: If this flag is set to `true`, a `_rev` attribute in the selector is ignored. - - *returnOld*: If this flag is set to *true*, the complete previous + - `returnOld`: If this flag is set to `true`, the complete previous revision of the document is returned in the output under the - attribute *old*. - - *silent*: If this flag is set to *true*, no output is returned. + attribute `old`. + - `silent`: If this flag is set to `true`, no output is returned. + +--- `collection.remove(document-handle)` `collection.remove(document-handle, options)` -As before. Instead of *selector* a *document-handle* can be passed as +As before. Instead of `selector` a `document-handle` can be passed as first argument. No revision check is performed. +--- + `collection.remove(document-key)` `collection.remove(document-handle, options)` -As before. Instead of *selector* a *document-handle* can be passed as +As before. Instead of `selector` a `document-handle` can be passed as first argument. No revision check is performed. -`collection.remove(selectorarray)` +--- + +`collection.remove(selector-array)` -`collection.remove(selectorarray,options)` +`collection.remove(selector-array, options)` These two variants allow to perform the operation on a whole array of -selectors. The behavior is exactly as if *remove* would have been called on all +selectors. The behavior is exactly as if `remove()` would have been called on all members of the array separately and all results are returned in an array. If an error occurs with any of the documents, no exception is risen! Instead of a document an error object is returned in the result array. The options behave @@ -943,7 +937,6 @@ exactly as before. **Examples** - Remove a document: {% arangoshexample examplevar="examplevar" script="script" result="result" %} @@ -977,27 +970,22 @@ Remove a document with a conflict: {% endarangoshexample %} {% include arangoshexample.html id=examplevar script=script result=result %} - Remove By Keys -------------- - - - `collection.removeByKeys(keys)` - Looks up the documents in the specified collection using the array of keys provided, and removes all documents from the collection whose keys are -contained in the *keys* array. Keys for which no document can be found in +contained in the `keys` array. Keys for which no document can be found in the underlying collection are ignored, and no exception will be thrown for them. The method will return an object containing the number of removed documents -in the *removed* sub-attribute, and the number of not-removed/ignored -documents in the *ignored* sub-attribute. +in the `removed` sub-attribute, and the number of not-removed/ignored +documents in the `ignored` sub-attribute. -This method is deprecated in favour of the array variant of *remove*. +This method is deprecated in favor of the array variant of `remove()`. **Examples** @@ -1021,34 +1009,34 @@ This method is deprecated in favour of the array variant of *remove*. Remove By Example ----------------- - - - `collection.removeByExample(example)` Removes all documents matching an example. +--- + `collection.removeByExample(document, waitForSync)` -The optional *waitForSync* parameter can be used to force synchronization +The optional `waitForSync` parameter can be used to force synchronization of the document deletion operation to disk even in case that the -*waitForSync* flag had been disabled for the entire collection. Thus, -the *waitForSync* parameter can be used to force synchronization of just -specific operations. To use this, set the *waitForSync* parameter to -*true*. If the *waitForSync* parameter is not specified or set to -*false*, then the collection's default *waitForSync* behavior is -applied. The *waitForSync* parameter cannot be used to disable -synchronization for collections that have a default *waitForSync* value -of *true*. +`waitForSync` flag had been disabled for the entire collection. Thus, +the `waitForSync` parameter can be used to force synchronization of just +specific operations. To use this, set the `waitForSync` parameter to +`true`. If the `waitForSync` parameter is not specified or set to +`false`, then the collection's default `waitForSync` behavior is +applied. The `waitForSync` parameter cannot be used to disable +synchronization for collections that have a default `waitForSync` value +of `true`. + +--- `collection.removeByExample(document, waitForSync, limit)` -The optional *limit* parameter can be used to restrict the number of -removals to the specified value. If *limit* is specified but less than the +The optional `limit` parameter can be used to restrict the number of +removals to the specified value. If `limit` is specified but less than the number of documents in the collection, it is undefined which documents are removed. - **Examples** {% arangoshexample examplevar="examplevar" script="script" result="result" %} @@ -1066,37 +1054,37 @@ removed. Replace By Example ------------------ - - - `collection.replaceByExample(example, newValue)` Replaces all documents matching an example with a new document body. -The entire document body of each document matching the *example* will be -replaced with *newValue*. The document meta-attributes *_id*, *_key* and -*_rev* will not be replaced. +The entire document body of each document matching the `example` will be +replaced with `newValue`. The document meta-attributes `_id`, `_key` and +`_rev` will not be replaced. + +--- `collection.replaceByExample(document, newValue, waitForSync)` -The optional *waitForSync* parameter can be used to force synchronization +The optional `waitForSync` parameter can be used to force synchronization of the document replacement operation to disk even in case that the -*waitForSync* flag had been disabled for the entire collection. Thus, -the *waitForSync* parameter can be used to force synchronization of just -specific operations. To use this, set the *waitForSync* parameter to -*true*. If the *waitForSync* parameter is not specified or set to -*false*, then the collection's default *waitForSync* behavior is -applied. The *waitForSync* parameter cannot be used to disable -synchronization for collections that have a default *waitForSync* value -of *true*. +`waitForSync` flag had been disabled for the entire collection. Thus, +the `waitForSync` parameter can be used to force synchronization of just +specific operations. To use this, set the `waitForSync` parameter to +`true`. If the `waitForSync` parameter is not specified or set to +`false`, then the collection's default `waitForSync` behavior is +applied. The `waitForSync` parameter cannot be used to disable +synchronization for collections that have a default `waitForSync` value +of `true`. + +--- `collection.replaceByExample(document, newValue, waitForSync, limit)` -The optional *limit* parameter can be used to restrict the number of -replacements to the specified value. If *limit* is specified but less than +The optional `limit` parameter can be used to restrict the number of +replacements to the specified value. If `limit` is specified but less than the number of documents in the collection, it is undefined which documents are replaced. - **Examples** {% arangoshexample examplevar="examplevar" script="script" result="result" %} @@ -1114,55 +1102,57 @@ replaced. Update By Example ----------------- - - - `collection.updateByExample(example, newValue)` Partially updates all documents matching an example with a new document body. Specific attributes in the document body of each document matching the -*example* will be updated with the values from *newValue*. -The document meta-attributes *_id*, *_key* and *_rev* cannot be updated. +`example` will be updated with the values from `newValue`. +The document meta-attributes `_id`, `_key` and `_rev` cannot be updated. Partial update could also be used to append new fields, if there were no old field with same name. +--- + `collection.updateByExample(document, newValue, keepNull, waitForSync)` -The optional *keepNull* parameter can be used to modify the behavior when -handling *null* values. Normally, *null* values are stored in the -database. By setting the *keepNull* parameter to *false*, this behavior -can be changed so that all attributes in *data* with *null* values will +The optional `keepNull` parameter can be used to modify the behavior when +handling `null` values. Normally, `null` values are stored in the +database. By setting the `keepNull` parameter to `false`, this behavior +can be changed so that all attributes in `data` with `null` values will be removed from the target document. -The optional *waitForSync* parameter can be used to force synchronization +The optional `waitForSync` parameter can be used to force synchronization of the document replacement operation to disk even in case that the -*waitForSync* flag had been disabled for the entire collection. Thus, -the *waitForSync* parameter can be used to force synchronization of just -specific operations. To use this, set the *waitForSync* parameter to -*true*. If the *waitForSync* parameter is not specified or set to -*false*, then the collection's default *waitForSync* behavior is -applied. The *waitForSync* parameter cannot be used to disable -synchronization for collections that have a default *waitForSync* value -of *true*. +`waitForSync` flag had been disabled for the entire collection. Thus, +the `waitForSync` parameter can be used to force synchronization of just +specific operations. To use this, set the `waitForSync` parameter to +`true`. If the `waitForSync` parameter is not specified or set to +`false`, then the collection's default `waitForSync` behavior is +applied. The `waitForSync` parameter cannot be used to disable +synchronization for collections that have a default `waitForSync` value +of `true`. + +--- `collection.updateByExample(document, newValue, keepNull, waitForSync, limit)` -The optional *limit* parameter can be used to restrict the number of -updates to the specified value. If *limit* is specified but less than +The optional `limit` parameter can be used to restrict the number of +updates to the specified value. If `limit` is specified but less than the number of documents in the collection, it is undefined which documents are updated. +--- + `collection.updateByExample(document, newValue, options)` Using this variant, the options for the operation can be passed using an object with the following sub-attributes: - - *keepNull* - - *waitForSync* - - *limit* - - *mergeObjects* - + - `keepNull` + - `waitForSync` + - `limit` + - `mergeObjects` **Examples** @@ -1185,15 +1175,12 @@ Collection type `collection.type()` Returns the type of a collection. Possible values are: -- 2: document collection -- 3: edge collection - +- `2`: document collection +- `3`: edge collection Convert a document key to a document id --------------------------------------- - - `collection.documentId(documentKey)` Qualifies the given document key with this collection's name to derive a @@ -1202,7 +1189,6 @@ valid document id. Throws if the document key is invalid. Note that this method does not check whether the document already exists in this collection. - Edges ----- @@ -1212,13 +1198,15 @@ edges. The following methods, however, are specific to edges. `edge-collection.edges(vertex)` -The *edges* operator finds all edges starting from (outbound) or ending -in (inbound) *vertex*. +The `edges()` operator finds all edges starting from (outbound) or ending +in (inbound) `vertex`. + +--- `edge-collection.edges(vertices)` -The *edges* operator finds all edges starting from (outbound) or ending -in (inbound) a document from *vertices*, which must be a list of documents +The `edges` operator finds all edges starting from (outbound) or ending +in (inbound) a document from `vertices`, which must be a list of documents or document handles. {% arangoshexample examplevar="examplevar" script="script" result="result" %} @@ -1240,14 +1228,18 @@ or document handles. {% endarangoshexample %} {% include arangoshexample.html id=examplevar script=script result=result %} +--- + `edge-collection.inEdges(vertex)` -The *edges* operator finds all edges ending in (inbound) *vertex*. +The `inEdges()` operator finds all edges ending in (inbound) `vertex`. + +--- `edge-collection.inEdges(vertices)` -The *edges* operator finds all edges ending in (inbound) a document from -*vertices*, which must a list of documents or document handles. +The `inEdges()` operator finds all edges ending in (inbound) a document from +`vertices`, which must a list of documents or document handles. **Examples** @@ -1271,16 +1263,19 @@ The *edges* operator finds all edges ending in (inbound) a document from {% endarangoshexample %} {% include arangoshexample.html id=examplevar script=script result=result %} +--- + `edge-collection.outEdges(vertex)` -The *edges* operator finds all edges starting from (outbound) -*vertices*. +The `outEdges()` operator finds all edges starting from (outbound) +`vertices`. -`edge-collection.outEdges(vertices)` +--- -The *edges* operator finds all edges starting from (outbound) a document -from *vertices*, which must a list of documents or document handles. +`edge-collection.outEdges(vertices)` +The `outEdges()` operator finds all edges starting from (outbound) a document +from `vertices`, which must a list of documents or document handles. **Examples** @@ -1310,16 +1305,16 @@ Misc `collection.iterate(iterator, options)` Iterates over some elements of the collection and apply the function -*iterator* to the elements. The function will be called with the +`iterator` to the elements. The function will be called with the document as first argument and the current number (starting with 0) as second argument. -*options* must be an object with the following attributes: +`options` must be an object with the following attributes: - - *limit* (optional, default none): use at most *limit* documents. + - `limit` (optional, default none): use at most `limit` documents. - - *probability* (optional, default all): a number between *0* and - *1*. Documents are chosen with this probability. + - `probability` (optional, default all): a number between `0` and + `1`. Documents are chosen with this probability. **Examples** diff --git a/3.10/data-modeling-documents.md b/3.10/data-modeling-documents.md index 540fe22958..9aaffc0b0e 100644 --- a/3.10/data-modeling-documents.md +++ b/3.10/data-modeling-documents.md @@ -1,6 +1,6 @@ --- layout: default -description: This is an introduction to ArangoDB's interface for working withdocuments from the JavaScript shell arangosh or in JavaScript code inthe server +description: This is an introduction to ArangoDB's interface for working with documents from the JavaScript shell arangosh or in JavaScript code in the server --- Documents ========= diff --git a/3.10/data-modeling-views-database-methods.md b/3.10/data-modeling-views-database-methods.md index 517294a6e4..b4e26ac1ea 100644 --- a/3.10/data-modeling-views-database-methods.md +++ b/3.10/data-modeling-views-database-methods.md @@ -9,8 +9,6 @@ Database Methods View ---- - - `db._view(view-name)` Returns the view with the given name or null if no such view exists. @@ -28,6 +26,8 @@ Returns the view with the given name or null if no such view exists. {% endarangoshexample %} {% include arangoshexample.html id=examplevar script=script result=result %} +--- + `db._view(view-identifier)` Returns the view with the given identifier or null if no such view exists. @@ -61,20 +61,18 @@ Unknown View: Create ------ - - `db._createView(name, type, properties)` Creates a new View. -*name* is a string and the name of the View. No View or collection with the +`name` is a string and the name of the View. No View or collection with the same name may already exist in the current database. For more information on valid View names please refer to the [naming conventions](data-modeling-naming-conventions.html). -*type* must be the string `"arangosearch"`, as it is currently the only +`type` must be the string `"arangosearch"`, as it is currently the only supported View type. -*properties* is an optional object containing View configuration specific +`properties` is an optional object containing View configuration specific to each View-type. - [`arangosearch` View definition](arangosearch-views.html#view-definitionmodification) - [`search-alias` View definition](arangosearch-views-search-alias.html#view-definition) @@ -95,8 +93,6 @@ to each View-type. All Views --------- - - `db._views()` Returns all views of the given database. @@ -119,16 +115,16 @@ List all views: Drop ---- - - `db._dropView(name)` -Drops a view named *name* and all its data. No error is thrown if there is +Drops a view named `name` and all its data. No error is thrown if there is no such view. +--- + `db._dropView(view-identifier)` -Drops a view identified by *view-identifier* with all its data. No error is +Drops a view identified by `view-identifier` with all its data. No error is thrown if there is no such view. **Examples** diff --git a/3.10/data-modeling-views-view-methods.md b/3.10/data-modeling-views-view-methods.md index 6747fd998c..05dccb2430 100644 --- a/3.10/data-modeling-views-view-methods.md +++ b/3.10/data-modeling-views-view-methods.md @@ -9,8 +9,6 @@ View Methods Drop ---- - - `view.drop()` Drops a View and all its data. @@ -35,8 +33,6 @@ Drop a View: Query Name ---------- - - `view.name()` Returns the name of the View. @@ -58,12 +54,10 @@ Get View name: Rename ------ - - `view.rename(new-name)` -Renames a view using the *new-name*. The *new-name* must not already be used by -a different view or collection in the same database. *new-name* must also be a +Renames a view using the `new-name`. The `new-name` must not already be used by +a different view or collection in the same database. `new-name` must also be a valid view name. For more information on valid view names please refer to the [naming conventions](data-modeling-naming-conventions.html). @@ -91,8 +85,6 @@ The rename method is not available in clusters. Query Type ---------- - - `view.type()` Returns the type of the View. @@ -114,8 +106,6 @@ Get View type: Query Properties ---------------- - - `view.properties()` Returns the properties of the View. The format of the result is specific to @@ -138,16 +128,14 @@ Get View properties: Modify Properties ----------------- - - `view.properties(new-properties, partialUpdate)` -Modifies the properties of the *view*. The format of the result is specific to +Modifies the properties of the `view`. The format of the result is specific to each of the supported [View Types](data-modeling-views.html). -*partialUpdate* is an optional Boolean parameter (`true` by default) that -determines how the *new-properties* object is merged with current View properties -(adds or updates *new-properties* properties to current if `true` replaces all +`partialUpdate` is an optional Boolean parameter (`true` by default) that +determines how the `new-properties` object is merged with current View properties +(adds or updates `new-properties` properties to current if `true` replaces all properties if `false`). For the available properties of the supported View types, see: diff --git a/3.10/features-enterprise-edition.md b/3.10/features-enterprise-edition.md index 524c0af629..9f23cd6271 100644 --- a/3.10/features-enterprise-edition.md +++ b/3.10/features-enterprise-edition.md @@ -77,6 +77,10 @@ features outlined below. For additional information, see fastText word embedding models. {% endcomment %} +- [**Skip inaccessible collections**](aql/invocation-with-arangosh.html#setting-options): + Let AQL queries like graph traversals pretend that collections are empty if + the user has no access to them instead of failing the query. + ## Security - [**DC2DC**](arangosync.html): diff --git a/3.10/generated/Examples/001_collectionAll.generated b/3.10/generated/Examples/001_collectionAll.generated index 229d8c4270..4b7d783cb9 100644 --- a/3.10/generated/Examples/001_collectionAll.generated +++ b/3.10/generated/Examples/001_collectionAll.generated @@ -1,63 +1,63 @@ arangosh> db.five.insert({ name : "one" }); { - "_id" : "five/114", - "_key" : "114", - "_rev" : "_e4y2kGC---" + "_id" : "five/110", + "_key" : "110", + "_rev" : "_e9T1QkW--_" } arangosh> db.five.insert({ name : "two" }); { - "_id" : "five/116", - "_key" : "116", - "_rev" : "_e4y2kGK---" + "_id" : "five/112", + "_key" : "112", + "_rev" : "_e9T1Qka---" } arangosh> db.five.insert({ name : "three" }); { - "_id" : "five/118", - "_key" : "118", - "_rev" : "_e4y2kGO---" + "_id" : "five/114", + "_key" : "114", + "_rev" : "_e9T1Qka--_" } arangosh> db.five.insert({ name : "four" }); { - "_id" : "five/120", - "_key" : "120", - "_rev" : "_e4y2kGW---" + "_id" : "five/116", + "_key" : "116", + "_rev" : "_e9T1Qka--A" } arangosh> db.five.insert({ name : "five" }); { - "_id" : "five/122", - "_key" : "122", - "_rev" : "_e4y2kGa---" + "_id" : "five/118", + "_key" : "118", + "_rev" : "_e9T1Qka--B" } arangosh> db.five.all().toArray(); [ { - "_key" : "114", - "_id" : "five/114", - "_rev" : "_e4y2kGC---", + "_key" : "110", + "_id" : "five/110", + "_rev" : "_e9T1QkW--_", "name" : "one" }, { - "_key" : "116", - "_id" : "five/116", - "_rev" : "_e4y2kGK---", + "_key" : "112", + "_id" : "five/112", + "_rev" : "_e9T1Qka---", "name" : "two" }, { - "_key" : "118", - "_id" : "five/118", - "_rev" : "_e4y2kGO---", + "_key" : "114", + "_id" : "five/114", + "_rev" : "_e9T1Qka--_", "name" : "three" }, { - "_key" : "120", - "_id" : "five/120", - "_rev" : "_e4y2kGW---", + "_key" : "116", + "_id" : "five/116", + "_rev" : "_e9T1Qka--A", "name" : "four" }, { - "_key" : "122", - "_id" : "five/122", - "_rev" : "_e4y2kGa---", + "_key" : "118", + "_id" : "five/118", + "_rev" : "_e9T1Qka--B", "name" : "five" } ] diff --git a/3.10/generated/Examples/002_collectionAllNext.generated b/3.10/generated/Examples/002_collectionAllNext.generated index 5ace8e5341..97ab300f3e 100644 --- a/3.10/generated/Examples/002_collectionAllNext.generated +++ b/3.10/generated/Examples/002_collectionAllNext.generated @@ -1,45 +1,45 @@ arangosh> db.five.insert({ name : "one" }); { - "_id" : "five/134", - "_key" : "134", - "_rev" : "_e4y2kIy---" + "_id" : "five/130", + "_key" : "130", + "_rev" : "_e9T1QlK--_" } arangosh> db.five.insert({ name : "two" }); { - "_id" : "five/136", - "_key" : "136", - "_rev" : "_e4y2kI2---" + "_id" : "five/132", + "_key" : "132", + "_rev" : "_e9T1QlK--A" } arangosh> db.five.insert({ name : "three" }); { - "_id" : "five/138", - "_key" : "138", - "_rev" : "_e4y2kI6---" + "_id" : "five/134", + "_key" : "134", + "_rev" : "_e9T1QlO---" } arangosh> db.five.insert({ name : "four" }); { - "_id" : "five/140", - "_key" : "140", - "_rev" : "_e4y2kI6--_" + "_id" : "five/136", + "_key" : "136", + "_rev" : "_e9T1QlO--_" } arangosh> db.five.insert({ name : "five" }); { - "_id" : "five/142", - "_key" : "142", - "_rev" : "_e4y2kJ----" + "_id" : "five/138", + "_key" : "138", + "_rev" : "_e9T1QlO--A" } arangosh> db.five.all().limit(2).toArray(); [ { - "_key" : "134", - "_id" : "five/134", - "_rev" : "_e4y2kIy---", + "_key" : "130", + "_id" : "five/130", + "_rev" : "_e9T1QlK--_", "name" : "one" }, { - "_key" : "136", - "_id" : "five/136", - "_rev" : "_e4y2kI2---", + "_key" : "132", + "_id" : "five/132", + "_rev" : "_e9T1QlK--A", "name" : "two" } ] diff --git a/3.10/generated/Examples/003_collectionByExample.generated b/3.10/generated/Examples/003_collectionByExample.generated index d08ac8d512..138aeb34b2 100644 --- a/3.10/generated/Examples/003_collectionByExample.generated +++ b/3.10/generated/Examples/003_collectionByExample.generated @@ -1,39 +1,39 @@ arangosh> db.users.insert({ name: "Gerhard" }); { - "_id" : "users/154", - "_key" : "154", - "_rev" : "_e4y2kJy---" + "_id" : "users/150", + "_key" : "150", + "_rev" : "_e9T1Qla--_" } arangosh> db.users.insert({ name: "Helmut" }); { - "_id" : "users/156", - "_key" : "156", - "_rev" : "_e4y2kJ2---" + "_id" : "users/152", + "_key" : "152", + "_rev" : "_e9T1Qle---" } arangosh> db.users.insert({ name: "Angela" }); { - "_id" : "users/158", - "_key" : "158", - "_rev" : "_e4y2kJ6---" + "_id" : "users/154", + "_key" : "154", + "_rev" : "_e9T1Qle--_" } arangosh> db.users.all().toArray(); [ { - "_key" : "154", - "_id" : "users/154", - "_rev" : "_e4y2kJy---", + "_key" : "150", + "_id" : "users/150", + "_rev" : "_e9T1Qla--_", "name" : "Gerhard" }, { - "_key" : "156", - "_id" : "users/156", - "_rev" : "_e4y2kJ2---", + "_key" : "152", + "_id" : "users/152", + "_rev" : "_e9T1Qle---", "name" : "Helmut" }, { - "_key" : "158", - "_id" : "users/158", - "_rev" : "_e4y2kJ6---", + "_key" : "154", + "_id" : "users/154", + "_rev" : "_e9T1Qle--_", "name" : "Angela" } ] @@ -42,9 +42,9 @@ arangosh> db.users.byExample({ "_id""name" : "Gerhard" }).toArray(); [ { - "_key" : "154", - "_id" : "users/154", - "_rev" : "_e4y2kJy---", + "_key" : "150", + "_id" : "users/150", + "_rev" : "_e9T1Qla--_", "name" : "Gerhard" } ] diff --git a/3.10/generated/Examples/004_collectionByExampleNext.generated b/3.10/generated/Examples/004_collectionByExampleNext.generated index 4c529b3ac7..4587b8d7c6 100644 --- a/3.10/generated/Examples/004_collectionByExampleNext.generated +++ b/3.10/generated/Examples/004_collectionByExampleNext.generated @@ -1,26 +1,26 @@ arangosh> db.users.insert({ name: "Gerhard" }); { - "_id" : "users/176", - "_key" : "176", - "_rev" : "_e4y2kLK---" + "_id" : "users/172", + "_key" : "172", + "_rev" : "_e9T1Qlu--_" } arangosh> db.users.insert({ name: "Helmut" }); { - "_id" : "users/178", - "_key" : "178", - "_rev" : "_e4y2kLS---" + "_id" : "users/174", + "_key" : "174", + "_rev" : "_e9T1Qly---" } arangosh> db.users.insert({ name: "Angela" }); { - "_id" : "users/180", - "_key" : "180", - "_rev" : "_e4y2kLS--_" + "_id" : "users/176", + "_key" : "176", + "_rev" : "_e9T1Qly--_" } arangosh> var a = db.users.byExample( {"name" : "Angela" } ); arangosh> while (a.hasNext()) print(a.next()); { - "_key" : "180", - "_id" : "users/180", - "_rev" : "_e4y2kLS--_", + "_key" : "176", + "_id" : "users/176", + "_rev" : "_e9T1Qly--_", "name" : "Angela" } diff --git a/3.10/generated/Examples/011_documentsCollectionReplaceByExample.generated b/3.10/generated/Examples/011_documentsCollectionReplaceByExample.generated index 45be3f39b0..c01134df2a 100644 --- a/3.10/generated/Examples/011_documentsCollectionReplaceByExample.generated +++ b/3.10/generated/Examples/011_documentsCollectionReplaceByExample.generated @@ -1,8 +1,8 @@ arangosh> db.example.insert({ Hello : "world" }); { - "_id" : "example/202", - "_key" : "202", - "_rev" : "_e4y2kMq---" + "_id" : "example/198", + "_key" : "198", + "_rev" : "_e9T1QmG--_" } arangosh> db.example.replaceByExample({ Hello: "world" }, {Hello: "mars"}, false, 5); 1 diff --git a/3.10/generated/Examples/012_documentsCollectionUpdateByExample.generated b/3.10/generated/Examples/012_documentsCollectionUpdateByExample.generated index 03bb20c6c0..2853b1e96b 100644 --- a/3.10/generated/Examples/012_documentsCollectionUpdateByExample.generated +++ b/3.10/generated/Examples/012_documentsCollectionUpdateByExample.generated @@ -1,17 +1,17 @@ arangosh> db.example.insert({ Hello : "world", foo : "bar" }); { - "_id" : "example/213", - "_key" : "213", - "_rev" : "_e4y2kNW---" + "_id" : "example/209", + "_key" : "209", + "_rev" : "_e9T1QmS--_" } arangosh> db.example.updateByExample({ Hello: "world" }, { Hello: "foo", World: "bar" }, false); 1 arangosh> db.example.byExample({ Hello: "foo" }).toArray() [ { - "_key" : "213", - "_id" : "example/213", - "_rev" : "_e4y2kNi---", + "_key" : "209", + "_id" : "example/209", + "_rev" : "_e9T1QmW---", "Hello" : "foo", "foo" : "bar", "World" : "bar" diff --git a/3.10/generated/Examples/01_workWithAQL_all.generated b/3.10/generated/Examples/01_workWithAQL_all.generated index 19bd3847b2..411611d47f 100644 --- a/3.10/generated/Examples/01_workWithAQL_all.generated +++ b/3.10/generated/Examples/01_workWithAQL_all.generated @@ -1,10 +1,10 @@ arangosh> db._create("mycollection") -[ArangoCollection 221, "mycollection" (type document, status loaded)] +[ArangoCollection 217, "mycollection" (type document, status loaded)] arangosh> db.mycollection.save({ _key: "testKey", Hello : "World" }) { "_id" : "mycollection/testKey", "_key" : "testKey", - "_rev" : "_e4y2kOS---" + "_rev" : "_e9T1Qme--_" } arangosh> db._query('FOR my IN mycollection RETURN my._key').toArray() [ diff --git a/3.10/generated/Examples/01_workWithAQL_databaseProfileQuery.generated b/3.10/generated/Examples/01_workWithAQL_databaseProfileQuery.generated index 631842004a..5117f84c74 100644 --- a/3.10/generated/Examples/01_workWithAQL_databaseProfileQuery.generated +++ b/3.10/generated/Examples/01_workWithAQL_databaseProfileQuery.generated @@ -4,10 +4,10 @@ Query String (47 chars, cacheable: false): Execution plan: Id NodeType Calls Items Filtered Runtime [s] Comment - 1 SingletonNode 1 1 0 0.00001 * ROOT + 1 SingletonNode 1 1 0 0.00000 * ROOT 4 CalculationNode 1 1 0 0.00000 - LET #2 = 1 /* json expression */ /* const assignment */ - 2 CalculationNode 1 1 0 0.25239 - LET s = SLEEP(0.25) /* simple expression */ - 3 CalculationNode 1 1 0 0.50477 - LET t = SLEEP(0.5) /* simple expression */ + 2 CalculationNode 1 1 0 0.25336 - LET s = SLEEP(0.25) /* simple expression */ + 3 CalculationNode 1 1 0 0.50676 - LET t = SLEEP(0.5) /* simple expression */ 5 ReturnNode 1 1 0 0.00001 - RETURN #2 Indexes used: @@ -19,17 +19,17 @@ Optimization rules applied: Query Statistics: Writes Exec Writes Ign Scan Full Scan Index Cache Hits/Misses Filtered Peak Mem [b] Exec Time [s] - 0 0 0 0 0 / 0 0 0 0.75751 + 0 0 0 0 0 / 0 0 0 0.76025 Query Profile: Query Stage Duration [s] initializing 0.00000 - parsing 0.00006 - optimizing ast 0.00001 - loading collections 0.00002 + parsing 0.00001 + optimizing ast 0.00000 + loading collections 0.00000 instantiating plan 0.00001 - optimizing plan 0.00019 - executing 0.75720 - finalizing 0.00005 + optimizing plan 0.00006 + executing 0.76015 + finalizing 0.00004 diff --git a/3.10/generated/Examples/01_workWithAQL_profileQuerySimple.generated b/3.10/generated/Examples/01_workWithAQL_profileQuerySimple.generated index b69c5a89a3..d308e08cc5 100644 --- a/3.10/generated/Examples/01_workWithAQL_profileQuerySimple.generated +++ b/3.10/generated/Examples/01_workWithAQL_profileQuerySimple.generated @@ -10,9 +10,9 @@ Query String (581 SingletonNode 1 1 0 0.00001 * ROOT - 2 EnumerateCollectionNode 1 10 9990 0.00556 - FOR doc IN acollection /* full collection scan */ FILTER (doc.`value` < 10) /* early pruning */ - 5 ReturnNode 1 10 0 0.00001 - RETURN doc + 1 SingletonNode 1 1 0 0.00000 * ROOT + 2 EnumerateCollectionNode 1 10 9990 0.00211 - FOR doc IN acollection /* full collection scan */ FILTER (doc.`value` < 10) /* early pruning */ + 5 ReturnNode 1 10 0 0.00000 - RETURN doc Indexes used: none @@ -23,17 +23,17 @@ Optimization rules applied: Query Statistics: Writes Exec Writes Ign Scan Full Scan Index Cache Hits/Misses Filtered Peak Mem [b] Exec Time [s] - 0 0 10000 0 0 / 0 9990 0 0.00607 + 0 0 10000 0 0 / 0 9990 0 0.00228 Query Profile: Query Stage Duration [s] - initializing 0.00001 - parsing 0.00007 - optimizing ast 0.00001 + initializing 0.00000 + parsing 0.00003 + optimizing ast 0.00000 loading collections 0.00000 - instantiating plan 0.00004 - optimizing plan 0.00032 - executing 0.00560 - finalizing 0.00003 + instantiating plan 0.00001 + optimizing plan 0.00010 + executing 0.00212 + finalizing 0.00001 diff --git a/3.10/generated/Examples/02_workWithAQL_aqlCollectionQuery.generated b/3.10/generated/Examples/02_workWithAQL_aqlCollectionQuery.generated index 93f51d08b8..ecd799f386 100644 --- a/3.10/generated/Examples/02_workWithAQL_aqlCollectionQuery.generated +++ b/3.10/generated/Examples/02_workWithAQL_aqlCollectionQuery.generated @@ -1,11 +1,10 @@ arangosh> var key = 'testKey'; -arangosh> db._query(aql`FOR doc IN ${ db.mycollection } RETURN doc` -........> ).toArray(); +arangosh> db._query(aql`FOR doc IN ${ db.mycollection } RETURN doc`).toArray(); [ { "_key" : "testKey", "_id" : "mycollection/testKey", - "_rev" : "_e4y2kOS---", + "_rev" : "_e9T1Qme--_", "Hello" : "World" } ] diff --git a/3.10/generated/Examples/02_workWithAQL_aqlQuery.generated b/3.10/generated/Examples/02_workWithAQL_aqlQuery.generated index 5f7a388eb9..14504adeb3 100644 --- a/3.10/generated/Examples/02_workWithAQL_aqlQuery.generated +++ b/3.10/generated/Examples/02_workWithAQL_aqlQuery.generated @@ -1,6 +1,6 @@ arangosh> var key = 'testKey'; arangosh> db._query( -........> aql`FOR c IN mycollection FILTER c._key == ${key} RETURN c._key` +........> aql`FOR c IN mycollection FILTER c._key == ${key} RETURN c._key` ........> ).toArray(); [ "testKey" diff --git a/3.10/generated/Examples/02_workWithAQL_aqlTemplateString.generated b/3.10/generated/Examples/02_workWithAQL_aqlTemplateString.generated new file mode 100644 index 0000000000..32d679a654 --- /dev/null +++ b/3.10/generated/Examples/02_workWithAQL_aqlTemplateString.generated @@ -0,0 +1,9 @@ +arangosh> var key = 'testKey'; +arangosh> aql`FOR c IN mycollection FILTER c._key == ${key} RETURN c._key` +{ + "query" : "FOR c IN mycollection FILTER c._key == @value0 RETURN c._key", + "bindVars" : { + "value0" : "testKey" + }, + "_source" : () { ... } +} diff --git a/3.10/generated/Examples/02_workWithAQL_bindValues.generated b/3.10/generated/Examples/02_workWithAQL_bindValues.generated index a3c62d8edd..b4c366fe26 100644 --- a/3.10/generated/Examples/02_workWithAQL_bindValues.generated +++ b/3.10/generated/Examples/02_workWithAQL_bindValues.generated @@ -1,5 +1,4 @@ -arangosh> db._query( -........> 'FOR c IN @@collection FILTER c._key == @key RETURN c._key', { +arangosh> db._query('FOR c IN @@collection FILTER c._key == @key RETURN c._key', { ........> '@collection': 'mycollection', ........> 'key': 'testKey' ........> }).toArray(); diff --git a/3.10/generated/Examples/02_workWithAQL_memoryLimit.generated b/3.10/generated/Examples/02_workWithAQL_memoryLimit.generated index 8383f0373d..44e1fe27a1 100644 --- a/3.10/generated/Examples/02_workWithAQL_memoryLimit.generated +++ b/3.10/generated/Examples/02_workWithAQL_memoryLimit.generated @@ -1,5 +1,6 @@ arangosh> db._query( -........> 'FOR i IN 1..100000 SORT i RETURN i', {}, { -........> memoryLimit: 100000 -........> }).toArray(); +........> 'FOR i IN 1..100000 SORT i RETURN i', +........> {}, +........> { memoryLimit: 100000 } +........> ).toArray(); [ArangoError 32: AQL: query would use more memory than allowed (while executing)] diff --git a/3.10/generated/Examples/02_workWithAQL_profileQuerySimpleIndex.generated b/3.10/generated/Examples/02_workWithAQL_profileQuerySimpleIndex.generated index 85125a18ad..a08faa0cb3 100644 --- a/3.10/generated/Examples/02_workWithAQL_profileQuerySimpleIndex.generated +++ b/3.10/generated/Examples/02_workWithAQL_profileQuerySimpleIndex.generated @@ -10,13 +10,13 @@ Query String (581 SingletonNode 1 1 0 0.00001 * ROOT - 6 IndexNode 1 10 0 0.00013 - FOR doc IN acollection /* persistent index scan, index scan + document lookup */ - 5 ReturnNode 1 10 0 0.00001 - RETURN doc + 1 SingletonNode 1 1 0 0.00000 * ROOT + 6 IndexNode 1 10 0 0.00005 - FOR doc IN acollection /* persistent index scan, index scan + document lookup */ + 5 ReturnNode 1 10 0 0.00000 - RETURN doc Indexes used: By Name Type Collection Unique Sparse Cache Selectivity Fields Stored values Ranges - 6 idx_1745940398125088768 persistent acollection false false false 100.00 % [ `value` ] [ ] (doc.`value` < 10) + 6 idx_1747211340715393024 persistent acollection false false false 100.00 % [ `value` ] [ ] (doc.`value` < 10) Optimization rules applied: Id RuleName @@ -26,17 +26,17 @@ Optimization rules applied: Query Statistics: Writes Exec Writes Ign Scan Full Scan Index Cache Hits/Misses Filtered Peak Mem [b] Exec Time [s] - 0 0 0 10 0 / 0 0 0 0.00062 + 0 0 0 10 0 / 0 0 0 0.00023 Query Profile: Query Stage Duration [s] initializing 0.00001 - parsing 0.00007 - optimizing ast 0.00001 + parsing 0.00003 + optimizing ast 0.00000 loading collections 0.00000 - instantiating plan 0.00003 - optimizing plan 0.00031 - executing 0.00016 - finalizing 0.00006 + instantiating plan 0.00001 + optimizing plan 0.00011 + executing 0.00006 + finalizing 0.00001 diff --git a/3.10/generated/Examples/03_workWithAQL_getExtra.generated b/3.10/generated/Examples/03_workWithAQL_getExtra.generated index b7f89c8839..4065c53f2e 100644 --- a/3.10/generated/Examples/03_workWithAQL_getExtra.generated +++ b/3.10/generated/Examples/03_workWithAQL_getExtra.generated @@ -1,6 +1,5 @@ arangosh> db._query(`FOR i IN 1..100 -........> INSERT { _key: CONCAT('test', TO_STRING(i)) } -........> INTO mycollection` +........> INSERT { _key: CONCAT('test', TO_STRING(i)) } INTO mycollection` ........> ).getExtra(); { "warnings" : [ ], @@ -15,7 +14,7 @@ arangosh> db._query(`FOR i IN 1..100 "cacheMisses" : 0, "filtered" : 0, "httpRequests" : 0, - "executionTime" : 0.002448218991048634, + "executionTime" : 0.0008605289999650267, "peakMemoryUsage" : 32768 } } diff --git a/3.10/generated/Examples/03_workWithAQL_profileQuerySubquery.generated b/3.10/generated/Examples/03_workWithAQL_profileQuerySubquery.generated index d370e5413e..7b1e1e02f2 100644 --- a/3.10/generated/Examples/03_workWithAQL_profileQuerySubquery.generated +++ b/3.10/generated/Examples/03_workWithAQL_profileQuerySubquery.generated @@ -12,16 +12,16 @@ Query String (116 chars, cacheable: false): Execution plan: Id NodeType Calls Items Filtered Runtime [s] Comment - 1 SingletonNode 1 1 0 0.00002 * ROOT + 1 SingletonNode 1 1 0 0.00000 * ROOT 12 SubqueryStartNode 1 2 0 0.00001 - LET list = ( /* subquery begin */ - 3 EnumerateCollectionNode 11 10001 0 0.00474 - FOR doc IN acollection /* full collection scan */ - 4 CalculationNode 11 10001 0 0.00335 - LET #5 = (doc.`value` > 90) /* simple expression */ /* collections used: doc : acollection */ - 5 FilterNode 10 9910 91 0.00285 - FILTER #5 - 13 SubqueryEndNode 1 1 0 0.00196 - RETURN doc ) /* subquery end */ - 8 EnumerateListNode 10 9909 0 0.00224 - FOR a IN list /* list iteration */ - 9 CalculationNode 10 9909 0 0.00321 - LET #7 = (a.`value` < 91) /* simple expression */ - 10 FilterNode 1 0 9909 0.00062 - FILTER #7 - 11 ReturnNode 1 0 0 0.00001 - RETURN a + 3 EnumerateCollectionNode 11 10001 0 0.00219 - FOR doc IN acollection /* full collection scan */ + 4 CalculationNode 11 10001 0 0.00164 - LET #5 = (doc.`value` > 90) /* simple expression */ /* collections used: doc : acollection */ + 5 FilterNode 10 9910 91 0.00140 - FILTER #5 + 13 SubqueryEndNode 1 1 0 0.00120 - RETURN doc ) /* subquery end */ + 8 EnumerateListNode 10 9909 0 0.00114 - FOR a IN list /* list iteration */ + 9 CalculationNode 10 9909 0 0.00156 - LET #7 = (a.`value` < 91) /* simple expression */ + 10 FilterNode 1 0 9909 0.00025 - FILTER #7 + 11 ReturnNode 1 0 0 0.00000 - RETURN a Indexes used: none @@ -32,17 +32,17 @@ Optimization rules applied: Query Statistics: Writes Exec Writes Ign Scan Full Scan Index Cache Hits/Misses Filtered Peak Mem [b] Exec Time [s] - 0 0 10000 0 0 / 0 10000 720896 0.01948 + 0 0 10000 0 0 / 0 10000 720896 0.00959 Query Profile: Query Stage Duration [s] initializing 0.00001 - parsing 0.00006 - optimizing ast 0.00001 + parsing 0.00003 + optimizing ast 0.00000 loading collections 0.00000 - instantiating plan 0.00007 - optimizing plan 0.00027 - executing 0.01904 - finalizing 0.00004 + instantiating plan 0.00002 + optimizing plan 0.00012 + executing 0.00940 + finalizing 0.00002 diff --git a/3.10/generated/Examples/04_workWithAQL_profileQueryAggregation.generated b/3.10/generated/Examples/04_workWithAQL_profileQueryAggregation.generated index 4b95cb3bd1..8d7400b4d4 100644 --- a/3.10/generated/Examples/04_workWithAQL_profileQueryAggregation.generated +++ b/3.10/generated/Examples/04_workWithAQL_profileQueryAggregation.generated @@ -22,14 +22,14 @@ Query String (186 chars, cacheable: false): Execution plan: Id NodeType Calls Items Filtered Runtime [s] Comment - 1 SingletonNode 1 1 0 0.00001 * ROOT - 2 EnumerateCollectionNode 1 20 0 0.00007 - FOR u IN myusers /* full collection scan (projections: `age`) */ - 3 CalculationNode 1 20 0 0.00003 - LET #5 = (FLOOR((u.`age` / 10)) * 10) /* simple expression */ /* collections used: u : myusers */ - 4 CalculationNode 1 20 0 0.00001 - LET #7 = u.`age` /* attribute expression */ /* collections used: u : myusers */ - 6 CollectNode 1 8 0 0.00009 - COLLECT ageGroup = #5 AGGREGATE minAge = MIN(#7), maxAge = MAX(#7), len = LENGTH() /* hash */ - 9 SortNode 1 8 0 0.00005 - SORT ageGroup ASC /* sorting strategy: standard */ - 7 CalculationNode 1 8 0 0.00003 - LET #11 = { "ageGroup" : ageGroup, "minAge" : minAge, "maxAge" : maxAge, "len" : len } /* simple expression */ - 8 ReturnNode 1 8 0 0.00002 - RETURN #11 + 1 SingletonNode 1 1 0 0.00000 * ROOT + 2 EnumerateCollectionNode 1 20 0 0.00004 - FOR u IN myusers /* full collection scan (projections: `age`) */ + 3 CalculationNode 1 20 0 0.00001 - LET #5 = (FLOOR((u.`age` / 10)) * 10) /* simple expression */ /* collections used: u : myusers */ + 4 CalculationNode 1 20 0 0.00000 - LET #7 = u.`age` /* attribute expression */ /* collections used: u : myusers */ + 6 CollectNode 1 8 0 0.00001 - COLLECT ageGroup = #5 AGGREGATE minAge = MIN(#7), maxAge = MAX(#7), len = LENGTH() /* hash */ + 9 SortNode 1 8 0 0.00006 - SORT ageGroup ASC /* sorting strategy: standard */ + 7 CalculationNode 1 8 0 0.00001 - LET #11 = { "ageGroup" : ageGroup, "minAge" : minAge, "maxAge" : maxAge, "len" : len } /* simple expression */ + 8 ReturnNode 1 8 0 0.00000 - RETURN #11 Indexes used: none @@ -45,17 +45,17 @@ Optimization rules applied: Query Statistics: Writes Exec Writes Ign Scan Full Scan Index Cache Hits/Misses Filtered Peak Mem [b] Exec Time [s] - 0 0 20 0 0 / 0 0 65536 0.00121 + 0 0 20 0 0 / 0 0 65536 0.00042 Query Profile: Query Stage Duration [s] initializing 0.00000 - parsing 0.00014 - optimizing ast 0.00002 - loading collections 0.00001 - instantiating plan 0.00004 - optimizing plan 0.00068 - executing 0.00031 - finalizing 0.00004 + parsing 0.00004 + optimizing ast 0.00001 + loading collections 0.00000 + instantiating plan 0.00002 + optimizing plan 0.00022 + executing 0.00014 + finalizing 0.00001 diff --git a/3.10/generated/Examples/04_workWithAQL_statements1.generated b/3.10/generated/Examples/04_workWithAQL_statements1.generated index 308b87eb8b..40d697655b 100644 --- a/3.10/generated/Examples/04_workWithAQL_statements1.generated +++ b/3.10/generated/Examples/04_workWithAQL_statements1.generated @@ -1,3 +1,2 @@ -arangosh> stmt = db._createStatement( { -........> "query": "FOR i IN [ 1, 2 ] RETURN i * 2" } ); +arangosh> stmt = db._createStatement( { "query": "FOR i IN [ 1, 2 ] RETURN i * 2" } ); [object ArangoStatement] diff --git a/3.10/generated/Examples/05_workWithAQL_statements10.generated b/3.10/generated/Examples/05_workWithAQL_statements10.generated index 44648cdef8..c2b513682a 100644 --- a/3.10/generated/Examples/05_workWithAQL_statements10.generated +++ b/3.10/generated/Examples/05_workWithAQL_statements10.generated @@ -1,3 +1,3 @@ -arangosh> var c = stmt.execute(); -arangosh> c.count(); +arangosh> var cursor = stmt.execute(); +arangosh> cursor.count(); 4 diff --git a/3.10/generated/Examples/05_workWithAQL_statements2.generated b/3.10/generated/Examples/05_workWithAQL_statements2.generated index 5df43cbd0f..9de3943261 100644 --- a/3.10/generated/Examples/05_workWithAQL_statements2.generated +++ b/3.10/generated/Examples/05_workWithAQL_statements2.generated @@ -1,4 +1,4 @@ -arangosh> c = stmt.execute(); +arangosh> cursor = stmt.execute(); [ 2, 4 diff --git a/3.10/generated/Examples/05_workWithAQL_statements3.generated b/3.10/generated/Examples/05_workWithAQL_statements3.generated index b379deeb30..3438453165 100644 --- a/3.10/generated/Examples/05_workWithAQL_statements3.generated +++ b/3.10/generated/Examples/05_workWithAQL_statements3.generated @@ -1,4 +1,4 @@ -arangosh> c.toArray(); +arangosh> cursor.toArray(); [ 2, 4 diff --git a/3.10/generated/Examples/05_workWithAQL_statements5.generated b/3.10/generated/Examples/05_workWithAQL_statements5.generated index 3883a0c6aa..9001d3fe3c 100644 --- a/3.10/generated/Examples/05_workWithAQL_statements5.generated +++ b/3.10/generated/Examples/05_workWithAQL_statements5.generated @@ -1,8 +1,7 @@ -arangosh> var stmt = db._createStatement( { -........> "query": "FOR i IN [ @one, @two ] RETURN i * 2" } ); +arangosh> var stmt = db._createStatement( { "query": "FOR i IN [ @one, @two ] RETURN i * 2" } ); arangosh> stmt.bind("one", 1); arangosh> stmt.bind("two", 2); -arangosh> c = stmt.execute(); +arangosh> cursor = stmt.execute(); [ 2, 4 diff --git a/3.10/generated/Examples/05_workWithAQL_statements6.generated b/3.10/generated/Examples/05_workWithAQL_statements6.generated index b379deeb30..3438453165 100644 --- a/3.10/generated/Examples/05_workWithAQL_statements6.generated +++ b/3.10/generated/Examples/05_workWithAQL_statements6.generated @@ -1,4 +1,4 @@ -arangosh> c.toArray(); +arangosh> cursor.toArray(); [ 2, 4 diff --git a/3.10/generated/Examples/05_workWithAQL_statements7.generated b/3.10/generated/Examples/05_workWithAQL_statements7.generated index 7fd4abac96..a5b065107f 100644 --- a/3.10/generated/Examples/05_workWithAQL_statements7.generated +++ b/3.10/generated/Examples/05_workWithAQL_statements7.generated @@ -1,3 +1,3 @@ -arangosh> while (c.hasNext()) { require("@arangodb").print(c.next()); } +arangosh> while (cursor.hasNext()) { require("@arangodb").print(cursor.next()); } 2 4 diff --git a/3.10/generated/Examples/05_workWithAQL_statements8.generated b/3.10/generated/Examples/05_workWithAQL_statements8.generated index ab664bebf0..ea4af29578 100644 --- a/3.10/generated/Examples/05_workWithAQL_statements8.generated +++ b/3.10/generated/Examples/05_workWithAQL_statements8.generated @@ -1,8 +1,8 @@ arangosh> stmt = db._createStatement( { -........> "query": "FOR i IN [ @one, @two ] RETURN i * 2", -........> "bindVars": { -........> "one": 1, -........> "two": 2 -........> } -........> } ); +........> "query": "FOR i IN [ @one, @two ] RETURN i * 2", +........> "bindVars": { +........> "one": 1, +........> "two": 2 +........> } +........> }); [object ArangoStatement] diff --git a/3.10/generated/Examples/05_workWithAQL_statements9.generated b/3.10/generated/Examples/05_workWithAQL_statements9.generated index 43b140459a..bdaa38f010 100644 --- a/3.10/generated/Examples/05_workWithAQL_statements9.generated +++ b/3.10/generated/Examples/05_workWithAQL_statements9.generated @@ -1,4 +1,4 @@ arangosh> stmt = db._createStatement( { -........> "query": "FOR i IN [ 1, 2, 3, 4 ] RETURN i", +........> "query": "FOR i IN [ 1, 2, 3, 4 ] RETURN i", ........> "count": true } ); [object ArangoStatement] diff --git a/3.10/generated/Examples/06_workWithAQL_statements11.generated b/3.10/generated/Examples/06_workWithAQL_statements11.generated index 068bedc5da..bc14c67aa8 100644 --- a/3.10/generated/Examples/06_workWithAQL_statements11.generated +++ b/3.10/generated/Examples/06_workWithAQL_statements11.generated @@ -1,4 +1,4 @@ arangosh> stmt = db._createStatement( { -........> "query": "FOR i IN [ 1, 2, 3, 4 ] RETURN i", +........> "query": "FOR i IN [ 1, 2, 3, 4 ] RETURN i", ........> options: {"profile": true}} ); [object ArangoStatement] diff --git a/3.10/generated/Examples/06_workWithAQL_statements12.generated b/3.10/generated/Examples/06_workWithAQL_statements12.generated index b1be176c3e..5d709c7cea 100644 --- a/3.10/generated/Examples/06_workWithAQL_statements12.generated +++ b/3.10/generated/Examples/06_workWithAQL_statements12.generated @@ -1,5 +1,5 @@ -arangosh> var c = stmt.execute(); -arangosh> c.getExtra(); +arangosh> var cursor = stmt.execute(); +arangosh> cursor.getExtra(); { "warnings" : [ ], "stats" : { @@ -13,17 +13,17 @@ arangosh> c.getExtra(); "cacheMisses" : 0, "filtered" : 0, "httpRequests" : 0, - "executionTime" : 0.00020924396812915802, + "executionTime" : 0.00004129799981456017, "peakMemoryUsage" : 0 }, "profile" : { - "initializing" : 0.0000021560117602348328, - "parsing" : 0.00003236404154449701, - "optimizing ast" : 0.000004400033503770828, - "loading collections" : 0.000004992936737835407, - "instantiating plan" : 0.00001955998595803976, - "optimizing plan" : 0.0000865870388224721, - "executing" : 0.00004160997923463583, - "finalizing" : 0.00002251600380986929 + "initializing" : 3.5199991543777287e-7, + "parsing" : 0.000007620999895152636, + "optimizing ast" : 8.170000000973232e-7, + "loading collections" : 4.140001692576334e-7, + "instantiating plan" : 0.000003759999799513025, + "optimizing plan" : 0.000017223000213562045, + "executing" : 0.000008573999821237521, + "finalizing" : 0.00000383099995815428 } } diff --git a/3.10/generated/Examples/06_workWithAQL_statementsExtra.generated b/3.10/generated/Examples/06_workWithAQL_statementsExtra.generated index f5742dc351..682b5311de 100644 --- a/3.10/generated/Examples/06_workWithAQL_statementsExtra.generated +++ b/3.10/generated/Examples/06_workWithAQL_statementsExtra.generated @@ -2,9 +2,9 @@ arangosh> db._query(` ........> FOR i IN 1..@count INSERT ........> { _key: CONCAT('anothertest', TO_STRING(i)) } ........> INTO mycollection`, -........> {count: 100}, +........> { count: 100 }, ........> {}, -........> {fullCount: true} +........> { fullCount: true } ........> ).getExtra(); { "warnings" : [ ], @@ -20,16 +20,16 @@ arangosh> db._query(` "filtered" : 0, "httpRequests" : 0, "fullCount" : 0, - "executionTime" : 0.003518403973430395, + "executionTime" : 0.0008572860001549998, "peakMemoryUsage" : 32768 } } arangosh> db._query({ -........> "query": `FOR i IN 200..@count INSERT -........> { _key: CONCAT('anothertest', TO_STRING(i)) } -........> INTO mycollection`, -........> "bindVars": {count: 300}, -........> "options": { fullCount: true} +........> "query": `FOR i IN 200..@count INSERT +........> { _key: CONCAT('anothertest', TO_STRING(i)) } +........> INTO mycollection`, +........> "bindVars": { count: 300 }, +........> "options": { fullCount: true } ........> }).getExtra(); { "warnings" : [ ], @@ -45,7 +45,7 @@ arangosh> db._query({ "filtered" : 0, "httpRequests" : 0, "fullCount" : 0, - "executionTime" : 0.003419677959755063, + "executionTime" : 0.0008033569997678569, "peakMemoryUsage" : 32768 } } diff --git a/3.10/generated/Examples/09_workWithAQL_statementsPlansBind.generated b/3.10/generated/Examples/09_workWithAQL_statementsPlansBind.generated index 9fe96b2cb7..6390455276 100644 --- a/3.10/generated/Examples/09_workWithAQL_statementsPlansBind.generated +++ b/3.10/generated/Examples/09_workWithAQL_statementsPlansBind.generated @@ -45,7 +45,7 @@ arangosh> stmt.explain(); { "id" : "40", "type" : "hash", - "name" : "idx_1745940392446001152", + "name" : "idx_1747211337976512512", "fields" : [ "user" ], diff --git a/3.10/generated/Examples/AQLEXP_01_axplainer.generated b/3.10/generated/Examples/AQLEXP_01_axplainer.generated index 3e54acd1d8..bb4c775595 100644 --- a/3.10/generated/Examples/AQLEXP_01_axplainer.generated +++ b/3.10/generated/Examples/AQLEXP_01_axplainer.generated @@ -1,5 +1,5 @@ arangosh> db._create("test"); -[ArangoCollection 60429, "test" (type document, status loaded)] +[ArangoCollection 60426, "test" (type document, status loaded)] arangosh> for (i = 0; i < 100; ++i) { db.test.save({ value: i }); } arangosh> db.test.ensureIndex({ type: "persistent", fields: [ "value" ] }); { @@ -9,9 +9,9 @@ arangosh> db.test.ensureIndex({ type: "persistent", fields: [ " "fields" : [ "value" ], - "id" : "test/60634", + "id" : "test/60631", "isNewlyCreated" : true, - "name" : "idx_1745940406519988224", + "name" : "idx_1747211342626947073", "selectivityEstimate" : 1, "sparse" : false, "type" : "persistent", @@ -32,7 +32,7 @@ Execution plan: Indexes used: By Name Type Collection Unique Sparse Cache Selectivity Fields Stored values Ranges - 9 idx_1745940406519988224 persistent test false false false 100.00 % [ `value` ] [ ] (i.`value` > 97) + 9 idx_1747211342626947073 persistent test false false false 100.00 % [ `value` ] [ ] (i.`value` > 97) Optimization rules applied: Id RuleName diff --git a/3.10/generated/Examples/AQLEXP_01_explainCreate.generated b/3.10/generated/Examples/AQLEXP_01_explainCreate.generated index de12e12c32..cd6056236e 100644 --- a/3.10/generated/Examples/AQLEXP_01_explainCreate.generated +++ b/3.10/generated/Examples/AQLEXP_01_explainCreate.generated @@ -43,9 +43,9 @@ arangosh> stmt.explain(); "indexCoversProjections" : true, "indexes" : [ { - "id" : "60634", + "id" : "60631", "type" : "persistent", - "name" : "idx_1745940406519988224", + "name" : "idx_1747211342626947073", "fields" : [ "value" ], diff --git a/3.10/generated/Examples/AQLEXP_05_explainAllPlans.generated b/3.10/generated/Examples/AQLEXP_05_explainAllPlans.generated index 43f0c7504d..199279b864 100644 --- a/3.10/generated/Examples/AQLEXP_05_explainAllPlans.generated +++ b/3.10/generated/Examples/AQLEXP_05_explainAllPlans.generated @@ -42,9 +42,9 @@ arangosh> stmt.explain({ allPlans: "indexCoversProjections" : true, "indexes" : [ { - "id" : "60634", + "id" : "60631", "type" : "persistent", - "name" : "idx_1745940406519988224", + "name" : "idx_1747211342626947073", "fields" : [ "value" ], diff --git a/3.10/generated/Examples/AQLEXP_08_explainDisableSingleRulePlans.generated b/3.10/generated/Examples/AQLEXP_08_explainDisableSingleRulePlans.generated index 50de08afa7..8f9b4e49a9 100644 --- a/3.10/generated/Examples/AQLEXP_08_explainDisableSingleRulePlans.generated +++ b/3.10/generated/Examples/AQLEXP_08_explainDisableSingleRulePlans.generated @@ -41,9 +41,9 @@ arangosh> stmt.explain({ optimizer: { "indexCoversProjections" : true, "indexes" : [ { - "id" : "60634", + "id" : "60631", "type" : "persistent", - "name" : "idx_1745940406519988224", + "name" : "idx_1747211342626947073", "fields" : [ "value" ], diff --git a/3.10/generated/Examples/AQLEXP_09_explainMaxNumberOfPlans.generated b/3.10/generated/Examples/AQLEXP_09_explainMaxNumberOfPlans.generated index d92a02f9a9..80162c5b3c 100644 --- a/3.10/generated/Examples/AQLEXP_09_explainMaxNumberOfPlans.generated +++ b/3.10/generated/Examples/AQLEXP_09_explainMaxNumberOfPlans.generated @@ -41,9 +41,9 @@ arangosh> stmt.explain({ maxNumberOfPlans: "indexCoversProjections" : true, "indexes" : [ { - "id" : "60634", + "id" : "60631", "type" : "persistent", - "name" : "idx_1745940406519988224", + "name" : "idx_1747211342626947073", "fields" : [ "value" ], diff --git a/3.10/generated/Examples/COMBINING_GRAPH_03_explain_geo.generated b/3.10/generated/Examples/COMBINING_GRAPH_03_explain_geo.generated index 7e906c1582..5c958da48a 100644 --- a/3.10/generated/Examples/COMBINING_GRAPH_03_explain_geo.generated +++ b/3.10/generated/Examples/COMBINING_GRAPH_03_explain_geo.generated @@ -26,7 +26,7 @@ Execution plan: Indexes used: By Name Type Collection Unique Sparse Cache Selectivity Fields Stored values Ranges - 7 idx_1745940406744383488 geo germanCity false true false n/a [ `geometry` ] [ ] (GEO_DISTANCE([ 7.0998, 50.734 ], startCity.`geometry`) < 400000) + 7 idx_1747211342681473029 geo germanCity false true false n/a [ `geometry` ] [ ] (GEO_DISTANCE([ 7.0998, 50.734 ], startCity.`geometry`) < 400000) Optimization rules applied: Id RuleName diff --git a/3.10/generated/Examples/CollectionUnload.generated b/3.10/generated/Examples/CollectionUnload.generated index 9604db0bcb..26f445ec8e 100644 --- a/3.10/generated/Examples/CollectionUnload.generated +++ b/3.10/generated/Examples/CollectionUnload.generated @@ -1,5 +1,5 @@ arangosh> col = db.example; -[ArangoCollection 61262, "example" (type document, status loaded)] +[ArangoCollection 61259, "example" (type document, status loaded)] arangosh> col.unload(); arangosh> col; -[ArangoCollection 61262, "example" (type document, status loaded)] +[ArangoCollection 61259, "example" (type document, status loaded)] diff --git a/3.10/generated/Examples/EDGCOL_02_Relation.generated b/3.10/generated/Examples/EDGCOL_02_Relation.generated index dcb23f910b..dc67c278e0 100644 --- a/3.10/generated/Examples/EDGCOL_02_Relation.generated +++ b/3.10/generated/Examples/EDGCOL_02_Relation.generated @@ -1,34 +1,34 @@ arangosh> db._create("vertex"); -[ArangoCollection 61269, "vertex" (type document, status loaded)] +[ArangoCollection 61266, "vertex" (type document, status loaded)] arangosh> db._createEdgeCollection("relation"); -[ArangoCollection 61274, "relation" (type edge, status loaded)] +[ArangoCollection 61271, "relation" (type edge, status loaded)] arangosh> var myGraph = {}; arangosh> myGraph.v1 = db.vertex.insert({ name : "vertex 1" }); { - "_id" : "vertex/61281", - "_key" : "61281", - "_rev" : "_e4y2w2S---" + "_id" : "vertex/61278", + "_key" : "61278", + "_rev" : "_e9T1UEK--_" } arangosh> myGraph.v2 = db.vertex.insert({ name : "vertex 2" }); { - "_id" : "vertex/61283", - "_key" : "61283", - "_rev" : "_e4y2w2W---" + "_id" : "vertex/61280", + "_key" : "61280", + "_rev" : "_e9T1UEK--A" } arangosh> myGraph.e1 = db.relation.insert(myGraph.v1, myGraph.v2, ........> { label : "knows"}); { - "_id" : "relation/61285", - "_key" : "61285", - "_rev" : "_e4y2w2a---" + "_id" : "relation/61282", + "_key" : "61282", + "_rev" : "_e9T1UEK--B" } arangosh> db._document(myGraph.e1); { - "_key" : "61285", - "_id" : "relation/61285", - "_from" : "vertex/61281", - "_to" : "vertex/61283", - "_rev" : "_e4y2w2a---", + "_key" : "61282", + "_id" : "relation/61282", + "_from" : "vertex/61278", + "_to" : "vertex/61280", + "_rev" : "_e9T1UEK--B", "label" : "knows" } arangosh> db.relation.edges(myGraph.e1._id); diff --git a/3.10/generated/Examples/EDGCOL_02_inEdges.generated b/3.10/generated/Examples/EDGCOL_02_inEdges.generated index 2cfb367c1a..65d1d2deba 100644 --- a/3.10/generated/Examples/EDGCOL_02_inEdges.generated +++ b/3.10/generated/Examples/EDGCOL_02_inEdges.generated @@ -1,33 +1,33 @@ arangosh> db._create("vertex"); -[ArangoCollection 61293, "vertex" (type document, status loaded)] +[ArangoCollection 61290, "vertex" (type document, status loaded)] arangosh> db._createEdgeCollection("relation"); -[ArangoCollection 61298, "relation" (type edge, status loaded)] +[ArangoCollection 61295, "relation" (type edge, status loaded)] arangosh> myGraph.v1 = db.vertex.insert({ name : "vertex 1" }); { - "_id" : "vertex/61305", - "_key" : "61305", - "_rev" : "_e4y2w3S---" + "_id" : "vertex/61302", + "_key" : "61302", + "_rev" : "_e9T1UEW--A" } arangosh> myGraph.v2 = db.vertex.insert({ name : "vertex 2" }); { - "_id" : "vertex/61307", - "_key" : "61307", - "_rev" : "_e4y2w3W---" + "_id" : "vertex/61304", + "_key" : "61304", + "_rev" : "_e9T1UEW--B" } arangosh> myGraph.e1 = db.relation.insert(myGraph.v1, myGraph.v2, ........> { label : "knows"}); { - "_id" : "relation/61309", - "_key" : "61309", - "_rev" : "_e4y2w3a---" + "_id" : "relation/61306", + "_key" : "61306", + "_rev" : "_e9T1UEW--C" } arangosh> db._document(myGraph.e1); { - "_key" : "61309", - "_id" : "relation/61309", - "_from" : "vertex/61305", - "_to" : "vertex/61307", - "_rev" : "_e4y2w3a---", + "_key" : "61306", + "_id" : "relation/61306", + "_from" : "vertex/61302", + "_to" : "vertex/61304", + "_rev" : "_e9T1UEW--C", "label" : "knows" } arangosh> db.relation.inEdges(myGraph.v1._id); @@ -35,11 +35,11 @@ arangosh> db.relation.inEdges(myGraph.v1._id); arangosh> db.relation.inEdges(myGraph.v2._id); [ { - "_key" : "61309", - "_id" : "relation/61309", - "_from" : "vertex/61305", - "_to" : "vertex/61307", - "_rev" : "_e4y2w3a---", + "_key" : "61306", + "_id" : "relation/61306", + "_from" : "vertex/61302", + "_to" : "vertex/61304", + "_rev" : "_e9T1UEW--C", "label" : "knows" } ] diff --git a/3.10/generated/Examples/EDGCOL_02_outEdges.generated b/3.10/generated/Examples/EDGCOL_02_outEdges.generated index a0a823cf4e..fc30721c92 100644 --- a/3.10/generated/Examples/EDGCOL_02_outEdges.generated +++ b/3.10/generated/Examples/EDGCOL_02_outEdges.generated @@ -1,43 +1,43 @@ arangosh> db._create("vertex"); -[ArangoCollection 61319, "vertex" (type document, status loaded)] +[ArangoCollection 61316, "vertex" (type document, status loaded)] arangosh> db._createEdgeCollection("relation"); -[ArangoCollection 61324, "relation" (type edge, status loaded)] +[ArangoCollection 61321, "relation" (type edge, status loaded)] arangosh> myGraph.v1 = db.vertex.insert({ name : "vertex 1" }); { - "_id" : "vertex/61331", - "_key" : "61331", - "_rev" : "_e4y2w4S---" + "_id" : "vertex/61328", + "_key" : "61328", + "_rev" : "_e9T1UEm--_" } arangosh> myGraph.v2 = db.vertex.insert({ name : "vertex 2" }); { - "_id" : "vertex/61333", - "_key" : "61333", - "_rev" : "_e4y2w4W---" + "_id" : "vertex/61330", + "_key" : "61330", + "_rev" : "_e9T1UEm--A" } arangosh> myGraph.e1 = db.relation.insert(myGraph.v1, myGraph.v2, ........> { label : "knows"}); { - "_id" : "relation/61335", - "_key" : "61335", - "_rev" : "_e4y2w4W--_" + "_id" : "relation/61332", + "_key" : "61332", + "_rev" : "_e9T1UEm--B" } arangosh> db._document(myGraph.e1); { - "_key" : "61335", - "_id" : "relation/61335", - "_from" : "vertex/61331", - "_to" : "vertex/61333", - "_rev" : "_e4y2w4W--_", + "_key" : "61332", + "_id" : "relation/61332", + "_from" : "vertex/61328", + "_to" : "vertex/61330", + "_rev" : "_e9T1UEm--B", "label" : "knows" } arangosh> db.relation.outEdges(myGraph.v1._id); [ { - "_key" : "61335", - "_id" : "relation/61335", - "_from" : "vertex/61331", - "_to" : "vertex/61333", - "_rev" : "_e4y2w4W--_", + "_key" : "61332", + "_id" : "relation/61332", + "_from" : "vertex/61328", + "_to" : "vertex/61330", + "_rev" : "_e9T1UEm--B", "label" : "knows" } ] diff --git a/3.10/generated/Examples/FUNCTION_DOCUMENT_1.generated b/3.10/generated/Examples/FUNCTION_DOCUMENT_1.generated index 2db4de6be7..71a4add0f5 100644 --- a/3.10/generated/Examples/FUNCTION_DOCUMENT_1.generated +++ b/3.10/generated/Examples/FUNCTION_DOCUMENT_1.generated @@ -6,7 +6,7 @@ { "_key": "alice", "_id": "persons/alice", - "_rev": "_e4y2w5W---", + "_rev": "_e9T1UE2--_", "name": "Alice" } ] \ No newline at end of file diff --git a/3.10/generated/Examples/FUNCTION_DOCUMENT_10.generated b/3.10/generated/Examples/FUNCTION_DOCUMENT_10.generated index 1923127f67..66bfb5a373 100644 --- a/3.10/generated/Examples/FUNCTION_DOCUMENT_10.generated +++ b/3.10/generated/Examples/FUNCTION_DOCUMENT_10.generated @@ -13,13 +13,13 @@ { "_key": "alice", "_id": "persons/alice", - "_rev": "_e4y2w6i---", + "_rev": "_e9T1UFG--A", "name": "Alice" }, { "_key": "bob", "_id": "persons/bob", - "_rev": "_e4y2w6m---", + "_rev": "_e9T1UFK---", "name": "Bob" } ] diff --git a/3.10/generated/Examples/FUNCTION_DOCUMENT_11.generated b/3.10/generated/Examples/FUNCTION_DOCUMENT_11.generated index 479afba28a..5d6e3c708c 100644 --- a/3.10/generated/Examples/FUNCTION_DOCUMENT_11.generated +++ b/3.10/generated/Examples/FUNCTION_DOCUMENT_11.generated @@ -9,7 +9,7 @@ { "_key": "bob", "_id": "persons/bob", - "_rev": "_e4y2w72--_", + "_rev": "_e9T1UFa--_", "name": "Bob" } ] \ No newline at end of file diff --git a/3.10/generated/Examples/FUNCTION_DOCUMENT_2.generated b/3.10/generated/Examples/FUNCTION_DOCUMENT_2.generated index 029a3364e1..185eb66777 100644 --- a/3.10/generated/Examples/FUNCTION_DOCUMENT_2.generated +++ b/3.10/generated/Examples/FUNCTION_DOCUMENT_2.generated @@ -6,7 +6,7 @@ { "_key": "alice", "_id": "persons/alice", - "_rev": "_e4y2w9C---", + "_rev": "_e9T1UFq---", "name": "Alice" } ] \ No newline at end of file diff --git a/3.10/generated/Examples/FUNCTION_DOCUMENT_3.generated b/3.10/generated/Examples/FUNCTION_DOCUMENT_3.generated index fb2686ba97..cc925e9cfb 100644 --- a/3.10/generated/Examples/FUNCTION_DOCUMENT_3.generated +++ b/3.10/generated/Examples/FUNCTION_DOCUMENT_3.generated @@ -7,13 +7,13 @@ { "_key": "alice", "_id": "persons/alice", - "_rev": "_e4y2x-W---", + "_rev": "_e9T1UF6---", "name": "Alice" }, { "_key": "bob", "_id": "persons/bob", - "_rev": "_e4y2x-a---", + "_rev": "_e9T1UF6--_", "name": "Bob" } ] diff --git a/3.10/generated/Examples/FUNCTION_DOCUMENT_4.generated b/3.10/generated/Examples/FUNCTION_DOCUMENT_4.generated index 2749f1b377..6577501563 100644 --- a/3.10/generated/Examples/FUNCTION_DOCUMENT_4.generated +++ b/3.10/generated/Examples/FUNCTION_DOCUMENT_4.generated @@ -7,13 +7,13 @@ { "_key": "alice", "_id": "persons/alice", - "_rev": "_e4y2x_m---", + "_rev": "_e9T1UGK---", "name": "Alice" }, { "_key": "bob", "_id": "persons/bob", - "_rev": "_e4y2x_m--_", + "_rev": "_e9T1UGK--_", "name": "Bob" } ] diff --git a/3.10/generated/Examples/FUNCTION_DOCUMENT_5.generated b/3.10/generated/Examples/FUNCTION_DOCUMENT_5.generated index 68fbb4671c..d2c9302cea 100644 --- a/3.10/generated/Examples/FUNCTION_DOCUMENT_5.generated +++ b/3.10/generated/Examples/FUNCTION_DOCUMENT_5.generated @@ -10,7 +10,7 @@ { "_key": "alice", "_id": "persons/alice", - "_rev": "_e4y2xA6---", + "_rev": "_e9T1UGa--A", "name": "Alice" } ] \ No newline at end of file diff --git a/3.10/generated/Examples/FUNCTION_DOCUMENT_6.generated b/3.10/generated/Examples/FUNCTION_DOCUMENT_6.generated index 741f0eabc8..4fbe65b568 100644 --- a/3.10/generated/Examples/FUNCTION_DOCUMENT_6.generated +++ b/3.10/generated/Examples/FUNCTION_DOCUMENT_6.generated @@ -14,13 +14,13 @@ { "_key": "alice", "_id": "persons/alice", - "_rev": "_e4y2xCG---", + "_rev": "_e9T1UGu---", "name": "Alice" }, { "_key": "bob", "_id": "persons/bob", - "_rev": "_e4y2xCK---", + "_rev": "_e9T1UGu--_", "name": "Bob" } ] diff --git a/3.10/generated/Examples/FUNCTION_DOCUMENT_7.generated b/3.10/generated/Examples/FUNCTION_DOCUMENT_7.generated index 5858e94d91..0b46f6135e 100644 --- a/3.10/generated/Examples/FUNCTION_DOCUMENT_7.generated +++ b/3.10/generated/Examples/FUNCTION_DOCUMENT_7.generated @@ -6,7 +6,7 @@ { "_key": "alice", "_id": "persons/alice", - "_rev": "_e4y2xDS---", + "_rev": "_e9T1UH----", "name": "Alice" } ] \ No newline at end of file diff --git a/3.10/generated/Examples/FUNCTION_DOCUMENT_8.generated b/3.10/generated/Examples/FUNCTION_DOCUMENT_8.generated index 36615cb861..a9c5518784 100644 --- a/3.10/generated/Examples/FUNCTION_DOCUMENT_8.generated +++ b/3.10/generated/Examples/FUNCTION_DOCUMENT_8.generated @@ -7,13 +7,13 @@ { "_key": "alice", "_id": "persons/alice", - "_rev": "_e4y2xEa---", + "_rev": "_e9T1UHO---", "name": "Alice" }, { "_key": "bob", "_id": "persons/bob", - "_rev": "_e4y2xEe---", + "_rev": "_e9T1UHO--_", "name": "Bob" } ] diff --git a/3.10/generated/Examples/FUNCTION_DOCUMENT_9.generated b/3.10/generated/Examples/FUNCTION_DOCUMENT_9.generated index 6a07a54646..060243d36e 100644 --- a/3.10/generated/Examples/FUNCTION_DOCUMENT_9.generated +++ b/3.10/generated/Examples/FUNCTION_DOCUMENT_9.generated @@ -9,7 +9,7 @@ { "_key": "alice", "_id": "persons/alice", - "_rev": "_e4y2xFi---", + "_rev": "_e9T1UHe--A", "name": "Alice" } ] \ No newline at end of file diff --git a/3.10/generated/Examples/GRAPHASP_01_create_graph.generated b/3.10/generated/Examples/GRAPHASP_01_create_graph.generated index 10f8ed8ae3..7d9064d62d 100644 --- a/3.10/generated/Examples/GRAPHASP_01_create_graph.generated +++ b/3.10/generated/Examples/GRAPHASP_01_create_graph.generated @@ -5,400 +5,400 @@ arangosh> db.places.toArray(); { "_key" : "Inverness", "_id" : "places/Inverness", - "_rev" : "_e4y2xJO---", + "_rev" : "_e9T1UIS---", "label" : "Inverness" }, { "_key" : "Aberdeen", "_id" : "places/Aberdeen", - "_rev" : "_e4y2xJS---", + "_rev" : "_e9T1UIS--_", "label" : "Aberdeen" }, { "_key" : "Leuchars", "_id" : "places/Leuchars", - "_rev" : "_e4y2xJS--_", + "_rev" : "_e9T1UIS--A", "label" : "Leuchars" }, { "_key" : "StAndrews", "_id" : "places/StAndrews", - "_rev" : "_e4y2xJW---", + "_rev" : "_e9T1UIS--B", "label" : "StAndrews" }, { "_key" : "Edinburgh", "_id" : "places/Edinburgh", - "_rev" : "_e4y2xJW--_", + "_rev" : "_e9T1UIS--C", "label" : "Edinburgh" }, { "_key" : "Glasgow", "_id" : "places/Glasgow", - "_rev" : "_e4y2xJa---", + "_rev" : "_e9T1UIS--D", "label" : "Glasgow" }, { "_key" : "York", "_id" : "places/York", - "_rev" : "_e4y2xJa--_", + "_rev" : "_e9T1UIW---", "label" : "York" }, { "_key" : "Carlisle", "_id" : "places/Carlisle", - "_rev" : "_e4y2xJe---", + "_rev" : "_e9T1UIW--_", "label" : "Carlisle" }, { "_key" : "Birmingham", "_id" : "places/Birmingham", - "_rev" : "_e4y2xJe--_", + "_rev" : "_e9T1UIW--A", "label" : "Birmingham" }, { "_key" : "London", "_id" : "places/London", - "_rev" : "_e4y2xJi---", + "_rev" : "_e9T1UIW--B", "label" : "London" }, { "_key" : "Brussels", "_id" : "places/Brussels", - "_rev" : "_e4y2xJi--_", + "_rev" : "_e9T1UIW--C", "label" : "Brussels" }, { "_key" : "Cologne", "_id" : "places/Cologne", - "_rev" : "_e4y2xJm---", + "_rev" : "_e9T1UIW--D", "label" : "Cologne" }, { "_key" : "Toronto", "_id" : "places/Toronto", - "_rev" : "_e4y2xJm--_", + "_rev" : "_e9T1UIW--E", "label" : "Toronto" }, { "_key" : "Winnipeg", "_id" : "places/Winnipeg", - "_rev" : "_e4y2xJq---", + "_rev" : "_e9T1UIW--F", "label" : "Winnipeg" }, { "_key" : "Saskatoon", "_id" : "places/Saskatoon", - "_rev" : "_e4y2xJq--_", + "_rev" : "_e9T1UIW--G", "label" : "Saskatoon" }, { "_key" : "Edmonton", "_id" : "places/Edmonton", - "_rev" : "_e4y2xJq--A", + "_rev" : "_e9T1UIW--H", "label" : "Edmonton" }, { "_key" : "Jasper", "_id" : "places/Jasper", - "_rev" : "_e4y2xJu---", + "_rev" : "_e9T1UIW--I", "label" : "Jasper" }, { "_key" : "Vancouver", "_id" : "places/Vancouver", - "_rev" : "_e4y2xJu--_", + "_rev" : "_e9T1UIW--J", "label" : "Vancouver" } ] arangosh> db.connections.toArray(); [ { - "_key" : "62094", - "_id" : "connections/62094", + "_key" : "62091", + "_id" : "connections/62091", "_from" : "places/Inverness", "_to" : "places/Aberdeen", - "_rev" : "_e4y2xJy---", + "_rev" : "_e9T1UIa---", "travelTime" : 3 }, { - "_key" : "62096", - "_id" : "connections/62096", + "_key" : "62093", + "_id" : "connections/62093", "_from" : "places/Aberdeen", "_to" : "places/Inverness", - "_rev" : "_e4y2xJy--_", + "_rev" : "_e9T1UIa--_", "travelTime" : 2.5 }, { - "_key" : "62098", - "_id" : "connections/62098", + "_key" : "62095", + "_id" : "connections/62095", "_from" : "places/Aberdeen", "_to" : "places/Leuchars", - "_rev" : "_e4y2xJ2---", + "_rev" : "_e9T1UIa--A", "travelTime" : 1.5 }, { - "_key" : "62100", - "_id" : "connections/62100", + "_key" : "62097", + "_id" : "connections/62097", "_from" : "places/Leuchars", "_to" : "places/Aberdeen", - "_rev" : "_e4y2xJ2--_", + "_rev" : "_e9T1UIa--B", "travelTime" : 1 }, { - "_key" : "62102", - "_id" : "connections/62102", + "_key" : "62099", + "_id" : "connections/62099", "_from" : "places/Leuchars", "_to" : "places/Edinburgh", - "_rev" : "_e4y2xJ6---", + "_rev" : "_e9T1UIa--C", "travelTime" : 1.5 }, { - "_key" : "62104", - "_id" : "connections/62104", + "_key" : "62101", + "_id" : "connections/62101", "_from" : "places/Edinburgh", "_to" : "places/Leuchars", - "_rev" : "_e4y2xJ6--_", + "_rev" : "_e9T1UIa--D", "travelTime" : 3 }, { - "_key" : "62106", - "_id" : "connections/62106", + "_key" : "62103", + "_id" : "connections/62103", "_from" : "places/Edinburgh", "_to" : "places/Glasgow", - "_rev" : "_e4y2xK----", + "_rev" : "_e9T1UIa--E", "travelTime" : 1 }, { - "_key" : "62108", - "_id" : "connections/62108", + "_key" : "62105", + "_id" : "connections/62105", "_from" : "places/Glasgow", "_to" : "places/Edinburgh", - "_rev" : "_e4y2xK---_", + "_rev" : "_e9T1UIa--F", "travelTime" : 1 }, { - "_key" : "62110", - "_id" : "connections/62110", + "_key" : "62107", + "_id" : "connections/62107", "_from" : "places/Edinburgh", "_to" : "places/York", - "_rev" : "_e4y2xKC---", + "_rev" : "_e9T1UIa--G", "travelTime" : 3.5 }, { - "_key" : "62112", - "_id" : "connections/62112", + "_key" : "62109", + "_id" : "connections/62109", "_from" : "places/York", "_to" : "places/Edinburgh", - "_rev" : "_e4y2xKC--_", + "_rev" : "_e9T1UIa--H", "travelTime" : 4 }, { - "_key" : "62114", - "_id" : "connections/62114", + "_key" : "62111", + "_id" : "connections/62111", "_from" : "places/Glasgow", "_to" : "places/Carlisle", - "_rev" : "_e4y2xKG---", + "_rev" : "_e9T1UIe---", "travelTime" : 1 }, { - "_key" : "62116", - "_id" : "connections/62116", + "_key" : "62113", + "_id" : "connections/62113", "_from" : "places/Carlisle", "_to" : "places/Glasgow", - "_rev" : "_e4y2xKG--_", + "_rev" : "_e9T1UIe--_", "travelTime" : 1 }, { - "_key" : "62118", - "_id" : "connections/62118", + "_key" : "62115", + "_id" : "connections/62115", "_from" : "places/Carlisle", "_to" : "places/York", - "_rev" : "_e4y2xKK---", + "_rev" : "_e9T1UIe--A", "travelTime" : 2.5 }, { - "_key" : "62120", - "_id" : "connections/62120", + "_key" : "62117", + "_id" : "connections/62117", "_from" : "places/York", "_to" : "places/Carlisle", - "_rev" : "_e4y2xKK--_", + "_rev" : "_e9T1UIe--B", "travelTime" : 3.5 }, { - "_key" : "62122", - "_id" : "connections/62122", + "_key" : "62119", + "_id" : "connections/62119", "_from" : "places/Carlisle", "_to" : "places/Birmingham", - "_rev" : "_e4y2xKO---", + "_rev" : "_e9T1UIe--C", "travelTime" : 2 }, { - "_key" : "62124", - "_id" : "connections/62124", + "_key" : "62121", + "_id" : "connections/62121", "_from" : "places/Birmingham", "_to" : "places/Carlisle", - "_rev" : "_e4y2xKO--_", + "_rev" : "_e9T1UIe--D", "travelTime" : 1 }, { - "_key" : "62126", - "_id" : "connections/62126", + "_key" : "62123", + "_id" : "connections/62123", "_from" : "places/Birmingham", "_to" : "places/London", - "_rev" : "_e4y2xKS---", + "_rev" : "_e9T1UIe--E", "travelTime" : 1.5 }, { - "_key" : "62128", - "_id" : "connections/62128", + "_key" : "62125", + "_id" : "connections/62125", "_from" : "places/London", "_to" : "places/Birmingham", - "_rev" : "_e4y2xKS--_", + "_rev" : "_e9T1UIe--F", "travelTime" : 2.5 }, { - "_key" : "62130", - "_id" : "connections/62130", + "_key" : "62127", + "_id" : "connections/62127", "_from" : "places/Leuchars", "_to" : "places/StAndrews", - "_rev" : "_e4y2xKW---", + "_rev" : "_e9T1UIe--G", "travelTime" : 0.2 }, { - "_key" : "62132", - "_id" : "connections/62132", + "_key" : "62129", + "_id" : "connections/62129", "_from" : "places/StAndrews", "_to" : "places/Leuchars", - "_rev" : "_e4y2xKW--_", + "_rev" : "_e9T1UIe--H", "travelTime" : 0.2 }, { - "_key" : "62134", - "_id" : "connections/62134", + "_key" : "62131", + "_id" : "connections/62131", "_from" : "places/York", "_to" : "places/London", - "_rev" : "_e4y2xKa---", + "_rev" : "_e9T1UIe--I", "travelTime" : 1.8 }, { - "_key" : "62136", - "_id" : "connections/62136", + "_key" : "62133", + "_id" : "connections/62133", "_from" : "places/London", "_to" : "places/York", - "_rev" : "_e4y2xKa--_", + "_rev" : "_e9T1UIi---", "travelTime" : 2 }, { - "_key" : "62138", - "_id" : "connections/62138", + "_key" : "62135", + "_id" : "connections/62135", "_from" : "places/London", "_to" : "places/Brussels", - "_rev" : "_e4y2xKe---", + "_rev" : "_e9T1UIi--_", "travelTime" : 2.5 }, { - "_key" : "62140", - "_id" : "connections/62140", + "_key" : "62137", + "_id" : "connections/62137", "_from" : "places/Brussels", "_to" : "places/London", - "_rev" : "_e4y2xKe--_", + "_rev" : "_e9T1UIi--A", "travelTime" : 3.5 }, { - "_key" : "62142", - "_id" : "connections/62142", + "_key" : "62139", + "_id" : "connections/62139", "_from" : "places/Brussels", "_to" : "places/Cologne", - "_rev" : "_e4y2xKi---", + "_rev" : "_e9T1UIi--B", "travelTime" : 2 }, { - "_key" : "62144", - "_id" : "connections/62144", + "_key" : "62141", + "_id" : "connections/62141", "_from" : "places/Cologne", "_to" : "places/Brussels", - "_rev" : "_e4y2xKi--_", + "_rev" : "_e9T1UIi--C", "travelTime" : 1.5 }, { - "_key" : "62146", - "_id" : "connections/62146", + "_key" : "62143", + "_id" : "connections/62143", "_from" : "places/Toronto", "_to" : "places/Winnipeg", - "_rev" : "_e4y2xKm---", + "_rev" : "_e9T1UIi--D", "travelTime" : 36 }, { - "_key" : "62148", - "_id" : "connections/62148", + "_key" : "62145", + "_id" : "connections/62145", "_from" : "places/Winnipeg", "_to" : "places/Toronto", - "_rev" : "_e4y2xKm--_", + "_rev" : "_e9T1UIi--E", "travelTime" : 35 }, { - "_key" : "62150", - "_id" : "connections/62150", + "_key" : "62147", + "_id" : "connections/62147", "_from" : "places/Winnipeg", "_to" : "places/Saskatoon", - "_rev" : "_e4y2xKq---", + "_rev" : "_e9T1UIi--F", "travelTime" : 12 }, { - "_key" : "62152", - "_id" : "connections/62152", + "_key" : "62149", + "_id" : "connections/62149", "_from" : "places/Saskatoon", "_to" : "places/Winnipeg", - "_rev" : "_e4y2xKq--_", + "_rev" : "_e9T1UIi--G", "travelTime" : 5 }, { - "_key" : "62154", - "_id" : "connections/62154", + "_key" : "62151", + "_id" : "connections/62151", "_from" : "places/Saskatoon", "_to" : "places/Edmonton", - "_rev" : "_e4y2xKu---", + "_rev" : "_e9T1UIi--H", "travelTime" : 12 }, { - "_key" : "62156", - "_id" : "connections/62156", + "_key" : "62153", + "_id" : "connections/62153", "_from" : "places/Edmonton", "_to" : "places/Saskatoon", - "_rev" : "_e4y2xKu--_", + "_rev" : "_e9T1UIi--I", "travelTime" : 17 }, { - "_key" : "62158", - "_id" : "connections/62158", + "_key" : "62155", + "_id" : "connections/62155", "_from" : "places/Edmonton", "_to" : "places/Jasper", - "_rev" : "_e4y2xKy---", + "_rev" : "_e9T1UIm---", "travelTime" : 6 }, { - "_key" : "62160", - "_id" : "connections/62160", + "_key" : "62157", + "_id" : "connections/62157", "_from" : "places/Jasper", "_to" : "places/Edmonton", - "_rev" : "_e4y2xKy--_", + "_rev" : "_e9T1UIm--_", "travelTime" : 5 }, { - "_key" : "62162", - "_id" : "connections/62162", + "_key" : "62159", + "_id" : "connections/62159", "_from" : "places/Jasper", "_to" : "places/Vancouver", - "_rev" : "_e4y2xK2---", + "_rev" : "_e9T1UIm--A", "travelTime" : 12 }, { - "_key" : "62164", - "_id" : "connections/62164", + "_key" : "62161", + "_id" : "connections/62161", "_from" : "places/Vancouver", "_to" : "places/Jasper", - "_rev" : "_e4y2xK2--_", + "_rev" : "_e9T1UIm--B", "travelTime" : 13 } ] diff --git a/3.10/generated/Examples/GRAPHKP_01_create_graph.generated b/3.10/generated/Examples/GRAPHKP_01_create_graph.generated index 403e3f63ed..eaa48a6683 100644 --- a/3.10/generated/Examples/GRAPHKP_01_create_graph.generated +++ b/3.10/generated/Examples/GRAPHKP_01_create_graph.generated @@ -5,400 +5,400 @@ arangosh> db.places.toArray(); { "_key" : "Inverness", "_id" : "places/Inverness", - "_rev" : "_e4y2xYy---", + "_rev" : "_e9T1ULe---", "label" : "Inverness" }, { "_key" : "Aberdeen", "_id" : "places/Aberdeen", - "_rev" : "_e4y2xY2---", + "_rev" : "_e9T1ULe--_", "label" : "Aberdeen" }, { "_key" : "Leuchars", "_id" : "places/Leuchars", - "_rev" : "_e4y2xY2--_", + "_rev" : "_e9T1ULe--A", "label" : "Leuchars" }, { "_key" : "StAndrews", "_id" : "places/StAndrews", - "_rev" : "_e4y2xY6---", + "_rev" : "_e9T1ULe--B", "label" : "StAndrews" }, { "_key" : "Edinburgh", "_id" : "places/Edinburgh", - "_rev" : "_e4y2xZ----", + "_rev" : "_e9T1ULe--C", "label" : "Edinburgh" }, { "_key" : "Glasgow", "_id" : "places/Glasgow", - "_rev" : "_e4y2xZ---_", + "_rev" : "_e9T1ULe--D", "label" : "Glasgow" }, { "_key" : "York", "_id" : "places/York", - "_rev" : "_e4y2xZC---", + "_rev" : "_e9T1ULe--E", "label" : "York" }, { "_key" : "Carlisle", "_id" : "places/Carlisle", - "_rev" : "_e4y2xZG---", + "_rev" : "_e9T1ULi---", "label" : "Carlisle" }, { "_key" : "Birmingham", "_id" : "places/Birmingham", - "_rev" : "_e4y2xZG--_", + "_rev" : "_e9T1ULi--_", "label" : "Birmingham" }, { "_key" : "London", "_id" : "places/London", - "_rev" : "_e4y2xZK---", + "_rev" : "_e9T1ULi--A", "label" : "London" }, { "_key" : "Brussels", "_id" : "places/Brussels", - "_rev" : "_e4y2xZK--_", + "_rev" : "_e9T1ULi--B", "label" : "Brussels" }, { "_key" : "Cologne", "_id" : "places/Cologne", - "_rev" : "_e4y2xZO---", + "_rev" : "_e9T1ULi--C", "label" : "Cologne" }, { "_key" : "Toronto", "_id" : "places/Toronto", - "_rev" : "_e4y2xZO--_", + "_rev" : "_e9T1ULi--D", "label" : "Toronto" }, { "_key" : "Winnipeg", "_id" : "places/Winnipeg", - "_rev" : "_e4y2xZS---", + "_rev" : "_e9T1ULi--E", "label" : "Winnipeg" }, { "_key" : "Saskatoon", "_id" : "places/Saskatoon", - "_rev" : "_e4y2xZS--_", + "_rev" : "_e9T1ULi--F", "label" : "Saskatoon" }, { "_key" : "Edmonton", "_id" : "places/Edmonton", - "_rev" : "_e4y2xZW---", + "_rev" : "_e9T1ULi--G", "label" : "Edmonton" }, { "_key" : "Jasper", "_id" : "places/Jasper", - "_rev" : "_e4y2xZW--_", + "_rev" : "_e9T1ULi--H", "label" : "Jasper" }, { "_key" : "Vancouver", "_id" : "places/Vancouver", - "_rev" : "_e4y2xZa---", + "_rev" : "_e9T1ULi--I", "label" : "Vancouver" } ] arangosh> db.connections.toArray(); [ { - "_key" : "62742", - "_id" : "connections/62742", + "_key" : "62739", + "_id" : "connections/62739", "_from" : "places/Inverness", "_to" : "places/Aberdeen", - "_rev" : "_e4y2xZa--_", + "_rev" : "_e9T1ULi--J", "travelTime" : 3 }, { - "_key" : "62744", - "_id" : "connections/62744", + "_key" : "62741", + "_id" : "connections/62741", "_from" : "places/Aberdeen", "_to" : "places/Inverness", - "_rev" : "_e4y2xZe---", + "_rev" : "_e9T1ULm---", "travelTime" : 2.5 }, { - "_key" : "62746", - "_id" : "connections/62746", + "_key" : "62743", + "_id" : "connections/62743", "_from" : "places/Aberdeen", "_to" : "places/Leuchars", - "_rev" : "_e4y2xZe--_", + "_rev" : "_e9T1ULm--_", "travelTime" : 1.5 }, { - "_key" : "62748", - "_id" : "connections/62748", + "_key" : "62745", + "_id" : "connections/62745", "_from" : "places/Leuchars", "_to" : "places/Aberdeen", - "_rev" : "_e4y2xZi---", + "_rev" : "_e9T1ULm--A", "travelTime" : 1 }, { - "_key" : "62750", - "_id" : "connections/62750", + "_key" : "62747", + "_id" : "connections/62747", "_from" : "places/Leuchars", "_to" : "places/Edinburgh", - "_rev" : "_e4y2xZi--_", + "_rev" : "_e9T1ULm--B", "travelTime" : 1.5 }, { - "_key" : "62752", - "_id" : "connections/62752", + "_key" : "62749", + "_id" : "connections/62749", "_from" : "places/Edinburgh", "_to" : "places/Leuchars", - "_rev" : "_e4y2xZm---", + "_rev" : "_e9T1ULm--C", "travelTime" : 3 }, { - "_key" : "62754", - "_id" : "connections/62754", + "_key" : "62751", + "_id" : "connections/62751", "_from" : "places/Edinburgh", "_to" : "places/Glasgow", - "_rev" : "_e4y2xZm--_", + "_rev" : "_e9T1ULm--D", "travelTime" : 1 }, { - "_key" : "62756", - "_id" : "connections/62756", + "_key" : "62753", + "_id" : "connections/62753", "_from" : "places/Glasgow", "_to" : "places/Edinburgh", - "_rev" : "_e4y2xZq---", + "_rev" : "_e9T1ULm--E", "travelTime" : 1 }, { - "_key" : "62758", - "_id" : "connections/62758", + "_key" : "62755", + "_id" : "connections/62755", "_from" : "places/Edinburgh", "_to" : "places/York", - "_rev" : "_e4y2xZq--_", + "_rev" : "_e9T1ULm--F", "travelTime" : 3.5 }, { - "_key" : "62760", - "_id" : "connections/62760", + "_key" : "62757", + "_id" : "connections/62757", "_from" : "places/York", "_to" : "places/Edinburgh", - "_rev" : "_e4y2xZu---", + "_rev" : "_e9T1ULm--G", "travelTime" : 4 }, { - "_key" : "62762", - "_id" : "connections/62762", + "_key" : "62759", + "_id" : "connections/62759", "_from" : "places/Glasgow", "_to" : "places/Carlisle", - "_rev" : "_e4y2xZu--_", + "_rev" : "_e9T1ULm--H", "travelTime" : 1 }, { - "_key" : "62764", - "_id" : "connections/62764", + "_key" : "62761", + "_id" : "connections/62761", "_from" : "places/Carlisle", "_to" : "places/Glasgow", - "_rev" : "_e4y2xZy---", + "_rev" : "_e9T1ULq---", "travelTime" : 1 }, { - "_key" : "62766", - "_id" : "connections/62766", + "_key" : "62763", + "_id" : "connections/62763", "_from" : "places/Carlisle", "_to" : "places/York", - "_rev" : "_e4y2xZy--_", + "_rev" : "_e9T1ULq--_", "travelTime" : 2.5 }, { - "_key" : "62768", - "_id" : "connections/62768", + "_key" : "62765", + "_id" : "connections/62765", "_from" : "places/York", "_to" : "places/Carlisle", - "_rev" : "_e4y2xZ2---", + "_rev" : "_e9T1ULq--A", "travelTime" : 3.5 }, { - "_key" : "62770", - "_id" : "connections/62770", + "_key" : "62767", + "_id" : "connections/62767", "_from" : "places/Carlisle", "_to" : "places/Birmingham", - "_rev" : "_e4y2xZ2--_", + "_rev" : "_e9T1ULq--B", "travelTime" : 2 }, { - "_key" : "62772", - "_id" : "connections/62772", + "_key" : "62769", + "_id" : "connections/62769", "_from" : "places/Birmingham", "_to" : "places/Carlisle", - "_rev" : "_e4y2xZ6---", + "_rev" : "_e9T1ULq--C", "travelTime" : 1 }, { - "_key" : "62774", - "_id" : "connections/62774", + "_key" : "62771", + "_id" : "connections/62771", "_from" : "places/Birmingham", "_to" : "places/London", - "_rev" : "_e4y2xZ6--_", + "_rev" : "_e9T1ULq--D", "travelTime" : 1.5 }, { - "_key" : "62776", - "_id" : "connections/62776", + "_key" : "62773", + "_id" : "connections/62773", "_from" : "places/London", "_to" : "places/Birmingham", - "_rev" : "_e4y2xa----", + "_rev" : "_e9T1ULq--E", "travelTime" : 2.5 }, { - "_key" : "62778", - "_id" : "connections/62778", + "_key" : "62775", + "_id" : "connections/62775", "_from" : "places/Leuchars", "_to" : "places/StAndrews", - "_rev" : "_e4y2xa---_", + "_rev" : "_e9T1ULq--F", "travelTime" : 0.2 }, { - "_key" : "62780", - "_id" : "connections/62780", + "_key" : "62777", + "_id" : "connections/62777", "_from" : "places/StAndrews", "_to" : "places/Leuchars", - "_rev" : "_e4y2xaC---", + "_rev" : "_e9T1ULq--G", "travelTime" : 0.2 }, { - "_key" : "62782", - "_id" : "connections/62782", + "_key" : "62779", + "_id" : "connections/62779", "_from" : "places/York", "_to" : "places/London", - "_rev" : "_e4y2xaC--_", + "_rev" : "_e9T1ULq--H", "travelTime" : 1.8 }, { - "_key" : "62784", - "_id" : "connections/62784", + "_key" : "62781", + "_id" : "connections/62781", "_from" : "places/London", "_to" : "places/York", - "_rev" : "_e4y2xaG---", + "_rev" : "_e9T1ULq--I", "travelTime" : 2 }, { - "_key" : "62786", - "_id" : "connections/62786", + "_key" : "62783", + "_id" : "connections/62783", "_from" : "places/London", "_to" : "places/Brussels", - "_rev" : "_e4y2xaG--_", + "_rev" : "_e9T1ULu---", "travelTime" : 2.5 }, { - "_key" : "62788", - "_id" : "connections/62788", + "_key" : "62785", + "_id" : "connections/62785", "_from" : "places/Brussels", "_to" : "places/London", - "_rev" : "_e4y2xaK---", + "_rev" : "_e9T1ULu--_", "travelTime" : 3.5 }, { - "_key" : "62790", - "_id" : "connections/62790", + "_key" : "62787", + "_id" : "connections/62787", "_from" : "places/Brussels", "_to" : "places/Cologne", - "_rev" : "_e4y2xaK--_", + "_rev" : "_e9T1ULu--A", "travelTime" : 2 }, { - "_key" : "62792", - "_id" : "connections/62792", + "_key" : "62789", + "_id" : "connections/62789", "_from" : "places/Cologne", "_to" : "places/Brussels", - "_rev" : "_e4y2xaO---", + "_rev" : "_e9T1ULu--B", "travelTime" : 1.5 }, { - "_key" : "62794", - "_id" : "connections/62794", + "_key" : "62791", + "_id" : "connections/62791", "_from" : "places/Toronto", "_to" : "places/Winnipeg", - "_rev" : "_e4y2xaO--_", + "_rev" : "_e9T1ULu--C", "travelTime" : 36 }, { - "_key" : "62796", - "_id" : "connections/62796", + "_key" : "62793", + "_id" : "connections/62793", "_from" : "places/Winnipeg", "_to" : "places/Toronto", - "_rev" : "_e4y2xaS---", + "_rev" : "_e9T1ULu--D", "travelTime" : 35 }, { - "_key" : "62798", - "_id" : "connections/62798", + "_key" : "62795", + "_id" : "connections/62795", "_from" : "places/Winnipeg", "_to" : "places/Saskatoon", - "_rev" : "_e4y2xaS--_", + "_rev" : "_e9T1ULu--E", "travelTime" : 12 }, { - "_key" : "62800", - "_id" : "connections/62800", + "_key" : "62797", + "_id" : "connections/62797", "_from" : "places/Saskatoon", "_to" : "places/Winnipeg", - "_rev" : "_e4y2xaW---", + "_rev" : "_e9T1ULu--F", "travelTime" : 5 }, { - "_key" : "62802", - "_id" : "connections/62802", + "_key" : "62799", + "_id" : "connections/62799", "_from" : "places/Saskatoon", "_to" : "places/Edmonton", - "_rev" : "_e4y2xaW--_", + "_rev" : "_e9T1ULu--G", "travelTime" : 12 }, { - "_key" : "62804", - "_id" : "connections/62804", + "_key" : "62801", + "_id" : "connections/62801", "_from" : "places/Edmonton", "_to" : "places/Saskatoon", - "_rev" : "_e4y2xaa---", + "_rev" : "_e9T1ULu--H", "travelTime" : 17 }, { - "_key" : "62806", - "_id" : "connections/62806", + "_key" : "62803", + "_id" : "connections/62803", "_from" : "places/Edmonton", "_to" : "places/Jasper", - "_rev" : "_e4y2xaa--_", + "_rev" : "_e9T1ULy---", "travelTime" : 6 }, { - "_key" : "62808", - "_id" : "connections/62808", + "_key" : "62805", + "_id" : "connections/62805", "_from" : "places/Jasper", "_to" : "places/Edmonton", - "_rev" : "_e4y2xae---", + "_rev" : "_e9T1ULy--_", "travelTime" : 5 }, { - "_key" : "62810", - "_id" : "connections/62810", + "_key" : "62807", + "_id" : "connections/62807", "_from" : "places/Jasper", "_to" : "places/Vancouver", - "_rev" : "_e4y2xae--_", + "_rev" : "_e9T1ULy--A", "travelTime" : 12 }, { - "_key" : "62812", - "_id" : "connections/62812", + "_key" : "62809", + "_id" : "connections/62809", "_from" : "places/Vancouver", "_to" : "places/Jasper", - "_rev" : "_e4y2xae--A", + "_rev" : "_e9T1ULy--B", "travelTime" : 13 } ] diff --git a/3.10/generated/Examples/GRAPHKSP_01_create_graph.generated b/3.10/generated/Examples/GRAPHKSP_01_create_graph.generated index 4bedfce8c9..688ce391cf 100644 --- a/3.10/generated/Examples/GRAPHKSP_01_create_graph.generated +++ b/3.10/generated/Examples/GRAPHKSP_01_create_graph.generated @@ -5,400 +5,400 @@ arangosh> db.places.toArray(); { "_key" : "Inverness", "_id" : "places/Inverness", - "_rev" : "_e4y2xiu---", + "_rev" : "_e9T1UNi---", "label" : "Inverness" }, { "_key" : "Aberdeen", "_id" : "places/Aberdeen", - "_rev" : "_e4y2xiy---", + "_rev" : "_e9T1UNi--_", "label" : "Aberdeen" }, { "_key" : "Leuchars", "_id" : "places/Leuchars", - "_rev" : "_e4y2xi2---", + "_rev" : "_e9T1UNi--A", "label" : "Leuchars" }, { "_key" : "StAndrews", "_id" : "places/StAndrews", - "_rev" : "_e4y2xi6---", + "_rev" : "_e9T1UNi--B", "label" : "StAndrews" }, { "_key" : "Edinburgh", "_id" : "places/Edinburgh", - "_rev" : "_e4y2xi6--_", + "_rev" : "_e9T1UNi--C", "label" : "Edinburgh" }, { "_key" : "Glasgow", "_id" : "places/Glasgow", - "_rev" : "_e4y2xj----", + "_rev" : "_e9T1UNi--D", "label" : "Glasgow" }, { "_key" : "York", "_id" : "places/York", - "_rev" : "_e4y2xjC---", + "_rev" : "_e9T1UNi--E", "label" : "York" }, { "_key" : "Carlisle", "_id" : "places/Carlisle", - "_rev" : "_e4y2xjC--_", + "_rev" : "_e9T1UNm---", "label" : "Carlisle" }, { "_key" : "Birmingham", "_id" : "places/Birmingham", - "_rev" : "_e4y2xjG---", + "_rev" : "_e9T1UNm--_", "label" : "Birmingham" }, { "_key" : "London", "_id" : "places/London", - "_rev" : "_e4y2xjG--_", + "_rev" : "_e9T1UNm--A", "label" : "London" }, { "_key" : "Brussels", "_id" : "places/Brussels", - "_rev" : "_e4y2xjK---", + "_rev" : "_e9T1UNm--B", "label" : "Brussels" }, { "_key" : "Cologne", "_id" : "places/Cologne", - "_rev" : "_e4y2xjK--_", + "_rev" : "_e9T1UNm--C", "label" : "Cologne" }, { "_key" : "Toronto", "_id" : "places/Toronto", - "_rev" : "_e4y2xjO---", + "_rev" : "_e9T1UNm--D", "label" : "Toronto" }, { "_key" : "Winnipeg", "_id" : "places/Winnipeg", - "_rev" : "_e4y2xjO--_", + "_rev" : "_e9T1UNm--E", "label" : "Winnipeg" }, { "_key" : "Saskatoon", "_id" : "places/Saskatoon", - "_rev" : "_e4y2xjS---", + "_rev" : "_e9T1UNm--F", "label" : "Saskatoon" }, { "_key" : "Edmonton", "_id" : "places/Edmonton", - "_rev" : "_e4y2xjS--_", + "_rev" : "_e9T1UNm--G", "label" : "Edmonton" }, { "_key" : "Jasper", "_id" : "places/Jasper", - "_rev" : "_e4y2xjW---", + "_rev" : "_e9T1UNm--H", "label" : "Jasper" }, { "_key" : "Vancouver", "_id" : "places/Vancouver", - "_rev" : "_e4y2xjW--_", + "_rev" : "_e9T1UNm--I", "label" : "Vancouver" } ] arangosh> db.connections.toArray(); [ { - "_key" : "63132", - "_id" : "connections/63132", + "_key" : "63129", + "_id" : "connections/63129", "_from" : "places/Inverness", "_to" : "places/Aberdeen", - "_rev" : "_e4y2xja---", + "_rev" : "_e9T1UNm--J", "travelTime" : 3 }, { - "_key" : "63134", - "_id" : "connections/63134", + "_key" : "63131", + "_id" : "connections/63131", "_from" : "places/Aberdeen", "_to" : "places/Inverness", - "_rev" : "_e4y2xje---", + "_rev" : "_e9T1UNq---", "travelTime" : 2.5 }, { - "_key" : "63136", - "_id" : "connections/63136", + "_key" : "63133", + "_id" : "connections/63133", "_from" : "places/Aberdeen", "_to" : "places/Leuchars", - "_rev" : "_e4y2xje--_", + "_rev" : "_e9T1UNq--_", "travelTime" : 1.5 }, { - "_key" : "63138", - "_id" : "connections/63138", + "_key" : "63135", + "_id" : "connections/63135", "_from" : "places/Leuchars", "_to" : "places/Aberdeen", - "_rev" : "_e4y2xji---", + "_rev" : "_e9T1UNq--A", "travelTime" : 1 }, { - "_key" : "63140", - "_id" : "connections/63140", + "_key" : "63137", + "_id" : "connections/63137", "_from" : "places/Leuchars", "_to" : "places/Edinburgh", - "_rev" : "_e4y2xji--_", + "_rev" : "_e9T1UNq--B", "travelTime" : 1.5 }, { - "_key" : "63142", - "_id" : "connections/63142", + "_key" : "63139", + "_id" : "connections/63139", "_from" : "places/Edinburgh", "_to" : "places/Leuchars", - "_rev" : "_e4y2xjm---", + "_rev" : "_e9T1UNq--C", "travelTime" : 3 }, { - "_key" : "63144", - "_id" : "connections/63144", + "_key" : "63141", + "_id" : "connections/63141", "_from" : "places/Edinburgh", "_to" : "places/Glasgow", - "_rev" : "_e4y2xjm--_", + "_rev" : "_e9T1UNq--D", "travelTime" : 1 }, { - "_key" : "63146", - "_id" : "connections/63146", + "_key" : "63143", + "_id" : "connections/63143", "_from" : "places/Glasgow", "_to" : "places/Edinburgh", - "_rev" : "_e4y2xjq---", + "_rev" : "_e9T1UNq--E", "travelTime" : 1 }, { - "_key" : "63148", - "_id" : "connections/63148", + "_key" : "63145", + "_id" : "connections/63145", "_from" : "places/Edinburgh", "_to" : "places/York", - "_rev" : "_e4y2xju---", + "_rev" : "_e9T1UNq--F", "travelTime" : 3.5 }, { - "_key" : "63150", - "_id" : "connections/63150", + "_key" : "63147", + "_id" : "connections/63147", "_from" : "places/York", "_to" : "places/Edinburgh", - "_rev" : "_e4y2xju--_", + "_rev" : "_e9T1UNq--G", "travelTime" : 4 }, { - "_key" : "63152", - "_id" : "connections/63152", + "_key" : "63149", + "_id" : "connections/63149", "_from" : "places/Glasgow", "_to" : "places/Carlisle", - "_rev" : "_e4y2xjy---", + "_rev" : "_e9T1UNq--H", "travelTime" : 1 }, { - "_key" : "63154", - "_id" : "connections/63154", + "_key" : "63151", + "_id" : "connections/63151", "_from" : "places/Carlisle", "_to" : "places/Glasgow", - "_rev" : "_e4y2xjy--_", + "_rev" : "_e9T1UNq--I", "travelTime" : 1 }, { - "_key" : "63156", - "_id" : "connections/63156", + "_key" : "63153", + "_id" : "connections/63153", "_from" : "places/Carlisle", "_to" : "places/York", - "_rev" : "_e4y2xj2---", + "_rev" : "_e9T1UNu---", "travelTime" : 2.5 }, { - "_key" : "63158", - "_id" : "connections/63158", + "_key" : "63155", + "_id" : "connections/63155", "_from" : "places/York", "_to" : "places/Carlisle", - "_rev" : "_e4y2xj2--_", + "_rev" : "_e9T1UNu--_", "travelTime" : 3.5 }, { - "_key" : "63160", - "_id" : "connections/63160", + "_key" : "63157", + "_id" : "connections/63157", "_from" : "places/Carlisle", "_to" : "places/Birmingham", - "_rev" : "_e4y2xj6---", + "_rev" : "_e9T1UNu--A", "travelTime" : 2 }, { - "_key" : "63162", - "_id" : "connections/63162", + "_key" : "63159", + "_id" : "connections/63159", "_from" : "places/Birmingham", "_to" : "places/Carlisle", - "_rev" : "_e4y2xj6--_", + "_rev" : "_e9T1UNu--B", "travelTime" : 1 }, { - "_key" : "63164", - "_id" : "connections/63164", + "_key" : "63161", + "_id" : "connections/63161", "_from" : "places/Birmingham", "_to" : "places/London", - "_rev" : "_e4y2xk----", + "_rev" : "_e9T1UNu--C", "travelTime" : 1.5 }, { - "_key" : "63166", - "_id" : "connections/63166", + "_key" : "63163", + "_id" : "connections/63163", "_from" : "places/London", "_to" : "places/Birmingham", - "_rev" : "_e4y2xk---_", + "_rev" : "_e9T1UNu--D", "travelTime" : 2.5 }, { - "_key" : "63168", - "_id" : "connections/63168", + "_key" : "63165", + "_id" : "connections/63165", "_from" : "places/Leuchars", "_to" : "places/StAndrews", - "_rev" : "_e4y2xkC---", + "_rev" : "_e9T1UNu--E", "travelTime" : 0.2 }, { - "_key" : "63170", - "_id" : "connections/63170", + "_key" : "63167", + "_id" : "connections/63167", "_from" : "places/StAndrews", "_to" : "places/Leuchars", - "_rev" : "_e4y2xkC--_", + "_rev" : "_e9T1UNu--F", "travelTime" : 0.2 }, { - "_key" : "63172", - "_id" : "connections/63172", + "_key" : "63169", + "_id" : "connections/63169", "_from" : "places/York", "_to" : "places/London", - "_rev" : "_e4y2xkG---", + "_rev" : "_e9T1UNu--G", "travelTime" : 1.8 }, { - "_key" : "63174", - "_id" : "connections/63174", + "_key" : "63171", + "_id" : "connections/63171", "_from" : "places/London", "_to" : "places/York", - "_rev" : "_e4y2xkG--_", + "_rev" : "_e9T1UNu--H", "travelTime" : 2 }, { - "_key" : "63176", - "_id" : "connections/63176", + "_key" : "63173", + "_id" : "connections/63173", "_from" : "places/London", "_to" : "places/Brussels", - "_rev" : "_e4y2xkK---", + "_rev" : "_e9T1UNy---", "travelTime" : 2.5 }, { - "_key" : "63178", - "_id" : "connections/63178", + "_key" : "63175", + "_id" : "connections/63175", "_from" : "places/Brussels", "_to" : "places/London", - "_rev" : "_e4y2xkK--_", + "_rev" : "_e9T1UNy--_", "travelTime" : 3.5 }, { - "_key" : "63180", - "_id" : "connections/63180", + "_key" : "63177", + "_id" : "connections/63177", "_from" : "places/Brussels", "_to" : "places/Cologne", - "_rev" : "_e4y2xkO---", + "_rev" : "_e9T1UNy--A", "travelTime" : 2 }, { - "_key" : "63182", - "_id" : "connections/63182", + "_key" : "63179", + "_id" : "connections/63179", "_from" : "places/Cologne", "_to" : "places/Brussels", - "_rev" : "_e4y2xkO--_", + "_rev" : "_e9T1UNy--B", "travelTime" : 1.5 }, { - "_key" : "63184", - "_id" : "connections/63184", + "_key" : "63181", + "_id" : "connections/63181", "_from" : "places/Toronto", "_to" : "places/Winnipeg", - "_rev" : "_e4y2xkS---", + "_rev" : "_e9T1UNy--C", "travelTime" : 36 }, { - "_key" : "63186", - "_id" : "connections/63186", + "_key" : "63183", + "_id" : "connections/63183", "_from" : "places/Winnipeg", "_to" : "places/Toronto", - "_rev" : "_e4y2xkS--_", + "_rev" : "_e9T1UNy--D", "travelTime" : 35 }, { - "_key" : "63188", - "_id" : "connections/63188", + "_key" : "63185", + "_id" : "connections/63185", "_from" : "places/Winnipeg", "_to" : "places/Saskatoon", - "_rev" : "_e4y2xkW---", + "_rev" : "_e9T1UNy--E", "travelTime" : 12 }, { - "_key" : "63190", - "_id" : "connections/63190", + "_key" : "63187", + "_id" : "connections/63187", "_from" : "places/Saskatoon", "_to" : "places/Winnipeg", - "_rev" : "_e4y2xkW--_", + "_rev" : "_e9T1UNy--F", "travelTime" : 5 }, { - "_key" : "63192", - "_id" : "connections/63192", + "_key" : "63189", + "_id" : "connections/63189", "_from" : "places/Saskatoon", "_to" : "places/Edmonton", - "_rev" : "_e4y2xka---", + "_rev" : "_e9T1UNy--G", "travelTime" : 12 }, { - "_key" : "63194", - "_id" : "connections/63194", + "_key" : "63191", + "_id" : "connections/63191", "_from" : "places/Edmonton", "_to" : "places/Saskatoon", - "_rev" : "_e4y2xka--_", + "_rev" : "_e9T1UNy--H", "travelTime" : 17 }, { - "_key" : "63196", - "_id" : "connections/63196", + "_key" : "63193", + "_id" : "connections/63193", "_from" : "places/Edmonton", "_to" : "places/Jasper", - "_rev" : "_e4y2xke---", + "_rev" : "_e9T1UNy--I", "travelTime" : 6 }, { - "_key" : "63198", - "_id" : "connections/63198", + "_key" : "63195", + "_id" : "connections/63195", "_from" : "places/Jasper", "_to" : "places/Edmonton", - "_rev" : "_e4y2xki---", + "_rev" : "_e9T1UN2---", "travelTime" : 5 }, { - "_key" : "63200", - "_id" : "connections/63200", + "_key" : "63197", + "_id" : "connections/63197", "_from" : "places/Jasper", "_to" : "places/Vancouver", - "_rev" : "_e4y2xki--_", + "_rev" : "_e9T1UN2--_", "travelTime" : 12 }, { - "_key" : "63202", - "_id" : "connections/63202", + "_key" : "63199", + "_id" : "connections/63199", "_from" : "places/Vancouver", "_to" : "places/Jasper", - "_rev" : "_e4y2xkm---", + "_rev" : "_e9T1UN2--A", "travelTime" : 13 } ] diff --git a/3.10/generated/Examples/GRAPHSP_01_create_graph.generated b/3.10/generated/Examples/GRAPHSP_01_create_graph.generated index 219a87c006..e24efb12f6 100644 --- a/3.10/generated/Examples/GRAPHSP_01_create_graph.generated +++ b/3.10/generated/Examples/GRAPHSP_01_create_graph.generated @@ -5,168 +5,168 @@ arangosh> db.circles.toArray(); { "_key" : "A", "_id" : "circles/A", - "_rev" : "_e4y2x1G---", + "_rev" : "_e9T1UQ2---", "label" : "1" }, { "_key" : "B", "_id" : "circles/B", - "_rev" : "_e4y2x1G--_", + "_rev" : "_e9T1UQ2--_", "label" : "2" }, { "_key" : "C", "_id" : "circles/C", - "_rev" : "_e4y2x1K---", + "_rev" : "_e9T1UQ2--A", "label" : "3" }, { "_key" : "D", "_id" : "circles/D", - "_rev" : "_e4y2x1O---", + "_rev" : "_e9T1UQ2--B", "label" : "4" }, { "_key" : "E", "_id" : "circles/E", - "_rev" : "_e4y2x1S---", + "_rev" : "_e9T1UQ2--C", "label" : "5" }, { "_key" : "F", "_id" : "circles/F", - "_rev" : "_e4y2x1W---", + "_rev" : "_e9T1UQ2--D", "label" : "6" }, { "_key" : "G", "_id" : "circles/G", - "_rev" : "_e4y2x1W--_", + "_rev" : "_e9T1UQ2--E", "label" : "7" }, { "_key" : "H", "_id" : "circles/H", - "_rev" : "_e4y2x1a---", + "_rev" : "_e9T1UQ2--F", "label" : "8" }, { "_key" : "I", "_id" : "circles/I", - "_rev" : "_e4y2x1e---", + "_rev" : "_e9T1UQ2--G", "label" : "9" }, { "_key" : "J", "_id" : "circles/J", - "_rev" : "_e4y2x1e--_", + "_rev" : "_e9T1UQ2--H", "label" : "10" }, { "_key" : "K", "_id" : "circles/K", - "_rev" : "_e4y2x1i---", + "_rev" : "_e9T1UQ6---", "label" : "11" } ] arangosh> db.edges.toArray(); [ { - "_key" : "63773", - "_id" : "edges/63773", + "_key" : "63770", + "_id" : "edges/63770", "_from" : "circles/A", "_to" : "circles/B", - "_rev" : "_e4y2x1m---", + "_rev" : "_e9T1UQ6--_", "theFalse" : false, "theTruth" : true, "label" : "left_bar" }, { - "_key" : "63775", - "_id" : "edges/63775", + "_key" : "63772", + "_id" : "edges/63772", "_from" : "circles/B", "_to" : "circles/C", - "_rev" : "_e4y2x1q---", + "_rev" : "_e9T1UQ6--A", "theFalse" : false, "theTruth" : true, "label" : "left_blarg" }, { - "_key" : "63777", - "_id" : "edges/63777", + "_key" : "63774", + "_id" : "edges/63774", "_from" : "circles/C", "_to" : "circles/D", - "_rev" : "_e4y2x1q--_", + "_rev" : "_e9T1UQ6--B", "theFalse" : false, "theTruth" : true, "label" : "left_blorg" }, { - "_key" : "63779", - "_id" : "edges/63779", + "_key" : "63776", + "_id" : "edges/63776", "_from" : "circles/B", "_to" : "circles/E", - "_rev" : "_e4y2x1u---", + "_rev" : "_e9T1UQ6--C", "theFalse" : false, "theTruth" : true, "label" : "left_blub" }, { - "_key" : "63781", - "_id" : "edges/63781", + "_key" : "63778", + "_id" : "edges/63778", "_from" : "circles/E", "_to" : "circles/F", - "_rev" : "_e4y2x1y---", + "_rev" : "_e9T1UQ6--D", "theFalse" : false, "theTruth" : true, "label" : "left_schubi" }, { - "_key" : "63783", - "_id" : "edges/63783", + "_key" : "63780", + "_id" : "edges/63780", "_from" : "circles/A", "_to" : "circles/G", - "_rev" : "_e4y2x1y--_", + "_rev" : "_e9T1UQ6--E", "theFalse" : false, "theTruth" : true, "label" : "right_foo" }, { - "_key" : "63785", - "_id" : "edges/63785", + "_key" : "63782", + "_id" : "edges/63782", "_from" : "circles/G", "_to" : "circles/H", - "_rev" : "_e4y2x12---", + "_rev" : "_e9T1UQ6--F", "theFalse" : false, "theTruth" : true, "label" : "right_blob" }, { - "_key" : "63787", - "_id" : "edges/63787", + "_key" : "63784", + "_id" : "edges/63784", "_from" : "circles/H", "_to" : "circles/I", - "_rev" : "_e4y2x16---", + "_rev" : "_e9T1UQ6--G", "theFalse" : false, "theTruth" : true, "label" : "right_blub" }, { - "_key" : "63789", - "_id" : "edges/63789", + "_key" : "63786", + "_id" : "edges/63786", "_from" : "circles/G", "_to" : "circles/J", - "_rev" : "_e4y2x16--_", + "_rev" : "_e9T1UQ6--H", "theFalse" : false, "theTruth" : true, "label" : "right_zip" }, { - "_key" : "63791", - "_id" : "edges/63791", + "_key" : "63788", + "_id" : "edges/63788", "_from" : "circles/J", "_to" : "circles/K", - "_rev" : "_e4y2x2----", + "_rev" : "_e9T1UQ6--I", "theFalse" : false, "theTruth" : true, "label" : "right_zup" diff --git a/3.10/generated/Examples/GRAPHSP_02_A_to_D.generated b/3.10/generated/Examples/GRAPHSP_02_A_to_D.generated index 3c6789d3f5..cf96d50c72 100644 --- a/3.10/generated/Examples/GRAPHSP_02_A_to_D.generated +++ b/3.10/generated/Examples/GRAPHSP_02_A_to_D.generated @@ -6,15 +6,15 @@ arangosh> db._query("FOR v, e IN OUTBOUND SHOR ], [ "B", - "63773" + "63770" ], [ "C", - "63775" + "63772" ], [ "D", - "63777" + "63774" ] ] [object ArangoQueryCursor, count: 4, cached: false, hasMore: false] @@ -26,15 +26,15 @@ arangosh> db._query("FOR v, e IN OUTBOUND SHOR ], [ "B", - "63773" + "63770" ], [ "C", - "63775" + "63772" ], [ "D", - "63777" + "63774" ] ] [object ArangoQueryCursor, count: 4, cached: false, hasMore: false] diff --git a/3.10/generated/Examples/GRAPHSP_03_A_to_D.generated b/3.10/generated/Examples/GRAPHSP_03_A_to_D.generated index 77c90b7522..c8948df6b6 100644 --- a/3.10/generated/Examples/GRAPHSP_03_A_to_D.generated +++ b/3.10/generated/Examples/GRAPHSP_03_A_to_D.generated @@ -6,15 +6,15 @@ arangosh> db._query("FOR a IN circles FILTER a ], [ "B", - "63773" + "63770" ], [ "C", - "63775" + "63772" ], [ "D", - "63777" + "63774" ] ] [object ArangoQueryCursor, count: 4, cached: false, hasMore: false] @@ -26,15 +26,15 @@ arangosh> db._query("FOR a IN circles FILTER a ], [ "B", - "63773" + "63770" ], [ "C", - "63775" + "63772" ], [ "D", - "63777" + "63774" ] ] [object ArangoQueryCursor, count: 4, cached: false, hasMore: false] diff --git a/3.10/generated/Examples/GRAPHTRAV_01_create_graph.generated b/3.10/generated/Examples/GRAPHTRAV_01_create_graph.generated index b33cbe67db..73eafe3201 100644 --- a/3.10/generated/Examples/GRAPHTRAV_01_create_graph.generated +++ b/3.10/generated/Examples/GRAPHTRAV_01_create_graph.generated @@ -5,168 +5,168 @@ arangosh> db.circles.toArray(); { "_key" : "A", "_id" : "circles/A", - "_rev" : "_e4y2x4y---", + "_rev" : "_e9T1URm---", "label" : "1" }, { "_key" : "B", "_id" : "circles/B", - "_rev" : "_e4y2x42---", + "_rev" : "_e9T1URm--_", "label" : "2" }, { "_key" : "C", "_id" : "circles/C", - "_rev" : "_e4y2x46---", + "_rev" : "_e9T1URm--A", "label" : "3" }, { "_key" : "D", "_id" : "circles/D", - "_rev" : "_e4y2x5----", + "_rev" : "_e9T1URm--B", "label" : "4" }, { "_key" : "E", "_id" : "circles/E", - "_rev" : "_e4y2x5C---", + "_rev" : "_e9T1URm--C", "label" : "5" }, { "_key" : "F", "_id" : "circles/F", - "_rev" : "_e4y2x5G---", + "_rev" : "_e9T1URm--D", "label" : "6" }, { "_key" : "G", "_id" : "circles/G", - "_rev" : "_e4y2x5G--_", + "_rev" : "_e9T1URq---", "label" : "7" }, { "_key" : "H", "_id" : "circles/H", - "_rev" : "_e4y2x5K---", + "_rev" : "_e9T1URq--_", "label" : "8" }, { "_key" : "I", "_id" : "circles/I", - "_rev" : "_e4y2x5O---", + "_rev" : "_e9T1URq--A", "label" : "9" }, { "_key" : "J", "_id" : "circles/J", - "_rev" : "_e4y2x5S---", + "_rev" : "_e9T1URq--B", "label" : "10" }, { "_key" : "K", "_id" : "circles/K", - "_rev" : "_e4y2x5S--_", + "_rev" : "_e9T1URq--C", "label" : "11" } ] arangosh> db.edges.toArray(); [ { - "_key" : "63858", - "_id" : "edges/63858", + "_key" : "63855", + "_id" : "edges/63855", "_from" : "circles/A", "_to" : "circles/B", - "_rev" : "_e4y2x5W---", + "_rev" : "_e9T1URq--D", "theFalse" : false, "theTruth" : true, "label" : "left_bar" }, { - "_key" : "63860", - "_id" : "edges/63860", + "_key" : "63857", + "_id" : "edges/63857", "_from" : "circles/B", "_to" : "circles/C", - "_rev" : "_e4y2x5a---", + "_rev" : "_e9T1URq--E", "theFalse" : false, "theTruth" : true, "label" : "left_blarg" }, { - "_key" : "63862", - "_id" : "edges/63862", + "_key" : "63859", + "_id" : "edges/63859", "_from" : "circles/C", "_to" : "circles/D", - "_rev" : "_e4y2x5a--_", + "_rev" : "_e9T1URq--F", "theFalse" : false, "theTruth" : true, "label" : "left_blorg" }, { - "_key" : "63864", - "_id" : "edges/63864", + "_key" : "63861", + "_id" : "edges/63861", "_from" : "circles/B", "_to" : "circles/E", - "_rev" : "_e4y2x5e---", + "_rev" : "_e9T1URq--G", "theFalse" : false, "theTruth" : true, "label" : "left_blub" }, { - "_key" : "63866", - "_id" : "edges/63866", + "_key" : "63863", + "_id" : "edges/63863", "_from" : "circles/E", "_to" : "circles/F", - "_rev" : "_e4y2x5i---", + "_rev" : "_e9T1URq--H", "theFalse" : false, "theTruth" : true, "label" : "left_schubi" }, { - "_key" : "63868", - "_id" : "edges/63868", + "_key" : "63865", + "_id" : "edges/63865", "_from" : "circles/A", "_to" : "circles/G", - "_rev" : "_e4y2x5i--_", + "_rev" : "_e9T1URq--I", "theFalse" : false, "theTruth" : true, "label" : "right_foo" }, { - "_key" : "63870", - "_id" : "edges/63870", + "_key" : "63867", + "_id" : "edges/63867", "_from" : "circles/G", "_to" : "circles/H", - "_rev" : "_e4y2x5m---", + "_rev" : "_e9T1URu---", "theFalse" : false, "theTruth" : true, "label" : "right_blob" }, { - "_key" : "63872", - "_id" : "edges/63872", + "_key" : "63869", + "_id" : "edges/63869", "_from" : "circles/H", "_to" : "circles/I", - "_rev" : "_e4y2x5q---", + "_rev" : "_e9T1URu--_", "theFalse" : false, "theTruth" : true, "label" : "right_blub" }, { - "_key" : "63874", - "_id" : "edges/63874", + "_key" : "63871", + "_id" : "edges/63871", "_from" : "circles/G", "_to" : "circles/J", - "_rev" : "_e4y2x5q--_", + "_rev" : "_e9T1URu--A", "theFalse" : false, "theTruth" : true, "label" : "right_zip" }, { - "_key" : "63876", - "_id" : "edges/63876", + "_key" : "63873", + "_id" : "edges/63873", "_from" : "circles/J", "_to" : "circles/K", - "_rev" : "_e4y2x5u---", + "_rev" : "_e9T1URu--B", "theFalse" : false, "theTruth" : true, "label" : "right_zup" diff --git a/3.10/generated/Examples/HttpGharialAddEdge.generated b/3.10/generated/Examples/HttpGharialAddEdge.generated index 6c368a8d0e..cf6b60bb8a 100644 --- a/3.10/generated/Examples/HttpGharialAddEdge.generated +++ b/3.10/generated/Examples/HttpGharialAddEdge.generated @@ -12,7 +12,7 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=94 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: _e4y2yri--- +etag: _e9T1Udi--A expires: 0 pragma: no-cache server: ArangoDB @@ -24,8 +24,8 @@ x-content-type-options: nosniff "error" : false, "code" : 202, "edge" : { - "_id" : "relation/65939", - "_key" : "65939", - "_rev" : "_e4y2yri---" + "_id" : "relation/65936", + "_key" : "65936", + "_rev" : "_e9T1Udi--A" } } diff --git a/3.10/generated/Examples/HttpGharialAddEdgeCol.generated b/3.10/generated/Examples/HttpGharialAddEdgeCol.generated index 6a5a70bcc7..0cd0414e2f 100644 --- a/3.10/generated/Examples/HttpGharialAddEdgeCol.generated +++ b/3.10/generated/Examples/HttpGharialAddEdgeCol.generated @@ -17,7 +17,7 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=294 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: _e4y2yt6--_ +etag: _e9T1UeK--C expires: 0 pragma: no-cache server: ArangoDB @@ -54,7 +54,7 @@ x-content-type-options: nosniff } ], "orphanCollections" : [ ], - "_rev" : "_e4y2yt6--_", + "_rev" : "_e9T1UeK--C", "_id" : "_graphs/social", "name" : "social" } diff --git a/3.10/generated/Examples/HttpGharialAddVertex.generated b/3.10/generated/Examples/HttpGharialAddVertex.generated index 1e760fd1a4..f6a8a19ce7 100644 --- a/3.10/generated/Examples/HttpGharialAddVertex.generated +++ b/3.10/generated/Examples/HttpGharialAddVertex.generated @@ -10,7 +10,7 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=92 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: _e4y2ywO--- +etag: _e9T1Ueu--- expires: 0 pragma: no-cache server: ArangoDB @@ -22,8 +22,8 @@ x-content-type-options: nosniff "error" : false, "code" : 202, "vertex" : { - "_id" : "male/66089", - "_key" : "66089", - "_rev" : "_e4y2ywO---" + "_id" : "male/66086", + "_key" : "66086", + "_rev" : "_e9T1Ueu---" } } diff --git a/3.10/generated/Examples/HttpGharialAddVertexCol.generated b/3.10/generated/Examples/HttpGharialAddVertexCol.generated index 6b11d9ec35..ec69d193ba 100644 --- a/3.10/generated/Examples/HttpGharialAddVertexCol.generated +++ b/3.10/generated/Examples/HttpGharialAddVertexCol.generated @@ -10,7 +10,7 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=244 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: _e4y2yyO--_ +etag: _e9T1UfG--D expires: 0 pragma: no-cache server: ArangoDB @@ -39,7 +39,7 @@ x-content-type-options: nosniff "orphanCollections" : [ "otherVertices" ], - "_rev" : "_e4y2yyO--_", + "_rev" : "_e9T1UfG--D", "_id" : "_graphs/social", "name" : "social" } diff --git a/3.10/generated/Examples/HttpGharialCreate.generated b/3.10/generated/Examples/HttpGharialCreate.generated index 10e7516684..a09967bc2b 100644 --- a/3.10/generated/Examples/HttpGharialCreate.generated +++ b/3.10/generated/Examples/HttpGharialCreate.generated @@ -21,7 +21,7 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=227 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: _e4y2yzm--_ +etag: _e9T1Ufa--_ expires: 0 pragma: no-cache server: ArangoDB @@ -46,7 +46,7 @@ x-content-type-options: nosniff } ], "orphanCollections" : [ ], - "_rev" : "_e4y2yzm--_", + "_rev" : "_e9T1Ufa--_", "_id" : "_graphs/myGraph", "name" : "myGraph" } diff --git a/3.10/generated/Examples/HttpGharialCreateDisjointSmart.generated b/3.10/generated/Examples/HttpGharialCreateDisjointSmart.generated index a6e4640265..bec1ed05ac 100644 --- a/3.10/generated/Examples/HttpGharialCreateDisjointSmart.generated +++ b/3.10/generated/Examples/HttpGharialCreateDisjointSmart.generated @@ -31,7 +31,7 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=488 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: _e4y2y0u--- +etag: _e9T1Ufu--A expires: 0 pragma: no-cache server: ArangoDB @@ -65,10 +65,10 @@ x-content-type-options: nosniff "orphanVertices" ], "initial" : "startVertices", - "initialCid" : 66238, + "initialCid" : 66235, "smartGraphAttribute" : "region", "isDisjoint" : true, - "_rev" : "_e4y2y0u---", + "_rev" : "_e9T1Ufu--A", "_id" : "_graphs/disjointSmartGraph", "name" : "disjointSmartGraph" } diff --git a/3.10/generated/Examples/HttpGharialCreateEnterprise.generated b/3.10/generated/Examples/HttpGharialCreateEnterprise.generated index 5aa4bbdd67..909c0364ff 100644 --- a/3.10/generated/Examples/HttpGharialCreateEnterprise.generated +++ b/3.10/generated/Examples/HttpGharialCreateEnterprise.generated @@ -27,7 +27,7 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=433 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: _e4y2y2O--_ +etag: _e9T1UgC--A expires: 0 pragma: no-cache server: ArangoDB @@ -59,9 +59,9 @@ x-content-type-options: nosniff ], "orphanCollections" : [ ], "initial" : "startVertices", - "initialCid" : 66293, + "initialCid" : 66290, "isDisjoint" : false, - "_rev" : "_e4y2y2O--_", + "_rev" : "_e9T1UgC--A", "_id" : "_graphs/enterpriseGraph", "name" : "enterpriseGraph" } diff --git a/3.10/generated/Examples/HttpGharialCreateSatellite.generated b/3.10/generated/Examples/HttpGharialCreateSatellite.generated index ff711feb01..753e60096f 100644 --- a/3.10/generated/Examples/HttpGharialCreateSatellite.generated +++ b/3.10/generated/Examples/HttpGharialCreateSatellite.generated @@ -25,7 +25,7 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=379 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: _e4y2y3u--_ +etag: _e9T1Uge--A expires: 0 pragma: no-cache server: ArangoDB @@ -55,8 +55,8 @@ x-content-type-options: nosniff ], "orphanCollections" : [ ], "initial" : "startVertices", - "initialCid" : 66337, - "_rev" : "_e4y2y3u--_", + "initialCid" : 66334, + "_rev" : "_e9T1Uge--A", "_id" : "_graphs/satelliteGraph", "name" : "satelliteGraph" } diff --git a/3.10/generated/Examples/HttpGharialCreateSmart.generated b/3.10/generated/Examples/HttpGharialCreateSmart.generated index 8caae30517..6db2af8a81 100644 --- a/3.10/generated/Examples/HttpGharialCreateSmart.generated +++ b/3.10/generated/Examples/HttpGharialCreateSmart.generated @@ -30,7 +30,7 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=465 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: _e4y2y5O--- +etag: _e9T1Uh---A expires: 0 pragma: no-cache server: ArangoDB @@ -64,10 +64,10 @@ x-content-type-options: nosniff "orphanVertices" ], "initial" : "startVertices", - "initialCid" : 66381, + "initialCid" : 66378, "smartGraphAttribute" : "region", "isDisjoint" : false, - "_rev" : "_e4y2y5O---", + "_rev" : "_e9T1Uh---A", "_id" : "_graphs/smartGraph", "name" : "smartGraph" } diff --git a/3.10/generated/Examples/HttpGharialCreateSmartWithSatellites.generated b/3.10/generated/Examples/HttpGharialCreateSmartWithSatellites.generated index 0c62c50c52..46caf7a9b5 100644 --- a/3.10/generated/Examples/HttpGharialCreateSmartWithSatellites.generated +++ b/3.10/generated/Examples/HttpGharialCreateSmartWithSatellites.generated @@ -33,7 +33,7 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=465 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: _e4y2y6i--_ +etag: _e9T1Uha--A expires: 0 pragma: no-cache server: ArangoDB @@ -67,10 +67,10 @@ x-content-type-options: nosniff "orphanVertices" ], "initial" : "startVertices", - "initialCid" : 66436, + "initialCid" : 66433, "smartGraphAttribute" : "region", "isDisjoint" : false, - "_rev" : "_e4y2y6i--_", + "_rev" : "_e9T1Uha--A", "_id" : "_graphs/smartGraph", "name" : "smartGraph" } diff --git a/3.10/generated/Examples/HttpGharialDeleteEdge.generated b/3.10/generated/Examples/HttpGharialDeleteEdge.generated index e4d783c4fe..ca7efadb89 100644 --- a/3.10/generated/Examples/HttpGharialDeleteEdge.generated +++ b/3.10/generated/Examples/HttpGharialDeleteEdge.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/edge/relation/66515 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/edge/relation/66514 HTTP/1.1 202 Accepted content-type: application/json diff --git a/3.10/generated/Examples/HttpGharialEdgeDefinitionRemove.generated b/3.10/generated/Examples/HttpGharialEdgeDefinitionRemove.generated index ce9642e489..8b9211d0b3 100644 --- a/3.10/generated/Examples/HttpGharialEdgeDefinitionRemove.generated +++ b/3.10/generated/Examples/HttpGharialEdgeDefinitionRemove.generated @@ -6,7 +6,7 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=171 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: _e4y2zCi--- +etag: _e9T1UjS--G expires: 0 pragma: no-cache server: ArangoDB @@ -24,7 +24,7 @@ x-content-type-options: nosniff "female", "male" ], - "_rev" : "_e4y2zCi---", + "_rev" : "_e9T1UjS--G", "_id" : "_graphs/social", "name" : "social" } diff --git a/3.10/generated/Examples/HttpGharialGetEdge.generated b/3.10/generated/Examples/HttpGharialGetEdge.generated index fb3608e382..c6323e0ed3 100644 --- a/3.10/generated/Examples/HttpGharialGetEdge.generated +++ b/3.10/generated/Examples/HttpGharialGetEdge.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/edge/relation/66771 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/gharial/social/edge/relation/66768 HTTP/1.1 200 OK content-type: application/json @@ -6,7 +6,7 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=168 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: _e4y2zEK--_ +etag: _e9T1Uju--- expires: 0 pragma: no-cache server: ArangoDB @@ -18,11 +18,11 @@ x-content-type-options: nosniff "error" : false, "code" : 200, "edge" : { - "_key" : "66771", - "_id" : "relation/66771", + "_key" : "66768", + "_id" : "relation/66768", "_from" : "female/alice", "_to" : "male/bob", - "_rev" : "_e4y2zEK--_", + "_rev" : "_e9T1Uju---", "type" : "married", "vertex" : "alice" } diff --git a/3.10/generated/Examples/HttpGharialGetGraph.generated b/3.10/generated/Examples/HttpGharialGetGraph.generated index 4a91e12c5f..e3d6aa3cef 100644 --- a/3.10/generated/Examples/HttpGharialGetGraph.generated +++ b/3.10/generated/Examples/HttpGharialGetGraph.generated @@ -30,7 +30,7 @@ x-content-type-options: nosniff } ], "orphanCollections" : [ ], - "_rev" : "_e4y2zFa--_", + "_rev" : "_e9T1Uk---_", "_id" : "_graphs/myGraph", "name" : "myGraph" } diff --git a/3.10/generated/Examples/HttpGharialGetVertex.generated b/3.10/generated/Examples/HttpGharialGetVertex.generated index c3a55b0a4f..863cec1f72 100644 --- a/3.10/generated/Examples/HttpGharialGetVertex.generated +++ b/3.10/generated/Examples/HttpGharialGetVertex.generated @@ -6,7 +6,7 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=109 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: _e4y2zHO--- +etag: _e9T1UkW--- expires: 0 pragma: no-cache server: ArangoDB @@ -20,7 +20,7 @@ x-content-type-options: nosniff "vertex" : { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y2zHO---", + "_rev" : "_e9T1UkW---", "name" : "Alice" } } diff --git a/3.10/generated/Examples/HttpGharialList.generated b/3.10/generated/Examples/HttpGharialList.generated index 6f9abae84f..d0d7eaf4c4 100644 --- a/3.10/generated/Examples/HttpGharialList.generated +++ b/3.10/generated/Examples/HttpGharialList.generated @@ -20,7 +20,7 @@ x-content-type-options: nosniff { "_id" : "_graphs/social", "_key" : "social", - "_rev" : "_e4y2zJ----", + "_rev" : "_e9T1Ukq---", "edgeDefinitions" : [ { "collection" : "relation", @@ -40,7 +40,7 @@ x-content-type-options: nosniff { "_id" : "_graphs/routeplanner", "_key" : "routeplanner", - "_rev" : "_e4y2zJu--_", + "_rev" : "_e9T1Uky--_", "edgeDefinitions" : [ { "collection" : "frenchHighway", diff --git a/3.10/generated/Examples/HttpGharialModifyVertex.generated b/3.10/generated/Examples/HttpGharialModifyVertex.generated index 8b06e2d0ff..562c37075b 100644 --- a/3.10/generated/Examples/HttpGharialModifyVertex.generated +++ b/3.10/generated/Examples/HttpGharialModifyVertex.generated @@ -10,7 +10,7 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=118 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: _e4y2zQq--_ +etag: _e9T1UmO--B expires: 0 pragma: no-cache server: ArangoDB @@ -24,7 +24,7 @@ x-content-type-options: nosniff "vertex" : { "_id" : "female/alice", "_key" : "alice", - "_oldRev" : "_e4y2zQW---", - "_rev" : "_e4y2zQq--_" + "_oldRev" : "_e9T1UmK--_", + "_rev" : "_e9T1UmO--B" } } diff --git a/3.10/generated/Examples/HttpGharialPatchEdge.generated b/3.10/generated/Examples/HttpGharialPatchEdge.generated index ca45b6914c..4ee33e4dbc 100644 --- a/3.10/generated/Examples/HttpGharialPatchEdge.generated +++ b/3.10/generated/Examples/HttpGharialPatchEdge.generated @@ -1,4 +1,4 @@ -shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/edge/relation/67286 <<EOF +shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/edge/relation/67281 <<EOF { "since" : "01.01.2001" } @@ -10,7 +10,7 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=118 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: _e4y2zSe--- +etag: _e9T1Umm--- expires: 0 pragma: no-cache server: ArangoDB @@ -22,9 +22,9 @@ x-content-type-options: nosniff "error" : false, "code" : 202, "edge" : { - "_id" : "relation/67286", - "_key" : "67286", - "_oldRev" : "_e4y2zSS---", - "_rev" : "_e4y2zSe---" + "_id" : "relation/67281", + "_key" : "67281", + "_oldRev" : "_e9T1Umi--C", + "_rev" : "_e9T1Umm---" } } diff --git a/3.10/generated/Examples/HttpGharialPutEdge.generated b/3.10/generated/Examples/HttpGharialPutEdge.generated index 5303a6b62e..a8a70babf2 100644 --- a/3.10/generated/Examples/HttpGharialPutEdge.generated +++ b/3.10/generated/Examples/HttpGharialPutEdge.generated @@ -1,4 +1,4 @@ -shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/edge/relation/67347 <<EOF +shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/gharial/social/edge/relation/67344 <<EOF { "type" : "divorced", "_from" : "female/alice", @@ -12,7 +12,7 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=118 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: _e4y2zUa--- +etag: _e9T1Un---B expires: 0 pragma: no-cache server: ArangoDB @@ -24,9 +24,9 @@ x-content-type-options: nosniff "error" : false, "code" : 202, "edge" : { - "_id" : "relation/67347", - "_key" : "67347", - "_oldRev" : "_e4y2zUG--_", - "_rev" : "_e4y2zUa---" + "_id" : "relation/67344", + "_key" : "67344", + "_oldRev" : "_e9T1Um6--C", + "_rev" : "_e9T1Un---B" } } diff --git a/3.10/generated/Examples/HttpGharialRemoveVertexCollection.generated b/3.10/generated/Examples/HttpGharialRemoveVertexCollection.generated index f978ab9363..74c9fa4354 100644 --- a/3.10/generated/Examples/HttpGharialRemoveVertexCollection.generated +++ b/3.10/generated/Examples/HttpGharialRemoveVertexCollection.generated @@ -6,7 +6,7 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=229 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: _e4y2zWe--- +etag: _e9T1Una--- expires: 0 pragma: no-cache server: ArangoDB @@ -33,7 +33,7 @@ x-content-type-options: nosniff } ], "orphanCollections" : [ ], - "_rev" : "_e4y2zWe---", + "_rev" : "_e9T1Una---", "_id" : "_graphs/social", "name" : "social" } diff --git a/3.10/generated/Examples/HttpGharialReplaceEdgeCol.generated b/3.10/generated/Examples/HttpGharialReplaceEdgeCol.generated index 25968d4013..008c3c07b8 100644 --- a/3.10/generated/Examples/HttpGharialReplaceEdgeCol.generated +++ b/3.10/generated/Examples/HttpGharialReplaceEdgeCol.generated @@ -20,7 +20,7 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=247 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: _e4y2zaW--- +etag: _e9T1UoK--E expires: 0 pragma: no-cache server: ArangoDB @@ -49,7 +49,7 @@ x-content-type-options: nosniff } ], "orphanCollections" : [ ], - "_rev" : "_e4y2zaW---", + "_rev" : "_e9T1UoK--E", "_id" : "_graphs/social", "name" : "social" } diff --git a/3.10/generated/Examples/HttpGharialReplaceVertex.generated b/3.10/generated/Examples/HttpGharialReplaceVertex.generated index f7a7a78008..9b54ef27a0 100644 --- a/3.10/generated/Examples/HttpGharialReplaceVertex.generated +++ b/3.10/generated/Examples/HttpGharialReplaceVertex.generated @@ -11,7 +11,7 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=118 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: _e4y2zcS--- +etag: _e9T1Uom--D expires: 0 pragma: no-cache server: ArangoDB @@ -25,7 +25,7 @@ x-content-type-options: nosniff "vertex" : { "_id" : "female/alice", "_key" : "alice", - "_oldRev" : "_e4y2zb6---", - "_rev" : "_e4y2zcS---" + "_oldRev" : "_e9T1Uoi--_", + "_rev" : "_e9T1Uom--D" } } diff --git a/3.10/generated/Examples/IndexHandle.generated b/3.10/generated/Examples/IndexHandle.generated index e01f1337c2..22f50b21c9 100644 --- a/3.10/generated/Examples/IndexHandle.generated +++ b/3.10/generated/Examples/IndexHandle.generated @@ -7,9 +7,9 @@ arangosh> db.example.ensureIndex({ type: "a", "b" ], - "id" : "example/67648", + "id" : "example/67645", "isNewlyCreated" : true, - "name" : "idx_1745940409702416384", + "name" : "idx_1747211343332638720", "selectivityEstimate" : 1, "sparse" : false, "type" : "persistent", @@ -20,7 +20,7 @@ arangosh> var indexInfo = db.example.getInd arangosh> indexInfo; [ "example/0", - "example/67648" + "example/67645" ] arangosh> db._index(indexInfo[0]) { @@ -43,8 +43,8 @@ arangosh> db._index(indexInfo[1]) "a", "b" ], - "id" : "example/67648", - "name" : "idx_1745940409702416384", + "id" : "example/67645", + "name" : "idx_1747211343332638720", "sparse" : false, "type" : "persistent", "unique" : false, diff --git a/3.10/generated/Examples/IndexVerify.generated b/3.10/generated/Examples/IndexVerify.generated index ca2cca853f..7b2be57937 100644 --- a/3.10/generated/Examples/IndexVerify.generated +++ b/3.10/generated/Examples/IndexVerify.generated @@ -8,9 +8,9 @@ arangosh> db.example.ensureIndex({ type: "a", "b" ], - "id" : "example/67662", + "id" : "example/67659", "isNewlyCreated" : true, - "name" : "idx_1745940409718145024", + "name" : "idx_1747211343335784448", "selectivityEstimate" : 1, "sparse" : false, "type" : "persistent", @@ -29,7 +29,7 @@ Execution plan: Indexes used: By Name Type Collection Unique Sparse Cache Selectivity Fields Stored values Ranges - 6 idx_1745940409718145024 persistent example false false false 100.00 % [ `a`, `b` ] [ ] (doc.`a` < 23) + 6 idx_1747211343335784448 persistent example false false false 100.00 % [ `a`, `b` ] [ ] (doc.`a` < 23) Optimization rules applied: Id RuleName diff --git a/3.10/generated/Examples/QUERY_02_listQueries.generated b/3.10/generated/Examples/QUERY_02_listQueries.generated index bd10d6b136..cfec6665f3 100644 --- a/3.10/generated/Examples/QUERY_02_listQueries.generated +++ b/3.10/generated/Examples/QUERY_02_listQueries.generated @@ -8,7 +8,7 @@ arangosh> tasks.register({ { "id" : "mytask-1", "name" : "this is a sample task to spawn a slow aql query", - "created" : 1665058526.743889, + "created" : 1666270583.4779425, "type" : "timed", "offset" : 0, "command" : "(function (params) { require('@arangodb').db._query('FOR sleepLoooong IN 1..5 LET sleepLoooonger = SLEEP(1000) RETURN sleepLoooong'); } )(params);", @@ -17,14 +17,14 @@ arangosh> tasks.register({ arangosh> queries.current(); [ { - "id" : "67670", + "id" : "67667", "database" : "_system", "user" : "root", "query" : "FOR sleepLoooong IN 1..5 LET sleepLoooonger = SLEEP(1000) RETURN sleepLoooong", "bindVars" : { }, - "started" : "2022-10-06T12:15:26Z", - "runTime" : 1.0374008549842983, + "started" : "2022-10-20T12:56:23Z", + "runTime" : 1.0201851669999087, "state" : "executing", "stream" : false } diff --git a/3.10/generated/Examples/RestAdminLicenseGet_cluster.generated b/3.10/generated/Examples/RestAdminLicenseGet_cluster.generated index fb6bc99989..87932f5177 100644 --- a/3.10/generated/Examples/RestAdminLicenseGet_cluster.generated +++ b/3.10/generated/Examples/RestAdminLicenseGet_cluster.generated @@ -16,9 +16,9 @@ x-content-type-options: nosniff { "upgrading" : false, "features" : { - "expires" : 1665069393 + "expires" : 1666281437 }, - "license" : "JD4EOXdncVECOnpfVFR7U1RIZ1hceHddWwwzTWQOWxwrDDsDfSA6VHo7LDQydQEL", + "license" : "JD4EOXc1d1EAOXoPAVQrBlBJZ1hRKiddWllvTmRSXBl5XGoBKVxfGysFCn0ydVJc", "version" : 1, "status" : "expiring" } diff --git a/3.10/generated/Examples/RestAdminMetrics.generated b/3.10/generated/Examples/RestAdminMetrics.generated index c37c2d2142..26e6802c2a 100644 --- a/3.10/generated/Examples/RestAdminMetrics.generated +++ b/3.10/generated/Examples/RestAdminMetrics.generated @@ -4,7 +4,7 @@ HTTP/1.1 200 OK content-type: text/plain cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0, max-age=0, s-maxage=0 connection: Keep-Alive -content-length: 59080 +content-length: 59078 content-security-policy: frame-ancestors 'self'; form-action 'self'; expires: 0 pragma: no-cache @@ -44,7 +44,7 @@ arangodb_aql_all_query_total{role="SINGLE"}447 arangodb_aql_current_query{role="SINGLE"}0 # HELP arangodb_aql_global_memory_limit Total memory limit for all AQL queries combined [bytes] # TYPE arangodb_aql_global_memory_limit gauge -arangodb_aql_global_memory_limit{role="SINGLE"}54685393920 +arangodb_aql_global_memory_limit{role="SINGLE"}59647047598 # HELP arangodb_aql_global_memory_usage Total memory usage of all AQL queries executing [bytes], granularity: 32768 bytes steps # TYPE arangodb_aql_global_memory_usage gauge arangodb_aql_global_memory_usage{role="SINGLE"}0 @@ -56,14 +56,14 @@ arangodb_aql_global_query_memory_limit_reached_total{role="SINGLE"}0 arangodb_aql_local_query_memory_limit_reached_total{role="SINGLE"}1 # HELP arangodb_aql_query_time Execution time histogram for all AQL queries [s] # TYPE arangodb_aql_query_time histogram -arangodb_aql_query_time_bucket{role="SINGLE",le="0.000095"}2 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.000191"}99 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.000381"}382 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.000763"}420 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.001526"}439 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.003052"}442 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.000095"}358 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.000191"}407 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.000381"}434 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.000763"}443 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.001526"}443 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.003052"}444 arangodb_aql_query_time_bucket{role="SINGLE",le="0.006104"}444 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.012207"}444 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.012207"}445 arangodb_aql_query_time_bucket{role="SINGLE",le="0.024414"}445 arangodb_aql_query_time_bucket{role="SINGLE",le="0.048828"}445 arangodb_aql_query_time_bucket{role="SINGLE",le="0.097656"}445 @@ -77,7 +77,7 @@ arangodb_aql_query_time_bucket{role="SINGLE",le="12.500000"}447 arangodb_aql_query_time_bucket{role="SINGLE",le="25.000000"}447 arangodb_aql_query_time_bucket{role="SINGLE",le="+Inf"}447 arangodb_aql_query_time_count{role="SINGLE"}447 -arangodb_aql_query_time_sum{role="SINGLE"}1.976907 +arangodb_aql_query_time_sum{role="SINGLE"}1.847153 # HELP arangodb_aql_slow_query_time Execution time histogram for slow AQL queries [s] # TYPE arangodb_aql_slow_query_time histogram arangodb_aql_slow_query_time_bucket{role="SINGLE",le="4.904297"}1 @@ -91,28 +91,28 @@ arangodb_aql_slow_query_time_bucket{role="SINGLE",le="500.750000"}1 arangodb_aql_slow_query_time_bucket{role="SINGLE",le="1000.500000"}1 arangodb_aql_slow_query_time_bucket{role="SINGLE",le="+Inf"}1 arangodb_aql_slow_query_time_count{role="SINGLE"}1 -arangodb_aql_slow_query_time_sum{role="SINGLE"}1.060060 +arangodb_aql_slow_query_time_sum{role="SINGLE"}1.033637 # HELP arangodb_aql_total_query_time_msec_total Total execution time of all AQL queries [ms] # TYPE arangodb_aql_total_query_time_msec_total counter -arangodb_aql_total_query_time_msec_total{role="SINGLE"}1858 +arangodb_aql_total_query_time_msec_total{role="SINGLE"}1804 # HELP arangodb_collection_lock_acquisition_micros_total Total amount of collection lock acquisition time [μs] # TYPE arangodb_collection_lock_acquisition_micros_total counter -arangodb_collection_lock_acquisition_micros_total{role="SINGLE"}152115 +arangodb_collection_lock_acquisition_micros_total{role="SINGLE"}79 # HELP arangodb_collection_lock_acquisition_time Collection lock acquisition time histogram [s] # TYPE arangodb_collection_lock_acquisition_time histogram -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000000"}0 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000001"}83 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000010"}23915 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000100"}32549 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.001000"}32549 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.010000"}32549 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.100000"}32549 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="1.000000"}32549 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="10.000000"}32549 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="100.000000"}32549 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="+Inf"}32549 -arangodb_collection_lock_acquisition_time_count{role="SINGLE"}32549 -arangodb_collection_lock_acquisition_time_sum{role="SINGLE"}0.166991 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000000"}10 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000001"}32525 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000010"}32544 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000100"}32547 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.001000"}32547 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.010000"}32547 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.100000"}32547 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="1.000000"}32547 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="10.000000"}32547 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="100.000000"}32547 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="+Inf"}32547 +arangodb_collection_lock_acquisition_time_count{role="SINGLE"}32547 +arangodb_collection_lock_acquisition_time_sum{role="SINGLE"}0.009372 # HELP arangodb_collection_lock_sequential_mode_total Number of transactions using sequential locking of collections to avoid deadlocking # TYPE arangodb_collection_lock_sequential_mode_total counter arangodb_collection_lock_sequential_mode_total{role="SINGLE"}0 @@ -184,11 +184,11 @@ arangodb_ioheartbeat_duration_bucket{role="SINGLE",le="1.000000"}0 arangodb_ioheartbeat_duration_bucket{role="SINGLE",le="10.000000"}0 arangodb_ioheartbeat_duration_bucket{role="SINGLE",le="100.000000"}0 arangodb_ioheartbeat_duration_bucket{role="SINGLE",le="1000.000000"}0 -arangodb_ioheartbeat_duration_bucket{role="SINGLE",le="10000.000000"}2 -arangodb_ioheartbeat_duration_bucket{role="SINGLE",le="100000.000000"}2 -arangodb_ioheartbeat_duration_bucket{role="SINGLE",le="+Inf"}2 -arangodb_ioheartbeat_duration_count{role="SINGLE"}2 -arangodb_ioheartbeat_duration_sum{role="SINGLE"}9723.000000 +arangodb_ioheartbeat_duration_bucket{role="SINGLE",le="10000.000000"}1 +arangodb_ioheartbeat_duration_bucket{role="SINGLE",le="100000.000000"}1 +arangodb_ioheartbeat_duration_bucket{role="SINGLE",le="+Inf"}1 +arangodb_ioheartbeat_duration_count{role="SINGLE"}1 +arangodb_ioheartbeat_duration_sum{role="SINGLE"}2229.000000 # HELP arangodb_ioheartbeat_failures_total Total number of failures in IO heartbeat # TYPE arangodb_ioheartbeat_failures_total counter arangodb_ioheartbeat_failures_total{role="SINGLE"}0 @@ -285,7 +285,7 @@ arangodb_pregel_workers_running_number{role="SINGLE"}0 arangodb_pregel_workers_storing_number{role="SINGLE"}0 # HELP arangodb_read_transactions_total Number of read transactions # TYPE arangodb_read_transactions_total counter -arangodb_read_transactions_total{role="SINGLE"}1318 +arangodb_read_transactions_total{role="SINGLE"}1319 # HELP arangodb_replication_cluster_inventory_requests_total (DC-2-DC only) Number of times the database and collection overviews have been requested. # TYPE arangodb_replication_cluster_inventory_requests_total counter arangodb_replication_cluster_inventory_requests_total{role="SINGLE"}0 @@ -372,18 +372,18 @@ arangodb_replication_tailing_request_time_total{role="SINGLE"}0 arangodb_replication_tailing_requests_total{role="SINGLE"}0 # HELP arangodb_request_body_size_http1 Body size of HTTP/1.1 requests # TYPE arangodb_request_body_size_http1 histogram -arangodb_request_body_size_http1_bucket{role="SINGLE",le="191"}33416 -arangodb_request_body_size_http1_bucket{role="SINGLE",le="319"}33460 -arangodb_request_body_size_http1_bucket{role="SINGLE",le="575"}33469 -arangodb_request_body_size_http1_bucket{role="SINGLE",le="1087"}33469 -arangodb_request_body_size_http1_bucket{role="SINGLE",le="2110"}33469 -arangodb_request_body_size_http1_bucket{role="SINGLE",le="4156"}33469 -arangodb_request_body_size_http1_bucket{role="SINGLE",le="8248"}33469 -arangodb_request_body_size_http1_bucket{role="SINGLE",le="16432"}33469 -arangodb_request_body_size_http1_bucket{role="SINGLE",le="32800"}33469 -arangodb_request_body_size_http1_bucket{role="SINGLE",le="+Inf"}33469 -arangodb_request_body_size_http1_count{role="SINGLE"}33469 -arangodb_request_body_size_http1_sum{role="SINGLE"}478856 +arangodb_request_body_size_http1_bucket{role="SINGLE",le="191"}33418 +arangodb_request_body_size_http1_bucket{role="SINGLE",le="319"}33462 +arangodb_request_body_size_http1_bucket{role="SINGLE",le="575"}33471 +arangodb_request_body_size_http1_bucket{role="SINGLE",le="1087"}33471 +arangodb_request_body_size_http1_bucket{role="SINGLE",le="2110"}33471 +arangodb_request_body_size_http1_bucket{role="SINGLE",le="4156"}33471 +arangodb_request_body_size_http1_bucket{role="SINGLE",le="8248"}33471 +arangodb_request_body_size_http1_bucket{role="SINGLE",le="16432"}33471 +arangodb_request_body_size_http1_bucket{role="SINGLE",le="32800"}33471 +arangodb_request_body_size_http1_bucket{role="SINGLE",le="+Inf"}33471 +arangodb_request_body_size_http1_count{role="SINGLE"}33471 +arangodb_request_body_size_http1_sum{role="SINGLE"}478829 # HELP arangodb_request_body_size_http2 Body size of HTTP/2 requests # TYPE arangodb_request_body_size_http2 histogram arangodb_request_body_size_http2_bucket{role="SINGLE",le="191"}0 @@ -417,7 +417,7 @@ arangodb_request_body_size_vst_sum{role="SINGLE"}0 arangodb_revision_tree_hibernations_total{role="SINGLE"}0 # HELP arangodb_revision_tree_memory_usage Total memory consumed by all revision trees # TYPE arangodb_revision_tree_memory_usage gauge -arangodb_revision_tree_memory_usage{role="SINGLE"}393216 +arangodb_revision_tree_memory_usage{role="SINGLE"}327680 # HELP arangodb_revision_tree_rebuilds_failure_total Number of failed revision tree rebuilds # TYPE arangodb_revision_tree_rebuilds_failure_total counter arangodb_revision_tree_rebuilds_failure_total{role="SINGLE"}0 @@ -435,19 +435,19 @@ arangodb_rocksdb_write_stalls_total{role="SINGLE"}0 arangodb_rocksdb_write_stops_total{role="SINGLE"}0 # HELP arangodb_scheduler_handler_tasks_created_total Number of scheduler tasks created # TYPE arangodb_scheduler_handler_tasks_created_total counter -arangodb_scheduler_handler_tasks_created_total{role="SINGLE"}33469 +arangodb_scheduler_handler_tasks_created_total{role="SINGLE"}33471 # HELP arangodb_scheduler_high_prio_queue_length Current queue length of the high priority queue in the scheduler # TYPE arangodb_scheduler_high_prio_queue_length gauge arangodb_scheduler_high_prio_queue_length{role="SINGLE"}0 # HELP arangodb_scheduler_jobs_dequeued_total Total number of jobs dequeued # TYPE arangodb_scheduler_jobs_dequeued_total counter -arangodb_scheduler_jobs_dequeued_total{role="SINGLE"}33536 +arangodb_scheduler_jobs_dequeued_total{role="SINGLE"}33507 # HELP arangodb_scheduler_jobs_done_total Total number of queue jobs done # TYPE arangodb_scheduler_jobs_done_total counter -arangodb_scheduler_jobs_done_total{role="SINGLE"}33535 +arangodb_scheduler_jobs_done_total{role="SINGLE"}33506 # HELP arangodb_scheduler_jobs_submitted_total Total number of jobs submitted to the scheduler # TYPE arangodb_scheduler_jobs_submitted_total counter -arangodb_scheduler_jobs_submitted_total{role="SINGLE"}33536 +arangodb_scheduler_jobs_submitted_total{role="SINGLE"}33507 # HELP arangodb_scheduler_low_prio_queue_last_dequeue_time Last recorded dequeue time for a low priority queue item [ms] # TYPE arangodb_scheduler_low_prio_queue_last_dequeue_time gauge arangodb_scheduler_low_prio_queue_last_dequeue_time{role="SINGLE"}0 @@ -495,19 +495,19 @@ arangodb_search_num_out_of_sync_links{role="SINGLE"}0 arangodb_transactions_aborted_total{role="SINGLE"}255 # HELP arangodb_transactions_committed_total Number of transactions committed # TYPE arangodb_transactions_committed_total counter -arangodb_transactions_committed_total{role="SINGLE"}33517 +arangodb_transactions_committed_total{role="SINGLE"}33516 # HELP arangodb_transactions_expired_total Total number of expired transactions # TYPE arangodb_transactions_expired_total counter arangodb_transactions_expired_total{role="SINGLE"}0 # HELP arangodb_transactions_started_total Number of transactions started # TYPE arangodb_transactions_started_total counter -arangodb_transactions_started_total{role="SINGLE"}32549 +arangodb_transactions_started_total{role="SINGLE"}32547 # HELP arangodb_v8_context_created_total V8 contexts created # TYPE arangodb_v8_context_created_total counter arangodb_v8_context_created_total{role="SINGLE"}2 # HELP arangodb_v8_context_creation_time_msec_total Total time for creating V8 contexts [ms] # TYPE arangodb_v8_context_creation_time_msec_total counter -arangodb_v8_context_creation_time_msec_total{role="SINGLE"}21 +arangodb_v8_context_creation_time_msec_total{role="SINGLE"}10 # HELP arangodb_v8_context_destroyed_total V8 contexts destroyed # TYPE arangodb_v8_context_destroyed_total counter arangodb_v8_context_destroyed_total{role="SINGLE"}0 @@ -516,10 +516,10 @@ arangodb_v8_context_destroyed_total{role="SINGLE"}0 arangodb_v8_context_enter_failures_total{role="SINGLE"}0 # HELP arangodb_v8_context_entered_total V8 context enter events # TYPE arangodb_v8_context_entered_total counter -arangodb_v8_context_entered_total{role="SINGLE"}27 +arangodb_v8_context_entered_total{role="SINGLE"}15 # HELP arangodb_v8_context_exited_total V8 context exit events # TYPE arangodb_v8_context_exited_total counter -arangodb_v8_context_exited_total{role="SINGLE"}27 +arangodb_v8_context_exited_total{role="SINGLE"}15 # HELP arangodb_vst_connections_total Total number of VST connections # TYPE arangodb_vst_connections_total counter arangodb_vst_connections_total{role="SINGLE"}0 @@ -534,52 +534,52 @@ rocksdb_prunable_wal_files{role="SINGLE"}0 rocksdb_wal_pruning_active{role="SINGLE"}0 # HELP rocksdb_wal_sequence_lower_bound RocksDB WAL sequence number until which background thread has caught up # TYPE rocksdb_wal_sequence_lower_bound gauge -rocksdb_wal_sequence_lower_bound{role="SINGLE"}122984 +rocksdb_wal_sequence_lower_bound{role="SINGLE"}170923 # HELP arangodb_process_statistics_minor_page_faults_total The number of minor faults the process has made which have not required loading a memory page from disk. This figure is not reported on Windows # TYPE arangodb_process_statistics_minor_page_faults_total counter -arangodb_process_statistics_minor_page_faults_total{}78189 +arangodb_process_statistics_minor_page_faults_total{}70231 # HELP arangodb_process_statistics_major_page_faults_total On Windows, this figure contains the total number of page faults. On other system, this figure contains the number of major faults the process has made which have required loading a memory page from disk # TYPE arangodb_process_statistics_major_page_faults_total counter arangodb_process_statistics_major_page_faults_total{}0 # HELP arangodb_process_statistics_user_time Amount of time that this process has been scheduled in user mode, measured in seconds # TYPE arangodb_process_statistics_user_time gauge -arangodb_process_statistics_user_time{}9.970000 +arangodb_process_statistics_user_time{}3.590000 # HELP arangodb_process_statistics_system_time Amount of time that this process has been scheduled in kernel mode, measured in seconds # TYPE arangodb_process_statistics_system_time gauge -arangodb_process_statistics_system_time{}2.960000 +arangodb_process_statistics_system_time{}0.890000 # HELP arangodb_process_statistics_number_of_threads Number of threads in the arangod process # TYPE arangodb_process_statistics_number_of_threads gauge -arangodb_process_statistics_number_of_threads{}82 +arangodb_process_statistics_number_of_threads{}88 # HELP arangodb_process_statistics_resident_set_size The total size of the number of pages the process has in real memory. This is just the pages which count toward text, data, or stack space. This does not include pages which have not been demand-loaded in, or which are swapped out. The resident set size is reported in bytes # TYPE arangodb_process_statistics_resident_set_size gauge -arangodb_process_statistics_resident_set_size{}324120576 +arangodb_process_statistics_resident_set_size{}323751936 # HELP arangodb_process_statistics_resident_set_size_percent The relative size of the number of pages the process has in real memory compared to system memory. This is just the pages which count toward text, data, or stack space. This does not include pages which have not been demand-loaded in, or which are swapped out. The value is a ratio between 0.00 and 1.00 # TYPE arangodb_process_statistics_resident_set_size_percent gauge -arangodb_process_statistics_resident_set_size_percent{}0.004801 +arangodb_process_statistics_resident_set_size_percent{}0.004397 # HELP arangodb_process_statistics_virtual_memory_size On Windows, this figure contains the total amount of memory that the memory manager has committed for the arangod process. On other systems, this figure contains The size of the virtual memory the process is using # TYPE arangodb_process_statistics_virtual_memory_size gauge -arangodb_process_statistics_virtual_memory_size{}1582379008 +arangodb_process_statistics_virtual_memory_size{}1624485888 # HELP arangodb_server_statistics_physical_memory Physical memory in bytes # TYPE arangodb_server_statistics_physical_memory gauge -arangodb_server_statistics_physical_memory{}67512832000 +arangodb_server_statistics_physical_memory{}73638330368 # HELP arangodb_server_statistics_server_uptime_total Number of seconds elapsed since server start # TYPE arangodb_server_statistics_server_uptime_total counter -arangodb_server_statistics_server_uptime_total{}19.086037 +arangodb_server_statistics_server_uptime_total{}7.069246 # HELP arangodb_server_statistics_cpu_cores Number of CPU cores visible to the arangod process # TYPE arangodb_server_statistics_cpu_cores gauge -arangodb_server_statistics_cpu_cores{}32 +arangodb_server_statistics_cpu_cores{}36 # HELP arangodb_server_statistics_user_percent Percentage of time that the system CPUs have spent in user mode # TYPE arangodb_server_statistics_user_percent gauge -arangodb_server_statistics_user_percent{}9.520437 +arangodb_server_statistics_user_percent{}4.956400 # HELP arangodb_server_statistics_system_percent Percentage of time that the system CPUs have spent in kernel mode # TYPE arangodb_server_statistics_system_percent gauge -arangodb_server_statistics_system_percent{}1.157371 +arangodb_server_statistics_system_percent{}1.912601 # HELP arangodb_server_statistics_idle_percent Percentage of time that the system CPUs have been idle # TYPE arangodb_server_statistics_idle_percent gauge -arangodb_server_statistics_idle_percent{}89.032369 +arangodb_server_statistics_idle_percent{}93.012263 # HELP arangodb_server_statistics_iowait_percent Percentage of time that the system CPUs have been waiting for I/O # TYPE arangodb_server_statistics_iowait_percent gauge -arangodb_server_statistics_iowait_percent{}0.253049 +arangodb_server_statistics_iowait_percent{}0.113203 # HELP arangodb_client_connection_statistics_client_connections The number of client connections that are currently open # TYPE arangodb_client_connection_statistics_client_connections gauge arangodb_client_connection_statistics_client_connections{}2 @@ -593,80 +593,80 @@ arangodb_client_connection_statistics_connection_time_count{}0 arangodb_client_connection_statistics_connection_time_sum{}0 # HELP arangodb_client_connection_statistics_total_time Total time needed to answer a request # TYPE arangodb_client_connection_statistics_total_time histogram -arangodb_client_connection_statistics_total_time_bucket{le="0.01"}33455 -arangodb_client_connection_statistics_total_time_bucket{le="0.05"}33461 -arangodb_client_connection_statistics_total_time_bucket{le="0.1"}33463 -arangodb_client_connection_statistics_total_time_bucket{le="0.2"}33463 -arangodb_client_connection_statistics_total_time_bucket{le="0.5"}33463 -arangodb_client_connection_statistics_total_time_bucket{le="1.0"}33464 -arangodb_client_connection_statistics_total_time_bucket{le="5.0"}33464 -arangodb_client_connection_statistics_total_time_bucket{le="15.0"}33464 -arangodb_client_connection_statistics_total_time_bucket{le="30.0"}33464 -arangodb_client_connection_statistics_total_time_bucket{le="+Inf"}33464 -arangodb_client_connection_statistics_total_time_count{}33464 -arangodb_client_connection_statistics_total_time_sum{}33464 +arangodb_client_connection_statistics_total_time_bucket{le="0.01"}33461 +arangodb_client_connection_statistics_total_time_bucket{le="0.05"}33465 +arangodb_client_connection_statistics_total_time_bucket{le="0.1"}33465 +arangodb_client_connection_statistics_total_time_bucket{le="0.2"}33465 +arangodb_client_connection_statistics_total_time_bucket{le="0.5"}33465 +arangodb_client_connection_statistics_total_time_bucket{le="1.0"}33466 +arangodb_client_connection_statistics_total_time_bucket{le="5.0"}33466 +arangodb_client_connection_statistics_total_time_bucket{le="15.0"}33466 +arangodb_client_connection_statistics_total_time_bucket{le="30.0"}33466 +arangodb_client_connection_statistics_total_time_bucket{le="+Inf"}33466 +arangodb_client_connection_statistics_total_time_count{}33466 +arangodb_client_connection_statistics_total_time_sum{}33466 # HELP arangodb_client_connection_statistics_request_time Request time needed to answer a request # TYPE arangodb_client_connection_statistics_request_time histogram -arangodb_client_connection_statistics_request_time_bucket{le="0.01"}33455 -arangodb_client_connection_statistics_request_time_bucket{le="0.05"}33461 -arangodb_client_connection_statistics_request_time_bucket{le="0.1"}33463 -arangodb_client_connection_statistics_request_time_bucket{le="0.2"}33463 -arangodb_client_connection_statistics_request_time_bucket{le="0.5"}33463 -arangodb_client_connection_statistics_request_time_bucket{le="1.0"}33464 -arangodb_client_connection_statistics_request_time_bucket{le="5.0"}33464 -arangodb_client_connection_statistics_request_time_bucket{le="15.0"}33464 -arangodb_client_connection_statistics_request_time_bucket{le="30.0"}33464 -arangodb_client_connection_statistics_request_time_bucket{le="+Inf"}33464 -arangodb_client_connection_statistics_request_time_count{}33464 -arangodb_client_connection_statistics_request_time_sum{}33464 +arangodb_client_connection_statistics_request_time_bucket{le="0.01"}33461 +arangodb_client_connection_statistics_request_time_bucket{le="0.05"}33465 +arangodb_client_connection_statistics_request_time_bucket{le="0.1"}33465 +arangodb_client_connection_statistics_request_time_bucket{le="0.2"}33465 +arangodb_client_connection_statistics_request_time_bucket{le="0.5"}33465 +arangodb_client_connection_statistics_request_time_bucket{le="1.0"}33466 +arangodb_client_connection_statistics_request_time_bucket{le="5.0"}33466 +arangodb_client_connection_statistics_request_time_bucket{le="15.0"}33466 +arangodb_client_connection_statistics_request_time_bucket{le="30.0"}33466 +arangodb_client_connection_statistics_request_time_bucket{le="+Inf"}33466 +arangodb_client_connection_statistics_request_time_count{}33466 +arangodb_client_connection_statistics_request_time_sum{}33466 # HELP arangodb_client_connection_statistics_queue_time Request time needed to answer a request # TYPE arangodb_client_connection_statistics_queue_time histogram -arangodb_client_connection_statistics_queue_time_bucket{le="0.01"}33464 -arangodb_client_connection_statistics_queue_time_bucket{le="0.05"}33464 -arangodb_client_connection_statistics_queue_time_bucket{le="0.1"}33464 -arangodb_client_connection_statistics_queue_time_bucket{le="0.2"}33464 -arangodb_client_connection_statistics_queue_time_bucket{le="0.5"}33464 -arangodb_client_connection_statistics_queue_time_bucket{le="1.0"}33464 -arangodb_client_connection_statistics_queue_time_bucket{le="5.0"}33464 -arangodb_client_connection_statistics_queue_time_bucket{le="15.0"}33464 -arangodb_client_connection_statistics_queue_time_bucket{le="30.0"}33464 -arangodb_client_connection_statistics_queue_time_bucket{le="+Inf"}33464 -arangodb_client_connection_statistics_queue_time_count{}33464 -arangodb_client_connection_statistics_queue_time_sum{}33464 +arangodb_client_connection_statistics_queue_time_bucket{le="0.01"}33466 +arangodb_client_connection_statistics_queue_time_bucket{le="0.05"}33466 +arangodb_client_connection_statistics_queue_time_bucket{le="0.1"}33466 +arangodb_client_connection_statistics_queue_time_bucket{le="0.2"}33466 +arangodb_client_connection_statistics_queue_time_bucket{le="0.5"}33466 +arangodb_client_connection_statistics_queue_time_bucket{le="1.0"}33466 +arangodb_client_connection_statistics_queue_time_bucket{le="5.0"}33466 +arangodb_client_connection_statistics_queue_time_bucket{le="15.0"}33466 +arangodb_client_connection_statistics_queue_time_bucket{le="30.0"}33466 +arangodb_client_connection_statistics_queue_time_bucket{le="+Inf"}33466 +arangodb_client_connection_statistics_queue_time_count{}33466 +arangodb_client_connection_statistics_queue_time_sum{}33466 # HELP arangodb_client_connection_statistics_io_time Request time needed to answer a request # TYPE arangodb_client_connection_statistics_io_time histogram -arangodb_client_connection_statistics_io_time_bucket{le="0.01"}33464 -arangodb_client_connection_statistics_io_time_bucket{le="0.05"}33464 -arangodb_client_connection_statistics_io_time_bucket{le="0.1"}33464 -arangodb_client_connection_statistics_io_time_bucket{le="0.2"}33464 -arangodb_client_connection_statistics_io_time_bucket{le="0.5"}33464 -arangodb_client_connection_statistics_io_time_bucket{le="1.0"}33464 -arangodb_client_connection_statistics_io_time_bucket{le="5.0"}33464 -arangodb_client_connection_statistics_io_time_bucket{le="15.0"}33464 -arangodb_client_connection_statistics_io_time_bucket{le="30.0"}33464 -arangodb_client_connection_statistics_io_time_bucket{le="+Inf"}33464 -arangodb_client_connection_statistics_io_time_count{}33464 -arangodb_client_connection_statistics_io_time_sum{}33464 +arangodb_client_connection_statistics_io_time_bucket{le="0.01"}33466 +arangodb_client_connection_statistics_io_time_bucket{le="0.05"}33466 +arangodb_client_connection_statistics_io_time_bucket{le="0.1"}33466 +arangodb_client_connection_statistics_io_time_bucket{le="0.2"}33466 +arangodb_client_connection_statistics_io_time_bucket{le="0.5"}33466 +arangodb_client_connection_statistics_io_time_bucket{le="1.0"}33466 +arangodb_client_connection_statistics_io_time_bucket{le="5.0"}33466 +arangodb_client_connection_statistics_io_time_bucket{le="15.0"}33466 +arangodb_client_connection_statistics_io_time_bucket{le="30.0"}33466 +arangodb_client_connection_statistics_io_time_bucket{le="+Inf"}33466 +arangodb_client_connection_statistics_io_time_count{}33466 +arangodb_client_connection_statistics_io_time_sum{}33466 # HELP arangodb_client_connection_statistics_bytes_sent Bytes sent for a request # TYPE arangodb_client_connection_statistics_bytes_sent histogram arangodb_client_connection_statistics_bytes_sent_bucket{le="250"}0 -arangodb_client_connection_statistics_bytes_sent_bucket{le="1000"}32951 -arangodb_client_connection_statistics_bytes_sent_bucket{le="2000"}33399 -arangodb_client_connection_statistics_bytes_sent_bucket{le="5000"}33458 -arangodb_client_connection_statistics_bytes_sent_bucket{le="10000"}33461 -arangodb_client_connection_statistics_bytes_sent_bucket{le="+Inf"}33464 -arangodb_client_connection_statistics_bytes_sent_count{}33464 -arangodb_client_connection_statistics_bytes_sent_sum{}33464 +arangodb_client_connection_statistics_bytes_sent_bucket{le="1000"}32952 +arangodb_client_connection_statistics_bytes_sent_bucket{le="2000"}33401 +arangodb_client_connection_statistics_bytes_sent_bucket{le="5000"}33460 +arangodb_client_connection_statistics_bytes_sent_bucket{le="10000"}33463 +arangodb_client_connection_statistics_bytes_sent_bucket{le="+Inf"}33466 +arangodb_client_connection_statistics_bytes_sent_count{}33466 +arangodb_client_connection_statistics_bytes_sent_sum{}33466 # HELP arangodb_client_connection_statistics_bytes_received Bytes received for a request # TYPE arangodb_client_connection_statistics_bytes_received histogram -arangodb_client_connection_statistics_bytes_received_bucket{le="250"}32042 -arangodb_client_connection_statistics_bytes_received_bucket{le="1000"}33464 -arangodb_client_connection_statistics_bytes_received_bucket{le="2000"}33464 -arangodb_client_connection_statistics_bytes_received_bucket{le="5000"}33464 -arangodb_client_connection_statistics_bytes_received_bucket{le="10000"}33464 -arangodb_client_connection_statistics_bytes_received_bucket{le="+Inf"}33464 -arangodb_client_connection_statistics_bytes_received_count{}33464 -arangodb_client_connection_statistics_bytes_received_sum{}33464 +arangodb_client_connection_statistics_bytes_received_bucket{le="250"}32044 +arangodb_client_connection_statistics_bytes_received_bucket{le="1000"}33466 +arangodb_client_connection_statistics_bytes_received_bucket{le="2000"}33466 +arangodb_client_connection_statistics_bytes_received_bucket{le="5000"}33466 +arangodb_client_connection_statistics_bytes_received_bucket{le="10000"}33466 +arangodb_client_connection_statistics_bytes_received_bucket{le="+Inf"}33466 +arangodb_client_connection_statistics_bytes_received_count{}33466 +arangodb_client_connection_statistics_bytes_received_sum{}33466 # HELP arangodb_http_request_statistics_async_requests_total Number of asynchronously executed HTTP requests # TYPE arangodb_http_request_statistics_async_requests_total counter arangodb_http_request_statistics_async_requests_total{}0 @@ -675,7 +675,7 @@ arangodb_http_request_statistics_async_requests_total{}0 arangodb_http_request_statistics_http_delete_requests_total{}124 # HELP arangodb_http_request_statistics_http_get_requests_total Number of HTTP GET requests # TYPE arangodb_http_request_statistics_http_get_requests_total counter -arangodb_http_request_statistics_http_get_requests_total{}1104 +arangodb_http_request_statistics_http_get_requests_total{}1106 # HELP arangodb_http_request_statistics_http_head_requests_total Number of HTTP HEAD requests # TYPE arangodb_http_request_statistics_http_head_requests_total counter arangodb_http_request_statistics_http_head_requests_total{}0 @@ -696,13 +696,13 @@ arangodb_http_request_statistics_http_put_requests_total{}32 arangodb_http_request_statistics_other_http_requests_total{}0 # HELP arangodb_http_request_statistics_total_requests_total Total number of HTTP requests # TYPE arangodb_http_request_statistics_total_requests_total counter -arangodb_http_request_statistics_total_requests_total{}33464 +arangodb_http_request_statistics_total_requests_total{}33466 # HELP arangodb_http_request_statistics_superuser_requests_total Total number of HTTP requests executed by superuser/JWT # TYPE arangodb_http_request_statistics_superuser_requests_total counter arangodb_http_request_statistics_superuser_requests_total{}0 # HELP arangodb_http_request_statistics_user_requests_total Total number of HTTP requests executed by clients # TYPE arangodb_http_request_statistics_user_requests_total counter -arangodb_http_request_statistics_user_requests_total{}33464 +arangodb_http_request_statistics_user_requests_total{}33466 # HELP arangodb_v8_context_alive Number of V8 contexts currently alive # TYPE arangodb_v8_context_alive gauge arangodb_v8_context_alive{}2 @@ -732,15 +732,15 @@ rocksdb_cache_allocated 1355016 # HELP rocksdb_cache_hit_rate_lifetime rocksdb_cache_hit_rate_lifetime # TYPE rocksdb_cache_hit_rate_lifetime gauge -rocksdb_cache_hit_rate_lifetime 4 +rocksdb_cache_hit_rate_lifetime 5 # HELP rocksdb_cache_hit_rate_recent rocksdb_cache_hit_rate_recent # TYPE rocksdb_cache_hit_rate_recent gauge -rocksdb_cache_hit_rate_recent 4 +rocksdb_cache_hit_rate_recent 5 # HELP rocksdb_cache_limit rocksdb_cache_limit # TYPE rocksdb_cache_limit gauge -rocksdb_cache_limit 16341337088 +rocksdb_cache_limit 17872711680 # HELP rocksdb_cache_unused_memory rocksdb_cache_unused_memory # TYPE rocksdb_cache_unused_memory gauge @@ -764,15 +764,15 @@ rocksdb_base_level 6 # HELP rocksdb_block_cache_capacity rocksdb_block_cache_capacity # TYPE rocksdb_block_cache_capacity gauge -rocksdb_block_cache_capacity 19609604505 +rocksdb_block_cache_capacity 21447254016 # HELP rocksdb_block_cache_pinned_usage rocksdb_block_cache_pinned_usage # TYPE rocksdb_block_cache_pinned_usage gauge -rocksdb_block_cache_pinned_usage 17600 +rocksdb_block_cache_pinned_usage 96 # HELP rocksdb_block_cache_usage rocksdb_block_cache_usage # TYPE rocksdb_block_cache_usage gauge -rocksdb_block_cache_usage 110784 +rocksdb_block_cache_usage 94352 # HELP rocksdb_compaction_pending rocksdb_compaction_pending # TYPE rocksdb_compaction_pending gauge @@ -816,7 +816,7 @@ rocksdb_cur_size_all_mem_tables 18432 # HELP rocksdb_estimate_live_data_size rocksdb_estimate_live_data_size # TYPE rocksdb_estimate_live_data_size gauge -rocksdb_estimate_live_data_size 1553590 +rocksdb_estimate_live_data_size 1530398 # HELP rocksdb_estimate_num_keys rocksdb_estimate_num_keys # TYPE rocksdb_estimate_num_keys gauge @@ -832,11 +832,11 @@ rocksdb_estimate_table_readers_mem 11739 # HELP rocksdb_free_disk_space rocksdb_free_disk_space # TYPE rocksdb_free_disk_space gauge -rocksdb_free_disk_space 366924824576 +rocksdb_free_disk_space 214264487936 # HELP rocksdb_free_inodes rocksdb_free_inodes # TYPE rocksdb_free_inodes gauge -rocksdb_free_inodes 27288760 +rocksdb_free_inodes 31615141 # HELP rocksdb_is_file_deletions_enabled rocksdb_is_file_deletions_enabled # TYPE rocksdb_is_file_deletions_enabled gauge @@ -848,7 +848,7 @@ rocksdb_is_write_stopped 0 # HELP rocksdb_live_sst_files_size rocksdb_live_sst_files_size # TYPE rocksdb_live_sst_files_size gauge -rocksdb_live_sst_files_size 1553590 +rocksdb_live_sst_files_size 1530398 # HELP rocksdb_mem_table_flush_pending rocksdb_mem_table_flush_pending # TYPE rocksdb_mem_table_flush_pending gauge @@ -936,23 +936,23 @@ rocksdb_read_only 0 # HELP rocksdb_size_all_mem_tables rocksdb_size_all_mem_tables # TYPE rocksdb_size_all_mem_tables gauge -rocksdb_size_all_mem_tables 69112280 +rocksdb_size_all_mem_tables 69067144 # HELP rocksdb_total_disk_space rocksdb_total_disk_space # TYPE rocksdb_total_disk_space gauge -rocksdb_total_disk_space 491180957696 +rocksdb_total_disk_space 266402316288 # HELP rocksdb_total_inodes rocksdb_total_inodes # TYPE rocksdb_total_inodes gauge -rocksdb_total_inodes 30531584 +rocksdb_total_inodes 32768000 # HELP rocksdb_total_sst_files_size rocksdb_total_sst_files_size # TYPE rocksdb_total_sst_files_size gauge -rocksdb_total_sst_files_size 1553590 +rocksdb_total_sst_files_size 1530398 # HELP rocksdb_wal_sequence rocksdb_wal_sequence # TYPE rocksdb_wal_sequence gauge -rocksdb_wal_sequence 177417 +rocksdb_wal_sequence 177373 # HELP rocksdb_engine_throttle_bps rocksdb_engine_throttle_bps # TYPE rocksdb_engine_throttle_bps gauge diff --git a/3.10/generated/Examples/RestAdminMetricsV2.generated b/3.10/generated/Examples/RestAdminMetricsV2.generated index bc11c9b1b2..5f9fbca1b2 100644 --- a/3.10/generated/Examples/RestAdminMetricsV2.generated +++ b/3.10/generated/Examples/RestAdminMetricsV2.generated @@ -4,7 +4,7 @@ HTTP/1.1 200 OK content-type: text/plain cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0, max-age=0, s-maxage=0 connection: Keep-Alive -content-length: 59076 +content-length: 59079 content-security-policy: frame-ancestors 'self'; form-action 'self'; expires: 0 pragma: no-cache @@ -44,7 +44,7 @@ arangodb_aql_all_query_total{role="SINGLE"}447 arangodb_aql_current_query{role="SINGLE"}0 # HELP arangodb_aql_global_memory_limit Total memory limit for all AQL queries combined [bytes] # TYPE arangodb_aql_global_memory_limit gauge -arangodb_aql_global_memory_limit{role="SINGLE"}54685393920 +arangodb_aql_global_memory_limit{role="SINGLE"}59647047598 # HELP arangodb_aql_global_memory_usage Total memory usage of all AQL queries executing [bytes], granularity: 32768 bytes steps # TYPE arangodb_aql_global_memory_usage gauge arangodb_aql_global_memory_usage{role="SINGLE"}0 @@ -56,14 +56,14 @@ arangodb_aql_global_query_memory_limit_reached_total{role="SINGLE"}0 arangodb_aql_local_query_memory_limit_reached_total{role="SINGLE"}1 # HELP arangodb_aql_query_time Execution time histogram for all AQL queries [s] # TYPE arangodb_aql_query_time histogram -arangodb_aql_query_time_bucket{role="SINGLE",le="0.000095"}2 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.000191"}99 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.000381"}382 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.000763"}420 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.001526"}439 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.003052"}442 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.000095"}358 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.000191"}407 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.000381"}434 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.000763"}443 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.001526"}443 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.003052"}444 arangodb_aql_query_time_bucket{role="SINGLE",le="0.006104"}444 -arangodb_aql_query_time_bucket{role="SINGLE",le="0.012207"}444 +arangodb_aql_query_time_bucket{role="SINGLE",le="0.012207"}445 arangodb_aql_query_time_bucket{role="SINGLE",le="0.024414"}445 arangodb_aql_query_time_bucket{role="SINGLE",le="0.048828"}445 arangodb_aql_query_time_bucket{role="SINGLE",le="0.097656"}445 @@ -77,7 +77,7 @@ arangodb_aql_query_time_bucket{role="SINGLE",le="12.500000"}447 arangodb_aql_query_time_bucket{role="SINGLE",le="25.000000"}447 arangodb_aql_query_time_bucket{role="SINGLE",le="+Inf"}447 arangodb_aql_query_time_count{role="SINGLE"}447 -arangodb_aql_query_time_sum{role="SINGLE"}1.976907 +arangodb_aql_query_time_sum{role="SINGLE"}1.847153 # HELP arangodb_aql_slow_query_time Execution time histogram for slow AQL queries [s] # TYPE arangodb_aql_slow_query_time histogram arangodb_aql_slow_query_time_bucket{role="SINGLE",le="4.904297"}1 @@ -91,28 +91,28 @@ arangodb_aql_slow_query_time_bucket{role="SINGLE",le="500.750000"}1 arangodb_aql_slow_query_time_bucket{role="SINGLE",le="1000.500000"}1 arangodb_aql_slow_query_time_bucket{role="SINGLE",le="+Inf"}1 arangodb_aql_slow_query_time_count{role="SINGLE"}1 -arangodb_aql_slow_query_time_sum{role="SINGLE"}1.060060 +arangodb_aql_slow_query_time_sum{role="SINGLE"}1.033637 # HELP arangodb_aql_total_query_time_msec_total Total execution time of all AQL queries [ms] # TYPE arangodb_aql_total_query_time_msec_total counter -arangodb_aql_total_query_time_msec_total{role="SINGLE"}1858 +arangodb_aql_total_query_time_msec_total{role="SINGLE"}1804 # HELP arangodb_collection_lock_acquisition_micros_total Total amount of collection lock acquisition time [μs] # TYPE arangodb_collection_lock_acquisition_micros_total counter -arangodb_collection_lock_acquisition_micros_total{role="SINGLE"}152115 +arangodb_collection_lock_acquisition_micros_total{role="SINGLE"}79 # HELP arangodb_collection_lock_acquisition_time Collection lock acquisition time histogram [s] # TYPE arangodb_collection_lock_acquisition_time histogram -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000000"}0 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000001"}83 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000010"}23915 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000100"}32549 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.001000"}32549 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.010000"}32549 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.100000"}32549 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="1.000000"}32549 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="10.000000"}32549 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="100.000000"}32549 -arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="+Inf"}32549 -arangodb_collection_lock_acquisition_time_count{role="SINGLE"}32549 -arangodb_collection_lock_acquisition_time_sum{role="SINGLE"}0.166991 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000000"}10 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000001"}32525 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000010"}32544 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.000100"}32547 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.001000"}32547 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.010000"}32547 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="0.100000"}32547 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="1.000000"}32547 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="10.000000"}32547 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="100.000000"}32547 +arangodb_collection_lock_acquisition_time_bucket{role="SINGLE",le="+Inf"}32547 +arangodb_collection_lock_acquisition_time_count{role="SINGLE"}32547 +arangodb_collection_lock_acquisition_time_sum{role="SINGLE"}0.009372 # HELP arangodb_collection_lock_sequential_mode_total Number of transactions using sequential locking of collections to avoid deadlocking # TYPE arangodb_collection_lock_sequential_mode_total counter arangodb_collection_lock_sequential_mode_total{role="SINGLE"}0 @@ -184,11 +184,11 @@ arangodb_ioheartbeat_duration_bucket{role="SINGLE",le="1.000000"}0 arangodb_ioheartbeat_duration_bucket{role="SINGLE",le="10.000000"}0 arangodb_ioheartbeat_duration_bucket{role="SINGLE",le="100.000000"}0 arangodb_ioheartbeat_duration_bucket{role="SINGLE",le="1000.000000"}0 -arangodb_ioheartbeat_duration_bucket{role="SINGLE",le="10000.000000"}2 -arangodb_ioheartbeat_duration_bucket{role="SINGLE",le="100000.000000"}2 -arangodb_ioheartbeat_duration_bucket{role="SINGLE",le="+Inf"}2 -arangodb_ioheartbeat_duration_count{role="SINGLE"}2 -arangodb_ioheartbeat_duration_sum{role="SINGLE"}9723.000000 +arangodb_ioheartbeat_duration_bucket{role="SINGLE",le="10000.000000"}1 +arangodb_ioheartbeat_duration_bucket{role="SINGLE",le="100000.000000"}1 +arangodb_ioheartbeat_duration_bucket{role="SINGLE",le="+Inf"}1 +arangodb_ioheartbeat_duration_count{role="SINGLE"}1 +arangodb_ioheartbeat_duration_sum{role="SINGLE"}2229.000000 # HELP arangodb_ioheartbeat_failures_total Total number of failures in IO heartbeat # TYPE arangodb_ioheartbeat_failures_total counter arangodb_ioheartbeat_failures_total{role="SINGLE"}0 @@ -285,7 +285,7 @@ arangodb_pregel_workers_running_number{role="SINGLE"}0 arangodb_pregel_workers_storing_number{role="SINGLE"}0 # HELP arangodb_read_transactions_total Number of read transactions # TYPE arangodb_read_transactions_total counter -arangodb_read_transactions_total{role="SINGLE"}1319 +arangodb_read_transactions_total{role="SINGLE"}1320 # HELP arangodb_replication_cluster_inventory_requests_total (DC-2-DC only) Number of times the database and collection overviews have been requested. # TYPE arangodb_replication_cluster_inventory_requests_total counter arangodb_replication_cluster_inventory_requests_total{role="SINGLE"}0 @@ -372,18 +372,18 @@ arangodb_replication_tailing_request_time_total{role="SINGLE"}0 arangodb_replication_tailing_requests_total{role="SINGLE"}0 # HELP arangodb_request_body_size_http1 Body size of HTTP/1.1 requests # TYPE arangodb_request_body_size_http1 histogram -arangodb_request_body_size_http1_bucket{role="SINGLE",le="191"}33420 -arangodb_request_body_size_http1_bucket{role="SINGLE",le="319"}33464 -arangodb_request_body_size_http1_bucket{role="SINGLE",le="575"}33473 -arangodb_request_body_size_http1_bucket{role="SINGLE",le="1087"}33473 -arangodb_request_body_size_http1_bucket{role="SINGLE",le="2110"}33473 -arangodb_request_body_size_http1_bucket{role="SINGLE",le="4156"}33473 -arangodb_request_body_size_http1_bucket{role="SINGLE",le="8248"}33473 -arangodb_request_body_size_http1_bucket{role="SINGLE",le="16432"}33473 -arangodb_request_body_size_http1_bucket{role="SINGLE",le="32800"}33473 -arangodb_request_body_size_http1_bucket{role="SINGLE",le="+Inf"}33473 -arangodb_request_body_size_http1_count{role="SINGLE"}33473 -arangodb_request_body_size_http1_sum{role="SINGLE"}478856 +arangodb_request_body_size_http1_bucket{role="SINGLE",le="191"}33422 +arangodb_request_body_size_http1_bucket{role="SINGLE",le="319"}33466 +arangodb_request_body_size_http1_bucket{role="SINGLE",le="575"}33475 +arangodb_request_body_size_http1_bucket{role="SINGLE",le="1087"}33475 +arangodb_request_body_size_http1_bucket{role="SINGLE",le="2110"}33475 +arangodb_request_body_size_http1_bucket{role="SINGLE",le="4156"}33475 +arangodb_request_body_size_http1_bucket{role="SINGLE",le="8248"}33475 +arangodb_request_body_size_http1_bucket{role="SINGLE",le="16432"}33475 +arangodb_request_body_size_http1_bucket{role="SINGLE",le="32800"}33475 +arangodb_request_body_size_http1_bucket{role="SINGLE",le="+Inf"}33475 +arangodb_request_body_size_http1_count{role="SINGLE"}33475 +arangodb_request_body_size_http1_sum{role="SINGLE"}478829 # HELP arangodb_request_body_size_http2 Body size of HTTP/2 requests # TYPE arangodb_request_body_size_http2 histogram arangodb_request_body_size_http2_bucket{role="SINGLE",le="191"}0 @@ -417,7 +417,7 @@ arangodb_request_body_size_vst_sum{role="SINGLE"}0 arangodb_revision_tree_hibernations_total{role="SINGLE"}0 # HELP arangodb_revision_tree_memory_usage Total memory consumed by all revision trees # TYPE arangodb_revision_tree_memory_usage gauge -arangodb_revision_tree_memory_usage{role="SINGLE"}393216 +arangodb_revision_tree_memory_usage{role="SINGLE"}327680 # HELP arangodb_revision_tree_rebuilds_failure_total Number of failed revision tree rebuilds # TYPE arangodb_revision_tree_rebuilds_failure_total counter arangodb_revision_tree_rebuilds_failure_total{role="SINGLE"}0 @@ -435,19 +435,19 @@ arangodb_rocksdb_write_stalls_total{role="SINGLE"}0 arangodb_rocksdb_write_stops_total{role="SINGLE"}0 # HELP arangodb_scheduler_handler_tasks_created_total Number of scheduler tasks created # TYPE arangodb_scheduler_handler_tasks_created_total counter -arangodb_scheduler_handler_tasks_created_total{role="SINGLE"}33473 +arangodb_scheduler_handler_tasks_created_total{role="SINGLE"}33475 # HELP arangodb_scheduler_high_prio_queue_length Current queue length of the high priority queue in the scheduler # TYPE arangodb_scheduler_high_prio_queue_length gauge arangodb_scheduler_high_prio_queue_length{role="SINGLE"}0 # HELP arangodb_scheduler_jobs_dequeued_total Total number of jobs dequeued # TYPE arangodb_scheduler_jobs_dequeued_total counter -arangodb_scheduler_jobs_dequeued_total{role="SINGLE"}33536 +arangodb_scheduler_jobs_dequeued_total{role="SINGLE"}33507 # HELP arangodb_scheduler_jobs_done_total Total number of queue jobs done # TYPE arangodb_scheduler_jobs_done_total counter -arangodb_scheduler_jobs_done_total{role="SINGLE"}33535 +arangodb_scheduler_jobs_done_total{role="SINGLE"}33506 # HELP arangodb_scheduler_jobs_submitted_total Total number of jobs submitted to the scheduler # TYPE arangodb_scheduler_jobs_submitted_total counter -arangodb_scheduler_jobs_submitted_total{role="SINGLE"}33536 +arangodb_scheduler_jobs_submitted_total{role="SINGLE"}33507 # HELP arangodb_scheduler_low_prio_queue_last_dequeue_time Last recorded dequeue time for a low priority queue item [ms] # TYPE arangodb_scheduler_low_prio_queue_last_dequeue_time gauge arangodb_scheduler_low_prio_queue_last_dequeue_time{role="SINGLE"}0 @@ -495,19 +495,19 @@ arangodb_search_num_out_of_sync_links{role="SINGLE"}0 arangodb_transactions_aborted_total{role="SINGLE"}255 # HELP arangodb_transactions_committed_total Number of transactions committed # TYPE arangodb_transactions_committed_total counter -arangodb_transactions_committed_total{role="SINGLE"}33518 +arangodb_transactions_committed_total{role="SINGLE"}33517 # HELP arangodb_transactions_expired_total Total number of expired transactions # TYPE arangodb_transactions_expired_total counter arangodb_transactions_expired_total{role="SINGLE"}0 # HELP arangodb_transactions_started_total Number of transactions started # TYPE arangodb_transactions_started_total counter -arangodb_transactions_started_total{role="SINGLE"}32549 +arangodb_transactions_started_total{role="SINGLE"}32547 # HELP arangodb_v8_context_created_total V8 contexts created # TYPE arangodb_v8_context_created_total counter arangodb_v8_context_created_total{role="SINGLE"}2 # HELP arangodb_v8_context_creation_time_msec_total Total time for creating V8 contexts [ms] # TYPE arangodb_v8_context_creation_time_msec_total counter -arangodb_v8_context_creation_time_msec_total{role="SINGLE"}21 +arangodb_v8_context_creation_time_msec_total{role="SINGLE"}10 # HELP arangodb_v8_context_destroyed_total V8 contexts destroyed # TYPE arangodb_v8_context_destroyed_total counter arangodb_v8_context_destroyed_total{role="SINGLE"}0 @@ -516,10 +516,10 @@ arangodb_v8_context_destroyed_total{role="SINGLE"}0 arangodb_v8_context_enter_failures_total{role="SINGLE"}0 # HELP arangodb_v8_context_entered_total V8 context enter events # TYPE arangodb_v8_context_entered_total counter -arangodb_v8_context_entered_total{role="SINGLE"}27 +arangodb_v8_context_entered_total{role="SINGLE"}15 # HELP arangodb_v8_context_exited_total V8 context exit events # TYPE arangodb_v8_context_exited_total counter -arangodb_v8_context_exited_total{role="SINGLE"}27 +arangodb_v8_context_exited_total{role="SINGLE"}15 # HELP arangodb_vst_connections_total Total number of VST connections # TYPE arangodb_vst_connections_total counter arangodb_vst_connections_total{role="SINGLE"}0 @@ -534,49 +534,49 @@ rocksdb_prunable_wal_files{role="SINGLE"}0 rocksdb_wal_pruning_active{role="SINGLE"}0 # HELP rocksdb_wal_sequence_lower_bound RocksDB WAL sequence number until which background thread has caught up # TYPE rocksdb_wal_sequence_lower_bound gauge -rocksdb_wal_sequence_lower_bound{role="SINGLE"}122984 +rocksdb_wal_sequence_lower_bound{role="SINGLE"}170923 # HELP arangodb_process_statistics_minor_page_faults_total The number of minor faults the process has made which have not required loading a memory page from disk. This figure is not reported on Windows # TYPE arangodb_process_statistics_minor_page_faults_total counter -arangodb_process_statistics_minor_page_faults_total{}78247 +arangodb_process_statistics_minor_page_faults_total{}70284 # HELP arangodb_process_statistics_major_page_faults_total On Windows, this figure contains the total number of page faults. On other system, this figure contains the number of major faults the process has made which have required loading a memory page from disk # TYPE arangodb_process_statistics_major_page_faults_total counter arangodb_process_statistics_major_page_faults_total{}0 # HELP arangodb_process_statistics_user_time Amount of time that this process has been scheduled in user mode, measured in seconds # TYPE arangodb_process_statistics_user_time gauge -arangodb_process_statistics_user_time{}9.980000 +arangodb_process_statistics_user_time{}3.590000 # HELP arangodb_process_statistics_system_time Amount of time that this process has been scheduled in kernel mode, measured in seconds # TYPE arangodb_process_statistics_system_time gauge -arangodb_process_statistics_system_time{}2.960000 +arangodb_process_statistics_system_time{}0.900000 # HELP arangodb_process_statistics_number_of_threads Number of threads in the arangod process # TYPE arangodb_process_statistics_number_of_threads gauge -arangodb_process_statistics_number_of_threads{}82 +arangodb_process_statistics_number_of_threads{}88 # HELP arangodb_process_statistics_resident_set_size The total size of the number of pages the process has in real memory. This is just the pages which count toward text, data, or stack space. This does not include pages which have not been demand-loaded in, or which are swapped out. The resident set size is reported in bytes # TYPE arangodb_process_statistics_resident_set_size gauge -arangodb_process_statistics_resident_set_size{}324120576 +arangodb_process_statistics_resident_set_size{}323751936 # HELP arangodb_process_statistics_resident_set_size_percent The relative size of the number of pages the process has in real memory compared to system memory. This is just the pages which count toward text, data, or stack space. This does not include pages which have not been demand-loaded in, or which are swapped out. The value is a ratio between 0.00 and 1.00 # TYPE arangodb_process_statistics_resident_set_size_percent gauge -arangodb_process_statistics_resident_set_size_percent{}0.004801 +arangodb_process_statistics_resident_set_size_percent{}0.004397 # HELP arangodb_process_statistics_virtual_memory_size On Windows, this figure contains the total amount of memory that the memory manager has committed for the arangod process. On other systems, this figure contains The size of the virtual memory the process is using # TYPE arangodb_process_statistics_virtual_memory_size gauge -arangodb_process_statistics_virtual_memory_size{}1582379008 +arangodb_process_statistics_virtual_memory_size{}1624485888 # HELP arangodb_server_statistics_physical_memory Physical memory in bytes # TYPE arangodb_server_statistics_physical_memory gauge -arangodb_server_statistics_physical_memory{}67512832000 +arangodb_server_statistics_physical_memory{}73638330368 # HELP arangodb_server_statistics_server_uptime_total Number of seconds elapsed since server start # TYPE arangodb_server_statistics_server_uptime_total counter -arangodb_server_statistics_server_uptime_total{}19.097176 +arangodb_server_statistics_server_uptime_total{}7.073674 # HELP arangodb_server_statistics_cpu_cores Number of CPU cores visible to the arangod process # TYPE arangodb_server_statistics_cpu_cores gauge -arangodb_server_statistics_cpu_cores{}32 +arangodb_server_statistics_cpu_cores{}36 # HELP arangodb_server_statistics_user_percent Percentage of time that the system CPUs have spent in user mode # TYPE arangodb_server_statistics_user_percent gauge -arangodb_server_statistics_user_percent{}2.857143 +arangodb_server_statistics_user_percent{}0.000000 # HELP arangodb_server_statistics_system_percent Percentage of time that the system CPUs have spent in kernel mode # TYPE arangodb_server_statistics_system_percent gauge -arangodb_server_statistics_system_percent{}2.857143 +arangodb_server_statistics_system_percent{}0.000000 # HELP arangodb_server_statistics_idle_percent Percentage of time that the system CPUs have been idle # TYPE arangodb_server_statistics_idle_percent gauge -arangodb_server_statistics_idle_percent{}94.285714 +arangodb_server_statistics_idle_percent{}100.000000 # HELP arangodb_server_statistics_iowait_percent Percentage of time that the system CPUs have been waiting for I/O # TYPE arangodb_server_statistics_iowait_percent gauge arangodb_server_statistics_iowait_percent{}0.000000 @@ -593,80 +593,80 @@ arangodb_client_connection_statistics_connection_time_count{}0 arangodb_client_connection_statistics_connection_time_sum{}0 # HELP arangodb_client_connection_statistics_total_time Total time needed to answer a request # TYPE arangodb_client_connection_statistics_total_time histogram -arangodb_client_connection_statistics_total_time_bucket{le="0.01"}33455 -arangodb_client_connection_statistics_total_time_bucket{le="0.05"}33461 -arangodb_client_connection_statistics_total_time_bucket{le="0.1"}33463 -arangodb_client_connection_statistics_total_time_bucket{le="0.2"}33463 -arangodb_client_connection_statistics_total_time_bucket{le="0.5"}33463 -arangodb_client_connection_statistics_total_time_bucket{le="1.0"}33464 -arangodb_client_connection_statistics_total_time_bucket{le="5.0"}33464 -arangodb_client_connection_statistics_total_time_bucket{le="15.0"}33464 -arangodb_client_connection_statistics_total_time_bucket{le="30.0"}33464 -arangodb_client_connection_statistics_total_time_bucket{le="+Inf"}33464 -arangodb_client_connection_statistics_total_time_count{}33464 -arangodb_client_connection_statistics_total_time_sum{}33464 +arangodb_client_connection_statistics_total_time_bucket{le="0.01"}33461 +arangodb_client_connection_statistics_total_time_bucket{le="0.05"}33465 +arangodb_client_connection_statistics_total_time_bucket{le="0.1"}33465 +arangodb_client_connection_statistics_total_time_bucket{le="0.2"}33465 +arangodb_client_connection_statistics_total_time_bucket{le="0.5"}33465 +arangodb_client_connection_statistics_total_time_bucket{le="1.0"}33466 +arangodb_client_connection_statistics_total_time_bucket{le="5.0"}33466 +arangodb_client_connection_statistics_total_time_bucket{le="15.0"}33466 +arangodb_client_connection_statistics_total_time_bucket{le="30.0"}33466 +arangodb_client_connection_statistics_total_time_bucket{le="+Inf"}33466 +arangodb_client_connection_statistics_total_time_count{}33466 +arangodb_client_connection_statistics_total_time_sum{}33466 # HELP arangodb_client_connection_statistics_request_time Request time needed to answer a request # TYPE arangodb_client_connection_statistics_request_time histogram -arangodb_client_connection_statistics_request_time_bucket{le="0.01"}33455 -arangodb_client_connection_statistics_request_time_bucket{le="0.05"}33461 -arangodb_client_connection_statistics_request_time_bucket{le="0.1"}33463 -arangodb_client_connection_statistics_request_time_bucket{le="0.2"}33463 -arangodb_client_connection_statistics_request_time_bucket{le="0.5"}33463 -arangodb_client_connection_statistics_request_time_bucket{le="1.0"}33464 -arangodb_client_connection_statistics_request_time_bucket{le="5.0"}33464 -arangodb_client_connection_statistics_request_time_bucket{le="15.0"}33464 -arangodb_client_connection_statistics_request_time_bucket{le="30.0"}33464 -arangodb_client_connection_statistics_request_time_bucket{le="+Inf"}33464 -arangodb_client_connection_statistics_request_time_count{}33464 -arangodb_client_connection_statistics_request_time_sum{}33464 +arangodb_client_connection_statistics_request_time_bucket{le="0.01"}33461 +arangodb_client_connection_statistics_request_time_bucket{le="0.05"}33465 +arangodb_client_connection_statistics_request_time_bucket{le="0.1"}33465 +arangodb_client_connection_statistics_request_time_bucket{le="0.2"}33465 +arangodb_client_connection_statistics_request_time_bucket{le="0.5"}33465 +arangodb_client_connection_statistics_request_time_bucket{le="1.0"}33466 +arangodb_client_connection_statistics_request_time_bucket{le="5.0"}33466 +arangodb_client_connection_statistics_request_time_bucket{le="15.0"}33466 +arangodb_client_connection_statistics_request_time_bucket{le="30.0"}33466 +arangodb_client_connection_statistics_request_time_bucket{le="+Inf"}33466 +arangodb_client_connection_statistics_request_time_count{}33466 +arangodb_client_connection_statistics_request_time_sum{}33466 # HELP arangodb_client_connection_statistics_queue_time Request time needed to answer a request # TYPE arangodb_client_connection_statistics_queue_time histogram -arangodb_client_connection_statistics_queue_time_bucket{le="0.01"}33464 -arangodb_client_connection_statistics_queue_time_bucket{le="0.05"}33464 -arangodb_client_connection_statistics_queue_time_bucket{le="0.1"}33464 -arangodb_client_connection_statistics_queue_time_bucket{le="0.2"}33464 -arangodb_client_connection_statistics_queue_time_bucket{le="0.5"}33464 -arangodb_client_connection_statistics_queue_time_bucket{le="1.0"}33464 -arangodb_client_connection_statistics_queue_time_bucket{le="5.0"}33464 -arangodb_client_connection_statistics_queue_time_bucket{le="15.0"}33464 -arangodb_client_connection_statistics_queue_time_bucket{le="30.0"}33464 -arangodb_client_connection_statistics_queue_time_bucket{le="+Inf"}33464 -arangodb_client_connection_statistics_queue_time_count{}33464 -arangodb_client_connection_statistics_queue_time_sum{}33464 +arangodb_client_connection_statistics_queue_time_bucket{le="0.01"}33466 +arangodb_client_connection_statistics_queue_time_bucket{le="0.05"}33466 +arangodb_client_connection_statistics_queue_time_bucket{le="0.1"}33466 +arangodb_client_connection_statistics_queue_time_bucket{le="0.2"}33466 +arangodb_client_connection_statistics_queue_time_bucket{le="0.5"}33466 +arangodb_client_connection_statistics_queue_time_bucket{le="1.0"}33466 +arangodb_client_connection_statistics_queue_time_bucket{le="5.0"}33466 +arangodb_client_connection_statistics_queue_time_bucket{le="15.0"}33466 +arangodb_client_connection_statistics_queue_time_bucket{le="30.0"}33466 +arangodb_client_connection_statistics_queue_time_bucket{le="+Inf"}33466 +arangodb_client_connection_statistics_queue_time_count{}33466 +arangodb_client_connection_statistics_queue_time_sum{}33466 # HELP arangodb_client_connection_statistics_io_time Request time needed to answer a request # TYPE arangodb_client_connection_statistics_io_time histogram -arangodb_client_connection_statistics_io_time_bucket{le="0.01"}33464 -arangodb_client_connection_statistics_io_time_bucket{le="0.05"}33464 -arangodb_client_connection_statistics_io_time_bucket{le="0.1"}33464 -arangodb_client_connection_statistics_io_time_bucket{le="0.2"}33464 -arangodb_client_connection_statistics_io_time_bucket{le="0.5"}33464 -arangodb_client_connection_statistics_io_time_bucket{le="1.0"}33464 -arangodb_client_connection_statistics_io_time_bucket{le="5.0"}33464 -arangodb_client_connection_statistics_io_time_bucket{le="15.0"}33464 -arangodb_client_connection_statistics_io_time_bucket{le="30.0"}33464 -arangodb_client_connection_statistics_io_time_bucket{le="+Inf"}33464 -arangodb_client_connection_statistics_io_time_count{}33464 -arangodb_client_connection_statistics_io_time_sum{}33464 +arangodb_client_connection_statistics_io_time_bucket{le="0.01"}33466 +arangodb_client_connection_statistics_io_time_bucket{le="0.05"}33466 +arangodb_client_connection_statistics_io_time_bucket{le="0.1"}33466 +arangodb_client_connection_statistics_io_time_bucket{le="0.2"}33466 +arangodb_client_connection_statistics_io_time_bucket{le="0.5"}33466 +arangodb_client_connection_statistics_io_time_bucket{le="1.0"}33466 +arangodb_client_connection_statistics_io_time_bucket{le="5.0"}33466 +arangodb_client_connection_statistics_io_time_bucket{le="15.0"}33466 +arangodb_client_connection_statistics_io_time_bucket{le="30.0"}33466 +arangodb_client_connection_statistics_io_time_bucket{le="+Inf"}33466 +arangodb_client_connection_statistics_io_time_count{}33466 +arangodb_client_connection_statistics_io_time_sum{}33466 # HELP arangodb_client_connection_statistics_bytes_sent Bytes sent for a request # TYPE arangodb_client_connection_statistics_bytes_sent histogram arangodb_client_connection_statistics_bytes_sent_bucket{le="250"}0 -arangodb_client_connection_statistics_bytes_sent_bucket{le="1000"}32951 -arangodb_client_connection_statistics_bytes_sent_bucket{le="2000"}33399 -arangodb_client_connection_statistics_bytes_sent_bucket{le="5000"}33458 -arangodb_client_connection_statistics_bytes_sent_bucket{le="10000"}33461 -arangodb_client_connection_statistics_bytes_sent_bucket{le="+Inf"}33464 -arangodb_client_connection_statistics_bytes_sent_count{}33464 -arangodb_client_connection_statistics_bytes_sent_sum{}33464 +arangodb_client_connection_statistics_bytes_sent_bucket{le="1000"}32952 +arangodb_client_connection_statistics_bytes_sent_bucket{le="2000"}33401 +arangodb_client_connection_statistics_bytes_sent_bucket{le="5000"}33460 +arangodb_client_connection_statistics_bytes_sent_bucket{le="10000"}33463 +arangodb_client_connection_statistics_bytes_sent_bucket{le="+Inf"}33466 +arangodb_client_connection_statistics_bytes_sent_count{}33466 +arangodb_client_connection_statistics_bytes_sent_sum{}33466 # HELP arangodb_client_connection_statistics_bytes_received Bytes received for a request # TYPE arangodb_client_connection_statistics_bytes_received histogram -arangodb_client_connection_statistics_bytes_received_bucket{le="250"}32042 -arangodb_client_connection_statistics_bytes_received_bucket{le="1000"}33464 -arangodb_client_connection_statistics_bytes_received_bucket{le="2000"}33464 -arangodb_client_connection_statistics_bytes_received_bucket{le="5000"}33464 -arangodb_client_connection_statistics_bytes_received_bucket{le="10000"}33464 -arangodb_client_connection_statistics_bytes_received_bucket{le="+Inf"}33464 -arangodb_client_connection_statistics_bytes_received_count{}33464 -arangodb_client_connection_statistics_bytes_received_sum{}33464 +arangodb_client_connection_statistics_bytes_received_bucket{le="250"}32044 +arangodb_client_connection_statistics_bytes_received_bucket{le="1000"}33466 +arangodb_client_connection_statistics_bytes_received_bucket{le="2000"}33466 +arangodb_client_connection_statistics_bytes_received_bucket{le="5000"}33466 +arangodb_client_connection_statistics_bytes_received_bucket{le="10000"}33466 +arangodb_client_connection_statistics_bytes_received_bucket{le="+Inf"}33466 +arangodb_client_connection_statistics_bytes_received_count{}33466 +arangodb_client_connection_statistics_bytes_received_sum{}33466 # HELP arangodb_http_request_statistics_async_requests_total Number of asynchronously executed HTTP requests # TYPE arangodb_http_request_statistics_async_requests_total counter arangodb_http_request_statistics_async_requests_total{}0 @@ -675,7 +675,7 @@ arangodb_http_request_statistics_async_requests_total{}0 arangodb_http_request_statistics_http_delete_requests_total{}124 # HELP arangodb_http_request_statistics_http_get_requests_total Number of HTTP GET requests # TYPE arangodb_http_request_statistics_http_get_requests_total counter -arangodb_http_request_statistics_http_get_requests_total{}1104 +arangodb_http_request_statistics_http_get_requests_total{}1106 # HELP arangodb_http_request_statistics_http_head_requests_total Number of HTTP HEAD requests # TYPE arangodb_http_request_statistics_http_head_requests_total counter arangodb_http_request_statistics_http_head_requests_total{}0 @@ -696,13 +696,13 @@ arangodb_http_request_statistics_http_put_requests_total{}32 arangodb_http_request_statistics_other_http_requests_total{}0 # HELP arangodb_http_request_statistics_total_requests_total Total number of HTTP requests # TYPE arangodb_http_request_statistics_total_requests_total counter -arangodb_http_request_statistics_total_requests_total{}33464 +arangodb_http_request_statistics_total_requests_total{}33466 # HELP arangodb_http_request_statistics_superuser_requests_total Total number of HTTP requests executed by superuser/JWT # TYPE arangodb_http_request_statistics_superuser_requests_total counter arangodb_http_request_statistics_superuser_requests_total{}0 # HELP arangodb_http_request_statistics_user_requests_total Total number of HTTP requests executed by clients # TYPE arangodb_http_request_statistics_user_requests_total counter -arangodb_http_request_statistics_user_requests_total{}33464 +arangodb_http_request_statistics_user_requests_total{}33466 # HELP arangodb_v8_context_alive Number of V8 contexts currently alive # TYPE arangodb_v8_context_alive gauge arangodb_v8_context_alive{}2 @@ -732,15 +732,15 @@ rocksdb_cache_allocated 1355016 # HELP rocksdb_cache_hit_rate_lifetime rocksdb_cache_hit_rate_lifetime # TYPE rocksdb_cache_hit_rate_lifetime gauge -rocksdb_cache_hit_rate_lifetime 4 +rocksdb_cache_hit_rate_lifetime 5 # HELP rocksdb_cache_hit_rate_recent rocksdb_cache_hit_rate_recent # TYPE rocksdb_cache_hit_rate_recent gauge -rocksdb_cache_hit_rate_recent 4 +rocksdb_cache_hit_rate_recent 5 # HELP rocksdb_cache_limit rocksdb_cache_limit # TYPE rocksdb_cache_limit gauge -rocksdb_cache_limit 16341337088 +rocksdb_cache_limit 17872711680 # HELP rocksdb_cache_unused_memory rocksdb_cache_unused_memory # TYPE rocksdb_cache_unused_memory gauge @@ -764,7 +764,7 @@ rocksdb_base_level 6 # HELP rocksdb_block_cache_capacity rocksdb_block_cache_capacity # TYPE rocksdb_block_cache_capacity gauge -rocksdb_block_cache_capacity 19609604505 +rocksdb_block_cache_capacity 21447254016 # HELP rocksdb_block_cache_pinned_usage rocksdb_block_cache_pinned_usage # TYPE rocksdb_block_cache_pinned_usage gauge @@ -772,7 +772,7 @@ rocksdb_block_cache_pinned_usage 96 # HELP rocksdb_block_cache_usage rocksdb_block_cache_usage # TYPE rocksdb_block_cache_usage gauge -rocksdb_block_cache_usage 94448 +rocksdb_block_cache_usage 94864 # HELP rocksdb_compaction_pending rocksdb_compaction_pending # TYPE rocksdb_compaction_pending gauge @@ -816,7 +816,7 @@ rocksdb_cur_size_all_mem_tables 18432 # HELP rocksdb_estimate_live_data_size rocksdb_estimate_live_data_size # TYPE rocksdb_estimate_live_data_size gauge -rocksdb_estimate_live_data_size 1553590 +rocksdb_estimate_live_data_size 1530398 # HELP rocksdb_estimate_num_keys rocksdb_estimate_num_keys # TYPE rocksdb_estimate_num_keys gauge @@ -832,11 +832,11 @@ rocksdb_estimate_table_readers_mem 11739 # HELP rocksdb_free_disk_space rocksdb_free_disk_space # TYPE rocksdb_free_disk_space gauge -rocksdb_free_disk_space 366924816384 +rocksdb_free_disk_space 214264446976 # HELP rocksdb_free_inodes rocksdb_free_inodes # TYPE rocksdb_free_inodes gauge -rocksdb_free_inodes 27288759 +rocksdb_free_inodes 31615139 # HELP rocksdb_is_file_deletions_enabled rocksdb_is_file_deletions_enabled # TYPE rocksdb_is_file_deletions_enabled gauge @@ -848,7 +848,7 @@ rocksdb_is_write_stopped 0 # HELP rocksdb_live_sst_files_size rocksdb_live_sst_files_size # TYPE rocksdb_live_sst_files_size gauge -rocksdb_live_sst_files_size 1553590 +rocksdb_live_sst_files_size 1530398 # HELP rocksdb_mem_table_flush_pending rocksdb_mem_table_flush_pending # TYPE rocksdb_mem_table_flush_pending gauge @@ -936,23 +936,23 @@ rocksdb_read_only 0 # HELP rocksdb_size_all_mem_tables rocksdb_size_all_mem_tables # TYPE rocksdb_size_all_mem_tables gauge -rocksdb_size_all_mem_tables 69112280 +rocksdb_size_all_mem_tables 69067144 # HELP rocksdb_total_disk_space rocksdb_total_disk_space # TYPE rocksdb_total_disk_space gauge -rocksdb_total_disk_space 491180957696 +rocksdb_total_disk_space 266402316288 # HELP rocksdb_total_inodes rocksdb_total_inodes # TYPE rocksdb_total_inodes gauge -rocksdb_total_inodes 30531584 +rocksdb_total_inodes 32768000 # HELP rocksdb_total_sst_files_size rocksdb_total_sst_files_size # TYPE rocksdb_total_sst_files_size gauge -rocksdb_total_sst_files_size 1553590 +rocksdb_total_sst_files_size 1530398 # HELP rocksdb_wal_sequence rocksdb_wal_sequence # TYPE rocksdb_wal_sequence gauge -rocksdb_wal_sequence 177417 +rocksdb_wal_sequence 177373 # HELP rocksdb_engine_throttle_bps rocksdb_engine_throttle_bps # TYPE rocksdb_engine_throttle_bps gauge diff --git a/3.10/generated/Examples/RestAdminStatistics1.generated b/3.10/generated/Examples/RestAdminStatistics1.generated index b83e12d787..1b9286c297 100644 --- a/3.10/generated/Examples/RestAdminStatistics1.generated +++ b/3.10/generated/Examples/RestAdminStatistics1.generated @@ -4,7 +4,7 @@ HTTP/1.1 200 O content-type: application/json cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0, max-age=0, s-maxage=0 connection: Keep-Alive -content-length: 2272 +content-length: 2274 content-security-policy: frame-ancestors 'self'; form-action 'self'; expires: 0 pragma: no-cache @@ -14,17 +14,17 @@ x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff { - "time" : 1665058528.1125731, + "time" : 1666270584.6640549, "enabled" : true, "system" : { - "minorPageFaults" : 78267, + "minorPageFaults" : 70412, "majorPageFaults" : 0, - "userTime" : 9.99, - "systemTime" : 2.96, - "numberOfThreads" : 82, - "residentSize" : 324370432, - "residentSizePercent" : 0.004804574514071636, - "virtualSize" : 1582379008 + "userTime" : 3.59, + "systemTime" : 0.9, + "numberOfThreads" : 88, + "residentSize" : 324718592, + "residentSizePercent" : 0.0044096408810092805, + "virtualSize" : 1624485888 }, "client" : { "httpConnections" : 2, @@ -39,12 +39,12 @@ x-content-type-options: nosniff ] }, "totalTime" : { - "sum" : 9.452020406723022, - "count" : 33464, + "sum" : 2.725128650665283, + "count" : 33466, "counts" : [ - 33455, - 6, - 2, + 33461, + 4, + 0, 0, 0, 1, @@ -55,12 +55,12 @@ x-content-type-options: nosniff ] }, "requestTime" : { - "sum" : 5.650431394577026, - "count" : 33464, + "sum" : 1.891686201095581, + "count" : 33466, "counts" : [ - 33455, - 6, - 2, + 33461, + 4, + 0, 0, 0, 1, @@ -71,10 +71,10 @@ x-content-type-options: nosniff ] }, "queueTime" : { - "sum" : 0.7448656558990479, - "count" : 33464, + "sum" : 0.17127561569213867, + "count" : 33466, "counts" : [ - 33464, + 33466, 0, 0, 0, @@ -87,10 +87,10 @@ x-content-type-options: nosniff ] }, "ioTime" : { - "sum" : 3.0567233562469482, - "count" : 33464, + "sum" : 0.6621668338775635, + "count" : 33466, "counts" : [ - 33464, + 33466, 0, 0, 0, @@ -103,22 +103,22 @@ x-content-type-options: nosniff ] }, "bytesSent" : { - "sum" : 20402241, - "count" : 33464, + "sum" : 20404253, + "count" : 33466, "counts" : [ 0, - 32951, - 448, + 32952, + 449, 59, 3, 3 ] }, "bytesReceived" : { - "sum" : 7837862, - "count" : 33464, + "sum" : 7838156, + "count" : 33466, "counts" : [ - 32042, + 32044, 1422, 0, 0, @@ -140,12 +140,12 @@ x-content-type-options: nosniff ] }, "totalTime" : { - "sum" : 9.452020406723022, - "count" : 33464, + "sum" : 2.725128650665283, + "count" : 33466, "counts" : [ - 33455, - 6, - 2, + 33461, + 4, + 0, 0, 0, 1, @@ -156,12 +156,12 @@ x-content-type-options: nosniff ] }, "requestTime" : { - "sum" : 5.650431394577026, - "count" : 33464, + "sum" : 1.891686201095581, + "count" : 33466, "counts" : [ - 33455, - 6, - 2, + 33461, + 4, + 0, 0, 0, 1, @@ -172,10 +172,10 @@ x-content-type-options: nosniff ] }, "queueTime" : { - "sum" : 0.7448656558990479, - "count" : 33464, + "sum" : 0.17127561569213867, + "count" : 33466, "counts" : [ - 33464, + 33466, 0, 0, 0, @@ -188,10 +188,10 @@ x-content-type-options: nosniff ] }, "ioTime" : { - "sum" : 3.0567233562469482, - "count" : 33464, + "sum" : 0.6621668338775635, + "count" : 33466, "counts" : [ - 33464, + 33466, 0, 0, 0, @@ -204,22 +204,22 @@ x-content-type-options: nosniff ] }, "bytesSent" : { - "sum" : 20402241, - "count" : 33464, + "sum" : 20404253, + "count" : 33466, "counts" : [ 0, - 32951, - 448, + 32952, + 449, 59, 3, 3 ] }, "bytesReceived" : { - "sum" : 7837862, - "count" : 33464, + "sum" : 7838156, + "count" : 33466, "counts" : [ - 32042, + 32044, 1422, 0, 0, @@ -229,11 +229,11 @@ x-content-type-options: nosniff } }, "http" : { - "requestsTotal" : 33464, + "requestsTotal" : 33466, "requestsSuperuser" : 0, - "requestsUser" : 33464, + "requestsUser" : 33466, "requestsAsync" : 0, - "requestsGet" : 1104, + "requestsGet" : 1106, "requestsHead" : 0, "requestsPost" : 32202, "requestsPut" : 32, @@ -243,14 +243,14 @@ x-content-type-options: nosniff "requestsOther" : 0 }, "server" : { - "uptime" : 19.10637092590332, - "physicalMemory" : 67512832000, + "uptime" : 7.077113151550293, + "physicalMemory" : 73638330368, "transactions" : { - "started" : 32549, + "started" : 32547, "aborted" : 255, - "committed" : 33519, + "committed" : 33518, "intermediateCommits" : 0, - "readOnly" : 1320, + "readOnly" : 1321, "dirtyReadOnly" : 0 }, "v8Context" : { @@ -263,17 +263,17 @@ x-content-type-options: nosniff "memory" : [ { "contextId" : 0, - "tMax" : 1665058509.8471878, + "tMax" : 1666270578.1663172, "countOfTimes" : 8, - "heapMax" : 14913672, + "heapMax" : 14948904, "heapMin" : 0, - "invocations" : 29 + "invocations" : 17 }, { "contextId" : 1, - "tMax" : 1665058527.4147437, + "tMax" : 1666270583.4940984, "countOfTimes" : 8, - "heapMax" : 14888768, + "heapMax" : 14854816, "heapMin" : 0, "invocations" : 3 } diff --git a/3.10/generated/Examples/RestAdminStatus_cluster.generated b/3.10/generated/Examples/RestAdminStatus_cluster.generated index 56b44b504f..c7fabe00f1 100644 --- a/3.10/generated/Examples/RestAdminStatus_cluster.generated +++ b/3.10/generated/Examples/RestAdminStatus_cluster.generated @@ -4,7 +4,7 @@ HTTP/1.1 200 O content-type: application/json cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0, max-age=0, s-maxage=0 connection: Keep-Alive -content-length: 714 +content-length: 749 content-security-policy: frame-ancestors 'self'; form-action 'self'; expires: 0 pragma: no-cache @@ -16,13 +16,13 @@ x-content-type-options: nosniff { "server" : "arango", "version" : "3.10.1", - "pid" : 1100, + "pid" : 1176, "license" : "enterprise", "mode" : "server", "operationMode" : "server", "foxxApi" : true, - "host" : "hw06-linux", - "hostname" : "8c7a8f96467f", + "host" : "EC2 (AWS X86) - AWS X86 (i-076e17d1abd8a6620)", + "hostname" : "d93c15b63b5b", "serverInfo" : { "progress" : { "phase" : "in wait", @@ -33,22 +33,22 @@ x-content-type-options: nosniff "role" : "COORDINATOR", "writeOpsEnabled" : true, "readOnly" : false, - "persistedId" : "CRDN-3a47a8a0-e00d-4392-a0b3-15bb2c401f19", + "persistedId" : "CRDN-ca731c68-dcff-4e53-9435-ec3c2f29961a", "rebootId" : 1, - "address" : "tcp://127.0.0.1:21810", - "serverId" : "CRDN-3a47a8a0-e00d-4392-a0b3-15bb2c401f19", + "address" : "tcp://127.0.0.1:29312", + "serverId" : "CRDN-ca731c68-dcff-4e53-9435-ec3c2f29961a", "state" : "SERVING" }, "coordinator" : { - "foxxmaster" : "CRDN-3a47a8a0-e00d-4392-a0b3-15bb2c401f19", + "foxxmaster" : "CRDN-ca731c68-dcff-4e53-9435-ec3c2f29961a", "isFoxxmaster" : true }, "agency" : { "agencyComm" : { "endpoints" : [ - "tcp://127.0.0.1:15451", - "tcp://127.0.0.1:32511", - "tcp://127.0.0.1:10970" + "tcp://127.0.0.1:18328", + "tcp://127.0.0.1:27669", + "tcp://127.0.0.1:23934" ] } } diff --git a/3.10/generated/Examples/RestAdminSupportInfo.generated b/3.10/generated/Examples/RestAdminSupportInfo.generated index 88203bc38b..14b29f0b75 100644 --- a/3.10/generated/Examples/RestAdminSupportInfo.generated +++ b/3.10/generated/Examples/RestAdminSupportInfo.generated @@ -4,7 +4,7 @@ HTTP/1.1 200 O content-type: application/json cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0, max-age=0, s-maxage=0 connection: Keep-Alive -content-length: 1091 +content-length: 1131 content-security-policy: frame-ancestors 'self'; form-action 'self'; expires: 0 pragma: no-cache @@ -22,41 +22,41 @@ x-content-type-options: nosniff "maintenance" : false, "readOnly" : false, "version" : "3.10.1", - "build" : "heads/3.10-0-g68e90338f1a", + "build" : "heads/documentation-3.10/api-fixes-2022-10-06-0-g541bf018164", "license" : "enterprise", - "os" : "Linux version 4.15.0-176-generic (buildd@lcy02-amd64-020) (gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04)) #185-Ubuntu SMP Tue Mar 29 17:40:04 UTC 2022", + "os" : "Linux version 5.13.0-1031-aws (buildd@lcy02-amd64-083) (gcc (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0, GNU ld (GNU Binutils for Ubuntu) 2.34) #35~20.04.1-Ubuntu SMP Mon Jun 13 22:30:30 UTC 2022", "platform" : "linux", "physicalMemory" : { - "value" : 67512832000, + "value" : 73638330368, "overridden" : false }, "numberOfCores" : { - "value" : 32, + "value" : 36, "overridden" : false }, "processStats" : { - "processUptime" : 19.19079041481018, - "numberOfThreads" : 82, - "virtualSize" : 1582379008, - "residentSetSize" : 324370432 + "processUptime" : 7.1054675579071045, + "numberOfThreads" : 88, + "virtualSize" : 1624485888, + "residentSetSize" : 324718592 }, "cpuStats" : { - "userPercent" : 6.291390728476821, - "systemPercent" : 0.33112582781456956, - "idlePercent" : 91.72185430463576, - "iowaitPercent" : 1.6556291390728477 + "userPercent" : 6.140350877192983, + "systemPercent" : 0, + "idlePercent" : 93.85964912280701, + "iowaitPercent" : 0 }, "engineStats" : { - "cache.limit" : 16341337088, + "cache.limit" : 17872711680, "cache.allocated" : 1355016, - "rocksdb.estimate-num-keys" : 16, - "rocksdb.estimate-live-data-size" : 44839, - "rocksdb.live-sst-files-size" : 44839, - "rocksdb.block-cache-capacity" : 19609604505, - "rocksdb.block-cache-usage" : 95104, - "rocksdb.free-disk-space" : 366926336000, - "rocksdb.total-disk-space" : 491180957696 + "rocksdb.estimate-num-keys" : 61, + "rocksdb.estimate-live-data-size" : 480857, + "rocksdb.live-sst-files-size" : 480857, + "rocksdb.block-cache-capacity" : 21447254016, + "rocksdb.block-cache-usage" : 95520, + "rocksdb.free-disk-space" : 214265397248, + "rocksdb.total-disk-space" : 266402316288 } }, - "date" : "2022-10-06T12:15:28Z" + "date" : "2022-10-20T12:56:24Z" } diff --git a/3.10/generated/Examples/RestAdminSupportInfo_cluster.generated b/3.10/generated/Examples/RestAdminSupportInfo_cluster.generated index e7488e8ea8..5f4f79bd54 100644 --- a/3.10/generated/Examples/RestAdminSupportInfo_cluster.generated +++ b/3.10/generated/Examples/RestAdminSupportInfo_cluster.generated @@ -4,7 +4,7 @@ HTTP/1.1 200 O content-type: application/json cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0, max-age=0, s-maxage=0 connection: Keep-Alive -content-length: 3397 +content-length: 3619 content-security-policy: frame-ancestors 'self'; form-action 'self'; expires: 0 pragma: no-cache @@ -17,125 +17,125 @@ x-content-type-options: nosniff "deployment" : { "type" : "cluster", "servers" : { - "CRDN-3a47a8a0-e00d-4392-a0b3-15bb2c401f19" : { - "id" : "CRDN-3a47a8a0-e00d-4392-a0b3-15bb2c401f19", + "CRDN-ca731c68-dcff-4e53-9435-ec3c2f29961a" : { + "id" : "CRDN-ca731c68-dcff-4e53-9435-ec3c2f29961a", "alias" : "Coordinator0001", - "endpoint" : "tcp://127.0.0.1:21810", + "endpoint" : "tcp://127.0.0.1:29312", "role" : "COORDINATOR", "maintenance" : false, "readOnly" : false, "version" : "3.10.1", - "build" : "heads/3.10-0-g68e90338f1a", + "build" : "heads/documentation-3.10/api-fixes-2022-10-06-0-g541bf018164", "license" : "enterprise", - "os" : "Linux version 4.15.0-176-generic (buildd@lcy02-amd64-020) (gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04)) #185-Ubuntu SMP Tue Mar 29 17:40:04 UTC 2022", + "os" : "Linux version 5.13.0-1031-aws (buildd@lcy02-amd64-083) (gcc (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0, GNU ld (GNU Binutils for Ubuntu) 2.34) #35~20.04.1-Ubuntu SMP Mon Jun 13 22:30:30 UTC 2022", "platform" : "linux", "physicalMemory" : { - "value" : 67512832000, + "value" : 73638330368, "overridden" : false }, "numberOfCores" : { - "value" : 32, + "value" : 36, "overridden" : false }, "processStats" : { - "processUptime" : 4.704927682876587, - "numberOfThreads" : 48, - "virtualSize" : 826695680, - "residentSetSize" : 113291264 + "processUptime" : 4.274533033370972, + "numberOfThreads" : 49, + "virtualSize" : 837525504, + "residentSetSize" : 114757632 }, "cpuStats" : { - "userPercent" : 9.51931054866513, - "systemPercent" : 1.157253941191876, - "idlePercent" : 89.03362194791349, - "iowaitPercent" : 0.2530423985678967 + "userPercent" : 4.8813031829969855, + "systemPercent" : 1.8827707422452333, + "idlePercent" : 93.11835306438631, + "iowaitPercent" : 0.11204412213073738 } }, - "PRMR-58a57c03-b2e0-4fdc-ac2a-89ae492a04a6" : { - "id" : "PRMR-58a57c03-b2e0-4fdc-ac2a-89ae492a04a6", + "PRMR-b5fca4b9-c73c-47eb-8737-742e452ec646" : { + "id" : "PRMR-b5fca4b9-c73c-47eb-8737-742e452ec646", "alias" : "DBServer0002", - "endpoint" : "tcp://127.0.0.1:2652", + "endpoint" : "tcp://127.0.0.1:14370", "role" : "PRIMARY", "maintenance" : false, "readOnly" : false, "version" : "3.10.1", - "build" : "heads/3.10-0-g68e90338f1a", + "build" : "heads/documentation-3.10/api-fixes-2022-10-06-0-g541bf018164", "license" : "enterprise", - "os" : "Linux version 4.15.0-176-generic (buildd@lcy02-amd64-020) (gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04)) #185-Ubuntu SMP Tue Mar 29 17:40:04 UTC 2022", + "os" : "Linux version 5.13.0-1031-aws (buildd@lcy02-amd64-083) (gcc (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0, GNU ld (GNU Binutils for Ubuntu) 2.34) #35~20.04.1-Ubuntu SMP Mon Jun 13 22:30:30 UTC 2022", "platform" : "linux", "physicalMemory" : { - "value" : 67512832000, + "value" : 73638330368, "overridden" : false }, "numberOfCores" : { - "value" : 32, + "value" : 36, "overridden" : false }, "processStats" : { - "processUptime" : 5.213405132293701, - "numberOfThreads" : 92, - "virtualSize" : 1215836160, - "residentSetSize" : 163262464 + "processUptime" : 4.776827573776245, + "numberOfThreads" : 99, + "virtualSize" : 1278930944, + "residentSetSize" : 162926592 }, "cpuStats" : { - "userPercent" : 9.51931052042279, - "systemPercent" : 1.1572539970954245, - "idlePercent" : 89.03362192111211, - "iowaitPercent" : 0.25304239781715854 + "userPercent" : 4.881302791863977, + "systemPercent" : 1.8827705913810568, + "idlePercent" : 93.11835361580448, + "iowaitPercent" : 0.11204411315277535 }, "engineStats" : { - "cache.limit" : 16341337088, + "cache.limit" : 17872711680, "cache.allocated" : 1090824, - "rocksdb.estimate-num-keys" : 73, + "rocksdb.estimate-num-keys" : 51, "rocksdb.estimate-live-data-size" : 0, "rocksdb.live-sst-files-size" : 0, - "rocksdb.block-cache-capacity" : 19609604505, + "rocksdb.block-cache-capacity" : 21447254016, "rocksdb.block-cache-usage" : 96, - "rocksdb.free-disk-space" : 366882709504, - "rocksdb.total-disk-space" : 491180957696 + "rocksdb.free-disk-space" : 214219579392, + "rocksdb.total-disk-space" : 266402316288 } }, - "PRMR-82c10d32-2fd9-44c9-bd5b-2acc10b61bbf" : { - "id" : "PRMR-82c10d32-2fd9-44c9-bd5b-2acc10b61bbf", + "PRMR-fda83a79-3e2f-44a4-8c8f-f6f7697b07ab" : { + "id" : "PRMR-fda83a79-3e2f-44a4-8c8f-f6f7697b07ab", "alias" : "DBServer0001", - "endpoint" : "tcp://127.0.0.1:21404", + "endpoint" : "tcp://127.0.0.1:26716", "role" : "PRIMARY", "maintenance" : false, "readOnly" : false, "version" : "3.10.1", - "build" : "heads/3.10-0-g68e90338f1a", + "build" : "heads/documentation-3.10/api-fixes-2022-10-06-0-g541bf018164", "license" : "enterprise", - "os" : "Linux version 4.15.0-176-generic (buildd@lcy02-amd64-020) (gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04)) #185-Ubuntu SMP Tue Mar 29 17:40:04 UTC 2022", + "os" : "Linux version 5.13.0-1031-aws (buildd@lcy02-amd64-083) (gcc (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0, GNU ld (GNU Binutils for Ubuntu) 2.34) #35~20.04.1-Ubuntu SMP Mon Jun 13 22:30:30 UTC 2022", "platform" : "linux", "physicalMemory" : { - "value" : 67512832000, + "value" : 73638330368, "overridden" : false }, "numberOfCores" : { - "value" : 32, + "value" : 36, "overridden" : false }, "processStats" : { - "processUptime" : 5.713097333908081, - "numberOfThreads" : 91, - "virtualSize" : 1236267008, - "residentSetSize" : 168677376 + "processUptime" : 5.276963949203491, + "numberOfThreads" : 98, + "virtualSize" : 1301458944, + "residentSetSize" : 168361984 }, "cpuStats" : { - "userPercent" : 9.519310526071258, - "systemPercent" : 1.1572539977821037, - "idlePercent" : 89.03362191460499, - "iowaitPercent" : 0.25304239796730615 + "userPercent" : 4.881302791863977, + "systemPercent" : 1.8827705913810568, + "idlePercent" : 93.11835361580448, + "iowaitPercent" : 0.11204411315277535 }, "engineStats" : { - "cache.limit" : 16341337088, + "cache.limit" : 17872711680, "cache.allocated" : 1090824, - "rocksdb.estimate-num-keys" : 48, + "rocksdb.estimate-num-keys" : 51, "rocksdb.estimate-live-data-size" : 0, "rocksdb.live-sst-files-size" : 0, - "rocksdb.block-cache-capacity" : 19609604505, + "rocksdb.block-cache-capacity" : 21447254016, "rocksdb.block-cache-usage" : 96, - "rocksdb.free-disk-space" : 366882709504, - "rocksdb.total-disk-space" : 491180957696 + "rocksdb.free-disk-space" : 214219579392, + "rocksdb.total-disk-space" : 266402316288 } } }, @@ -152,5 +152,5 @@ x-content-type-options: nosniff "servers" : 2 } }, - "date" : "2022-10-06T12:16:38Z" + "date" : "2022-10-20T12:57:22Z" } diff --git a/3.10/generated/Examples/RestAnalyzersGet.generated b/3.10/generated/Examples/RestAnalyzersGet.generated index eb4cbae1cc..b9029efdf8 100644 --- a/3.10/generated/Examples/RestAnalyzersGet.generated +++ b/3.10/generated/Examples/RestAnalyzersGet.generated @@ -18,10 +18,10 @@ x-content-type-options: nosniff "code" : 200, "result" : [ { - "name" : "text_sv", + "name" : "text_pt", "type" : "text", "properties" : { - "locale" : "sv", + "locale" : "pt", "case" : "lower", "stopwords" : [ ], "accent" : false, @@ -34,10 +34,10 @@ x-content-type-options: nosniff ] }, { - "name" : "text_pt", + "name" : "text_no", "type" : "text", "properties" : { - "locale" : "pt", + "locale" : "no", "case" : "lower", "stopwords" : [ ], "accent" : false, @@ -50,10 +50,10 @@ x-content-type-options: nosniff ] }, { - "name" : "text_no", + "name" : "text_it", "type" : "text", "properties" : { - "locale" : "no", + "locale" : "it", "case" : "lower", "stopwords" : [ ], "accent" : false, @@ -66,10 +66,10 @@ x-content-type-options: nosniff ] }, { - "name" : "text_nl", + "name" : "text_es", "type" : "text", "properties" : { - "locale" : "nl", + "locale" : "es", "case" : "lower", "stopwords" : [ ], "accent" : false, @@ -82,10 +82,10 @@ x-content-type-options: nosniff ] }, { - "name" : "text_it", + "name" : "text_sv", "type" : "text", "properties" : { - "locale" : "it", + "locale" : "sv", "case" : "lower", "stopwords" : [ ], "accent" : false, @@ -98,10 +98,10 @@ x-content-type-options: nosniff ] }, { - "name" : "text_fr", + "name" : "text_en", "type" : "text", "properties" : { - "locale" : "fr", + "locale" : "en", "case" : "lower", "stopwords" : [ ], "accent" : false, @@ -130,10 +130,10 @@ x-content-type-options: nosniff ] }, { - "name" : "text_fi", + "name" : "text_nl", "type" : "text", "properties" : { - "locale" : "fi", + "locale" : "nl", "case" : "lower", "stopwords" : [ ], "accent" : false, @@ -146,10 +146,10 @@ x-content-type-options: nosniff ] }, { - "name" : "text_ru", + "name" : "text_fr", "type" : "text", "properties" : { - "locale" : "ru", + "locale" : "fr", "case" : "lower", "stopwords" : [ ], "accent" : false, @@ -162,10 +162,10 @@ x-content-type-options: nosniff ] }, { - "name" : "text_es", + "name" : "text_de", "type" : "text", "properties" : { - "locale" : "es", + "locale" : "de", "case" : "lower", "stopwords" : [ ], "accent" : false, @@ -178,10 +178,10 @@ x-content-type-options: nosniff ] }, { - "name" : "text_en", + "name" : "text_ru", "type" : "text", "properties" : { - "locale" : "en", + "locale" : "ru", "case" : "lower", "stopwords" : [ ], "accent" : false, @@ -194,10 +194,10 @@ x-content-type-options: nosniff ] }, { - "name" : "text_de", + "name" : "text_fi", "type" : "text", "properties" : { - "locale" : "de", + "locale" : "fi", "case" : "lower", "stopwords" : [ ], "accent" : false, diff --git a/3.10/generated/Examples/RestApiCollectionCompact.generated b/3.10/generated/Examples/RestApiCollectionCompact.generated index b74fcedf26..00f899504d 100644 --- a/3.10/generated/Examples/RestApiCollectionCompact.generated +++ b/3.10/generated/Examples/RestApiCollectionCompact.generated @@ -21,6 +21,6 @@ x-content-type-options: nosniff "type" : 2, "name" : "testCollection", "isSystem" : false, - "id" : "67713", - "globallyUniqueId" : "h42EADA9ADBF8/67713" + "id" : "67710", + "globallyUniqueId" : "h1A2DF6A6A405/67710" } diff --git a/3.10/generated/Examples/RestBackupCreateBackup.generated b/3.10/generated/Examples/RestBackupCreateBackup.generated index a6a84d3e9e..0f8c909e2d 100644 --- a/3.10/generated/Examples/RestBackupCreateBackup.generated +++ b/3.10/generated/Examples/RestBackupCreateBackup.generated @@ -21,10 +21,10 @@ x-content-type-options: nosniff "error" : false, "code" : 201, "result" : { - "id" : "2022-10-06T12.15.28Z_foo", + "id" : "2022-10-20T12.56.24Z_foo", "potentiallyInconsistent" : false, - "sizeInBytes" : 72686, - "datetime" : "2022-10-06T12:15:28Z", + "sizeInBytes" : 68875, + "datetime" : "2022-10-20T12:56:24Z", "nrDBServers" : 1, "nrFiles" : 21 } diff --git a/3.10/generated/Examples/RestBackupDeleteBackup.generated b/3.10/generated/Examples/RestBackupDeleteBackup.generated index e04f97fa37..5364802068 100644 --- a/3.10/generated/Examples/RestBackupDeleteBackup.generated +++ b/3.10/generated/Examples/RestBackupDeleteBackup.generated @@ -1,6 +1,6 @@ shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/delete <<EOF { - "id" : "2022-10-06T12.15.28Z_a55f2942-5a3a-4459-a0fe-d678a6fed7a0" + "id" : "2022-10-20T12.56.24Z_efbb3f8b-8c57-4a2b-a9ae-a30404cb2d8a" } EOF diff --git a/3.10/generated/Examples/RestBackupDownloadBackup.generated b/3.10/generated/Examples/RestBackupDownloadBackup.generated index 2dbbbe9061..812ca87201 100644 --- a/3.10/generated/Examples/RestBackupDownloadBackup.generated +++ b/3.10/generated/Examples/RestBackupDownloadBackup.generated @@ -1,6 +1,6 @@ shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/download <<EOF { - "id" : "2022-10-06T12.15.28Z_b7a9977a-35cd-4994-bb22-3b7ae5c2f36b", + "id" : "2022-10-20T12.56.24Z_5ab15954-8ecf-4a3a-adc8-cec60ec56d4e", "remoteRepository" : "local://tmp/backups", "config" : { "local" : { @@ -27,6 +27,6 @@ x-content-type-options: nosniff "error" : false, "code" : 202, "result" : { - "downloadId" : "67742" + "downloadId" : "67739" } } diff --git a/3.10/generated/Examples/RestBackupDownloadBackupStarted.generated b/3.10/generated/Examples/RestBackupDownloadBackupStarted.generated index a1afdc0fa5..a5bb6ea44a 100644 --- a/3.10/generated/Examples/RestBackupDownloadBackupStarted.generated +++ b/3.10/generated/Examples/RestBackupDownloadBackupStarted.generated @@ -1,6 +1,6 @@ shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/download <<EOF { - "downloadId" : "67749" + "downloadId" : "67746" } EOF @@ -21,10 +21,10 @@ x-content-type-options: nosniff "error" : false, "code" : 200, "result" : { - "Timestamp" : "2022-10-06T12:16:00Z", - "DownloadId" : "67749", + "Timestamp" : "2022-10-20T12:56:55Z", + "DownloadId" : "67746", "Cancelled" : false, - "BackupId" : "2022-10-06T12.15.44Z_28c8815f-cb89-4790-9ca5-5dd118123fbd", + "BackupId" : "2022-10-20T12.56.40Z_b3f2436a-9647-46d2-991e-471214cafe2e", "DBServers" : { "SNGL" : { "Status" : "STARTED" diff --git a/3.10/generated/Examples/RestBackupListBackup.generated b/3.10/generated/Examples/RestBackupListBackup.generated index 8707907580..752eed966c 100644 --- a/3.10/generated/Examples/RestBackupListBackup.generated +++ b/3.10/generated/Examples/RestBackupListBackup.generated @@ -20,27 +20,27 @@ x-content-type-options: nosniff "error" : false, "code" : 200, "result" : { - "server" : "SNGL-cd6b92eb-bc9e-4ca0-a026-0d386618914a", + "server" : "SNGL-7b50d29e-dfa7-4f12-a883-26b229a03a46", "list" : { - "2022-10-06T12.15.28Z_foo" : { - "id" : "2022-10-06T12.15.28Z_foo", + "2022-10-20T12.56.55Z_464b5031-3514-4946-a1b5-28079ffd1621" : { + "id" : "2022-10-20T12.56.55Z_464b5031-3514-4946-a1b5-28079ffd1621", "version" : "3.10.1", - "datetime" : "2022-10-06T12:15:28Z", + "datetime" : "2022-10-20T12:56:55Z", "keys" : [ ], - "sizeInBytes" : 72686, - "nrFiles" : 21, + "sizeInBytes" : 84642, + "nrFiles" : 23, "nrDBServers" : 1, "available" : true, "nrPiecesPresent" : 1, "potentiallyInconsistent" : false, "countIncludesFilesOnly" : true }, - "2022-10-06T12.16.00Z_f0db58f3-bd60-42ff-8df6-29393c2704d7" : { - "id" : "2022-10-06T12.16.00Z_f0db58f3-bd60-42ff-8df6-29393c2704d7", + "2022-10-20T12.56.55Z_de0ced98-50f5-4b7f-b7a4-5e48a98b09c8" : { + "id" : "2022-10-20T12.56.55Z_de0ced98-50f5-4b7f-b7a4-5e48a98b09c8", "version" : "3.10.1", - "datetime" : "2022-10-06T12:16:00Z", + "datetime" : "2022-10-20T12:56:55Z", "keys" : [ ], - "sizeInBytes" : 84893, + "sizeInBytes" : 81299, "nrFiles" : 21, "nrDBServers" : 1, "available" : true, @@ -48,12 +48,12 @@ x-content-type-options: nosniff "potentiallyInconsistent" : false, "countIncludesFilesOnly" : true }, - "2022-10-06T12.16.00Z_e9aa70e7-9bfa-4594-93fa-351013cc48ad" : { - "id" : "2022-10-06T12.16.00Z_e9aa70e7-9bfa-4594-93fa-351013cc48ad", + "2022-10-20T12.56.24Z_foo" : { + "id" : "2022-10-20T12.56.24Z_foo", "version" : "3.10.1", - "datetime" : "2022-10-06T12:16:00Z", + "datetime" : "2022-10-20T12:56:24Z", "keys" : [ ], - "sizeInBytes" : 87100, + "sizeInBytes" : 68875, "nrFiles" : 21, "nrDBServers" : 1, "available" : true, diff --git a/3.10/generated/Examples/RestBackupRestoreBackup.generated b/3.10/generated/Examples/RestBackupRestoreBackup.generated index 16b67007ab..184608c5ba 100644 --- a/3.10/generated/Examples/RestBackupRestoreBackup.generated +++ b/3.10/generated/Examples/RestBackupRestoreBackup.generated @@ -1,6 +1,6 @@ shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/restore <<EOF { - "id" : "2022-10-06T12.16.00Z_03e0f6ea-482d-42c1-a634-e0308ce5aa45" + "id" : "2022-10-20T12.56.55Z_9adddd92-57ca-4f46-816c-662a085f8d49" } EOF @@ -21,6 +21,6 @@ x-content-type-options: nosniff "error" : false, "code" : 200, "result" : { - "previous" : "/tmp/arangosh_LKmPPJ/rocksdb-clusterOrNot/single_0/data/backups/DIRECTORY_TO_DELETE" + "previous" : "/tmp/arangosh_APNGjA/rocksdb-clusterOrNot/single_0/data/backups/DIRECTORY_TO_DELETE" } } diff --git a/3.10/generated/Examples/RestBackupUploadBackup.generated b/3.10/generated/Examples/RestBackupUploadBackup.generated index 0051db2e0a..f5aff35777 100644 --- a/3.10/generated/Examples/RestBackupUploadBackup.generated +++ b/3.10/generated/Examples/RestBackupUploadBackup.generated @@ -1,6 +1,6 @@ shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/upload <<EOF { - "id" : "2022-10-06T12.16.03Z_42dfc566-7720-4915-98f2-f6e061ebd6c4", + "id" : "2022-10-20T12.56.58Z_158c6e19-ba3e-4d0b-818c-bd0365e96140", "remoteRepository" : "local://tmp/backups", "config" : { "local" : { @@ -27,6 +27,6 @@ x-content-type-options: nosniff "error" : false, "code" : 202, "result" : { - "uploadId" : "67777" + "uploadId" : "67770" } } diff --git a/3.10/generated/Examples/RestBackupUploadBackupStarted.generated b/3.10/generated/Examples/RestBackupUploadBackupStarted.generated index b002d7a056..1aec0dfb13 100644 --- a/3.10/generated/Examples/RestBackupUploadBackupStarted.generated +++ b/3.10/generated/Examples/RestBackupUploadBackupStarted.generated @@ -1,6 +1,6 @@ shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_admin/backup/upload <<EOF { - "uploadId" : "67779" + "uploadId" : "67772" } EOF @@ -21,10 +21,10 @@ x-content-type-options: nosniff "error" : false, "code" : 200, "result" : { - "Timestamp" : "2022-10-06T12:16:03Z", - "UploadId" : "67779", + "Timestamp" : "2022-10-20T12:56:58Z", + "UploadId" : "67772", "Cancelled" : false, - "BackupId" : "2022-10-06T12.16.03Z_096496de-89b9-4c40-bc1b-45b4dc2e34ce", + "BackupId" : "2022-10-20T12.56.58Z_b3f9107d-52a9-4c77-8a47-20b3c2ac6e52", "DBServers" : { "SNGL" : { "Status" : "STARTED" diff --git a/3.10/generated/Examples/RestBatchMultipartHeader.generated b/3.10/generated/Examples/RestBatchMultipartHeader.generated index 4b96d3f3eb..41b4a74984 100644 --- a/3.10/generated/Examples/RestBatchMultipartHeader.generated +++ b/3.10/generated/Examples/RestBatchMultipartHeader.generated @@ -101,8 +101,8 @@ Content-Length: 446 "cacheEnabled" : false, "isSystem" : false, "internalValidatorType" : 0, - "globallyUniqueId" : "h42EADA9ADBF8/67783", - "id" : "67783", + "globallyUniqueId" : "h1A2DF6A6A405/67776", + "id" : "67776", "isSmartChild" : false, "schema" : null, "keyOptions" : { @@ -112,7 +112,7 @@ Content-Length: 446 }, "name" : "products", "computedValues" : null, - "objectId" : "67782", + "objectId" : "67775", "type" : 2, "status" : 3, "statusString" : "loaded" @@ -153,10 +153,10 @@ Content-Length: 565 "cacheSize" : 0, "cacheUsage" : 0 }, - "id" : "67783", + "id" : "67776", "isSmartChild" : false, "schema" : null, - "globallyUniqueId" : "h42EADA9ADBF8/67783", + "globallyUniqueId" : "h1A2DF6A6A405/67776", "keyOptions" : { "allowUserKeys" : true, "type" : "traditional", @@ -164,7 +164,7 @@ Content-Length: 565 }, "name" : "products", "computedValues" : null, - "objectId" : "67782" + "objectId" : "67775" }↩ --SomeBoundaryValue @@ -180,7 +180,7 @@ Content-Length: 39 { "error" : false, "code" : 200, - "id" : "67783" + "id" : "67776" }↩ --SomeBoundaryValue-- diff --git a/3.10/generated/Examples/RestCollectionCreateCollection.generated b/3.10/generated/Examples/RestCollectionCreateCollection.generated index 92c8fe1954..e12109a83e 100644 --- a/3.10/generated/Examples/RestCollectionCreateCollection.generated +++ b/3.10/generated/Examples/RestCollectionCreateCollection.generated @@ -27,8 +27,8 @@ x-content-type-options: nosniff "cacheEnabled" : false, "isSystem" : false, "internalValidatorType" : 0, - "globallyUniqueId" : "h42EADA9ADBF8/67791", - "id" : "67791", + "globallyUniqueId" : "h1A2DF6A6A405/67784", + "id" : "67784", "isSmartChild" : false, "schema" : null, "keyOptions" : { @@ -38,7 +38,7 @@ x-content-type-options: nosniff }, "name" : "testCollectionBasics", "computedValues" : null, - "objectId" : "67790", + "objectId" : "67783", "type" : 2, "status" : 3, "statusString" : "loaded" @@ -73,8 +73,8 @@ x-content-type-options: nosniff "cacheEnabled" : false, "isSystem" : false, "internalValidatorType" : 0, - "globallyUniqueId" : "h42EADA9ADBF8/67796", - "id" : "67796", + "globallyUniqueId" : "h1A2DF6A6A405/67789", + "id" : "67789", "isSmartChild" : false, "schema" : null, "keyOptions" : { @@ -84,7 +84,7 @@ x-content-type-options: nosniff }, "name" : "testCollectionEdges", "computedValues" : null, - "objectId" : "67795", + "objectId" : "67788", "type" : 3, "status" : 3, "statusString" : "loaded" diff --git a/3.10/generated/Examples/RestCollectionCreateKeyopt.generated b/3.10/generated/Examples/RestCollectionCreateKeyopt.generated index 108c0dfdbc..4f0f6a1725 100644 --- a/3.10/generated/Examples/RestCollectionCreateKeyopt.generated +++ b/3.10/generated/Examples/RestCollectionCreateKeyopt.generated @@ -32,8 +32,8 @@ x-content-type-options: nosniff "cacheEnabled" : false, "isSystem" : false, "internalValidatorType" : 0, - "globallyUniqueId" : "h42EADA9ADBF8/67806", - "id" : "67806", + "globallyUniqueId" : "h1A2DF6A6A405/67799", + "id" : "67799", "isSmartChild" : false, "schema" : null, "keyOptions" : { @@ -45,7 +45,7 @@ x-content-type-options: nosniff }, "name" : "testCollectionUsers", "computedValues" : null, - "objectId" : "67805", + "objectId" : "67798", "type" : 2, "status" : 3, "statusString" : "loaded" diff --git a/3.10/generated/Examples/RestCollectionDeleteCollectionIdentifier.generated b/3.10/generated/Examples/RestCollectionDeleteCollectionIdentifier.generated index cefebbd037..f2aea49af3 100644 --- a/3.10/generated/Examples/RestCollectionDeleteCollectionIdentifier.generated +++ b/3.10/generated/Examples/RestCollectionDeleteCollectionIdentifier.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/67813 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/67806 HTTP/1.1 200 OK content-type: application/json @@ -16,5 +16,5 @@ x-content-type-options: nosniff { "error" : false, "code" : 200, - "id" : "67813" + "id" : "67806" } diff --git a/3.10/generated/Examples/RestCollectionDeleteCollectionName.generated b/3.10/generated/Examples/RestCollectionDeleteCollectionName.generated index bf1e620590..fb0c81e5a7 100644 --- a/3.10/generated/Examples/RestCollectionDeleteCollectionName.generated +++ b/3.10/generated/Examples/RestCollectionDeleteCollectionName.generated @@ -16,5 +16,5 @@ x-content-type-options: nosniff { "error" : false, "code" : 200, - "id" : "67820" + "id" : "67813" } diff --git a/3.10/generated/Examples/RestCollectionDeleteCollectionSystem.generated b/3.10/generated/Examples/RestCollectionDeleteCollectionSystem.generated index a6196a6a77..d2aece0db8 100644 --- a/3.10/generated/Examples/RestCollectionDeleteCollectionSystem.generated +++ b/3.10/generated/Examples/RestCollectionDeleteCollectionSystem.generated @@ -16,5 +16,5 @@ x-content-type-options: nosniff { "error" : false, "code" : 200, - "id" : "67827" + "id" : "67820" } diff --git a/3.10/generated/Examples/RestCollectionGetAllCollections.generated b/3.10/generated/Examples/RestCollectionGetAllCollections.generated index 76268e18be..e6c493e026 100644 --- a/3.10/generated/Examples/RestCollectionGetAllCollections.generated +++ b/3.10/generated/Examples/RestCollectionGetAllCollections.generated @@ -4,7 +4,7 @@ HTTP/1.1 200 O content-type: application/json cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0, max-age=0, s-maxage=0 connection: Keep-Alive -content-length: 1424 +content-length: 1422 content-security-policy: frame-ancestors 'self'; form-action 'self'; expires: 0 pragma: no-cache @@ -18,36 +18,28 @@ x-content-type-options: nosniff "code" : 200, "result" : [ { - "id" : "28", - "name" : "_jobs", + "id" : "13", + "name" : "_statistics15", "status" : 3, "type" : 2, "isSystem" : true, - "globallyUniqueId" : "_jobs" + "globallyUniqueId" : "_statistics15" }, { - "id" : "22", - "name" : "_aqlfunctions", + "id" : "37", + "name" : "_frontend", "status" : 3, "type" : 2, "isSystem" : true, - "globallyUniqueId" : "_aqlfunctions" - }, - { - "id" : "95", - "name" : "demo", - "status" : 3, - "type" : 2, - "isSystem" : false, - "globallyUniqueId" : "h42EADA9ADBF8/95" + "globallyUniqueId" : "_frontend" }, { - "id" : "34", - "name" : "_appbundles", + "id" : "10", + "name" : "_statistics", "status" : 3, "type" : 2, "isSystem" : true, - "globallyUniqueId" : "_appbundles" + "globallyUniqueId" : "_statistics" }, { "id" : "4", @@ -58,44 +50,52 @@ x-content-type-options: nosniff "globallyUniqueId" : "_users" }, { - "id" : "101", + "id" : "91", + "name" : "demo", + "status" : 3, + "type" : 2, + "isSystem" : false, + "globallyUniqueId" : "h1A2DF6A6A405/91" + }, + { + "id" : "97", "name" : "animals", "status" : 3, "type" : 2, "isSystem" : false, - "globallyUniqueId" : "h42EADA9ADBF8/101" + "globallyUniqueId" : "h1A2DF6A6A405/97" }, { - "id" : "16", - "name" : "_statisticsRaw", + "id" : "34", + "name" : "_appbundles", "status" : 3, "type" : 2, "isSystem" : true, - "globallyUniqueId" : "_statisticsRaw" + "globallyUniqueId" : "_appbundles" }, { - "id" : "10", - "name" : "_statistics", + "id" : "28", + "name" : "_jobs", "status" : 3, "type" : 2, "isSystem" : true, - "globallyUniqueId" : "_statistics" + "globallyUniqueId" : "_jobs" }, { - "id" : "31", - "name" : "_apps", + "id" : "22", + "name" : "_aqlfunctions", "status" : 3, "type" : 2, "isSystem" : true, - "globallyUniqueId" : "_apps" + "globallyUniqueId" : "_aqlfunctions" }, { - "id" : "25", - "name" : "_queues", + "id" : "16", + "name" : "_statisticsRaw", "status" : 3, "type" : 2, "isSystem" : true, - "globallyUniqueId" : "_queues" + "globallyUniqueId" : "_statisticsRaw" }, { "id" : "7", @@ -106,28 +106,28 @@ x-content-type-options: nosniff "globallyUniqueId" : "_graphs" }, { - "id" : "37", - "name" : "_frontend", + "id" : "31", + "name" : "_apps", "status" : 3, "type" : 2, "isSystem" : true, - "globallyUniqueId" : "_frontend" + "globallyUniqueId" : "_apps" }, { - "id" : "19", - "name" : "_analyzers", + "id" : "25", + "name" : "_queues", "status" : 3, "type" : 2, "isSystem" : true, - "globallyUniqueId" : "_analyzers" + "globallyUniqueId" : "_queues" }, { - "id" : "13", - "name" : "_statistics15", + "id" : "19", + "name" : "_analyzers", "status" : 3, "type" : 2, "isSystem" : true, - "globallyUniqueId" : "_statistics15" + "globallyUniqueId" : "_analyzers" } ] } diff --git a/3.10/generated/Examples/RestCollectionGetCollectionChecksum.generated b/3.10/generated/Examples/RestCollectionGetCollectionChecksum.generated index d9c207b94c..c9cae977a4 100644 --- a/3.10/generated/Examples/RestCollectionGetCollectionChecksum.generated +++ b/3.10/generated/Examples/RestCollectionGetCollectionChecksum.generated @@ -21,8 +21,8 @@ x-content-type-options: nosniff "status" : 3, "type" : 2, "name" : "products", - "id" : "67834", - "revision" : "_e4y3X7q---", - "globallyUniqueId" : "h42EADA9ADBF8/67834", - "checksum" : "12064474249643401335" + "id" : "67827", + "revision" : "_e9T13AK--_", + "globallyUniqueId" : "h1A2DF6A6A405/67827", + "checksum" : "17463683130709569797" } diff --git a/3.10/generated/Examples/RestCollectionGetCollectionChecksumNoRev.generated b/3.10/generated/Examples/RestCollectionGetCollectionChecksumNoRev.generated index c8f2371e0e..586edeb7f4 100644 --- a/3.10/generated/Examples/RestCollectionGetCollectionChecksumNoRev.generated +++ b/3.10/generated/Examples/RestCollectionGetCollectionChecksumNoRev.generated @@ -21,8 +21,8 @@ x-content-type-options: nosniff "status" : 3, "type" : 2, "name" : "products", - "id" : "67844", - "revision" : "_e4y3X8a---", - "globallyUniqueId" : "h42EADA9ADBF8/67844", - "checksum" : "15367361632135977179" + "id" : "67837", + "revision" : "_e9T13Aa--_", + "globallyUniqueId" : "h1A2DF6A6A405/67837", + "checksum" : "13388401266423273094" } diff --git a/3.10/generated/Examples/RestCollectionGetCollectionCount.generated b/3.10/generated/Examples/RestCollectionGetCollectionCount.generated index 2c2cf2f876..f27f6bca1e 100644 --- a/3.10/generated/Examples/RestCollectionGetCollectionCount.generated +++ b/3.10/generated/Examples/RestCollectionGetCollectionCount.generated @@ -26,18 +26,18 @@ x-content-type-options: nosniff "internalValidatorType" : 0, "cacheEnabled" : false, "count" : 100, - "globallyUniqueId" : "h42EADA9ADBF8/67854", - "id" : "67854", + "globallyUniqueId" : "h1A2DF6A6A405/67847", + "id" : "67847", "isSmartChild" : false, "schema" : null, "keyOptions" : { "allowUserKeys" : true, "type" : "traditional", - "lastValue" : 68061 + "lastValue" : 68050 }, "name" : "products", "computedValues" : null, - "objectId" : "67853", + "objectId" : "67846", "type" : 2, "status" : 3 } diff --git a/3.10/generated/Examples/RestCollectionGetCollectionFigures.generated b/3.10/generated/Examples/RestCollectionGetCollectionFigures.generated index a3bd9c15f5..5b8b3bd420 100644 --- a/3.10/generated/Examples/RestCollectionGetCollectionFigures.generated +++ b/3.10/generated/Examples/RestCollectionGetCollectionFigures.generated @@ -33,21 +33,21 @@ x-content-type-options: nosniff "count" : 1, "size" : 31 }, - "documentsSize" : 89, + "documentsSize" : 84, "cacheInUse" : false, "cacheSize" : 0, "cacheUsage" : 0 }, - "id" : "68066", + "id" : "68055", "isSmartChild" : false, "schema" : null, - "globallyUniqueId" : "h42EADA9ADBF8/68066", + "globallyUniqueId" : "h1A2DF6A6A405/68055", "keyOptions" : { "allowUserKeys" : true, "type" : "traditional", - "lastValue" : 68071 + "lastValue" : 68060 }, "name" : "products", "computedValues" : null, - "objectId" : "68065" + "objectId" : "68054" } diff --git a/3.10/generated/Examples/RestCollectionGetCollectionFiguresDetails.generated b/3.10/generated/Examples/RestCollectionGetCollectionFiguresDetails.generated index f0b35bca7e..83b6b76431 100644 --- a/3.10/generated/Examples/RestCollectionGetCollectionFiguresDetails.generated +++ b/3.10/generated/Examples/RestCollectionGetCollectionFiguresDetails.generated @@ -33,7 +33,7 @@ x-content-type-options: nosniff "count" : 1, "size" : 31 }, - "documentsSize" : 92, + "documentsSize" : 87, "cacheInUse" : false, "cacheSize" : 0, "cacheUsage" : 0, @@ -48,16 +48,16 @@ x-content-type-options: nosniff ] } }, - "id" : "68076", + "id" : "68065", "isSmartChild" : false, "schema" : null, - "globallyUniqueId" : "h42EADA9ADBF8/68076", + "globallyUniqueId" : "h1A2DF6A6A405/68065", "keyOptions" : { "allowUserKeys" : true, "type" : "traditional", - "lastValue" : 68081 + "lastValue" : 68070 }, "name" : "products", "computedValues" : null, - "objectId" : "68075" + "objectId" : "68064" } diff --git a/3.10/generated/Examples/RestCollectionGetCollectionIdentifier.generated b/3.10/generated/Examples/RestCollectionGetCollectionIdentifier.generated index c131359907..644033ff68 100644 --- a/3.10/generated/Examples/RestCollectionGetCollectionIdentifier.generated +++ b/3.10/generated/Examples/RestCollectionGetCollectionIdentifier.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/68086/properties +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/collection/68075/properties HTTP/1.1 200 OK content-type: application/json @@ -7,7 +7,7 @@ connection: Keep-Alive content-length: 445 content-security-policy: frame-ancestors 'self'; form-action 'self'; expires: 0 -location: /_db/_system/_api/collection/68086/properties +location: /_db/_system/_api/collection/68075/properties pragma: no-cache server: ArangoDB strict-transport-security: max-age=31536000 ; includeSubDomains @@ -24,8 +24,8 @@ x-content-type-options: nosniff "cacheEnabled" : false, "isSystem" : false, "internalValidatorType" : 0, - "globallyUniqueId" : "h42EADA9ADBF8/68086", - "id" : "68086", + "globallyUniqueId" : "h1A2DF6A6A405/68075", + "id" : "68075", "isSmartChild" : false, "schema" : null, "keyOptions" : { @@ -35,7 +35,7 @@ x-content-type-options: nosniff }, "name" : "products", "computedValues" : null, - "objectId" : "68085", + "objectId" : "68074", "type" : 2, "status" : 3, "statusString" : "loaded" diff --git a/3.10/generated/Examples/RestCollectionGetCollectionName.generated b/3.10/generated/Examples/RestCollectionGetCollectionName.generated index 664a729ce0..6406548c6c 100644 --- a/3.10/generated/Examples/RestCollectionGetCollectionName.generated +++ b/3.10/generated/Examples/RestCollectionGetCollectionName.generated @@ -24,8 +24,8 @@ x-content-type-options: nosniff "cacheEnabled" : false, "isSystem" : false, "internalValidatorType" : 0, - "globallyUniqueId" : "h42EADA9ADBF8/68094", - "id" : "68094", + "globallyUniqueId" : "h1A2DF6A6A405/68083", + "id" : "68083", "isSmartChild" : false, "schema" : null, "keyOptions" : { @@ -35,7 +35,7 @@ x-content-type-options: nosniff }, "name" : "products", "computedValues" : null, - "objectId" : "68093", + "objectId" : "68082", "type" : 2, "status" : 3, "statusString" : "loaded" diff --git a/3.10/generated/Examples/RestCollectionGetCollectionRevision.generated b/3.10/generated/Examples/RestCollectionGetCollectionRevision.generated index f329fcd76a..6debcf5dd0 100644 --- a/3.10/generated/Examples/RestCollectionGetCollectionRevision.generated +++ b/3.10/generated/Examples/RestCollectionGetCollectionRevision.generated @@ -24,17 +24,17 @@ x-content-type-options: nosniff "statusString" : "loaded", "schema" : null, "revision" : "54", - "id" : "68102", + "id" : "68091", "isSmartChild" : false, "name" : "products", "type" : 2, "status" : 3, "cacheEnabled" : false, "isSystem" : false, - "objectId" : "68101", + "objectId" : "68090", "computedValues" : null, "internalValidatorType" : 0, - "globallyUniqueId" : "h42EADA9ADBF8/68102", + "globallyUniqueId" : "h1A2DF6A6A405/68091", "keyOptions" : { "allowUserKeys" : true, "type" : "traditional", diff --git a/3.10/generated/Examples/RestCollectionIdentifierLoad.generated b/3.10/generated/Examples/RestCollectionIdentifierLoad.generated index 2f3107e6ea..276591b45c 100644 --- a/3.10/generated/Examples/RestCollectionIdentifierLoad.generated +++ b/3.10/generated/Examples/RestCollectionIdentifierLoad.generated @@ -21,7 +21,7 @@ x-content-type-options: nosniff "type" : 2, "name" : "products", "isSystem" : false, - "id" : "68110", - "globallyUniqueId" : "h42EADA9ADBF8/68110", + "id" : "68099", + "globallyUniqueId" : "h1A2DF6A6A405/68099", "count" : 0 } diff --git a/3.10/generated/Examples/RestCollectionIdentifierPropertiesSync.generated b/3.10/generated/Examples/RestCollectionIdentifierPropertiesSync.generated index 726fb9d679..8dd2d85d59 100644 --- a/3.10/generated/Examples/RestCollectionIdentifierPropertiesSync.generated +++ b/3.10/generated/Examples/RestCollectionIdentifierPropertiesSync.generated @@ -28,8 +28,8 @@ x-content-type-options: nosniff "cacheEnabled" : false, "isSystem" : false, "internalValidatorType" : 0, - "globallyUniqueId" : "h42EADA9ADBF8/68126", - "id" : "68126", + "globallyUniqueId" : "h1A2DF6A6A405/68115", + "id" : "68115", "isSmartChild" : false, "schema" : null, "keyOptions" : { @@ -39,7 +39,7 @@ x-content-type-options: nosniff }, "name" : "products", "computedValues" : null, - "objectId" : "68125", + "objectId" : "68114", "type" : 2, "status" : 3, "statusString" : "loaded" diff --git a/3.10/generated/Examples/RestCollectionIdentifierRename.generated b/3.10/generated/Examples/RestCollectionIdentifierRename.generated index a476836077..59e76ee86c 100644 --- a/3.10/generated/Examples/RestCollectionIdentifierRename.generated +++ b/3.10/generated/Examples/RestCollectionIdentifierRename.generated @@ -25,6 +25,6 @@ x-content-type-options: nosniff "type" : 2, "name" : "newname", "isSystem" : false, - "id" : "68135", - "globallyUniqueId" : "h42EADA9ADBF8/68135" + "id" : "68124", + "globallyUniqueId" : "h1A2DF6A6A405/68124" } diff --git a/3.10/generated/Examples/RestCollectionIdentifierTruncate.generated b/3.10/generated/Examples/RestCollectionIdentifierTruncate.generated index 26347025d4..fa3e1006a6 100644 --- a/3.10/generated/Examples/RestCollectionIdentifierTruncate.generated +++ b/3.10/generated/Examples/RestCollectionIdentifierTruncate.generated @@ -21,6 +21,6 @@ x-content-type-options: nosniff "type" : 2, "name" : "products", "isSystem" : false, - "id" : "68144", - "globallyUniqueId" : "h42EADA9ADBF8/68144" + "id" : "68133", + "globallyUniqueId" : "h1A2DF6A6A405/68133" } diff --git a/3.10/generated/Examples/RestCollectionIdentifierUnload.generated b/3.10/generated/Examples/RestCollectionIdentifierUnload.generated index fea030502e..6854f5fed2 100644 --- a/3.10/generated/Examples/RestCollectionIdentifierUnload.generated +++ b/3.10/generated/Examples/RestCollectionIdentifierUnload.generated @@ -21,6 +21,6 @@ x-content-type-options: nosniff "type" : 2, "name" : "products", "isSystem" : false, - "id" : "68152", - "globallyUniqueId" : "h42EADA9ADBF8/68152" + "id" : "68141", + "globallyUniqueId" : "h1A2DF6A6A405/68141" } diff --git a/3.10/generated/Examples/RestCursorCreateCursorForLimitReturn.generated b/3.10/generated/Examples/RestCursorCreateCursorForLimitReturn.generated index 32d877d2b7..48049534c5 100644 --- a/3.10/generated/Examples/RestCursorCreateCursorForLimitReturn.generated +++ b/3.10/generated/Examples/RestCursorCreateCursorForLimitReturn.generated @@ -10,7 +10,7 @@ HTTP/1.1 201 C content-type: application/json cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0, max-age=0, s-maxage=0 connection: Keep-Alive -content-length: 507 +content-length: 508 content-security-policy: frame-ancestors 'self'; form-action 'self'; expires: 0 pragma: no-cache @@ -22,20 +22,20 @@ x-content-type-options: nosniff { "result" : [ { - "_key" : "68168", - "_id" : "products/68168", - "_rev" : "_e4y3Y8i---", + "_key" : "68157", + "_id" : "products/68157", + "_rev" : "_e9T13Wu--_", "hello1" : "world1" }, { - "_key" : "68170", - "_id" : "products/68170", - "_rev" : "_e4y3Y8m---", + "_key" : "68159", + "_id" : "products/68159", + "_rev" : "_e9T13Wy---", "hello2" : "world1" } ], "hasMore" : true, - "id" : "68179", + "id" : "68168", "count" : 5, "extra" : { "warnings" : [ ], @@ -50,7 +50,7 @@ x-content-type-options: nosniff "cacheMisses" : 0, "filtered" : 0, "httpRequests" : 0, - "executionTime" : 0.0002712550340220332, + "executionTime" : 0.00010215399970547878, "peakMemoryUsage" : 0 } }, diff --git a/3.10/generated/Examples/RestCursorCreateCursorForLimitReturnSingle.generated b/3.10/generated/Examples/RestCursorCreateCursorForLimitReturnSingle.generated index de72ec20ec..29d7285df5 100644 --- a/3.10/generated/Examples/RestCursorCreateCursorForLimitReturnSingle.generated +++ b/3.10/generated/Examples/RestCursorCreateCursorForLimitReturnSingle.generated @@ -22,15 +22,15 @@ x-content-type-options: nosniff { "result" : [ { - "_key" : "68188", - "_id" : "products/68188", - "_rev" : "_e4y3Y9q---", + "_key" : "68177", + "_id" : "products/68177", + "_rev" : "_e9T13X---_", "hello1" : "world1" }, { - "_key" : "68190", - "_id" : "products/68190", - "_rev" : "_e4y3Y9u---", + "_key" : "68179", + "_id" : "products/68179", + "_rev" : "_e9T13X---A", "hello2" : "world1" } ], @@ -50,7 +50,7 @@ x-content-type-options: nosniff "cacheMisses" : 0, "filtered" : 0, "httpRequests" : 0, - "executionTime" : 0.0002453919732943177, + "executionTime" : 0.00007163100008256151, "peakMemoryUsage" : 0 } }, diff --git a/3.10/generated/Examples/RestCursorCreateCursorOption.generated b/3.10/generated/Examples/RestCursorCreateCursorOption.generated index 03d220c172..2498decdcb 100644 --- a/3.10/generated/Examples/RestCursorCreateCursorOption.generated +++ b/3.10/generated/Examples/RestCursorCreateCursorOption.generated @@ -51,7 +51,7 @@ x-content-type-options: nosniff "filtered" : 500, "httpRequests" : 0, "fullCount" : 500, - "executionTime" : 0.0007524500833824277, + "executionTime" : 0.0002214040000581008, "peakMemoryUsage" : 32768 } }, diff --git a/3.10/generated/Examples/RestCursorDelete.generated b/3.10/generated/Examples/RestCursorDelete.generated index 92ee1934f7..dff417dc7f 100644 --- a/3.10/generated/Examples/RestCursorDelete.generated +++ b/3.10/generated/Examples/RestCursorDelete.generated @@ -10,7 +10,7 @@ HTTP/1.1 201 C content-type: application/json cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0, max-age=0, s-maxage=0 connection: Keep-Alive -content-length: 508 +content-length: 507 content-security-policy: frame-ancestors 'self'; form-action 'self'; expires: 0 pragma: no-cache @@ -22,20 +22,20 @@ x-content-type-options: nosniff { "result" : [ { - "_key" : "68208", - "_id" : "products/68208", - "_rev" : "_e4y3Z_6---", + "_key" : "68197", + "_id" : "products/68197", + "_rev" : "_e9T13Xi--_", "hello1" : "world1" }, { - "_key" : "68210", - "_id" : "products/68210", - "_rev" : "_e4y3ZA----", + "_key" : "68199", + "_id" : "products/68199", + "_rev" : "_e9T13Xi--A", "hello2" : "world1" } ], "hasMore" : true, - "id" : "68219", + "id" : "68208", "count" : 5, "extra" : { "warnings" : [ ], @@ -50,7 +50,7 @@ x-content-type-options: nosniff "cacheMisses" : 0, "filtered" : 0, "httpRequests" : 0, - "executionTime" : 0.00025955005548894405, + "executionTime" : 0.00007067199976518168, "peakMemoryUsage" : 0 } }, @@ -58,5 +58,5 @@ x-content-type-options: nosniff "error" : false, "code" : 201 } -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor/68219 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor/68208 diff --git a/3.10/generated/Examples/RestCursorDeleteIgnore.generated b/3.10/generated/Examples/RestCursorDeleteIgnore.generated index e3af07fcc9..f5ac4dd0bd 100644 --- a/3.10/generated/Examples/RestCursorDeleteIgnore.generated +++ b/3.10/generated/Examples/RestCursorDeleteIgnore.generated @@ -8,7 +8,7 @@ HTTP/1.1 201 C content-type: application/json cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0, max-age=0, s-maxage=0 connection: Keep-Alive -content-length: 329 +content-length: 328 content-security-policy: frame-ancestors 'self'; form-action 'self'; expires: 0 pragma: no-cache @@ -34,7 +34,7 @@ x-content-type-options: nosniff "cacheMisses" : 0, "filtered" : 0, "httpRequests" : 0, - "executionTime" : 0.00027951598167419434, + "executionTime" : 0.00008832499997879495, "peakMemoryUsage" : 0 } }, diff --git a/3.10/generated/Examples/RestCursorDeleteQuery.generated b/3.10/generated/Examples/RestCursorDeleteQuery.generated index 72a8e1e388..42585374ca 100644 --- a/3.10/generated/Examples/RestCursorDeleteQuery.generated +++ b/3.10/generated/Examples/RestCursorDeleteQuery.generated @@ -34,7 +34,7 @@ x-content-type-options: nosniff "cacheMisses" : 0, "filtered" : 0, "httpRequests" : 0, - "executionTime" : 0.0005635520210489631, + "executionTime" : 0.0001717830000416143, "peakMemoryUsage" : 0 } }, diff --git a/3.10/generated/Examples/RestCursorForLimitReturnCont.generated b/3.10/generated/Examples/RestCursorForLimitReturnCont.generated index c0b3278a9f..6160d36708 100644 --- a/3.10/generated/Examples/RestCursorForLimitReturnCont.generated +++ b/3.10/generated/Examples/RestCursorForLimitReturnCont.generated @@ -6,13 +6,13 @@ } EOF -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor/68272 +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor/68261 HTTP/1.1 200 OK content-type: application/json cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0, max-age=0, s-maxage=0 connection: Keep-Alive -content-length: 506 +content-length: 507 content-security-policy: frame-ancestors 'self'; form-action 'self'; expires: 0 pragma: no-cache @@ -24,20 +24,20 @@ x-content-type-options: nosniff { "result" : [ { - "_key" : "68265", - "_id" : "products/68265", - "_rev" : "_e4y3ZDm--_", + "_key" : "68254", + "_id" : "products/68254", + "_rev" : "_e9T13YS--_", "hello3" : "world1" }, { - "_key" : "68267", - "_id" : "products/68267", - "_rev" : "_e4y3ZDq---", + "_key" : "68256", + "_id" : "products/68256", + "_rev" : "_e9T13YS--A", "hello4" : "world1" } ], "hasMore" : true, - "id" : "68272", + "id" : "68261", "count" : 5, "extra" : { "warnings" : [ ], @@ -52,7 +52,7 @@ x-content-type-options: nosniff "cacheMisses" : 0, "filtered" : 0, "httpRequests" : 0, - "executionTime" : 0.000253192032687366, + "executionTime" : 0.00006767400009266566, "peakMemoryUsage" : 0 } }, diff --git a/3.10/generated/Examples/RestCursorOptimizerRules.generated b/3.10/generated/Examples/RestCursorOptimizerRules.generated index a476d977cc..b33de68f45 100644 --- a/3.10/generated/Examples/RestCursorOptimizerRules.generated +++ b/3.10/generated/Examples/RestCursorOptimizerRules.generated @@ -18,7 +18,7 @@ HTTP/1.1 201 C content-type: application/json cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0, max-age=0, s-maxage=0 connection: Keep-Alive -content-length: 360 +content-length: 359 content-security-policy: frame-ancestors 'self'; form-action 'self'; expires: 0 pragma: no-cache @@ -56,7 +56,7 @@ x-content-type-options: nosniff "cacheMisses" : 0, "filtered" : 0, "httpRequests" : 0, - "executionTime" : 0.00020916794892400503, + "executionTime" : 0.00007734700011496898, "peakMemoryUsage" : 0 } }, diff --git a/3.10/generated/Examples/RestCursorPostForLimitReturnCont.generated b/3.10/generated/Examples/RestCursorPostForLimitReturnCont.generated index aad87b4d72..d0ca077a25 100644 --- a/3.10/generated/Examples/RestCursorPostForLimitReturnCont.generated +++ b/3.10/generated/Examples/RestCursorPostForLimitReturnCont.generated @@ -6,7 +6,7 @@ } EOF -shell> curl -X POST --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor/68297 +shell> curl -X POST --header 'accept: application/json' --dump - http://localhost:8529/_api/cursor/68286 HTTP/1.1 200 OK content-type: application/json @@ -24,20 +24,20 @@ x-content-type-options: nosniff { "result" : [ { - "_key" : "68290", - "_id" : "products/68290", - "_rev" : "_e4y3ZG---_", + "_key" : "68279", + "_id" : "products/68279", + "_rev" : "_e9T13Y2---", "hello3" : "world1" }, { - "_key" : "68292", - "_id" : "products/68292", - "_rev" : "_e4y3ZGC---", + "_key" : "68281", + "_id" : "products/68281", + "_rev" : "_e9T13Y2--_", "hello4" : "world1" } ], "hasMore" : true, - "id" : "68297", + "id" : "68286", "count" : 5, "extra" : { "warnings" : [ ], @@ -52,7 +52,7 @@ x-content-type-options: nosniff "cacheMisses" : 0, "filtered" : 0, "httpRequests" : 0, - "executionTime" : 0.0002196519635617733, + "executionTime" : 0.00007431199992424808, "peakMemoryUsage" : 0 } }, diff --git a/3.10/generated/Examples/RestCursorProfileQuery.generated b/3.10/generated/Examples/RestCursorProfileQuery.generated index b38dd5f0f0..e9a2ea1a4a 100644 --- a/3.10/generated/Examples/RestCursorProfileQuery.generated +++ b/3.10/generated/Examples/RestCursorProfileQuery.generated @@ -12,7 +12,7 @@ HTTP/1.1 201 C content-type: application/json cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0, max-age=0, s-maxage=0 connection: Keep-Alive -content-length: 2928 +content-length: 2926 content-security-policy: frame-ancestors 'self'; form-action 'self'; expires: 0 pragma: no-cache @@ -41,7 +41,7 @@ x-content-type-options: nosniff "cacheMisses" : 0, "filtered" : 0, "httpRequests" : 0, - "executionTime" : 0.7587378389434889, + "executionTime" : 0.7600827960000061, "peakMemoryUsage" : 0, "nodes" : [ { @@ -49,35 +49,35 @@ x-content-type-options: nosniff "calls" : 1, "items" : 1, "filtered" : 0, - "runtime" : 0.000006900052540004253 + "runtime" : 0.0000023610000425833277 }, { "id" : 2, "calls" : 1, "items" : 1, "filtered" : 0, - "runtime" : 0.2527701830258593 + "runtime" : 0.2530756249998376 }, { "id" : 3, "calls" : 1, "items" : 1, "filtered" : 0, - "runtime" : 0.7584121309919283 + "runtime" : 0.7599495939998633 }, { "id" : 4, "calls" : 1, "items" : 1, "filtered" : 0, - "runtime" : 0.000011277035810053349 + "runtime" : 0.000003747999926417833 }, { "id" : 5, "calls" : 1, "items" : 1, "filtered" : 0, - "runtime" : 0.7584211430512369 + "runtime" : 0.7599578170002133 } ] }, @@ -237,14 +237,14 @@ x-content-type-options: nosniff "isModificationQuery" : false }, "profile" : { - "initializing" : 0.0000022170133888721466, - "parsing" : 0.000044095912016928196, - "optimizing ast" : 0.000008177012205123901, - "loading collections" : 0.000004900037311017513, - "instantiating plan" : 0.00001864996738731861, - "optimizing plan" : 0.0002018919913098216, - "executing" : 0.7584382770583034, - "finalizing" : 0.000043647014535963535 + "initializing" : 5.740002961829305e-7, + "parsing" : 0.000015404999885504367, + "optimizing ast" : 0.000002460999894537963, + "loading collections" : 6.120003490650561e-7, + "instantiating plan" : 0.00000674499960950925, + "optimizing plan" : 0.00006680400019831723, + "executing" : 0.7599741200001517, + "finalizing" : 0.000043879999793716706 } }, "error" : false, diff --git a/3.10/generated/Examples/RestDocumentHandlerDeleteDocument.generated b/3.10/generated/Examples/RestDocumentHandlerDeleteDocument.generated index ac9fedf504..8c482329f0 100644 --- a/3.10/generated/Examples/RestDocumentHandlerDeleteDocument.generated +++ b/3.10/generated/Examples/RestDocumentHandlerDeleteDocument.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/68440 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/68429 HTTP/1.1 200 OK content-type: application/json @@ -6,9 +6,9 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=60 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: "_e4y3aAm---" +etag: "_e9T14NG--_" expires: 0 -location: /_db/_system/_api/document/products/68440 +location: /_db/_system/_api/document/products/68429 pragma: no-cache server: ArangoDB strict-transport-security: max-age=31536000 ; includeSubDomains @@ -16,7 +16,7 @@ x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff { - "_id" : "products/68440", - "_key" : "68440", - "_rev" : "_e4y3aAm---" + "_id" : "products/68429", + "_key" : "68429", + "_rev" : "_e9T14NG--_" } diff --git a/3.10/generated/Examples/RestDocumentHandlerDeleteDocumentIdentifierMulti.generated b/3.10/generated/Examples/RestDocumentHandlerDeleteDocumentIdentifierMulti.generated index 0f146a1206..0051ab19c0 100644 --- a/3.10/generated/Examples/RestDocumentHandlerDeleteDocumentIdentifierMulti.generated +++ b/3.10/generated/Examples/RestDocumentHandlerDeleteDocumentIdentifierMulti.generated @@ -22,11 +22,11 @@ x-content-type-options: nosniff { "_id" : "products/1", "_key" : "1", - "_rev" : "_e4y3aCi---" + "_rev" : "_e9T14N2--_" }, { "_id" : "products/2", "_key" : "2", - "_rev" : "_e4y3aCi--_" + "_rev" : "_e9T14N2--A" } ] diff --git a/3.10/generated/Examples/RestDocumentHandlerDeleteDocumentIfMatchOther.generated b/3.10/generated/Examples/RestDocumentHandlerDeleteDocumentIfMatchOther.generated index 7afacb5cbe..7b445acfb7 100644 --- a/3.10/generated/Examples/RestDocumentHandlerDeleteDocumentIfMatchOther.generated +++ b/3.10/generated/Examples/RestDocumentHandlerDeleteDocumentIfMatchOther.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'If-Match: "_e4y3aE---_"' --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/68459 +shell> curl -X DELETE --header 'If-Match: "_e9T14Oa--_"' --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/68448 HTTP/1.1 412 Precondition Failed content-type: application/json @@ -6,7 +6,7 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=152 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: "_e4y3aE----" +etag: "_e9T14Oa---" expires: 0 pragma: no-cache server: ArangoDB @@ -19,7 +19,7 @@ x-content-type-options: nosniff "code" : 412, "errorNum" : 1200, "errorMessage" : "conflict, _rev values do not match", - "_id" : "products/68459", - "_key" : "68459", - "_rev" : "_e4y3aE----" + "_id" : "products/68448", + "_key" : "68448", + "_rev" : "_e9T14Oa---" } diff --git a/3.10/generated/Examples/RestDocumentHandlerDeleteDocumentKeyMulti.generated b/3.10/generated/Examples/RestDocumentHandlerDeleteDocumentKeyMulti.generated index 92ce4d509c..e39d26136a 100644 --- a/3.10/generated/Examples/RestDocumentHandlerDeleteDocumentKeyMulti.generated +++ b/3.10/generated/Examples/RestDocumentHandlerDeleteDocumentKeyMulti.generated @@ -22,11 +22,11 @@ x-content-type-options: nosniff { "_id" : "products/1", "_key" : "1", - "_rev" : "_e4y3aE2---" + "_rev" : "_e9T14Oi--_" }, { "_id" : "products/2", "_key" : "2", - "_rev" : "_e4y3aE2--_" + "_rev" : "_e9T14Oi--A" } ] diff --git a/3.10/generated/Examples/RestDocumentHandlerDeleteDocumentObjectMulti.generated b/3.10/generated/Examples/RestDocumentHandlerDeleteDocumentObjectMulti.generated index aa1efe1a9b..27ec4f4105 100644 --- a/3.10/generated/Examples/RestDocumentHandlerDeleteDocumentObjectMulti.generated +++ b/3.10/generated/Examples/RestDocumentHandlerDeleteDocumentObjectMulti.generated @@ -26,11 +26,11 @@ x-content-type-options: nosniff { "_id" : "products/1", "_key" : "1", - "_rev" : "_e4y3aGO---" + "_rev" : "_e9T14PG--_" }, { "_id" : "products/2", "_key" : "2", - "_rev" : "_e4y3aGO--_" + "_rev" : "_e9T14PG--A" } ] diff --git a/3.10/generated/Examples/RestDocumentHandlerDeleteDocumentRevMulti.generated b/3.10/generated/Examples/RestDocumentHandlerDeleteDocumentRevMulti.generated index 1876d29748..17a16149bd 100644 --- a/3.10/generated/Examples/RestDocumentHandlerDeleteDocumentRevMulti.generated +++ b/3.10/generated/Examples/RestDocumentHandlerDeleteDocumentRevMulti.generated @@ -2,11 +2,11 @@ [ { "_key" : "1", - "_rev" : "_e4y3aIi---" + "_rev" : "_e9T14P6--_" }, { "_key" : "2", - "_rev" : "_e4y3aIi--_" + "_rev" : "_e9T14P6--A" } ] EOF @@ -28,11 +28,11 @@ x-content-type-options: nosniff { "_id" : "products/1", "_key" : "1", - "_rev" : "_e4y3aIi---" + "_rev" : "_e9T14P6--_" }, { "_id" : "products/2", "_key" : "2", - "_rev" : "_e4y3aIi--_" + "_rev" : "_e9T14P6--A" } ] diff --git a/3.10/generated/Examples/RestDocumentHandlerDeleteDocumentUnknownHandle.generated b/3.10/generated/Examples/RestDocumentHandlerDeleteDocumentUnknownHandle.generated index eab9c00750..9426d61ab4 100644 --- a/3.10/generated/Examples/RestDocumentHandlerDeleteDocumentUnknownHandle.generated +++ b/3.10/generated/Examples/RestDocumentHandlerDeleteDocumentUnknownHandle.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/68508 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/68497 HTTP/1.1 404 Not Found content-type: application/json diff --git a/3.10/generated/Examples/RestDocumentHandlerPatchDocument.generated b/3.10/generated/Examples/RestDocumentHandlerPatchDocument.generated index 755460f0fd..8702867386 100644 --- a/3.10/generated/Examples/RestDocumentHandlerPatchDocument.generated +++ b/3.10/generated/Examples/RestDocumentHandlerPatchDocument.generated @@ -1,4 +1,4 @@ -shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/68536 <<EOF +shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/68525 <<EOF { "hello" : "world" } @@ -10,9 +10,9 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=84 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: "_e4y3aNq---" +etag: "_e9T14Rq--A" expires: 0 -location: /_db/_system/_api/document/products/68536 +location: /_db/_system/_api/document/products/68525 pragma: no-cache server: ArangoDB strict-transport-security: max-age=31536000 ; includeSubDomains @@ -20,12 +20,12 @@ x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff { - "_id" : "products/68536", - "_key" : "68536", - "_rev" : "_e4y3aNq---", - "_oldRev" : "_e4y3aNm---" + "_id" : "products/68525", + "_key" : "68525", + "_rev" : "_e9T14Rq--A", + "_oldRev" : "_e9T14Rq--_" } -shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/68536 <<EOF +shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/68525 <<EOF { "numbers" : { "one" : 1, @@ -42,9 +42,9 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=84 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: "_e4y3aOK---" +etag: "_e9T14Ru---" expires: 0 -location: /_db/_system/_api/document/products/68536 +location: /_db/_system/_api/document/products/68525 pragma: no-cache server: ArangoDB strict-transport-security: max-age=31536000 ; includeSubDomains @@ -52,12 +52,12 @@ x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff { - "_id" : "products/68536", - "_key" : "68536", - "_rev" : "_e4y3aOK---", - "_oldRev" : "_e4y3aNq---" + "_id" : "products/68525", + "_key" : "68525", + "_rev" : "_e9T14Ru---", + "_oldRev" : "_e9T14Rq--A" } -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/68536 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/68525 HTTP/1.1 200 OK content-type: application/json @@ -65,7 +65,7 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=141 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: "_e4y3aOK---" +etag: "_e9T14Ru---" expires: 0 pragma: no-cache server: ArangoDB @@ -74,9 +74,9 @@ x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff { - "_key" : "68536", - "_id" : "products/68536", - "_rev" : "_e4y3aOK---", + "_key" : "68525", + "_id" : "products/68525", + "_rev" : "_e9T14Ru---", "one" : "world", "hello" : "world", "numbers" : { @@ -86,7 +86,7 @@ x-content-type-options: nosniff "empty" : null } } -shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/68536?keepNull=false <<EOF +shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/68525?keepNull=false <<EOF { "hello" : null, "numbers" : { @@ -101,9 +101,9 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=84 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: "_e4y3aOy---" +etag: "_e9T14R2---" expires: 0 -location: /_db/_system/_api/document/products/68536 +location: /_db/_system/_api/document/products/68525 pragma: no-cache server: ArangoDB strict-transport-security: max-age=31536000 ; includeSubDomains @@ -111,12 +111,12 @@ x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff { - "_id" : "products/68536", - "_key" : "68536", - "_rev" : "_e4y3aOy---", - "_oldRev" : "_e4y3aOK---" + "_id" : "products/68525", + "_key" : "68525", + "_rev" : "_e9T14R2---", + "_oldRev" : "_e9T14Ru---" } -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/68536 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/68525 HTTP/1.1 200 OK content-type: application/json @@ -124,7 +124,7 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=134 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: "_e4y3aOy---" +etag: "_e9T14R2---" expires: 0 pragma: no-cache server: ArangoDB @@ -133,9 +133,9 @@ x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff { - "_key" : "68536", - "_id" : "products/68536", - "_rev" : "_e4y3aOy---", + "_key" : "68525", + "_id" : "products/68525", + "_rev" : "_e9T14R2---", "one" : "world", "numbers" : { "empty" : null, diff --git a/3.10/generated/Examples/RestDocumentHandlerPatchDocumentMerge.generated b/3.10/generated/Examples/RestDocumentHandlerPatchDocumentMerge.generated index b7ac050564..e48826f76a 100644 --- a/3.10/generated/Examples/RestDocumentHandlerPatchDocumentMerge.generated +++ b/3.10/generated/Examples/RestDocumentHandlerPatchDocumentMerge.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/68550 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/68539 HTTP/1.1 200 OK content-type: application/json @@ -6,7 +6,7 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=130 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: "_e4y3aPy---" +etag: "_e9T14SC--_" expires: 0 pragma: no-cache server: ArangoDB @@ -15,16 +15,16 @@ x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff { - "_key" : "68550", - "_id" : "products/68550", - "_rev" : "_e4y3aPy---", + "_key" : "68539", + "_id" : "products/68539", + "_rev" : "_e9T14SC--_", "inhabitants" : { "china" : 1366980000, "india" : 1263590000, "usa" : 319220000 } } -shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/68550?mergeObjects=true <<EOF +shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/68539?mergeObjects=true <<EOF { "inhabitants" : { "indonesia" : 252164800, @@ -33,7 +33,7 @@ x-content-type-options: nosniff } EOF -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/68550 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/68539 HTTP/1.1 200 OK content-type: application/json @@ -41,7 +41,7 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=171 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: "_e4y3aQG---" +etag: "_e9T14SG---" expires: 0 pragma: no-cache server: ArangoDB @@ -50,9 +50,9 @@ x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff { - "_key" : "68550", - "_id" : "products/68550", - "_rev" : "_e4y3aQG---", + "_key" : "68539", + "_id" : "products/68539", + "_rev" : "_e9T14SG---", "inhabitants" : { "china" : 1366980000, "india" : 1263590000, @@ -61,7 +61,7 @@ x-content-type-options: nosniff "brazil" : 203553000 } } -shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/68550?mergeObjects=false <<EOF +shell> curl -X PATCH --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/68539?mergeObjects=false <<EOF { "inhabitants" : { "pakistan" : 188346000 @@ -75,9 +75,9 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=84 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: "_e4y3aQi---" +etag: "_e9T14SO---" expires: 0 -location: /_db/_system/_api/document/products/68550 +location: /_db/_system/_api/document/products/68539 pragma: no-cache server: ArangoDB strict-transport-security: max-age=31536000 ; includeSubDomains @@ -85,12 +85,12 @@ x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff { - "_id" : "products/68550", - "_key" : "68550", - "_rev" : "_e4y3aQi---", - "_oldRev" : "_e4y3aQG---" + "_id" : "products/68539", + "_key" : "68539", + "_rev" : "_e9T14SO---", + "_oldRev" : "_e9T14SG---" } -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/68550 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/68539 HTTP/1.1 200 OK content-type: application/json @@ -98,7 +98,7 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=97 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: "_e4y3aQi---" +etag: "_e9T14SO---" expires: 0 pragma: no-cache server: ArangoDB @@ -107,9 +107,9 @@ x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff { - "_key" : "68550", - "_id" : "products/68550", - "_rev" : "_e4y3aQi---", + "_key" : "68539", + "_id" : "products/68539", + "_rev" : "_e9T14SO---", "inhabitants" : { "pakistan" : 188346000 } diff --git a/3.10/generated/Examples/RestDocumentHandlerPostAccept1.generated b/3.10/generated/Examples/RestDocumentHandlerPostAccept1.generated index e23e7a226e..cc0ed44307 100644 --- a/3.10/generated/Examples/RestDocumentHandlerPostAccept1.generated +++ b/3.10/generated/Examples/RestDocumentHandlerPostAccept1.generated @@ -8,9 +8,9 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=60 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: "_e4y3aRW---" +etag: "_e9T14Sa---" expires: 0 -location: /_db/_system/_api/document/products/68564 +location: /_db/_system/_api/document/products/68553 pragma: no-cache server: ArangoDB strict-transport-security: max-age=31536000 ; includeSubDomains @@ -18,7 +18,7 @@ x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff { - "_id" : "products/68564", - "_key" : "68564", - "_rev" : "_e4y3aRW---" + "_id" : "products/68553", + "_key" : "68553", + "_rev" : "_e9T14Sa---" } diff --git a/3.10/generated/Examples/RestDocumentHandlerPostBadJsonMulti.generated b/3.10/generated/Examples/RestDocumentHandlerPostBadJsonMulti.generated index b3d0da6702..b87b22d07d 100644 --- a/3.10/generated/Examples/RestDocumentHandlerPostBadJsonMulti.generated +++ b/3.10/generated/Examples/RestDocumentHandlerPostBadJsonMulti.generated @@ -25,6 +25,6 @@ x-content-type-options: nosniff { "_id" : "products/abc", "_key" : "abc", - "_rev" : "_e4y3aSq---" + "_rev" : "_e9T14Sq--_" } ] diff --git a/3.10/generated/Examples/RestDocumentHandlerPostCreate1.generated b/3.10/generated/Examples/RestDocumentHandlerPostCreate1.generated index a8187d8989..0669f5c1fc 100644 --- a/3.10/generated/Examples/RestDocumentHandlerPostCreate1.generated +++ b/3.10/generated/Examples/RestDocumentHandlerPostCreate1.generated @@ -8,9 +8,9 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=60 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: "_e4y3aTS---" +etag: "_e9T14Sy--_" expires: 0 -location: /_db/_system/_api/document/products/68588 +location: /_db/_system/_api/document/products/68577 pragma: no-cache server: ArangoDB strict-transport-security: max-age=31536000 ; includeSubDomains @@ -18,7 +18,7 @@ x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff { - "_id" : "products/68588", - "_key" : "68588", - "_rev" : "_e4y3aTS---" + "_id" : "products/68577", + "_key" : "68577", + "_rev" : "_e9T14Sy--_" } diff --git a/3.10/generated/Examples/RestDocumentHandlerPostMulti1.generated b/3.10/generated/Examples/RestDocumentHandlerPostMulti1.generated index 8b965009f1..4b374bdd8d 100644 --- a/3.10/generated/Examples/RestDocumentHandlerPostMulti1.generated +++ b/3.10/generated/Examples/RestDocumentHandlerPostMulti1.generated @@ -17,18 +17,18 @@ x-content-type-options: nosniff [ { - "_id" : "products/68597", - "_key" : "68597", - "_rev" : "_e4y3aUO---" + "_id" : "products/68586", + "_key" : "68586", + "_rev" : "_e9T14TK---" }, { - "_id" : "products/68598", - "_key" : "68598", - "_rev" : "_e4y3aUO--_" + "_id" : "products/68587", + "_key" : "68587", + "_rev" : "_e9T14TK--_" }, { - "_id" : "products/68599", - "_key" : "68599", - "_rev" : "_e4y3aUO--A" + "_id" : "products/68588", + "_key" : "68588", + "_rev" : "_e9T14TK--A" } ] diff --git a/3.10/generated/Examples/RestDocumentHandlerPostMulti2.generated b/3.10/generated/Examples/RestDocumentHandlerPostMulti2.generated index c4a1fd2f01..51c4f8743b 100644 --- a/3.10/generated/Examples/RestDocumentHandlerPostMulti2.generated +++ b/3.10/generated/Examples/RestDocumentHandlerPostMulti2.generated @@ -17,35 +17,35 @@ x-content-type-options: nosniff [ { - "_id" : "products/68608", - "_key" : "68608", - "_rev" : "_e4y3aU6---", + "_id" : "products/68597", + "_key" : "68597", + "_rev" : "_e9T14TS---", "new" : { - "_key" : "68608", - "_id" : "products/68608", - "_rev" : "_e4y3aU6---", + "_key" : "68597", + "_id" : "products/68597", + "_rev" : "_e9T14TS---", "Hello" : "Earth" } }, { - "_id" : "products/68609", - "_key" : "68609", - "_rev" : "_e4y3aU6--_", + "_id" : "products/68598", + "_key" : "68598", + "_rev" : "_e9T14TS--_", "new" : { - "_key" : "68609", - "_id" : "products/68609", - "_rev" : "_e4y3aU6--_", + "_key" : "68598", + "_id" : "products/68598", + "_rev" : "_e9T14TS--_", "Hello" : "Venus" } }, { - "_id" : "products/68610", - "_key" : "68610", - "_rev" : "_e4y3aU6--A", + "_id" : "products/68599", + "_key" : "68599", + "_rev" : "_e9T14TS--A", "new" : { - "_key" : "68610", - "_id" : "products/68610", - "_rev" : "_e4y3aU6--A", + "_key" : "68599", + "_id" : "products/68599", + "_rev" : "_e9T14TS--A", "Hello" : "Mars" } } diff --git a/3.10/generated/Examples/RestDocumentHandlerPostOverwrite.generated b/3.10/generated/Examples/RestDocumentHandlerPostOverwrite.generated index 86d0322203..cef67b7f44 100644 --- a/3.10/generated/Examples/RestDocumentHandlerPostOverwrite.generated +++ b/3.10/generated/Examples/RestDocumentHandlerPostOverwrite.generated @@ -8,7 +8,7 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=58 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: "_e4y3aVq---" +etag: "_e9T14Ta--_" expires: 0 location: /_db/_system/_api/document/products/lock pragma: no-cache @@ -20,7 +20,7 @@ x-content-type-options: nosniff { "_id" : "products/lock", "_key" : "lock", - "_rev" : "_e4y3aVq---" + "_rev" : "_e9T14Ta--_" } shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products?overwrite=true <<EOF { "Hello": "Universe", "_key" : "lock" } @@ -32,7 +32,7 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=82 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: "_e4y3aWC---" +etag: "_e9T14Tq---" expires: 0 location: /_db/_system/_api/document/products/lock pragma: no-cache @@ -44,6 +44,6 @@ x-content-type-options: nosniff { "_id" : "products/lock", "_key" : "lock", - "_rev" : "_e4y3aWC---", - "_oldRev" : "_e4y3aVq---" + "_rev" : "_e9T14Tq---", + "_oldRev" : "_e9T14Ta--_" } diff --git a/3.10/generated/Examples/RestDocumentHandlerPostReturnNew.generated b/3.10/generated/Examples/RestDocumentHandlerPostReturnNew.generated index 85dac584a7..8bb38678c8 100644 --- a/3.10/generated/Examples/RestDocumentHandlerPostReturnNew.generated +++ b/3.10/generated/Examples/RestDocumentHandlerPostReturnNew.generated @@ -8,9 +8,9 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=143 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: "_e4y3aX----" +etag: "_e9T14U----" expires: 0 -location: /_db/_system/_api/document/products/68628 +location: /_db/_system/_api/document/products/68617 pragma: no-cache server: ArangoDB strict-transport-security: max-age=31536000 ; includeSubDomains @@ -18,13 +18,13 @@ x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff { - "_id" : "products/68628", - "_key" : "68628", - "_rev" : "_e4y3aX----", + "_id" : "products/68617", + "_key" : "68617", + "_rev" : "_e9T14U----", "new" : { - "_key" : "68628", - "_id" : "products/68628", - "_rev" : "_e4y3aX----", + "_key" : "68617", + "_id" : "products/68617", + "_rev" : "_e9T14U----", "Hello" : "World" } } diff --git a/3.10/generated/Examples/RestDocumentHandlerPostWait1.generated b/3.10/generated/Examples/RestDocumentHandlerPostWait1.generated index 9fa86d8fee..b45e78e1df 100644 --- a/3.10/generated/Examples/RestDocumentHandlerPostWait1.generated +++ b/3.10/generated/Examples/RestDocumentHandlerPostWait1.generated @@ -8,9 +8,9 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=60 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: "_e4y3aYC---" +etag: "_e9T14UK--_" expires: 0 -location: /_db/_system/_api/document/products/68639 +location: /_db/_system/_api/document/products/68628 pragma: no-cache server: ArangoDB strict-transport-security: max-age=31536000 ; includeSubDomains @@ -18,7 +18,7 @@ x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff { - "_id" : "products/68639", - "_key" : "68639", - "_rev" : "_e4y3aYC---" + "_id" : "products/68628", + "_key" : "68628", + "_rev" : "_e9T14UK--_" } diff --git a/3.10/generated/Examples/RestDocumentHandlerReadDocument.generated b/3.10/generated/Examples/RestDocumentHandlerReadDocument.generated index a7e8bc2bd1..0b5011f3d0 100644 --- a/3.10/generated/Examples/RestDocumentHandlerReadDocument.generated +++ b/3.10/generated/Examples/RestDocumentHandlerReadDocument.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/68648 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/68637 HTTP/1.1 200 OK content-type: application/json @@ -6,7 +6,7 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=76 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: "_e4y3aY2---" +etag: "_e9T14Ui---" expires: 0 pragma: no-cache server: ArangoDB @@ -15,8 +15,8 @@ x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff { - "_key" : "68648", - "_id" : "products/68648", - "_rev" : "_e4y3aY2---", + "_key" : "68637", + "_id" : "products/68637", + "_rev" : "_e9T14Ui---", "hello" : "world" } diff --git a/3.10/generated/Examples/RestDocumentHandlerReadDocumentHead.generated b/3.10/generated/Examples/RestDocumentHandlerReadDocumentHead.generated index b81c1d6828..9ef0581802 100644 --- a/3.10/generated/Examples/RestDocumentHandlerReadDocumentHead.generated +++ b/3.10/generated/Examples/RestDocumentHandlerReadDocumentHead.generated @@ -1,2 +1,2 @@ -shell> curl -X HEAD --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/68658 +shell> curl -X HEAD --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/68647 diff --git a/3.10/generated/Examples/RestDocumentHandlerReadDocumentIfNoneMatch.generated b/3.10/generated/Examples/RestDocumentHandlerReadDocumentIfNoneMatch.generated index 952d85883f..5b2dd7cfd0 100644 --- a/3.10/generated/Examples/RestDocumentHandlerReadDocumentIfNoneMatch.generated +++ b/3.10/generated/Examples/RestDocumentHandlerReadDocumentIfNoneMatch.generated @@ -1,2 +1,2 @@ -shell> curl --header 'If-None-Match: "_e4y3aaK---"' --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/68668 +shell> curl --header 'If-None-Match: "_e9T14Uu--_"' --header 'accept: application/json' --dump - http://localhost:8529/_api/document/products/68657 diff --git a/3.10/generated/Examples/RestDocumentHandlerReadMultiDocument.generated b/3.10/generated/Examples/RestDocumentHandlerReadMultiDocument.generated index ee71dc4349..623272f1a6 100644 --- a/3.10/generated/Examples/RestDocumentHandlerReadMultiDocument.generated +++ b/3.10/generated/Examples/RestDocumentHandlerReadMultiDocument.generated @@ -19,13 +19,13 @@ x-content-type-options: nosniff { "_key" : "doc1", "_id" : "products/doc1", - "_rev" : "_e4y3abG---", + "_rev" : "_e9T14U6--_", "hello" : "world" }, { "_key" : "doc2", "_id" : "products/doc2", - "_rev" : "_e4y3abK---", + "_rev" : "_e9T14U6--A", "say" : "hi to mom" } ] diff --git a/3.10/generated/Examples/RestDocumentHandlerUpdateDocument.generated b/3.10/generated/Examples/RestDocumentHandlerUpdateDocument.generated index 1e4e67c584..fdc1091894 100644 --- a/3.10/generated/Examples/RestDocumentHandlerUpdateDocument.generated +++ b/3.10/generated/Examples/RestDocumentHandlerUpdateDocument.generated @@ -1,4 +1,4 @@ -shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/68690 <<EOF +shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/68679 <<EOF {"Hello": "you"} EOF @@ -8,9 +8,9 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=84 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: "_e4y3aby---" +etag: "_e9T14VC--A" expires: 0 -location: /_db/_system/_api/document/products/68690 +location: /_db/_system/_api/document/products/68679 pragma: no-cache server: ArangoDB strict-transport-security: max-age=31536000 ; includeSubDomains @@ -18,8 +18,8 @@ x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff { - "_id" : "products/68690", - "_key" : "68690", - "_rev" : "_e4y3aby---", - "_oldRev" : "_e4y3abu---" + "_id" : "products/68679", + "_key" : "68679", + "_rev" : "_e9T14VC--A", + "_oldRev" : "_e9T14VC--_" } diff --git a/3.10/generated/Examples/RestDocumentHandlerUpdateDocumentIfMatchOther.generated b/3.10/generated/Examples/RestDocumentHandlerUpdateDocumentIfMatchOther.generated index 41f744c927..464f34d414 100644 --- a/3.10/generated/Examples/RestDocumentHandlerUpdateDocumentIfMatchOther.generated +++ b/3.10/generated/Examples/RestDocumentHandlerUpdateDocumentIfMatchOther.generated @@ -1,4 +1,4 @@ -shell> curl -X PUT --header 'If-Match: "_e4y3aca---"' --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/68700 <<EOF +shell> curl -X PUT --header 'If-Match: "_e9T14VK--A"' --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/68689 <<EOF {"other":"content"} EOF @@ -8,7 +8,7 @@ cache-control: no-cache, no-store, must-revalidate, pre-check=152 content-security-policy: frame-ancestors 'self'; form-action 'self'; -etag: "_e4y3acW---" +etag: "_e9T14VK--_" expires: 0 pragma: no-cache server: ArangoDB @@ -21,7 +21,7 @@ x-content-type-options: nosniff "code" : 412, "errorNum" : 1200, "errorMessage" : "conflict, _rev values do not match", - "_id" : "products/68700", - "_key" : "68700", - "_rev" : "_e4y3acW---" + "_id" : "products/68689", + "_key" : "68689", + "_rev" : "_e9T14VK--_" } diff --git a/3.10/generated/Examples/RestDocumentHandlerUpdateDocumentUnknownHandle.generated b/3.10/generated/Examples/RestDocumentHandlerUpdateDocumentUnknownHandle.generated index ae20e5642d..c4d3a31e4e 100644 --- a/3.10/generated/Examples/RestDocumentHandlerUpdateDocumentUnknownHandle.generated +++ b/3.10/generated/Examples/RestDocumentHandlerUpdateDocumentUnknownHandle.generated @@ -1,4 +1,4 @@ -shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/68713 <<EOF +shell> curl -X PUT --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/document/products/68702 <<EOF {} EOF diff --git a/3.10/generated/Examples/RestEdgesReadEdgesAny.generated b/3.10/generated/Examples/RestEdgesReadEdgesAny.generated index dc4dcc5c20..31f9f9696f 100644 --- a/3.10/generated/Examples/RestEdgesReadEdgesAny.generated +++ b/3.10/generated/Examples/RestEdgesReadEdgesAny.generated @@ -20,7 +20,7 @@ x-content-type-options: nosniff "_id" : "edges/5", "_from" : "vertices/1", "_to" : "vertices/3", - "_rev" : "_e4y3ae---_", + "_rev" : "_e9T14Ve--C", "$label" : "v1 -> v3" }, { @@ -28,7 +28,7 @@ x-content-type-options: nosniff "_id" : "edges/6", "_from" : "vertices/2", "_to" : "vertices/1", - "_rev" : "_e4y3aeC---", + "_rev" : "_e9T14Ve--D", "$label" : "v2 -> v1" }, { @@ -36,7 +36,7 @@ x-content-type-options: nosniff "_id" : "edges/7", "_from" : "vertices/4", "_to" : "vertices/1", - "_rev" : "_e4y3aeG---", + "_rev" : "_e9T14Ve--E", "$label" : "v4 -> v1" } ], @@ -53,7 +53,7 @@ x-content-type-options: nosniff "cacheMisses" : 2, "filtered" : 0, "httpRequests" : 0, - "executionTime" : 0.0007122480310499668, + "executionTime" : 0.0002331979999325995, "peakMemoryUsage" : 32768 } } diff --git a/3.10/generated/Examples/RestEdgesReadEdgesIn.generated b/3.10/generated/Examples/RestEdgesReadEdgesIn.generated index 8d4f68e245..88a31923cb 100644 --- a/3.10/generated/Examples/RestEdgesReadEdgesIn.generated +++ b/3.10/generated/Examples/RestEdgesReadEdgesIn.generated @@ -4,7 +4,7 @@ HTTP/1.1 200 O content-type: application/json cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0, max-age=0, s-maxage=0 connection: Keep-Alive -content-length: 491 +content-length: 492 content-security-policy: frame-ancestors 'self'; form-action 'self'; expires: 0 pragma: no-cache @@ -20,7 +20,7 @@ x-content-type-options: nosniff "_id" : "edges/6", "_from" : "vertices/2", "_to" : "vertices/1", - "_rev" : "_e4y3afO--_", + "_rev" : "_e9T14Vu--E", "$label" : "v2 -> v1" }, { @@ -28,7 +28,7 @@ x-content-type-options: nosniff "_id" : "edges/7", "_from" : "vertices/4", "_to" : "vertices/1", - "_rev" : "_e4y3afS---", + "_rev" : "_e9T14Vu--F", "$label" : "v4 -> v1" } ], @@ -45,7 +45,7 @@ x-content-type-options: nosniff "cacheMisses" : 1, "filtered" : 0, "httpRequests" : 0, - "executionTime" : 0.0003222560044378042, + "executionTime" : 0.00011869500031025382, "peakMemoryUsage" : 0 } } diff --git a/3.10/generated/Examples/RestEdgesReadEdgesOut.generated b/3.10/generated/Examples/RestEdgesReadEdgesOut.generated index a760773f92..c7b832394a 100644 --- a/3.10/generated/Examples/RestEdgesReadEdgesOut.generated +++ b/3.10/generated/Examples/RestEdgesReadEdgesOut.generated @@ -20,7 +20,7 @@ x-content-type-options: nosniff "_id" : "edges/5", "_from" : "vertices/1", "_to" : "vertices/3", - "_rev" : "_e4y3agS---", + "_rev" : "_e9T14W---E", "$label" : "v1 -> v3" } ], @@ -37,7 +37,7 @@ x-content-type-options: nosniff "cacheMisses" : 1, "filtered" : 0, "httpRequests" : 0, - "executionTime" : 0.00025858497247099876, + "executionTime" : 0.00010403400028735632, "peakMemoryUsage" : 0 } } diff --git a/3.10/generated/Examples/RestEndpointGet.generated b/3.10/generated/Examples/RestEndpointGet.generated index df871c588d..6388027a03 100644 --- a/3.10/generated/Examples/RestEndpointGet.generated +++ b/3.10/generated/Examples/RestEndpointGet.generated @@ -15,6 +15,6 @@ x-content-type-options: nosniff [ { - "endpoint" : "http://127.0.0.1:13726" + "endpoint" : "http://127.0.0.1:16336" } ] diff --git a/3.10/generated/Examples/RestExplainAllPlans.generated b/3.10/generated/Examples/RestExplainAllPlans.generated index ef52df86e6..9908bda9f6 100644 --- a/3.10/generated/Examples/RestExplainAllPlans.generated +++ b/3.10/generated/Examples/RestExplainAllPlans.generated @@ -61,9 +61,9 @@ x-content-type-options: nosniff "indexCoversProjections" : false, "indexes" : [ { - "id" : "68798", + "id" : "68787", "type" : "persistent", - "name" : "idx_1745940451656990720", + "name" : "idx_1747211381676965889", "fields" : [ "id" ], diff --git a/3.10/generated/Examples/RestExplainOptimizerRules.generated b/3.10/generated/Examples/RestExplainOptimizerRules.generated index 355e994552..ea16c0185c 100644 --- a/3.10/generated/Examples/RestExplainOptimizerRules.generated +++ b/3.10/generated/Examples/RestExplainOptimizerRules.generated @@ -59,9 +59,9 @@ x-content-type-options: nosniff "indexCoversProjections" : false, "indexes" : [ { - "id" : "68829", + "id" : "68818", "type" : "persistent", - "name" : "idx_1745940451702079488", + "name" : "idx_1747211381689548801", "fields" : [ "id" ], diff --git a/3.10/generated/Examples/RestExplainOptions.generated b/3.10/generated/Examples/RestExplainOptions.generated index b11947c67f..521cb9ea11 100644 --- a/3.10/generated/Examples/RestExplainOptions.generated +++ b/3.10/generated/Examples/RestExplainOptions.generated @@ -69,9 +69,9 @@ x-content-type-options: nosniff "indexCoversProjections" : false, "indexes" : [ { - "id" : "68862", + "id" : "68851", "type" : "persistent", - "name" : "idx_1745940451734585344", + "name" : "idx_1747211381701083137", "fields" : [ "id" ], diff --git a/3.10/generated/Examples/RestFetchUserDatabaseListFull.generated b/3.10/generated/Examples/RestFetchUserDatabaseListFull.generated index 021efb89c0..8d566be12d 100644 --- a/3.10/generated/Examples/RestFetchUserDatabaseListFull.generated +++ b/3.10/generated/Examples/RestFetchUserDatabaseListFull.generated @@ -20,20 +20,20 @@ x-content-type-options: nosniff "_system" : { "permission" : "rw", "collections" : { - "_jobs" : "undefined", - "_aqlfunctions" : "undefined", - "demo" : "undefined", - "_appbundles" : "undefined", + "_statistics15" : "undefined", + "_frontend" : "undefined", + "_statistics" : "undefined", "_users" : "undefined", + "demo" : "undefined", "animals" : "undefined", + "_appbundles" : "undefined", + "_jobs" : "undefined", + "_aqlfunctions" : "undefined", "_statisticsRaw" : "undefined", - "_statistics" : "undefined", + "_graphs" : "undefined", "_apps" : "undefined", "_queues" : "undefined", - "_graphs" : "undefined", - "_frontend" : "undefined", "_analyzers" : "undefined", - "_statistics15" : "undefined", "*" : "undefined" } }, diff --git a/3.10/generated/Examples/RestGetResponsibleShardExample_cluster.generated b/3.10/generated/Examples/RestGetResponsibleShardExample_cluster.generated index 1ac164ee14..28f4ac625e 100644 --- a/3.10/generated/Examples/RestGetResponsibleShardExample_cluster.generated +++ b/3.10/generated/Examples/RestGetResponsibleShardExample_cluster.generated @@ -19,5 +19,5 @@ x-content-type-options: nosniff { "error" : false, "code" : 200, - "shardId" : "s10052" + "shardId" : "s10053" } diff --git a/3.10/generated/Examples/RestGetShardsWithDetails_cluster.generated b/3.10/generated/Examples/RestGetShardsWithDetails_cluster.generated index 13d055cac3..d977bd48bc 100644 --- a/3.10/generated/Examples/RestGetShardsWithDetails_cluster.generated +++ b/3.10/generated/Examples/RestGetShardsWithDetails_cluster.generated @@ -14,4 +14,4 @@ strict-transport-security: max-age=31536000 ; includeSubDomains x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff -"{\"error\":false,\"code\":200,\"shards\":{\"s10056\":[\"PRMR-58a57c03-b2e0-4fdc-ac2a-89ae492a04a6\",\"PRMR-82c10d32-2fd9-44c9-bd5b-2acc10b61bbf\"],\"s10057\":[\"PRMR-82c10d32-2fd9-44c9-bd5b-2acc10b61bbf\",\"PRMR-58a57c03-b2e0-4fdc-ac2a-89ae492a04a6\"],\"s10058\":[\"PRMR-58a57c03-b2e0-4fdc-ac2a-89ae492a04a6\",\"PRMR-82c10d32-2fd9-44c9-bd5b-2acc10b61bbf\"]},\"writeConcern\":1,\"waitForSync\":false,\"usesRevisionsAsDocumentIds\":true,\"syncByRevision\":true,\"shardingStrategy\":\"hash\",\"schema\":null,\"numberOfShards\":3,\"minReplicationFactor\":1,\"id\":\"10055\",\"isSmartChild\":false,\"name\":\"testCollection\",\"statusString\":\"loaded\",\"isSmart\":false,\"replicationFactor\":2,\"type\":2,\"status\":3,\"cacheEnabled\":false,\"isSystem\":false,\"computedValues\":null,\"internalValidatorType\":0,\"globallyUniqueId\":\"c10055/\",\"shardKeys\":[\"_key\"],\"isDisjoint\":false,\"keyOptions\":{\"allowUserKeys\":true,\"type\":\"traditional\"}}" +"{\"error\":false,\"code\":200,\"shards\":{\"s10057\":[\"PRMR-b5fca4b9-c73c-47eb-8737-742e452ec646\",\"PRMR-fda83a79-3e2f-44a4-8c8f-f6f7697b07ab\"],\"s10058\":[\"PRMR-fda83a79-3e2f-44a4-8c8f-f6f7697b07ab\",\"PRMR-b5fca4b9-c73c-47eb-8737-742e452ec646\"],\"s10059\":[\"PRMR-b5fca4b9-c73c-47eb-8737-742e452ec646\",\"PRMR-fda83a79-3e2f-44a4-8c8f-f6f7697b07ab\"]},\"writeConcern\":1,\"waitForSync\":false,\"usesRevisionsAsDocumentIds\":true,\"syncByRevision\":true,\"shardingStrategy\":\"hash\",\"schema\":null,\"numberOfShards\":3,\"minReplicationFactor\":1,\"id\":\"10056\",\"isSmartChild\":false,\"name\":\"testCollection\",\"statusString\":\"loaded\",\"isSmart\":false,\"replicationFactor\":2,\"type\":2,\"status\":3,\"cacheEnabled\":false,\"isSystem\":false,\"computedValues\":null,\"internalValidatorType\":0,\"globallyUniqueId\":\"c10056/\",\"shardKeys\":[\"_key\"],\"isDisjoint\":false,\"keyOptions\":{\"allowUserKeys\":true,\"type\":\"traditional\"}}" diff --git a/3.10/generated/Examples/RestGetShards_cluster.generated b/3.10/generated/Examples/RestGetShards_cluster.generated index 85e274a7b4..2160825588 100644 --- a/3.10/generated/Examples/RestGetShards_cluster.generated +++ b/3.10/generated/Examples/RestGetShards_cluster.generated @@ -14,4 +14,4 @@ strict-transport-security: max-age=31536000 ; includeSubDomains x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff -"{\"error\":false,\"code\":200,\"shards\":[\"s10062\",\"s10063\",\"s10064\"],\"writeConcern\":1,\"waitForSync\":false,\"usesRevisionsAsDocumentIds\":true,\"syncByRevision\":true,\"shardingStrategy\":\"hash\",\"schema\":null,\"numberOfShards\":3,\"minReplicationFactor\":1,\"id\":\"10061\",\"isSmartChild\":false,\"name\":\"testCollection\",\"statusString\":\"loaded\",\"isSmart\":false,\"replicationFactor\":2,\"type\":2,\"status\":3,\"cacheEnabled\":false,\"isSystem\":false,\"computedValues\":null,\"internalValidatorType\":0,\"globallyUniqueId\":\"c10061/\",\"shardKeys\":[\"_key\"],\"isDisjoint\":false,\"keyOptions\":{\"allowUserKeys\":true,\"type\":\"traditional\"}}" +"{\"error\":false,\"code\":200,\"shards\":[\"s10063\",\"s10064\",\"s10065\"],\"writeConcern\":1,\"waitForSync\":false,\"usesRevisionsAsDocumentIds\":true,\"syncByRevision\":true,\"shardingStrategy\":\"hash\",\"schema\":null,\"numberOfShards\":3,\"minReplicationFactor\":1,\"id\":\"10062\",\"isSmartChild\":false,\"name\":\"testCollection\",\"statusString\":\"loaded\",\"isSmart\":false,\"replicationFactor\":2,\"type\":2,\"status\":3,\"cacheEnabled\":false,\"isSystem\":false,\"computedValues\":null,\"internalValidatorType\":0,\"globallyUniqueId\":\"c10062/\",\"shardKeys\":[\"_key\"],\"isDisjoint\":false,\"keyOptions\":{\"allowUserKeys\":true,\"type\":\"traditional\"}}" diff --git a/3.10/generated/Examples/RestIndexAllIndexes.generated b/3.10/generated/Examples/RestIndexAllIndexes.generated index e4809d1796..04a8c69610 100644 --- a/3.10/generated/Examples/RestIndexAllIndexes.generated +++ b/3.10/generated/Examples/RestIndexAllIndexes.generated @@ -35,8 +35,8 @@ x-content-type-options: nosniff "fields" : [ "name" ], - "id" : "products/69113", - "name" : "idx_1745940452043915264", + "id" : "products/69102", + "name" : "idx_1747211381773434881", "selectivityEstimate" : 1, "sparse" : false, "type" : "persistent", @@ -49,8 +49,8 @@ x-content-type-options: nosniff "fields" : [ "price" ], - "id" : "products/69117", - "name" : "idx_1745940452044963840", + "id" : "products/69106", + "name" : "idx_1747211381774483456", "selectivityEstimate" : 1, "sparse" : true, "type" : "persistent", @@ -69,29 +69,29 @@ x-content-type-options: nosniff "type" : "primary", "unique" : true }, - "products/69113" : { + "products/69102" : { "cacheEnabled" : false, "deduplicate" : true, "estimates" : true, "fields" : [ "name" ], - "id" : "products/69113", - "name" : "idx_1745940452043915264", + "id" : "products/69102", + "name" : "idx_1747211381773434881", "selectivityEstimate" : 1, "sparse" : false, "type" : "persistent", "unique" : false }, - "products/69117" : { + "products/69106" : { "cacheEnabled" : false, "deduplicate" : true, "estimates" : true, "fields" : [ "price" ], - "id" : "products/69117", - "name" : "idx_1745940452044963840", + "id" : "products/69106", + "name" : "idx_1747211381774483456", "selectivityEstimate" : 1, "sparse" : true, "type" : "persistent", diff --git a/3.10/generated/Examples/RestIndexCreateGeoLatitudeLongitude.generated b/3.10/generated/Examples/RestIndexCreateGeoLatitudeLongitude.generated index a887efa1f5..e71f3c17c8 100644 --- a/3.10/generated/Examples/RestIndexCreateGeoLatitudeLongitude.generated +++ b/3.10/generated/Examples/RestIndexCreateGeoLatitudeLongitude.generated @@ -28,11 +28,11 @@ x-content-type-options: nosniff "f" ], "geoJson" : false, - "id" : "products/69129", + "id" : "products/69118", "isNewlyCreated" : true, "legacyPolygons" : false, "maxNumCoverCells" : 8, - "name" : "idx_1745940452062789632", + "name" : "idx_1747211381778677761", "sparse" : true, "type" : "geo", "unique" : false, diff --git a/3.10/generated/Examples/RestIndexCreateGeoLocation.generated b/3.10/generated/Examples/RestIndexCreateGeoLocation.generated index 96ca70f301..e9db268fb7 100644 --- a/3.10/generated/Examples/RestIndexCreateGeoLocation.generated +++ b/3.10/generated/Examples/RestIndexCreateGeoLocation.generated @@ -26,11 +26,11 @@ x-content-type-options: nosniff "b" ], "geoJson" : false, - "id" : "products/69140", + "id" : "products/69129", "isNewlyCreated" : true, "legacyPolygons" : false, "maxNumCoverCells" : 8, - "name" : "idx_1745940452075372544", + "name" : "idx_1747211381781823488", "sparse" : true, "type" : "geo", "unique" : false, diff --git a/3.10/generated/Examples/RestIndexCreateNewFulltext.generated b/3.10/generated/Examples/RestIndexCreateNewFulltext.generated index ce60649835..64ad3b74a3 100644 --- a/3.10/generated/Examples/RestIndexCreateNewFulltext.generated +++ b/3.10/generated/Examples/RestIndexCreateNewFulltext.generated @@ -24,10 +24,10 @@ x-content-type-options: nosniff "fields" : [ "text" ], - "id" : "products/69151", + "id" : "products/69140", "isNewlyCreated" : true, "minLength" : 2, - "name" : "idx_1745940452089004032", + "name" : "idx_1747211381783920641", "sparse" : true, "type" : "fulltext", "unique" : false, diff --git a/3.10/generated/Examples/RestIndexCreateNewInverted.generated b/3.10/generated/Examples/RestIndexCreateNewInverted.generated index 328daad576..98eddf9a98 100644 --- a/3.10/generated/Examples/RestIndexCreateNewInverted.generated +++ b/3.10/generated/Examples/RestIndexCreateNewInverted.generated @@ -55,10 +55,10 @@ x-content-type-options: nosniff "name" : "b" } ], - "id" : "products/69162", + "id" : "products/69151", "includeAllFields" : false, "isNewlyCreated" : true, - "name" : "idx_1745940452101586944", + "name" : "idx_1747211381787066368", "primarySort" : { "fields" : [ ], "compression" : "lz4" diff --git a/3.10/generated/Examples/RestIndexCreateNewPersistent.generated b/3.10/generated/Examples/RestIndexCreateNewPersistent.generated index 1afbbb7d86..baa1f7e694 100644 --- a/3.10/generated/Examples/RestIndexCreateNewPersistent.generated +++ b/3.10/generated/Examples/RestIndexCreateNewPersistent.generated @@ -30,9 +30,9 @@ x-content-type-options: nosniff "a", "b" ], - "id" : "products/69172", + "id" : "products/69161", "isNewlyCreated" : true, - "name" : "idx_1745940452124655616", + "name" : "idx_1747211381795454976", "selectivityEstimate" : 1, "sparse" : false, "type" : "persistent", diff --git a/3.10/generated/Examples/RestIndexCreateNewTtlIndex.generated b/3.10/generated/Examples/RestIndexCreateNewTtlIndex.generated index 4e94551104..ee6658ecfc 100644 --- a/3.10/generated/Examples/RestIndexCreateNewTtlIndex.generated +++ b/3.10/generated/Examples/RestIndexCreateNewTtlIndex.generated @@ -27,9 +27,9 @@ x-content-type-options: nosniff "fields" : [ "createdAt" ], - "id" : "sessions/69183", + "id" : "sessions/69172", "isNewlyCreated" : true, - "name" : "idx_1745940452137238528", + "name" : "idx_1747211381797552129", "sparse" : true, "type" : "ttl", "unique" : false, diff --git a/3.10/generated/Examples/RestIndexCreateNewZkd.generated b/3.10/generated/Examples/RestIndexCreateNewZkd.generated index 43948bca53..f57b76c0c1 100644 --- a/3.10/generated/Examples/RestIndexCreateNewZkd.generated +++ b/3.10/generated/Examples/RestIndexCreateNewZkd.generated @@ -27,9 +27,9 @@ x-content-type-options: nosniff "from", "to" ], - "id" : "intervals/69194", + "id" : "intervals/69183", "isNewlyCreated" : true, - "name" : "idx_1745940452151918592", + "name" : "idx_1747211381800697856", "sparse" : false, "type" : "zkd", "unique" : false, diff --git a/3.10/generated/Examples/RestIndexCreateSparsePersistent.generated b/3.10/generated/Examples/RestIndexCreateSparsePersistent.generated index 8fa386f053..7a5c7a4fa7 100644 --- a/3.10/generated/Examples/RestIndexCreateSparsePersistent.generated +++ b/3.10/generated/Examples/RestIndexCreateSparsePersistent.generated @@ -29,9 +29,9 @@ x-content-type-options: nosniff "fields" : [ "a" ], - "id" : "products/69205", + "id" : "products/69194", "isNewlyCreated" : true, - "name" : "idx_1745940452165550080", + "name" : "idx_1747211381802795009", "selectivityEstimate" : 1, "sparse" : true, "type" : "persistent", diff --git a/3.10/generated/Examples/RestIndexDeleteUniquePersistent.generated b/3.10/generated/Examples/RestIndexDeleteUniquePersistent.generated index 3e76184f3e..c9dd87e18b 100644 --- a/3.10/generated/Examples/RestIndexDeleteUniquePersistent.generated +++ b/3.10/generated/Examples/RestIndexDeleteUniquePersistent.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/index/products/69216 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/index/products/69205 HTTP/1.1 200 OK content-type: application/json @@ -14,7 +14,7 @@ x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff { - "id" : "products/69216", + "id" : "products/69205", "error" : false, "code" : 200 } diff --git a/3.10/generated/Examples/RestPregelCancelConnectedComponents.generated b/3.10/generated/Examples/RestPregelCancelConnectedComponents.generated index 8cbd318565..2d9897038e 100644 --- a/3.10/generated/Examples/RestPregelCancelConnectedComponents.generated +++ b/3.10/generated/Examples/RestPregelCancelConnectedComponents.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/control_pregel/69359 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/control_pregel/69348 HTTP/1.1 200 OK content-type: application/json diff --git a/3.10/generated/Examples/RestPregelStartConnectedComponents.generated b/3.10/generated/Examples/RestPregelStartConnectedComponents.generated index c8aeffe69f..4ef6fbc1e8 100644 --- a/3.10/generated/Examples/RestPregelStartConnectedComponents.generated +++ b/3.10/generated/Examples/RestPregelStartConnectedComponents.generated @@ -22,4 +22,4 @@ strict-transport-security: max-age=31536000 ; i x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff -"69506" +"69495" diff --git a/3.10/generated/Examples/RestPregelStatusAllConnectedComponents.generated b/3.10/generated/Examples/RestPregelStatusAllConnectedComponents.generated index ec3cbf9329..699ebc38f8 100644 --- a/3.10/generated/Examples/RestPregelStatusAllConnectedComponents.generated +++ b/3.10/generated/Examples/RestPregelStatusAllConnectedComponents.generated @@ -4,7 +4,7 @@ HTTP/1.1 200 O content-type: application/json cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0, max-age=0, s-maxage=0 connection: Keep-Alive -content-length: 3525 +content-length: 3513 content-security-policy: frame-ancestors 'self'; form-action 'self'; expires: 0 pragma: no-cache @@ -15,15 +15,15 @@ x-content-type-options: nosniff [ { - "id" : "69654", + "id" : "69643", "database" : "_system", "algorithm" : "WCC", - "created" : "2022-10-06T12:16:08Z", + "created" : "2022-10-20T12:57:00Z", "ttl" : 600, "state" : "loading", "gss" : 0, - "totalRuntime" : 0.000278229, - "startupTime" : 0.000278935, + "totalRuntime" : 0.000139045, + "startupTime" : 0.000139432, "gssTimes" : [ ], "aggregators" : { }, @@ -35,13 +35,13 @@ x-content-type-options: nosniff "useMemoryMaps" : true, "detail" : { "aggregatedStatus" : { - "timeStamp" : "2022-10-06T12:16:08Z", + "timeStamp" : "2022-10-20T12:57:00Z", "graphStoreStatus" : { } }, "workerStatus" : { "" : { - "timeStamp" : "2022-10-06T12:16:08Z", + "timeStamp" : "2022-10-20T12:57:00Z", "graphStoreStatus" : { } } @@ -49,30 +49,30 @@ x-content-type-options: nosniff } }, { - "id" : "69506", + "id" : "69495", "database" : "_system", "algorithm" : "WCC", - "created" : "2022-10-06T12:16:07Z", - "expires" : "2022-10-06T12:26:07Z", + "created" : "2022-10-20T12:57:00Z", + "expires" : "2022-10-20T13:07:00Z", "ttl" : 600, "state" : "done", "gss" : 11, - "totalRuntime" : 0.103515696, - "startupTime" : 0.100555659, - "computationTime" : 0.001676233, - "storageTime" : 0.001282991, + "totalRuntime" : 0.05437753, + "startupTime" : 0.053195769, + "computationTime" : 0.000632579, + "storageTime" : 0.00054884, "gssTimes" : [ - 0.000220557, - 0.000162747, - 0.000128035, - 0.000113695, - 0.00015823, - 0.000136527, - 0.000111561, - 0.000150689, - 0.000126852, - 0.000085634, - 0.000096784 + 0.000087918, + 0.000102907, + 0.000058581, + 0.000045981, + 0.000043504, + 0.000036411, + 0.000033642, + 0.000033659, + 0.000032879, + 0.00003904, + 0.000031303 ], "aggregators" : { }, @@ -84,7 +84,7 @@ x-content-type-options: nosniff "useMemoryMaps" : true, "detail" : { "aggregatedStatus" : { - "timeStamp" : "2022-10-06T12:16:07Z", + "timeStamp" : "2022-10-20T12:57:00Z", "graphStoreStatus" : { "verticesLoaded" : 36, "edgesLoaded" : 36, @@ -164,7 +164,7 @@ x-content-type-options: nosniff }, "workerStatus" : { "" : { - "timeStamp" : "2022-10-06T12:16:07Z", + "timeStamp" : "2022-10-20T12:57:00Z", "graphStoreStatus" : { "verticesLoaded" : 36, "edgesLoaded" : 36, diff --git a/3.10/generated/Examples/RestPregelStatusConnectedComponents.generated b/3.10/generated/Examples/RestPregelStatusConnectedComponents.generated index 54dc7b7ab0..72e00dee21 100644 --- a/3.10/generated/Examples/RestPregelStatusConnectedComponents.generated +++ b/3.10/generated/Examples/RestPregelStatusConnectedComponents.generated @@ -1,10 +1,10 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/control_pregel/69801 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/control_pregel/69790 HTTP/1.1 200 OK content-type: application/json cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0, max-age=0, s-maxage=0 connection: Keep-Alive -content-length: 3057 +content-length: 3042 content-security-policy: frame-ancestors 'self'; form-action 'self'; expires: 0 pragma: no-cache @@ -14,30 +14,30 @@ x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff { - "id" : "69801", + "id" : "69790", "database" : "_system", "algorithm" : "WCC", - "created" : "2022-10-06T12:16:08Z", - "expires" : "2022-10-06T12:26:08Z", + "created" : "2022-10-20T12:57:00Z", + "expires" : "2022-10-20T13:07:00Z", "ttl" : 600, "state" : "done", "gss" : 11, - "totalRuntime" : 0.103204342, - "startupTime" : 0.100133971, - "computationTime" : 0.001810259, - "storageTime" : 0.001259186, + "totalRuntime" : 0.055628709, + "startupTime" : 0.054547334, + "computationTime" : 0.000556698, + "storageTime" : 0.000524316, "gssTimes" : [ - 0.000179623, - 0.000120225, - 0.000195259, - 0.000112125, - 0.000105388, - 0.000106523, - 0.000208479, - 0.000125923, - 0.000178669, - 0.000121547, - 0.000137026 + 0.000066579, + 0.000070122, + 0.000046385, + 0.00003907, + 0.000053258, + 0.000050117, + 0.000041613, + 0.000036821, + 0.000029624, + 0.00003034, + 0.000025308 ], "aggregators" : { }, @@ -49,7 +49,7 @@ x-content-type-options: nosniff "useMemoryMaps" : true, "detail" : { "aggregatedStatus" : { - "timeStamp" : "2022-10-06T12:16:08Z", + "timeStamp" : "2022-10-20T12:57:00Z", "graphStoreStatus" : { "verticesLoaded" : 36, "edgesLoaded" : 36, @@ -129,7 +129,7 @@ x-content-type-options: nosniff }, "workerStatus" : { "" : { - "timeStamp" : "2022-10-06T12:16:08Z", + "timeStamp" : "2022-10-20T12:57:00Z", "graphStoreStatus" : { "verticesLoaded" : 36, "edgesLoaded" : 36, diff --git a/3.10/generated/Examples/RestReplicationApplierStart.generated b/3.10/generated/Examples/RestReplicationApplierStart.generated index 99cc69ae17..1eba7c3f80 100644 --- a/3.10/generated/Examples/RestReplicationApplierStart.generated +++ b/3.10/generated/Examples/RestReplicationApplierStart.generated @@ -24,7 +24,7 @@ x-content-type-options: nosniff "safeResumeTick" : null, "ticksBehind" : 0, "progress" : { - "time" : "2022-10-06T12:16:03Z", + "time" : "2022-10-20T12:56:58Z", "message" : "applier initially created for database '_system'", "failedConnects" : 0 }, @@ -42,11 +42,11 @@ x-content-type-options: nosniff "lastError" : { "errorNum" : 0 }, - "time" : "2022-10-06T12:16:08Z" + "time" : "2022-10-20T12:57:01Z" }, "server" : { "version" : "3.10.1", - "serverId" : "73576457362424" + "serverId" : "28784713966597" }, "endpoint" : "tcp://127.0.0.1:8529", "database" : "_system" diff --git a/3.10/generated/Examples/RestReplicationApplierStateNotRunning.generated b/3.10/generated/Examples/RestReplicationApplierStateNotRunning.generated index 0951798e62..8a39566aec 100644 --- a/3.10/generated/Examples/RestReplicationApplierStateNotRunning.generated +++ b/3.10/generated/Examples/RestReplicationApplierStateNotRunning.generated @@ -15,7 +15,7 @@ x-content-type-options: nosniff { "state" : { - "started" : "2022-10-06T12:16:08Z", + "started" : "2022-10-20T12:57:01Z", "running" : false, "phase" : "inactive", "lastAppliedContinuousTick" : null, @@ -23,7 +23,7 @@ x-content-type-options: nosniff "lastAvailableContinuousTick" : null, "safeResumeTick" : null, "progress" : { - "time" : "2022-10-06T12:16:09Z", + "time" : "2022-10-20T12:57:01Z", "message" : "applier shut down", "failedConnects" : 1 }, @@ -41,11 +41,11 @@ x-content-type-options: nosniff "lastError" : { "errorNum" : 0 }, - "time" : "2022-10-06T12:16:09Z" + "time" : "2022-10-20T12:57:02Z" }, "server" : { "version" : "3.10.1", - "serverId" : "73576457362424" + "serverId" : "28784713966597" }, "endpoint" : "tcp://127.0.0.1:8529", "database" : "_system" diff --git a/3.10/generated/Examples/RestReplicationApplierStateRunning.generated b/3.10/generated/Examples/RestReplicationApplierStateRunning.generated index abf2034a17..3cf31e06ae 100644 --- a/3.10/generated/Examples/RestReplicationApplierStateRunning.generated +++ b/3.10/generated/Examples/RestReplicationApplierStateRunning.generated @@ -15,7 +15,7 @@ x-content-type-options: nosniff { "state" : { - "started" : "2022-10-06T12:16:08Z", + "started" : "2022-10-20T12:57:01Z", "running" : true, "phase" : "running", "lastAppliedContinuousTick" : null, @@ -24,7 +24,7 @@ x-content-type-options: nosniff "safeResumeTick" : null, "ticksBehind" : 0, "progress" : { - "time" : "2022-10-06T12:16:09Z", + "time" : "2022-10-20T12:57:02Z", "message" : "fetching leader state information", "failedConnects" : 0 }, @@ -42,11 +42,11 @@ x-content-type-options: nosniff "lastError" : { "errorNum" : 0 }, - "time" : "2022-10-06T12:16:09Z" + "time" : "2022-10-20T12:57:02Z" }, "server" : { "version" : "3.10.1", - "serverId" : "73576457362424" + "serverId" : "28784713966597" }, "endpoint" : "tcp://127.0.0.1:8529", "database" : "_system" diff --git a/3.10/generated/Examples/RestReplicationApplierStop.generated b/3.10/generated/Examples/RestReplicationApplierStop.generated index 5ad2901929..0627c245a8 100644 --- a/3.10/generated/Examples/RestReplicationApplierStop.generated +++ b/3.10/generated/Examples/RestReplicationApplierStop.generated @@ -15,7 +15,7 @@ x-content-type-options: nosniff { "state" : { - "started" : "2022-10-06T12:16:08Z", + "started" : "2022-10-20T12:57:01Z", "running" : false, "phase" : "inactive", "lastAppliedContinuousTick" : null, @@ -23,7 +23,7 @@ x-content-type-options: nosniff "lastAvailableContinuousTick" : null, "safeResumeTick" : null, "progress" : { - "time" : "2022-10-06T12:16:10Z", + "time" : "2022-10-20T12:57:03Z", "message" : "applier shut down", "failedConnects" : 0 }, @@ -41,11 +41,11 @@ x-content-type-options: nosniff "lastError" : { "errorNum" : 0 }, - "time" : "2022-10-06T12:16:10Z" + "time" : "2022-10-20T12:57:03Z" }, "server" : { "version" : "3.10.1", - "serverId" : "73576457362424" + "serverId" : "28784713966597" }, "endpoint" : "tcp://127.0.0.1:8529", "database" : "_system" diff --git a/3.10/generated/Examples/RestReplicationLoggerFirstTick.generated b/3.10/generated/Examples/RestReplicationLoggerFirstTick.generated index bd1cac2b7f..4034270882 100644 --- a/3.10/generated/Examples/RestReplicationLoggerFirstTick.generated +++ b/3.10/generated/Examples/RestReplicationLoggerFirstTick.generated @@ -14,5 +14,5 @@ x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff { - "firstTick" : "177777" + "firstTick" : "177759" } diff --git a/3.10/generated/Examples/RestReplicationLoggerFollowBufferLimit.generated b/3.10/generated/Examples/RestReplicationLoggerFollowBufferLimit.generated index 06ad7cb426..8f7323b1ba 100644 --- a/3.10/generated/Examples/RestReplicationLoggerFollowBufferLimit.generated +++ b/3.10/generated/Examples/RestReplicationLoggerFollowBufferLimit.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/logger-follow?from=182873&chunkSize=400 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/logger-follow?from=182844&chunkSize=400 HTTP/1.1 200 OK content-type: application/x-arango-dump @@ -14,13 +14,13 @@ x-arango-queue-time-seconds: 0.000000 x-arango-replication-active: true x-arango-replication-checkmore: true x-arango-replication-frompresent: true -x-arango-replication-lastincluded: 182878 -x-arango-replication-lastscanned: 182875 -x-arango-replication-lasttick: 182899 +x-arango-replication-lastincluded: 182849 +x-arango-replication-lastscanned: 182846 +x-arango-replication-lasttick: 182878 x-content-type-options: nosniff { - "tick" : "182876", + "tick" : "182847", "type" : 2300, "database" : "1", "tid" : "0", @@ -29,14 +29,14 @@ x-content-type-options: nosniff "data" : { "_key" : "89", "_id" : "_users/89", - "_rev" : "_e4y3eU----", + "_rev" : "_e9T17X6---", "user" : "root", "source" : "LOCAL", "authData" : { "active" : true, "simple" : { - "hash" : "afb84f4ef1af8928a7cf7de7fc42456a59f7cbfbd8607f1f8785f116b264d5b7", - "salt" : "ce7acf4d", + "hash" : "8f305e3bcbd219761cf9ce28fdafa1382283149a644694bd2c5e7896daf197b8", + "salt" : "65abf411", "method" : "sha256" } }, diff --git a/3.10/generated/Examples/RestReplicationLoggerFollowEmpty.generated b/3.10/generated/Examples/RestReplicationLoggerFollowEmpty.generated index c889d79b96..6d5c01db40 100644 --- a/3.10/generated/Examples/RestReplicationLoggerFollowEmpty.generated +++ b/3.10/generated/Examples/RestReplicationLoggerFollowEmpty.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/logger-follow?from=182899 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/logger-follow?from=182878 HTTP/1.1 204 No Content content-type: application/x-arango-dump @@ -15,7 +15,7 @@ x-arango-replication-active: true x-arango-replication-checkmore: false x-arango-replication-frompresent: true x-arango-replication-lastincluded: 0 -x-arango-replication-lastscanned: 182896 -x-arango-replication-lasttick: 182899 +x-arango-replication-lastscanned: 182878 +x-arango-replication-lasttick: 182878 x-content-type-options: nosniff diff --git a/3.10/generated/Examples/RestReplicationLoggerFollowSome.generated b/3.10/generated/Examples/RestReplicationLoggerFollowSome.generated index 4d1abc31c2..0f4c3c090b 100644 --- a/3.10/generated/Examples/RestReplicationLoggerFollowSome.generated +++ b/3.10/generated/Examples/RestReplicationLoggerFollowSome.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/logger-follow?from=182899 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/replication/logger-follow?from=182878 HTTP/1.1 200 OK content-type: application/x-arango-dump @@ -14,13 +14,13 @@ x-arango-queue-time-seconds: 0.000000 x-arango-replication-active: true x-arango-replication-checkmore: false x-arango-replication-frompresent: true -x-arango-replication-lastincluded: 182925 -x-arango-replication-lastscanned: 182922 -x-arango-replication-lasttick: 182925 +x-arango-replication-lastincluded: 182904 +x-arango-replication-lastscanned: 182901 +x-arango-replication-lasttick: 182904 x-content-type-options: nosniff { - "tick" : "182902", + "tick" : "182881", "type" : 2300, "database" : "1", "tid" : "0", @@ -29,14 +29,14 @@ x-content-type-options: nosniff "data" : { "_key" : "89", "_id" : "_users/89", - "_rev" : "_e4y3fWm---", + "_rev" : "_e9T18YC---", "user" : "root", "source" : "LOCAL", "authData" : { "active" : true, "simple" : { - "hash" : "afb84f4ef1af8928a7cf7de7fc42456a59f7cbfbd8607f1f8785f116b264d5b7", - "salt" : "ce7acf4d", + "hash" : "8f305e3bcbd219761cf9ce28fdafa1382283149a644694bd2c5e7896daf197b8", + "salt" : "65abf411", "method" : "sha256" } }, @@ -97,18 +97,18 @@ x-content-type-options: nosniff } }↩ { - "tick" : "182915", + "tick" : "182894", "type" : 2001, "database" : "1", - "cuid" : "h42EADA9ADBF8/69854", - "cid" : "69854", + "cuid" : "h1A2DF6A6A405/69847", + "cid" : "69847", "data" : { - "id" : "69854", + "id" : "69847", "name" : "" } }↩ { - "tick" : "182923", + "tick" : "182902", "type" : 2300, "database" : "1", "tid" : "0", @@ -117,14 +117,14 @@ x-content-type-options: nosniff "data" : { "_key" : "89", "_id" : "_users/89", - "_rev" : "_e4y3fW6---", + "_rev" : "_e9T18YG--C", "user" : "root", "source" : "LOCAL", "authData" : { "active" : true, "simple" : { - "hash" : "afb84f4ef1af8928a7cf7de7fc42456a59f7cbfbd8607f1f8785f116b264d5b7", - "salt" : "ce7acf4d", + "hash" : "8f305e3bcbd219761cf9ce28fdafa1382283149a644694bd2c5e7896daf197b8", + "salt" : "65abf411", "method" : "sha256" } }, diff --git a/3.10/generated/Examples/RestReplicationLoggerStateActive.generated b/3.10/generated/Examples/RestReplicationLoggerStateActive.generated index 08aa260665..74af3977c7 100644 --- a/3.10/generated/Examples/RestReplicationLoggerStateActive.generated +++ b/3.10/generated/Examples/RestReplicationLoggerStateActive.generated @@ -16,14 +16,14 @@ x-content-type-options: nosniff { "state" : { "running" : true, - "lastLogTick" : "182925", - "lastUncommittedLogTick" : "182925", - "totalEvents" : 182925, - "time" : "2022-10-06T12:16:12Z" + "lastLogTick" : "182904", + "lastUncommittedLogTick" : "182904", + "totalEvents" : 182904, + "time" : "2022-10-20T12:57:05Z" }, "server" : { "version" : "3.10.1", - "serverId" : "73576457362424", + "serverId" : "28784713966597", "engine" : "rocksdb" }, "clients" : [ ] diff --git a/3.10/generated/Examples/RestReplicationLoggerTickRanges.generated b/3.10/generated/Examples/RestReplicationLoggerTickRanges.generated index 0927bf579d..4f3e2f4a2f 100644 --- a/3.10/generated/Examples/RestReplicationLoggerTickRanges.generated +++ b/3.10/generated/Examples/RestReplicationLoggerTickRanges.generated @@ -15,21 +15,21 @@ x-content-type-options: nosniff [ { - "datafile" : "/archive/000092.log", + "datafile" : "/archive/000086.log", "status" : "collected", - "tickMin" : "177777", - "tickMax" : "177824" + "tickMin" : "177759", + "tickMax" : "177806" }, { - "datafile" : "/archive/000116.log", + "datafile" : "/archive/000110.log", "status" : "collected", - "tickMin" : "177824", - "tickMax" : "177867" + "tickMin" : "177806", + "tickMax" : "177849" }, { - "datafile" : "/000121.log", + "datafile" : "/000117.log", "status" : "open", - "tickMin" : "177867", - "tickMax" : "182925" + "tickMin" : "177849", + "tickMax" : "182904" } ] diff --git a/3.10/generated/Examples/RestReplicationServerId.generated b/3.10/generated/Examples/RestReplicationServerId.generated index cd9c69a7ed..028a0d60d7 100644 --- a/3.10/generated/Examples/RestReplicationServerId.generated +++ b/3.10/generated/Examples/RestReplicationServerId.generated @@ -14,5 +14,5 @@ x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff { - "serverId" : "73576457362424" + "serverId" : "28784713966597" } diff --git a/3.10/generated/Examples/RestTasksCreate.generated b/3.10/generated/Examples/RestTasksCreate.generated index 331d42861d..ce6f73c1d1 100644 --- a/3.10/generated/Examples/RestTasksCreate.generated +++ b/3.10/generated/Examples/RestTasksCreate.generated @@ -14,7 +14,7 @@ HTTP/1.1 200 O content-type: application/json cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0, max-age=0, s-maxage=0 connection: Keep-Alive -content-length: 240 +content-length: 236 content-security-policy: frame-ancestors 'self'; form-action 'self'; expires: 0 pragma: no-cache @@ -24,14 +24,14 @@ x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff { - "id" : "69885", + "id" : "69878", "name" : "SampleTask", - "created" : 1665058572.7616894, + "created" : 1666270625.196241, "type" : "periodic", "period" : 2, "offset" : 0, "command" : "(function (params) { (function(params) { require('@arangodb').print(params); })(params) } )(params);", "database" : "_system" } -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/tasks/69885 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/tasks/69878 diff --git a/3.10/generated/Examples/RestTasksListOne.generated b/3.10/generated/Examples/RestTasksListOne.generated index d6d19dacc7..ebbf2fe1d1 100644 --- a/3.10/generated/Examples/RestTasksListOne.generated +++ b/3.10/generated/Examples/RestTasksListOne.generated @@ -20,7 +20,7 @@ x-content-type-options: nosniff { "id" : "testTask", "name" : "user-defined task", - "created" : 1665058572.8115106, + "created" : 1666270625.2093673, "type" : "timed", "offset" : 10000, "command" : "(function (params) { console.log('Hello from task!'); } )(params);", diff --git a/3.10/generated/Examples/RestTasksPutWithId.generated b/3.10/generated/Examples/RestTasksPutWithId.generated index 97122bf395..c40c589574 100644 --- a/3.10/generated/Examples/RestTasksPutWithId.generated +++ b/3.10/generated/Examples/RestTasksPutWithId.generated @@ -27,7 +27,7 @@ x-content-type-options: nosniff { "id" : "sampleTask", "name" : "SampleTask", - "created" : 1665058572.8188708, + "created" : 1666270625.2131898, "type" : "periodic", "period" : 2, "offset" : 0, diff --git a/3.10/generated/Examples/RestTransactionBeginAbort.generated b/3.10/generated/Examples/RestTransactionBeginAbort.generated index dde59fb678..6a34e19fd2 100644 --- a/3.10/generated/Examples/RestTransactionBeginAbort.generated +++ b/3.10/generated/Examples/RestTransactionBeginAbort.generated @@ -1,4 +1,4 @@ -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/transaction/69917 +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/transaction/69910 HTTP/1.1 200 OK content-type: application/json @@ -17,7 +17,7 @@ x-content-type-options: nosniff "code" : 200, "error" : false, "result" : { - "id" : "69917", + "id" : "69910", "status" : "committed" } } diff --git a/3.10/generated/Examples/RestTransactionBeginCommit.generated b/3.10/generated/Examples/RestTransactionBeginCommit.generated index 56f14f4d50..e49c5dd9f1 100644 --- a/3.10/generated/Examples/RestTransactionBeginCommit.generated +++ b/3.10/generated/Examples/RestTransactionBeginCommit.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/transaction/69925 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/transaction/69918 HTTP/1.1 200 OK content-type: application/json @@ -17,7 +17,7 @@ x-content-type-options: nosniff "code" : 200, "error" : false, "result" : { - "id" : "69925", + "id" : "69918", "status" : "aborted" } } diff --git a/3.10/generated/Examples/RestTransactionBeginSingle.generated b/3.10/generated/Examples/RestTransactionBeginSingle.generated index 5939ce9104..7e500db633 100644 --- a/3.10/generated/Examples/RestTransactionBeginSingle.generated +++ b/3.10/generated/Examples/RestTransactionBeginSingle.generated @@ -23,7 +23,7 @@ x-content-type-options: nosniff "code" : 201, "error" : false, "result" : { - "id" : "69935", + "id" : "69928", "status" : "running" } } diff --git a/3.10/generated/Examples/RestTransactionGet.generated b/3.10/generated/Examples/RestTransactionGet.generated index 50e26fc663..37027323cf 100644 --- a/3.10/generated/Examples/RestTransactionGet.generated +++ b/3.10/generated/Examples/RestTransactionGet.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/transaction/69943 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/transaction/69936 HTTP/1.1 200 OK content-type: application/json @@ -17,7 +17,7 @@ x-content-type-options: nosniff "code" : 200, "error" : false, "result" : { - "id" : "69943", + "id" : "69936", "status" : "running" } } diff --git a/3.10/generated/Examples/RestTransactionsGet.generated b/3.10/generated/Examples/RestTransactionsGet.generated index 1096810691..7c35bdae3d 100644 --- a/3.10/generated/Examples/RestTransactionsGet.generated +++ b/3.10/generated/Examples/RestTransactionsGet.generated @@ -16,7 +16,7 @@ x-content-type-options: nosniff { "transactions" : [ { - "id" : "69982", + "id" : "69975", "state" : "running" } ] diff --git a/3.10/generated/Examples/RestVersionDetails.generated b/3.10/generated/Examples/RestVersionDetails.generated index 3157704b0b..b20cedd6a6 100644 --- a/3.10/generated/Examples/RestVersionDetails.generated +++ b/3.10/generated/Examples/RestVersionDetails.generated @@ -4,7 +4,7 @@ HTTP/1.1 200 O content-type: application/json cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0, max-age=0, s-maxage=0 connection: Keep-Alive -content-length: 1738 +content-length: 1843 content-security-policy: frame-ancestors 'self'; form-action 'self'; expires: 0 pragma: no-cache @@ -26,19 +26,19 @@ x-content-type-options: nosniff "avx" : "true", "avx2" : "false", "boost-version" : "1.78.0", - "build-date" : "2022-10-06 12:06:39", - "build-repository" : "heads/3.10-0-g68e90338f1a", + "build-date" : "2022-10-20 12:22:10", + "build-repository" : "heads/documentation-3.10/api-fixes-2022-10-06-0-g541bf018164", "compiler" : "gcc [11.2.1 20220219]", "cplusplus" : "202002", "curl-version" : "none", "debug" : "false", "endianness" : "little", - "enterprise-build-repository" : "heads/3.10-0-gcb39f36c", + "enterprise-build-repository" : "heads/3.10-0-gaf312f3e", "enterprise-version" : "enterprise", "failure-tests" : "false", "fd-client-event-handler" : "poll", "fd-setsize" : "1024", - "full-version-string" : "ArangoDB 3.10.1 enterprise [linux] 64bit, using jemalloc, build heads/3.10-0-g68e90338f1a, VPack 0.1.36, RocksDB 7.2.0, ICU 64.2, V8 7.9.317, OpenSSL 1.1.1q 5 Jul 2022", + "full-version-string" : "ArangoDB 3.10.1 enterprise [linux] 64bit, using jemalloc, build heads/documentation-3.10/api-fixes-2022-10-06-0-g541bf018164, VPack 0.1.36, RocksDB 7.2.0, ICU 64.2, V8 7.9.317, OpenSSL 1.1.1q 5 Jul 2022", "icu-version" : "64.2", "ipo" : "true", "iresearch-version" : "1.2.0.0", @@ -69,6 +69,6 @@ x-content-type-options: nosniff "zlib-version" : "1.2.12", "mode" : "server", "role" : "SINGLE", - "host" : "hw06-linux" + "host" : "EC2 (AWS X86) - AWS X86 (i-076e17d1abd8a6620)" } } diff --git a/3.10/generated/Examples/RestViewDeleteViewIdentifierArangoSearch.generated b/3.10/generated/Examples/RestViewDeleteViewIdentifierArangoSearch.generated index 0dee0fe2bc..2b12ed5f82 100644 --- a/3.10/generated/Examples/RestViewDeleteViewIdentifierArangoSearch.generated +++ b/3.10/generated/Examples/RestViewDeleteViewIdentifierArangoSearch.generated @@ -1,4 +1,4 @@ -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/view/69992 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/view/69985 HTTP/1.1 200 OK content-type: application/json diff --git a/3.10/generated/Examples/RestViewGetAllViews.generated b/3.10/generated/Examples/RestViewGetAllViews.generated index 51ad88981e..520ec5f014 100644 --- a/3.10/generated/Examples/RestViewGetAllViews.generated +++ b/3.10/generated/Examples/RestViewGetAllViews.generated @@ -18,8 +18,8 @@ x-content-type-options: nosniff "code" : 200, "result" : [ { - "globallyUniqueId" : "h42EADA9ADBF8/105", - "id" : "105", + "globallyUniqueId" : "h1A2DF6A6A405/101", + "id" : "101", "name" : "demoView", "type" : "arangosearch" } diff --git a/3.10/generated/Examples/RestViewGetViewIdentifierArangoSearch.generated b/3.10/generated/Examples/RestViewGetViewIdentifierArangoSearch.generated index cc7a981632..0e4c1919bc 100644 --- a/3.10/generated/Examples/RestViewGetViewIdentifierArangoSearch.generated +++ b/3.10/generated/Examples/RestViewGetViewIdentifierArangoSearch.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/view/70002 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/view/69995 HTTP/1.1 200 OK content-type: application/json @@ -18,6 +18,6 @@ x-content-type-options: nosniff "code" : 200, "type" : "arangosearch", "name" : "testView", - "id" : "70002", - "globallyUniqueId" : "h42EADA9ADBF8/70002" + "id" : "69995", + "globallyUniqueId" : "h1A2DF6A6A405/69995" } diff --git a/3.10/generated/Examples/RestViewGetViewNameArangoSearch.generated b/3.10/generated/Examples/RestViewGetViewNameArangoSearch.generated index a0279c251d..3ee5527a61 100644 --- a/3.10/generated/Examples/RestViewGetViewNameArangoSearch.generated +++ b/3.10/generated/Examples/RestViewGetViewNameArangoSearch.generated @@ -18,6 +18,6 @@ x-content-type-options: nosniff "code" : 200, "type" : "arangosearch", "name" : "testView", - "id" : "70007", - "globallyUniqueId" : "h42EADA9ADBF8/70007" + "id" : "70000", + "globallyUniqueId" : "h1A2DF6A6A405/70000" } diff --git a/3.10/generated/Examples/RestViewGetViewPropertiesIdentifierArangoSearch.generated b/3.10/generated/Examples/RestViewGetViewPropertiesIdentifierArangoSearch.generated index c87d6e5418..9144d8c46f 100644 --- a/3.10/generated/Examples/RestViewGetViewPropertiesIdentifierArangoSearch.generated +++ b/3.10/generated/Examples/RestViewGetViewPropertiesIdentifierArangoSearch.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/view/70012/properties +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/view/70005/properties HTTP/1.1 200 OK content-type: application/json @@ -33,10 +33,10 @@ x-content-type-options: nosniff "commitIntervalMsec" : 1000, "links" : { }, - "id" : "70012", + "id" : "70005", "storedValues" : [ ], "cleanupIntervalStep" : 2, - "globallyUniqueId" : "h42EADA9ADBF8/70012", + "globallyUniqueId" : "h1A2DF6A6A405/70005", "primarySort" : [ ], "primarySortCompression" : "lz4" } diff --git a/3.10/generated/Examples/RestViewGetViewPropertiesNameArangoSearch.generated b/3.10/generated/Examples/RestViewGetViewPropertiesNameArangoSearch.generated index 466cc8974c..9e1dce11f2 100644 --- a/3.10/generated/Examples/RestViewGetViewPropertiesNameArangoSearch.generated +++ b/3.10/generated/Examples/RestViewGetViewPropertiesNameArangoSearch.generated @@ -33,10 +33,10 @@ x-content-type-options: nosniff "commitIntervalMsec" : 1000, "links" : { }, - "id" : "70018", + "id" : "70011", "storedValues" : [ ], "cleanupIntervalStep" : 2, - "globallyUniqueId" : "h42EADA9ADBF8/70018", + "globallyUniqueId" : "h1A2DF6A6A405/70011", "primarySort" : [ ], "primarySortCompression" : "lz4" } diff --git a/3.10/generated/Examples/RestViewPatchPropertiesArangoSearch.generated b/3.10/generated/Examples/RestViewPatchPropertiesArangoSearch.generated index 20cd34e2f9..5cfd8d88df 100644 --- a/3.10/generated/Examples/RestViewPatchPropertiesArangoSearch.generated +++ b/3.10/generated/Examples/RestViewPatchPropertiesArangoSearch.generated @@ -18,8 +18,8 @@ x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff { - "globallyUniqueId" : "h42EADA9ADBF8/70024", - "id" : "70024", + "globallyUniqueId" : "h1A2DF6A6A405/70017", + "id" : "70017", "name" : "products", "type" : "arangosearch", "cleanupIntervalStep" : 2, diff --git a/3.10/generated/Examples/RestViewPatchPropertiesSearchAlias.generated b/3.10/generated/Examples/RestViewPatchPropertiesSearchAlias.generated index 0ba67d6e16..100a79803b 100644 --- a/3.10/generated/Examples/RestViewPatchPropertiesSearchAlias.generated +++ b/3.10/generated/Examples/RestViewPatchPropertiesSearchAlias.generated @@ -23,8 +23,8 @@ x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff { - "globallyUniqueId" : "h42EADA9ADBF8/70041", - "id" : "70041", + "globallyUniqueId" : "h1A2DF6A6A405/70034", + "id" : "70034", "name" : "products", "type" : "search-alias", "indexes" : [ diff --git a/3.10/generated/Examples/RestViewPostViewArangoSearch.generated b/3.10/generated/Examples/RestViewPostViewArangoSearch.generated index 9223e67eab..481ff766a2 100644 --- a/3.10/generated/Examples/RestViewPostViewArangoSearch.generated +++ b/3.10/generated/Examples/RestViewPostViewArangoSearch.generated @@ -19,8 +19,8 @@ x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff { - "globallyUniqueId" : "h42EADA9ADBF8/70044", - "id" : "70044", + "globallyUniqueId" : "h1A2DF6A6A405/70037", + "id" : "70037", "name" : "testViewBasics", "type" : "arangosearch", "cleanupIntervalStep" : 2, diff --git a/3.10/generated/Examples/RestViewPostViewSearchAlias.generated b/3.10/generated/Examples/RestViewPostViewSearchAlias.generated index a76ef68a41..f37be7c7f4 100644 --- a/3.10/generated/Examples/RestViewPostViewSearchAlias.generated +++ b/3.10/generated/Examples/RestViewPostViewSearchAlias.generated @@ -19,8 +19,8 @@ x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff { - "globallyUniqueId" : "h42EADA9ADBF8/70049", - "id" : "70049", + "globallyUniqueId" : "h1A2DF6A6A405/70042", + "id" : "70042", "name" : "testViewBasics", "type" : "search-alias", "indexes" : [ ] diff --git a/3.10/generated/Examples/RestViewPutPropertiesArangoSearch.generated b/3.10/generated/Examples/RestViewPutPropertiesArangoSearch.generated index 6d4fb9bed7..d1d551b63a 100644 --- a/3.10/generated/Examples/RestViewPutPropertiesArangoSearch.generated +++ b/3.10/generated/Examples/RestViewPutPropertiesArangoSearch.generated @@ -18,8 +18,8 @@ x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff { - "globallyUniqueId" : "h42EADA9ADBF8/70051", - "id" : "70051", + "globallyUniqueId" : "h1A2DF6A6A405/70044", + "id" : "70044", "name" : "products", "type" : "arangosearch", "cleanupIntervalStep" : 2, diff --git a/3.10/generated/Examples/RestViewPutPropertiesSearchAlias.generated b/3.10/generated/Examples/RestViewPutPropertiesSearchAlias.generated index 3ef9966baf..68b53ab51b 100644 --- a/3.10/generated/Examples/RestViewPutPropertiesSearchAlias.generated +++ b/3.10/generated/Examples/RestViewPutPropertiesSearchAlias.generated @@ -23,8 +23,8 @@ x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff { - "globallyUniqueId" : "h42EADA9ADBF8/70069", - "id" : "70069", + "globallyUniqueId" : "h1A2DF6A6A405/70062", + "id" : "70062", "name" : "products", "type" : "search-alias", "indexes" : [ diff --git a/3.10/generated/Examples/RestViewPutRename.generated b/3.10/generated/Examples/RestViewPutRename.generated index 413ce5783b..6e5348682f 100644 --- a/3.10/generated/Examples/RestViewPutRename.generated +++ b/3.10/generated/Examples/RestViewPutRename.generated @@ -22,6 +22,6 @@ x-content-type-options: nosniff "code" : 200, "type" : "arangosearch", "name" : "viewNewName", - "id" : "70072", - "globallyUniqueId" : "h42EADA9ADBF8/70072" + "id" : "70065", + "globallyUniqueId" : "h1A2DF6A6A405/70065" } diff --git a/3.10/generated/Examples/RestWalAccessFirstTick.generated b/3.10/generated/Examples/RestWalAccessFirstTick.generated index f704babde8..3eb4c9b691 100644 --- a/3.10/generated/Examples/RestWalAccessFirstTick.generated +++ b/3.10/generated/Examples/RestWalAccessFirstTick.generated @@ -14,10 +14,10 @@ x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff { - "time" : "2022-10-06T12:16:13Z", - "tick" : "183221", + "time" : "2022-10-20T12:57:05Z", + "tick" : "183200", "server" : { "version" : "3.10.1", - "serverId" : "73576457362424" + "serverId" : "28784713966597" } } diff --git a/3.10/generated/Examples/RestWalAccessTailingBufferLimit.generated b/3.10/generated/Examples/RestWalAccessTailingBufferLimit.generated index c7f56f3d2b..36276c8890 100644 --- a/3.10/generated/Examples/RestWalAccessTailingBufferLimit.generated +++ b/3.10/generated/Examples/RestWalAccessTailingBufferLimit.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/wal/tail?from=183223&chunkSize=400 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/wal/tail?from=183200&chunkSize=400 HTTP/1.1 200 OK content-type: application/x-arango-dump @@ -13,14 +13,14 @@ strict-transport-security: max-age=31536000 ; i x-arango-queue-time-seconds: 0.000000 x-arango-replication-checkmore: true x-arango-replication-frompresent: true -x-arango-replication-lastincluded: 183240 -x-arango-replication-lastscanned: 183250 -x-arango-replication-lasttick: 183250 +x-arango-replication-lastincluded: 183216 +x-arango-replication-lastscanned: 183229 +x-arango-replication-lasttick: 183229 x-content-type-options: nosniff { - "tick" : "183240", + "tick" : "183216", "type" : 2001, "db" : "_system", - "cuid" : "h42EADA9ADBF8/70081" + "cuid" : "h1A2DF6A6A405/70074" } diff --git a/3.10/generated/Examples/RestWalAccessTailingEmpty.generated b/3.10/generated/Examples/RestWalAccessTailingEmpty.generated index b179c5072c..ec2ff8bec4 100644 --- a/3.10/generated/Examples/RestWalAccessTailingEmpty.generated +++ b/3.10/generated/Examples/RestWalAccessTailingEmpty.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/wal/tail?from=183250 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/wal/tail?from=183229 HTTP/1.1 204 No Content content-type: application/x-arango-dump @@ -14,7 +14,7 @@ x-arango-queue-time-seconds: 0.000000 x-arango-replication-checkmore: false x-arango-replication-frompresent: true x-arango-replication-lastincluded: 0 -x-arango-replication-lastscanned: 183247 -x-arango-replication-lasttick: 183250 +x-arango-replication-lastscanned: 183229 +x-arango-replication-lasttick: 183229 x-content-type-options: nosniff diff --git a/3.10/generated/Examples/RestWalAccessTailingSome.generated b/3.10/generated/Examples/RestWalAccessTailingSome.generated index cfd4fde54e..25c93fc9ba 100644 --- a/3.10/generated/Examples/RestWalAccessTailingSome.generated +++ b/3.10/generated/Examples/RestWalAccessTailingSome.generated @@ -1,4 +1,4 @@ -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/wal/tail?from=183250 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/wal/tail?from=183229 HTTP/1.1 200 OK content-type: application/x-arango-dump @@ -13,14 +13,14 @@ strict-transport-security: max-age=31536000 ; includeSubDomains x-arango-queue-time-seconds: 0.000000 x-arango-replication-checkmore: true x-arango-replication-frompresent: true -x-arango-replication-lastincluded: 183266 -x-arango-replication-lastscanned: 183282 -x-arango-replication-lasttick: 183282 +x-arango-replication-lastincluded: 183245 +x-arango-replication-lastscanned: 183255 +x-arango-replication-lasttick: 183255 x-content-type-options: nosniff { - "tick" : "183266", + "tick" : "183245", "type" : 2001, "db" : "_system", - "cuid" : "h42EADA9ADBF8/70093" + "cuid" : "h1A2DF6A6A405/70086" }↩ diff --git a/3.10/generated/Examples/RestWalAccessTickRange.generated b/3.10/generated/Examples/RestWalAccessTickRange.generated index 90ca086a35..a825c45645 100644 --- a/3.10/generated/Examples/RestWalAccessTickRange.generated +++ b/3.10/generated/Examples/RestWalAccessTickRange.generated @@ -14,11 +14,11 @@ x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff { - "time" : "2022-10-06T12:16:15Z", - "tickMin" : "177777", - "tickMax" : "183282", + "time" : "2022-10-20T12:57:07Z", + "tickMin" : "177759", + "tickMax" : "183255", "server" : { "version" : "3.10.1", - "serverId" : "73576457362424" + "serverId" : "28784713966597" } } diff --git a/3.10/generated/Examples/accessViaGeoIndex.generated b/3.10/generated/Examples/accessViaGeoIndex.generated index cfc040e7b9..6e8121717e 100644 --- a/3.10/generated/Examples/accessViaGeoIndex.generated +++ b/3.10/generated/Examples/accessViaGeoIndex.generated @@ -13,11 +13,11 @@ arangosh> db.example.ensureIndex({ type: "home" ], "geoJson" : false, - "id" : "example/71539", + "id" : "example/71528", "isNewlyCreated" : true, "legacyPolygons" : false, "maxNumCoverCells" : 8, - "name" : "idx_1745940460885508096", + "name" : "idx_1747211389424893953", "sparse" : true, "type" : "geo", "unique" : false, @@ -28,5 +28,5 @@ arangosh> items = db.example.getIndexes().map(1]); [ "example/0", - "example/71539" + "example/71528" ] diff --git a/3.10/generated/Examples/analyzerAqlCollapse.generated b/3.10/generated/Examples/analyzerAqlCollapse.generated index 1f6b4d54d0..ed90310281 100644 --- a/3.10/generated/Examples/analyzerAqlCollapse.generated +++ b/3.10/generated/Examples/analyzerAqlCollapse.generated @@ -12,9 +12,9 @@ arangosh> var view = db._createView("FOR d IN view SEARCH PHRASE(d.text, {TERM: 'B'}, 1, {TERM: 'D'}, 'uncollapsed') RETURN d"); [ { - "_key" : "71564", - "_id" : "coll/71564", - "_rev" : "_e4y3jKW---", + "_key" : "71553", + "_id" : "coll/71553", + "_rev" : "_e9T2_k6---", "text" : "A-B-C-D" } ] @@ -22,9 +22,9 @@ arangosh> db._query("FOR d IN view SEARCH PHRA arangosh> db._query("FOR d IN view SEARCH PHRASE(d.text, {TERM: 'B'}, -1, {TERM: 'D'}, 'uncollapsed') RETURN d"); [ { - "_key" : "71564", - "_id" : "coll/71564", - "_rev" : "_e4y3jKW---", + "_key" : "71553", + "_id" : "coll/71553", + "_rev" : "_e9T2_k6---", "text" : "A-B-C-D" } ] @@ -34,9 +34,9 @@ arangosh> db._query("FOR d IN view SEARCH PHRA arangosh> db._query("FOR d IN view SEARCH PHRASE(d.text, {TERM: 'B'}, -1, {TERM: 'D'}, 'collapsed') RETURN d"); [ { - "_key" : "71564", - "_id" : "coll/71564", - "_rev" : "_e4y3jKW---", + "_key" : "71553", + "_id" : "coll/71553", + "_rev" : "_e9T2_k6---", "text" : "A-B-C-D" } ] diff --git a/3.10/generated/Examples/analyzerAqlFilter.generated b/3.10/generated/Examples/analyzerAqlFilter.generated index fe85084171..c9b4feb64b 100644 --- a/3.10/generated/Examples/analyzerAqlFilter.generated +++ b/3.10/generated/Examples/analyzerAqlFilter.generated @@ -10,9 +10,9 @@ arangosh> var view = db._createView("FOR doc IN view SEARCH ANALYZER(doc.value IN ['regular', 'irregular'], 'filter') RETURN doc"); [ { - "_key" : "71641", - "_id" : "coll/71641", - "_rev" : "_e4y3jSC---", + "_key" : "71630", + "_id" : "coll/71630", + "_rev" : "_e9T2_n2--_", "value" : "regular" } ] diff --git a/3.10/generated/Examples/analyzerCollation.generated b/3.10/generated/Examples/analyzerCollation.generated index 2b6caef7ca..118c2305f3 100644 --- a/3.10/generated/Examples/analyzerCollation.generated +++ b/3.10/generated/Examples/analyzerCollation.generated @@ -10,24 +10,24 @@ arangosh> db.test.save([ ........> ]); [ { - "_id" : "test/71704", - "_key" : "71704", - "_rev" : "_e4y3jaG---" + "_id" : "test/71693", + "_key" : "71693", + "_rev" : "_e9T2_rG--_" }, { - "_id" : "test/71705", - "_key" : "71705", - "_rev" : "_e4y3jaG--_" + "_id" : "test/71694", + "_key" : "71694", + "_rev" : "_e9T2_rG--A" }, { - "_id" : "test/71706", - "_key" : "71706", - "_rev" : "_e4y3jaG--A" + "_id" : "test/71695", + "_key" : "71695", + "_rev" : "_e9T2_rG--B" }, { - "_id" : "test/71707", - "_key" : "71707", - "_rev" : "_e4y3jaG--B" + "_id" : "test/71696", + "_key" : "71696", + "_rev" : "_e9T2_rG--C" } ] arangosh> var view = db._createView("view", "arangosearch", diff --git a/3.10/generated/Examples/analyzerGeoJSON.generated b/3.10/generated/Examples/analyzerGeoJSON.generated index 6613568043..702cd9d53a 100644 --- a/3.10/generated/Examples/analyzerGeoJSON.generated +++ b/3.10/generated/Examples/analyzerGeoJSON.generated @@ -1,7 +1,7 @@ arangosh> var analyzers = require("@arangodb/analyzers"); arangosh> var a = analyzers.save("geo_json", "geojson", {}, ["frequency", "norm", "position"]); arangosh> db._create("geo"); -[ArangoCollection 71740, "geo" (type document, status loaded)] +[ArangoCollection 71729, "geo" (type document, status loaded)] arangosh> db.geo.save([ ........> { location: { type: "Point", coordinates: [6.937, 50.932] } }, ........> { location: { type: "Point", coordinates: [6.956, 50.941] } }, @@ -9,19 +9,19 @@ arangosh> db.geo.save([ ........> ]); [ { - "_id" : "geo/71745", - "_key" : "71745", - "_rev" : "_e4y3jiW---" + "_id" : "geo/71734", + "_key" : "71734", + "_rev" : "_e9T2_uK--_" }, { - "_id" : "geo/71746", - "_key" : "71746", - "_rev" : "_e4y3jiW--_" + "_id" : "geo/71735", + "_key" : "71735", + "_rev" : "_e9T2_uK--A" }, { - "_id" : "geo/71747", - "_key" : "71747", - "_rev" : "_e4y3jiW--A" + "_id" : "geo/71736", + "_key" : "71736", + "_rev" : "_e9T2_uK--B" } ] arangosh> db._createView("geo_view", "arangosearch", { @@ -35,16 +35,16 @@ arangosh> db._createView("geo_view"71748, "geo_view" (type arangosearch)] +[ArangoView 71737, "geo_view" (type arangosearch)] arangosh> db._query(`LET point = GEO_POINT(6.93, 50.94) ........> FOR doc IN geo_view ........> SEARCH ANALYZER(GEO_DISTANCE(doc.location, point) < 2000, "geo_json") ........> RETURN MERGE(doc, { distance: GEO_DISTANCE(doc.location, point) })`).toArray(); [ { - "_id" : "geo/71745", - "_key" : "71745", - "_rev" : "_e4y3jiW---", + "_id" : "geo/71734", + "_key" : "71734", + "_rev" : "_e9T2_uK--_", "location" : { "type" : "Point", "coordinates" : [ @@ -55,9 +55,9 @@ arangosh> db._query(`LET point = GEO_POINT(6.93, 50 "distance" : 1015.8355739436823 }, { - "_id" : "geo/71746", - "_key" : "71746", - "_rev" : "_e4y3jiW--_", + "_id" : "geo/71735", + "_key" : "71735", + "_rev" : "_e9T2_uK--A", "location" : { "type" : "Point", "coordinates" : [ diff --git a/3.10/generated/Examples/analyzerGeoPointLatLng.generated b/3.10/generated/Examples/analyzerGeoPointLatLng.generated index 8369defc1c..ee7b90650f 100644 --- a/3.10/generated/Examples/analyzerGeoPointLatLng.generated +++ b/3.10/generated/Examples/analyzerGeoPointLatLng.generated @@ -4,7 +4,7 @@ arangosh> var a = analyzers.save("lng"] ........> }, ["frequency", "norm", "position"]); arangosh> db._create("geo"); -[ArangoCollection 71765, "geo" (type document, status loaded)] +[ArangoCollection 71754, "geo" (type document, status loaded)] arangosh> db.geo.save([ ........> { location: { lat: 50.932, lng: 6.937 } }, ........> { location: { lat: 50.941, lng: 6.956 } }, @@ -12,19 +12,19 @@ arangosh> db.geo.save([ ........> ]); [ { - "_id" : "geo/71770", - "_key" : "71770", - "_rev" : "_e4y3jpK---" + "_id" : "geo/71759", + "_key" : "71759", + "_rev" : "_e9T2_wa--_" }, { - "_id" : "geo/71771", - "_key" : "71771", - "_rev" : "_e4y3jpK--_" + "_id" : "geo/71760", + "_key" : "71760", + "_rev" : "_e9T2_wa--A" }, { - "_id" : "geo/71772", - "_key" : "71772", - "_rev" : "_e4y3jpK--A" + "_id" : "geo/71761", + "_key" : "71761", + "_rev" : "_e9T2_wa--B" } ] arangosh> db._createView("geo_view", "arangosearch", { @@ -38,16 +38,16 @@ arangosh> db._createView("geo_view"71773, "geo_view" (type arangosearch)] +[ArangoView 71762, "geo_view" (type arangosearch)] arangosh> db._query(`LET point = GEO_POINT(6.93, 50.94) ........> FOR doc IN geo_view ........> SEARCH ANALYZER(GEO_DISTANCE(doc.location, point) < 2000, "geo_latlng") ........> RETURN MERGE(doc, { distance: GEO_DISTANCE([doc.location.lng, doc.location.lat], point) })`).toArray(); [ { - "_id" : "geo/71770", - "_key" : "71770", - "_rev" : "_e4y3jpK---", + "_id" : "geo/71759", + "_key" : "71759", + "_rev" : "_e9T2_wa--_", "location" : { "lat" : 50.932, "lng" : 6.937 @@ -55,9 +55,9 @@ arangosh> db._query(`LET point = GEO_POINT(6.93, 50 "distance" : 1015.8355739436823 }, { - "_id" : "geo/71771", - "_key" : "71771", - "_rev" : "_e4y3jpK--_", + "_id" : "geo/71760", + "_key" : "71760", + "_rev" : "_e9T2_wa--A", "location" : { "lat" : 50.941, "lng" : 6.956 diff --git a/3.10/generated/Examples/analyzerGeoPointPair.generated b/3.10/generated/Examples/analyzerGeoPointPair.generated index 26c00f7985..cdf860425d 100644 --- a/3.10/generated/Examples/analyzerGeoPointPair.generated +++ b/3.10/generated/Examples/analyzerGeoPointPair.generated @@ -1,7 +1,7 @@ arangosh> var analyzers = require("@arangodb/analyzers"); arangosh> var a = analyzers.save("geo_pair", "geopoint", {}, ["frequency", "norm", "position"]); arangosh> db._create("geo"); -[ArangoCollection 71790, "geo" (type document, status loaded)] +[ArangoCollection 71779, "geo" (type document, status loaded)] arangosh> db.geo.save([ ........> { location: [50.932, 6.937] }, ........> { location: [50.941, 6.956] }, @@ -9,19 +9,19 @@ arangosh> db.geo.save([ ........> ]); [ { - "_id" : "geo/71795", - "_key" : "71795", - "_rev" : "_e4y3jvu---" + "_id" : "geo/71784", + "_key" : "71784", + "_rev" : "_e9T2_ye--_" }, { - "_id" : "geo/71796", - "_key" : "71796", - "_rev" : "_e4y3jvu--_" + "_id" : "geo/71785", + "_key" : "71785", + "_rev" : "_e9T2_ye--A" }, { - "_id" : "geo/71797", - "_key" : "71797", - "_rev" : "_e4y3jvu--A" + "_id" : "geo/71786", + "_key" : "71786", + "_rev" : "_e9T2_ye--B" } ] arangosh> db._createView("geo_view", "arangosearch", { @@ -35,16 +35,16 @@ arangosh> db._createView("geo_view"71798, "geo_view" (type arangosearch)] +[ArangoView 71787, "geo_view" (type arangosearch)] arangosh> db._query(`LET point = GEO_POINT(6.93, 50.94) ........> FOR doc IN geo_view ........> SEARCH ANALYZER(GEO_DISTANCE(doc.location, point) < 2000, "geo_pair") ........> RETURN MERGE(doc, { distance: GEO_DISTANCE([doc.location[1], doc.location[0]], point) })`).toArray(); [ { - "_id" : "geo/71795", - "_key" : "71795", - "_rev" : "_e4y3jvu---", + "_id" : "geo/71784", + "_key" : "71784", + "_rev" : "_e9T2_ye--_", "location" : [ 50.932, 6.937 @@ -52,9 +52,9 @@ arangosh> db._query(`LET point = GEO_POINT(6.93, 50 "distance" : 1015.8355739436823 }, { - "_id" : "geo/71796", - "_key" : "71796", - "_rev" : "_e4y3jvu--_", + "_id" : "geo/71785", + "_key" : "71785", + "_rev" : "_e9T2_ye--A", "location" : [ 50.941, 6.956 diff --git a/3.10/generated/Examples/analyzerList.generated b/3.10/generated/Examples/analyzerList.generated index 6cf2254cf2..9feada36df 100644 --- a/3.10/generated/Examples/analyzerList.generated +++ b/3.10/generated/Examples/analyzerList.generated @@ -1,18 +1,18 @@ arangosh> var analyzers = require("@arangodb/analyzers"); arangosh> analyzers.toArray(); [ - [ArangoAnalyzer "text_sv" (type text)], [ArangoAnalyzer "text_pt" (type text)], [ArangoAnalyzer "text_no" (type text)], - [ArangoAnalyzer "text_nl" (type text)], [ArangoAnalyzer "text_it" (type text)], - [ArangoAnalyzer "text_fr" (type text)], - [ArangoAnalyzer "text_zh" (type text)], - [ArangoAnalyzer "text_fi" (type text)], - [ArangoAnalyzer "text_ru" (type text)], [ArangoAnalyzer "text_es" (type text)], + [ArangoAnalyzer "text_sv" (type text)], [ArangoAnalyzer "text_en" (type text)], + [ArangoAnalyzer "text_zh" (type text)], + [ArangoAnalyzer "text_nl" (type text)], + [ArangoAnalyzer "text_fr" (type text)], [ArangoAnalyzer "text_de" (type text)], + [ArangoAnalyzer "text_ru" (type text)], + [ArangoAnalyzer "text_fi" (type text)], [ArangoAnalyzer "identity" (type identity)], [ArangoAnalyzer "_system::delimiter_hyphen" (type delimiter)], [ArangoAnalyzer "_system::custom" (type text)] diff --git a/3.10/generated/Examples/aqlArrayInterleave_3.generated b/3.10/generated/Examples/aqlArrayInterleave_3.generated index ec8787058e..848612ccaf 100644 --- a/3.10/generated/Examples/aqlArrayInterleave_3.generated +++ b/3.10/generated/Examples/aqlArrayInterleave_3.generated @@ -6,39 +6,39 @@ RETURN INTERLEAVE(p.vertices[*]._id, p.edges[*]._id) [ [ "places/Toronto", - "connections/72016", + "connections/72005", "places/Winnipeg" ], [ "places/Toronto", - "connections/72016", + "connections/72005", "places/Winnipeg", - "connections/72020", + "connections/72009", "places/Saskatoon" ], [ "places/Toronto", - "connections/72016", + "connections/72005", "places/Winnipeg", - "connections/72020", + "connections/72009", "places/Saskatoon", - "connections/72024", + "connections/72013", "places/Edmonton" ], [ "places/Toronto", - "connections/72016", + "connections/72005", "places/Winnipeg", - "connections/72020", + "connections/72009", "places/Saskatoon", - "connections/72022", + "connections/72011", "places/Winnipeg" ], [ "places/Toronto", - "connections/72016", + "connections/72005", "places/Winnipeg", - "connections/72018", + "connections/72007", "places/Toronto" ] ] \ No newline at end of file diff --git a/3.10/generated/Examples/aqlDateTimeToLocal_3.generated b/3.10/generated/Examples/aqlDateTimeToLocal_3.generated index 2e571686c9..f22c17344e 100644 --- a/3.10/generated/Examples/aqlDateTimeToLocal_3.generated +++ b/3.10/generated/Examples/aqlDateTimeToLocal_3.generated @@ -4,7 +4,7 @@ @R [ { - "local": "2022-10-06T13:16:16.780", + "local": "2022-10-20T13:57:07.833", "tzdb": "2022a", "zoneInfo": { "name": "WAT", diff --git a/3.10/generated/Examples/aqlMinHashCount.generated b/3.10/generated/Examples/aqlMinHashCount.generated index ebf9c3622a..a0640b874c 100644 --- a/3.10/generated/Examples/aqlMinHashCount.generated +++ b/3.10/generated/Examples/aqlMinHashCount.generated @@ -1,7 +1,7 @@ @Q: - RETURN MINHASH_ERROR(0.05) + RETURN MINHASH_COUNT(0.05) @R [ - null + 400 ] \ No newline at end of file diff --git a/3.10/generated/Examples/aqlRandomToken.generated b/3.10/generated/Examples/aqlRandomToken.generated index 746d02a220..5f4a17c0a3 100644 --- a/3.10/generated/Examples/aqlRandomToken.generated +++ b/3.10/generated/Examples/aqlRandomToken.generated @@ -7,7 +7,7 @@ RETURN [ @R [ [ - "mwudI8dP", - "7JuCi8CH" + "aEkWclgo", + "bhbmhec2" ] ] \ No newline at end of file diff --git a/3.10/generated/Examples/aqlSha512.generated b/3.10/generated/Examples/aqlSha512.generated index 6c70f3f367..3ab1667294 100644 --- a/3.10/generated/Examples/aqlSha512.generated +++ b/3.10/generated/Examples/aqlSha512.generated @@ -1,5 +1,5 @@ @Q: -RETURN SHA512("foobar") + RETURN SHA512("foobar") @R [ diff --git a/3.10/generated/Examples/aqlUuid.generated b/3.10/generated/Examples/aqlUuid.generated index 8ea44f17ee..b0b939caa5 100644 --- a/3.10/generated/Examples/aqlUuid.generated +++ b/3.10/generated/Examples/aqlUuid.generated @@ -4,7 +4,7 @@ FOR i IN 1..3 @R [ - "18250a6d-106b-47c7-beac-1e421e24be21", - "93ad02b5-5c4b-4908-be62-b43789360272", - "1916577a-d250-4314-93f8-a2b8bd2b9aa1" + "262c4c53-5ccf-416f-8848-28c3e6d05cec", + "61381ee8-e014-4274-b372-425fd2129ab0", + "58eb39d0-15e6-454f-849c-4ec6941648db" ] \ No newline at end of file diff --git a/3.10/generated/Examples/col_dropIndex.generated b/3.10/generated/Examples/col_dropIndex.generated index 3f02cf935a..9a9f0d76d8 100644 --- a/3.10/generated/Examples/col_dropIndex.generated +++ b/3.10/generated/Examples/col_dropIndex.generated @@ -7,9 +7,9 @@ arangosh> db.example.ensureIndex({ type: "a", "b" ], - "id" : "example/72853", + "id" : "example/72842", "isNewlyCreated" : true, - "name" : "idx_1745940462819082240", + "name" : "idx_1747211389994270721", "selectivityEstimate" : 1, "sparse" : false, "type" : "persistent", @@ -38,8 +38,8 @@ arangosh> indexInfo; "a", "b" ], - "id" : "example/72853", - "name" : "idx_1745940462819082240", + "id" : "example/72842", + "name" : "idx_1747211389994270721", "selectivityEstimate" : 1, "sparse" : false, "type" : "persistent", diff --git a/3.10/generated/Examples/collectionDatabaseCollectionName.generated b/3.10/generated/Examples/collectionDatabaseCollectionName.generated index 949cfcf6ff..a63f8ac939 100644 --- a/3.10/generated/Examples/collectionDatabaseCollectionName.generated +++ b/3.10/generated/Examples/collectionDatabaseCollectionName.generated @@ -1,2 +1,2 @@ arangosh> db.example; -[ArangoCollection 72871, "example" (type document, status loaded)] +[ArangoCollection 72860, "example" (type document, status loaded)] diff --git a/3.10/generated/Examples/collectionDatabaseCreateKey.generated b/3.10/generated/Examples/collectionDatabaseCreateKey.generated index 5f87f0f4fc..132bf46810 100644 --- a/3.10/generated/Examples/collectionDatabaseCreateKey.generated +++ b/3.10/generated/Examples/collectionDatabaseCreateKey.generated @@ -1,21 +1,21 @@ arangosh> db._create("users", ........> { keyOptions: { type: "autoincrement", offset: 10, increment: 5 } }); -[ArangoCollection 72878, "users" (type document, status loaded)] +[ArangoCollection 72867, "users" (type document, status loaded)] arangosh> db.users.save({ name: "user 1" }); { "_id" : "users/10", "_key" : "10", - "_rev" : "_e4y3k8u---" + "_rev" : "_e9T2AGa--_" } arangosh> db.users.save({ name: "user 2" }); { "_id" : "users/15", "_key" : "15", - "_rev" : "_e4y3k8y---" + "_rev" : "_e9T2AGa--A" } arangosh> db.users.save({ name: "user 3" }); { "_id" : "users/20", "_key" : "20", - "_rev" : "_e4y3k82---" + "_rev" : "_e9T2AGa--B" } diff --git a/3.10/generated/Examples/collectionDatabaseCreateProperties.generated b/3.10/generated/Examples/collectionDatabaseCreateProperties.generated index fac7feb500..11366e01a9 100644 --- a/3.10/generated/Examples/collectionDatabaseCreateProperties.generated +++ b/3.10/generated/Examples/collectionDatabaseCreateProperties.generated @@ -1,8 +1,8 @@ arangosh> c = db._create("users", { waitForSync: true }); -[ArangoCollection 72888, "users" (type document, status loaded)] +[ArangoCollection 72877, "users" (type document, status loaded)] arangosh> c.properties(); { - "globallyUniqueId" : "h42EADA9ADBF8/72888", + "globallyUniqueId" : "h1A2DF6A6A405/72877", "isSystem" : false, "waitForSync" : true, "keyOptions" : { diff --git a/3.10/generated/Examples/collectionDatabaseCreateSpecialKey.generated b/3.10/generated/Examples/collectionDatabaseCreateSpecialKey.generated index 3bd6662f9b..e489409a0b 100644 --- a/3.10/generated/Examples/collectionDatabaseCreateSpecialKey.generated +++ b/3.10/generated/Examples/collectionDatabaseCreateSpecialKey.generated @@ -1,16 +1,16 @@ arangosh> db._create("users", { keyOptions: { allowUserKeys: false } }); -[ArangoCollection 72896, "users" (type document, status loaded)] +[ArangoCollection 72885, "users" (type document, status loaded)] arangosh> db.users.save({ name: "user 1" }); { - "_id" : "users/72901", - "_key" : "72901", - "_rev" : "_e4y3k9y---" + "_id" : "users/72890", + "_key" : "72890", + "_rev" : "_e9T2AGm--_" } arangosh> db.users.save({ name: "user 2", _key: "myuser" }); [ArangoError 1222: unexpected document key] arangosh> db.users.save({ name: "user 3" }); { - "_id" : "users/72904", - "_key" : "72904", - "_rev" : "_e4y3k92---" + "_id" : "users/72893", + "_key" : "72893", + "_rev" : "_e9T2AGq---" } diff --git a/3.10/generated/Examples/collectionDatabaseCreateSuccess.generated b/3.10/generated/Examples/collectionDatabaseCreateSuccess.generated index 769e773c20..17c77efee3 100644 --- a/3.10/generated/Examples/collectionDatabaseCreateSuccess.generated +++ b/3.10/generated/Examples/collectionDatabaseCreateSuccess.generated @@ -1,8 +1,8 @@ arangosh> c = db._create("users"); -[ArangoCollection 72908, "users" (type document, status loaded)] +[ArangoCollection 72897, "users" (type document, status loaded)] arangosh> c.properties(); { - "globallyUniqueId" : "h42EADA9ADBF8/72908", + "globallyUniqueId" : "h1A2DF6A6A405/72897", "isSystem" : false, "waitForSync" : false, "keyOptions" : { diff --git a/3.10/generated/Examples/collectionDatabaseDropByObject.generated b/3.10/generated/Examples/collectionDatabaseDropByObject.generated index ae883a3516..7c5f39d280 100644 --- a/3.10/generated/Examples/collectionDatabaseDropByObject.generated +++ b/3.10/generated/Examples/collectionDatabaseDropByObject.generated @@ -1,5 +1,5 @@ arangosh> col = db.example; -[ArangoCollection 72916, "example" (type document, status loaded)] +[ArangoCollection 72905, "example" (type document, status loaded)] arangosh> db._drop(col); arangosh> col; -[ArangoCollection 72916, "example" (type document, status loaded)] +[ArangoCollection 72905, "example" (type document, status loaded)] diff --git a/3.10/generated/Examples/collectionDatabaseDropName.generated b/3.10/generated/Examples/collectionDatabaseDropName.generated index 685bd4d38e..a34940681e 100644 --- a/3.10/generated/Examples/collectionDatabaseDropName.generated +++ b/3.10/generated/Examples/collectionDatabaseDropName.generated @@ -1,5 +1,5 @@ arangosh> col = db.example; -[ArangoCollection 72923, "example" (type document, status loaded)] +[ArangoCollection 72912, "example" (type document, status loaded)] arangosh> db._drop("example"); arangosh> col; -[ArangoCollection 72923, "example" (type document, status deleted)] +[ArangoCollection 72912, "example" (type document, status deleted)] diff --git a/3.10/generated/Examples/collectionDatabaseDropSystem.generated b/3.10/generated/Examples/collectionDatabaseDropSystem.generated index ea4501b74e..b18bc0abed 100644 --- a/3.10/generated/Examples/collectionDatabaseDropSystem.generated +++ b/3.10/generated/Examples/collectionDatabaseDropSystem.generated @@ -1,5 +1,5 @@ arangosh> col = db._example; -[ArangoCollection 72930, "_example" (type document, status loaded)] +[ArangoCollection 72919, "_example" (type document, status loaded)] arangosh> db._drop("_example", { isSystem: true }); arangosh> col; -[ArangoCollection 72930, "_example" (type document, status deleted)] +[ArangoCollection 72919, "_example" (type document, status deleted)] diff --git a/3.10/generated/Examples/collectionDatabaseNameKnown.generated b/3.10/generated/Examples/collectionDatabaseNameKnown.generated index 8403c12edc..88e03fff4f 100644 --- a/3.10/generated/Examples/collectionDatabaseNameKnown.generated +++ b/3.10/generated/Examples/collectionDatabaseNameKnown.generated @@ -1,2 +1,2 @@ arangosh> db._collection("demo"); -[ArangoCollection 95, "demo" (type document, status loaded)] +[ArangoCollection 91, "demo" (type document, status loaded)] diff --git a/3.10/generated/Examples/collectionDatabaseTruncateByObject.generated b/3.10/generated/Examples/collectionDatabaseTruncateByObject.generated index 33b4db1ebc..c067bb8718 100644 --- a/3.10/generated/Examples/collectionDatabaseTruncateByObject.generated +++ b/3.10/generated/Examples/collectionDatabaseTruncateByObject.generated @@ -1,10 +1,10 @@ arangosh> col = db.example; -[ArangoCollection 72938, "example" (type document, status loaded)] +[ArangoCollection 72927, "example" (type document, status loaded)] arangosh> col.save({ "Hello" : "World" }); { - "_id" : "example/72943", - "_key" : "72943", - "_rev" : "_e4y3l_6---" + "_id" : "example/72932", + "_key" : "72932", + "_rev" : "_e9T2AHG--_" } arangosh> col.count(); 1 diff --git a/3.10/generated/Examples/collectionDatabaseTruncateName.generated b/3.10/generated/Examples/collectionDatabaseTruncateName.generated index 092c5282f8..541e834ca7 100644 --- a/3.10/generated/Examples/collectionDatabaseTruncateName.generated +++ b/3.10/generated/Examples/collectionDatabaseTruncateName.generated @@ -1,10 +1,10 @@ arangosh> col = db.example; -[ArangoCollection 72950, "example" (type document, status loaded)] +[ArangoCollection 72939, "example" (type document, status loaded)] arangosh> col.save({ "Hello" : "World" }); { - "_id" : "example/72955", - "_key" : "72955", - "_rev" : "_e4y3lCm---" + "_id" : "example/72944", + "_key" : "72944", + "_rev" : "_e9T2AIO---" } arangosh> col.count(); 1 diff --git a/3.10/generated/Examples/collectionDrop.generated b/3.10/generated/Examples/collectionDrop.generated index 1fbe742704..3164931380 100644 --- a/3.10/generated/Examples/collectionDrop.generated +++ b/3.10/generated/Examples/collectionDrop.generated @@ -1,5 +1,5 @@ arangosh> col = db.example; -[ArangoCollection 72962, "example" (type document, status loaded)] +[ArangoCollection 72951, "example" (type document, status loaded)] arangosh> col.drop(); arangosh> col; -[ArangoCollection 72962, "example" (type document, status deleted)] +[ArangoCollection 72951, "example" (type document, status deleted)] diff --git a/3.10/generated/Examples/collectionDropSystem.generated b/3.10/generated/Examples/collectionDropSystem.generated index 03589f0df7..9e01ba792a 100644 --- a/3.10/generated/Examples/collectionDropSystem.generated +++ b/3.10/generated/Examples/collectionDropSystem.generated @@ -1,5 +1,5 @@ arangosh> col = db._example; -[ArangoCollection 72969, "_example" (type document, status loaded)] +[ArangoCollection 72958, "_example" (type document, status loaded)] arangosh> col.drop({ isSystem: true }); arangosh> col; -[ArangoCollection 72969, "_example" (type document, status deleted)] +[ArangoCollection 72958, "_example" (type document, status deleted)] diff --git a/3.10/generated/Examples/collectionEnsureIndex.generated b/3.10/generated/Examples/collectionEnsureIndex.generated index 24e3e3b481..b2c349e005 100644 --- a/3.10/generated/Examples/collectionEnsureIndex.generated +++ b/3.10/generated/Examples/collectionEnsureIndex.generated @@ -6,9 +6,9 @@ arangosh> db.test.ensureIndex({ type: "fields" : [ "a" ], - "id" : "test/72980", + "id" : "test/72969", "isNewlyCreated" : true, - "name" : "idx_1745940462979514368", + "name" : "idx_1747211390047748097", "selectivityEstimate" : 1, "sparse" : true, "type" : "persistent", @@ -24,9 +24,9 @@ arangosh> db.test.ensureIndex({ type: "a", "b" ], - "id" : "test/72984", + "id" : "test/72973", "isNewlyCreated" : true, - "name" : "idx_1745940462982660096", + "name" : "idx_1747211390049845248", "selectivityEstimate" : 1, "sparse" : false, "type" : "persistent", diff --git a/3.10/generated/Examples/collectionFigures.generated b/3.10/generated/Examples/collectionFigures.generated index 568a0ce933..a5a3fc0a92 100644 --- a/3.10/generated/Examples/collectionFigures.generated +++ b/3.10/generated/Examples/collectionFigures.generated @@ -2,9 +2,9 @@ arangosh> db.demo.figures() { "indexes" : { "count" : 1, - "size" : 2260 + "size" : 2075 }, - "documentsSize" : 13086, + "documentsSize" : 13997, "cacheInUse" : false, "cacheSize" : 0, "cacheUsage" : 0 diff --git a/3.10/generated/Examples/collectionFiguresDetails.generated b/3.10/generated/Examples/collectionFiguresDetails.generated index f319186d89..ed84d14959 100644 --- a/3.10/generated/Examples/collectionFiguresDetails.generated +++ b/3.10/generated/Examples/collectionFiguresDetails.generated @@ -2,9 +2,9 @@ arangosh> db.demo.figures(true) { "indexes" : { "count" : 1, - "size" : 2260 + "size" : 2075 }, - "documentsSize" : 13086, + "documentsSize" : 13997, "cacheInUse" : false, "cacheSize" : 0, "cacheUsage" : 0, diff --git a/3.10/generated/Examples/collectionFirstExample.generated b/3.10/generated/Examples/collectionFirstExample.generated index 8df9b4d2b5..0a3787c313 100644 --- a/3.10/generated/Examples/collectionFirstExample.generated +++ b/3.10/generated/Examples/collectionFirstExample.generated @@ -1,7 +1,7 @@ arangosh> db.users.firstExample("name", "Angela"); { - "_key" : "73003", - "_id" : "users/73003", - "_rev" : "_e4y3lG6--_", + "_key" : "72992", + "_id" : "users/72992", + "_rev" : "_e9T2AKG--B", "name" : "Angela" } diff --git a/3.10/generated/Examples/collectionGetIndexes.generated b/3.10/generated/Examples/collectionGetIndexes.generated index e66b300cbf..d674704074 100644 --- a/3.10/generated/Examples/collectionGetIndexes.generated +++ b/3.10/generated/Examples/collectionGetIndexes.generated @@ -8,9 +8,9 @@ arangosh> db.test.ensureIndex({ type: "attribute", "secondAttribute.subAttribute" ], - "id" : "test/73022", + "id" : "test/73011", "isNewlyCreated" : true, - "name" : "idx_1745940463029846016", + "name" : "idx_1747211390065573888", "selectivityEstimate" : 1, "sparse" : false, "type" : "persistent", @@ -37,8 +37,8 @@ arangosh> db.test.getIndexes(); "fields" : [ "attribute" ], - "id" : "test/73014", - "name" : "idx_1745940463025651712", + "id" : "test/73003", + "name" : "idx_1747211390064525313", "selectivityEstimate" : 1, "sparse" : false, "type" : "persistent", @@ -51,8 +51,8 @@ arangosh> db.test.getIndexes(); "fields" : [ "uniqueAttribute" ], - "id" : "test/73018", - "name" : "idx_1745940463027748864", + "id" : "test/73007", + "name" : "idx_1747211390064525314", "selectivityEstimate" : 1, "sparse" : false, "type" : "persistent", @@ -66,8 +66,8 @@ arangosh> db.test.getIndexes(); "attribute", "secondAttribute.subAttribute" ], - "id" : "test/73022", - "name" : "idx_1745940463029846016", + "id" : "test/73011", + "name" : "idx_1747211390065573888", "selectivityEstimate" : 1, "sparse" : false, "type" : "persistent", diff --git a/3.10/generated/Examples/collectionGetIndexesStats.generated b/3.10/generated/Examples/collectionGetIndexesStats.generated index 45a21749e6..6000f867e1 100644 --- a/3.10/generated/Examples/collectionGetIndexesStats.generated +++ b/3.10/generated/Examples/collectionGetIndexesStats.generated @@ -5,7 +5,7 @@ arangosh> db.coll.indexes(true, "_key" ], "figures" : { - "memory" : 102, + "memory" : 476, "cacheInUse" : false, "cacheSize" : 0, "cacheUsage" : 0 @@ -46,7 +46,7 @@ arangosh> db.coll.indexes(true, "numFiles" : 6, "indexSize" : 727 }, - "id" : "coll/73038", + "id" : "coll/73027", "includeAllFields" : false, "name" : "inv-idx", "primarySort" : { @@ -77,11 +77,11 @@ arangosh> db.coll.indexes(true, "numFiles" : 6, "indexSize" : 1239 }, - "id" : "coll/73042", + "id" : "coll/73031", "includeAllFields" : true, "storeValues" : "none", "trackListPositions" : false, "type" : "arangosearch", - "view" : "h42EADA9ADBF8/73040" + "view" : "h1A2DF6A6A405/73029" } ] diff --git a/3.10/generated/Examples/collectionLoad.generated b/3.10/generated/Examples/collectionLoad.generated index c73141ae08..dc1dc8b2fa 100644 --- a/3.10/generated/Examples/collectionLoad.generated +++ b/3.10/generated/Examples/collectionLoad.generated @@ -1,5 +1,5 @@ arangosh> col = db.example; -[ArangoCollection 73055, "example" (type document, status loaded)] +[ArangoCollection 73044, "example" (type document, status loaded)] arangosh> col.load(); arangosh> col; -[ArangoCollection 73055, "example" (type document, status loaded)] +[ArangoCollection 73044, "example" (type document, status loaded)] diff --git a/3.10/generated/Examples/collectionLookupByKeys.generated b/3.10/generated/Examples/collectionLookupByKeys.generated index 713708a162..f905bf2f74 100644 --- a/3.10/generated/Examples/collectionLookupByKeys.generated +++ b/3.10/generated/Examples/collectionLookupByKeys.generated @@ -10,61 +10,61 @@ arangosh> db.example.documents(keys); { "_key" : "test0", "_id" : "example/test0", - "_rev" : "_e4y3lSm---", + "_rev" : "_e9T2ANy---", "value" : 0 }, { "_key" : "test1", "_id" : "example/test1", - "_rev" : "_e4y3lSq---", + "_rev" : "_e9T2ANy--_", "value" : 1 }, { "_key" : "test2", "_id" : "example/test2", - "_rev" : "_e4y3lSu---", + "_rev" : "_e9T2ANy--A", "value" : 2 }, { "_key" : "test3", "_id" : "example/test3", - "_rev" : "_e4y3lSy---", + "_rev" : "_e9T2ANy--B", "value" : 3 }, { "_key" : "test4", "_id" : "example/test4", - "_rev" : "_e4y3lS2---", + "_rev" : "_e9T2ANy--C", "value" : 4 }, { "_key" : "test5", "_id" : "example/test5", - "_rev" : "_e4y3lS2--_", + "_rev" : "_e9T2ANy--D", "value" : 5 }, { "_key" : "test6", "_id" : "example/test6", - "_rev" : "_e4y3lS6---", + "_rev" : "_e9T2ANy--E", "value" : 6 }, { "_key" : "test7", "_id" : "example/test7", - "_rev" : "_e4y3lT----", + "_rev" : "_e9T2ANy--F", "value" : 7 }, { "_key" : "test8", "_id" : "example/test8", - "_rev" : "_e4y3lTC---", + "_rev" : "_e9T2AN2---", "value" : 8 }, { "_key" : "test9", "_id" : "example/test9", - "_rev" : "_e4y3lTC--_", + "_rev" : "_e9T2AN2--_", "value" : 9 } ] diff --git a/3.10/generated/Examples/collectionProperties.generated b/3.10/generated/Examples/collectionProperties.generated index 91637f4434..9049b59987 100644 --- a/3.10/generated/Examples/collectionProperties.generated +++ b/3.10/generated/Examples/collectionProperties.generated @@ -1,6 +1,6 @@ arangosh> db.example.properties(); { - "globallyUniqueId" : "h42EADA9ADBF8/73082", + "globallyUniqueId" : "h1A2DF6A6A405/73071", "isSystem" : false, "waitForSync" : false, "keyOptions" : { diff --git a/3.10/generated/Examples/collectionProperty.generated b/3.10/generated/Examples/collectionProperty.generated index 0b8daf5625..cb6dec6584 100644 --- a/3.10/generated/Examples/collectionProperty.generated +++ b/3.10/generated/Examples/collectionProperty.generated @@ -1,6 +1,6 @@ arangosh> db.example.properties({ waitForSync : true }); { - "globallyUniqueId" : "h42EADA9ADBF8/73090", + "globallyUniqueId" : "h1A2DF6A6A405/73079", "isSystem" : false, "waitForSync" : true, "keyOptions" : { diff --git a/3.10/generated/Examples/collectionRename.generated b/3.10/generated/Examples/collectionRename.generated index 0da5668bb0..02aa2e2492 100644 --- a/3.10/generated/Examples/collectionRename.generated +++ b/3.10/generated/Examples/collectionRename.generated @@ -1,5 +1,5 @@ arangosh> c = db.example; -[ArangoCollection 73118, "example" (type document, status loaded)] +[ArangoCollection 73107, "example" (type document, status loaded)] arangosh> c.rename("better-example"); arangosh> c; -[ArangoCollection 73118, "better-example" (type document, status loaded)] +[ArangoCollection 73107, "better-example" (type document, status loaded)] diff --git a/3.10/generated/Examples/collectionTruncate.generated b/3.10/generated/Examples/collectionTruncate.generated index 15a9444ca9..f7803af317 100644 --- a/3.10/generated/Examples/collectionTruncate.generated +++ b/3.10/generated/Examples/collectionTruncate.generated @@ -1,10 +1,10 @@ arangosh> col = db.example; -[ArangoCollection 73127, "example" (type document, status loaded)] +[ArangoCollection 73116, "example" (type document, status loaded)] arangosh> col.save({ "Hello" : "World" }); { - "_id" : "example/73132", - "_key" : "73132", - "_rev" : "_e4y3lVu---" + "_id" : "example/73121", + "_key" : "73121", + "_rev" : "_e9T2AOW--_" } arangosh> col.count(); 1 diff --git a/3.10/generated/Examples/collectionsDatabaseName.generated b/3.10/generated/Examples/collectionsDatabaseName.generated index ee636d8979..31fdbbbae9 100644 --- a/3.10/generated/Examples/collectionsDatabaseName.generated +++ b/3.10/generated/Examples/collectionsDatabaseName.generated @@ -12,7 +12,7 @@ arangosh> db._collections(); [ArangoCollection 13, "_statistics15" (type document, status loaded)], [ArangoCollection 16, "_statisticsRaw" (type document, status loaded)], [ArangoCollection 4, "_users" (type document, status loaded)], - [ArangoCollection 101, "animals" (type document, status loaded)], - [ArangoCollection 95, "demo" (type document, status loaded)], - [ArangoCollection 73139, "example" (type document, status loaded)] + [ArangoCollection 97, "animals" (type document, status loaded)], + [ArangoCollection 91, "demo" (type document, status loaded)], + [ArangoCollection 73128, "example" (type document, status loaded)] ] diff --git a/3.10/generated/Examples/computedValuesCombine.generated b/3.10/generated/Examples/computedValuesCombine.generated index 46cc90a36b..770994fbc0 100644 --- a/3.10/generated/Examples/computedValuesCombine.generated +++ b/3.10/generated/Examples/computedValuesCombine.generated @@ -12,9 +12,9 @@ arangosh> var idx = db.users.ensureIndex({ arangosh> db._query(`FOR u IN users FILTER "avocados" IN u.searchTags RETURN u`).toArray(); [ { - "_key" : "73159", - "_id" : "users/73159", - "_rev" : "_e4y3lYm---", + "_key" : "73148", + "_id" : "users/73148", + "_rev" : "_e9T2APu---", "name" : "Paula Plant", "is" : [ { diff --git a/3.10/generated/Examples/computedValuesCreatedAt.generated b/3.10/generated/Examples/computedValuesCreatedAt.generated index 8801541b89..e2ab137b8f 100644 --- a/3.10/generated/Examples/computedValuesCreatedAt.generated +++ b/3.10/generated/Examples/computedValuesCreatedAt.generated @@ -12,10 +12,10 @@ arangosh> var doc = db.users.save({ "_key" : "73186", - "_id" : "users/73186", - "_rev" : "_e4y3lZa---", + "_key" : "73175", + "_id" : "users/73175", + "_rev" : "_e9T2AQC--_", "name" : "Paula Plant", - "createdAt" : 1665058577847 + "createdAt" : 1666270628129 } ] diff --git a/3.10/generated/Examples/computedValuesKeepNull.generated b/3.10/generated/Examples/computedValuesKeepNull.generated index e36a7011a2..68512a8271 100644 --- a/3.10/generated/Examples/computedValuesKeepNull.generated +++ b/3.10/generated/Examples/computedValuesKeepNull.generated @@ -16,23 +16,23 @@ arangosh> var docs = db.users.save([ arangosh> db.users.toArray(); [ { - "_key" : "73210", - "_id" : "users/73210", - "_rev" : "_e4y3la----", + "_key" : "73199", + "_id" : "users/73199", + "_rev" : "_e9T2AQK--_", "firstName" : "Paula", "lastName" : "Plant", "fullName" : "Paula Plant" }, { - "_key" : "73211", - "_id" : "users/73211", - "_rev" : "_e4y3la---_", + "_key" : "73200", + "_id" : "users/73200", + "_rev" : "_e9T2AQK--A", "firstName" : "James" }, { - "_key" : "73212", - "_id" : "users/73212", - "_rev" : "_e4y3la---A", + "_key" : "73201", + "_id" : "users/73201", + "_rev" : "_e9T2AQK--B", "lastName" : "Barrett", "fullName" : "Andy J. Barrett" } diff --git a/3.10/generated/Examples/computedValuesModifiedAt.generated b/3.10/generated/Examples/computedValuesModifiedAt.generated index 47229ff2a1..f2510e2405 100644 --- a/3.10/generated/Examples/computedValuesModifiedAt.generated +++ b/3.10/generated/Examples/computedValuesModifiedAt.generated @@ -13,20 +13,20 @@ arangosh> doc = db.users.update("123""_id" : "users/123", "_key" : "123", - "_rev" : "_e4y3lau---", - "_oldRev" : "_e4y3laq---" + "_rev" : "_e9T2AQe---", + "_oldRev" : "_e9T2AQW--_" } arangosh> db.users.toArray(); [ { "_key" : "123", "_id" : "users/123", - "_rev" : "_e4y3lau---", + "_rev" : "_e9T2AQe---", "name" : "Paula Plant", "email" : "gardener@arangodb.com", "modifiedAt" : { - "date" : "2022-10-06", - "time" : "12:16:17.868Z" + "date" : "2022-10-20", + "time" : "12:57:08.136Z" } } ] @@ -34,15 +34,15 @@ arangosh> doc = db.users.update("123""_id" : "users/123", "_key" : "123", - "_rev" : "_e4y3la2---", - "_oldRev" : "_e4y3lau---" + "_rev" : "_e9T2AQi---", + "_oldRev" : "_e9T2AQe---" } arangosh> db.users.toArray(); [ { "_key" : "123", "_id" : "users/123", - "_rev" : "_e4y3la2---", + "_rev" : "_e9T2AQi---", "name" : "Paula Plant", "email" : "greenhouse@arangodb.com", "modifiedAt" : { diff --git a/3.10/generated/Examples/computedValuesSubattribute.generated b/3.10/generated/Examples/computedValuesSubattribute.generated index 926526d035..ff57213652 100644 --- a/3.10/generated/Examples/computedValuesSubattribute.generated +++ b/3.10/generated/Examples/computedValuesSubattribute.generated @@ -14,17 +14,17 @@ arangosh> var docs = db.users.save([ arangosh> db.users.toArray(); [ { - "_key" : "73264", - "_id" : "users/73264", - "_rev" : "_e4y3lbm---", + "_key" : "73253", + "_id" : "users/73253", + "_rev" : "_e9T2AQu---", "name" : { "first" : "James" } }, { - "_key" : "73265", - "_id" : "users/73265", - "_rev" : "_e4y3lbm--_", + "_key" : "73254", + "_id" : "users/73254", + "_rev" : "_e9T2AQu--_", "name" : { "first" : "Paula", "last" : "Plant", diff --git a/3.10/generated/Examples/cursorHasNext.generated b/3.10/generated/Examples/cursorHasNext.generated index 3287347b19..05bc13eab1 100644 --- a/3.10/generated/Examples/cursorHasNext.generated +++ b/3.10/generated/Examples/cursorHasNext.generated @@ -1,32 +1,32 @@ arangosh> var a = db._query("FOR x IN five RETURN x"); arangosh> while (a.hasNext()) print(a.next()); { - "_key" : "73281", - "_id" : "five/73281", - "_rev" : "_e4y3lcK---", + "_key" : "73270", + "_id" : "five/73270", + "_rev" : "_e9T2AQ2---", "name" : "one" } { - "_key" : "73283", - "_id" : "five/73283", - "_rev" : "_e4y3lcO---", + "_key" : "73272", + "_id" : "five/73272", + "_rev" : "_e9T2AQ2--_", "name" : "two" } { - "_key" : "73285", - "_id" : "five/73285", - "_rev" : "_e4y3lcS---", + "_key" : "73274", + "_id" : "five/73274", + "_rev" : "_e9T2AQ2--A", "name" : "three" } { - "_key" : "73287", - "_id" : "five/73287", - "_rev" : "_e4y3lcW---", + "_key" : "73276", + "_id" : "five/73276", + "_rev" : "_e9T2AQ2--B", "name" : "four" } { - "_key" : "73289", - "_id" : "five/73289", - "_rev" : "_e4y3lca---", + "_key" : "73278", + "_id" : "five/73278", + "_rev" : "_e9T2AQ2--C", "name" : "five" } diff --git a/3.10/generated/Examples/cursorNext.generated b/3.10/generated/Examples/cursorNext.generated index fd46dd7036..550b21a6f0 100644 --- a/3.10/generated/Examples/cursorNext.generated +++ b/3.10/generated/Examples/cursorNext.generated @@ -1,7 +1,7 @@ arangosh> db._query("FOR x IN five RETURN x").next(); { - "_key" : "73300", - "_id" : "five/73300", - "_rev" : "_e4y3ld----", + "_key" : "73289", + "_id" : "five/73289", + "_rev" : "_e9T2AR---_", "name" : "one" } diff --git a/3.10/generated/Examples/documentDocumentRemoveConflict.generated b/3.10/generated/Examples/documentDocumentRemoveConflict.generated index b96b10b762..0c5fa49111 100644 --- a/3.10/generated/Examples/documentDocumentRemoveConflict.generated +++ b/3.10/generated/Examples/documentDocumentRemoveConflict.generated @@ -1,23 +1,23 @@ arangosh> a1 = db.example.insert({ a : 1 }); { - "_id" : "example/73392", - "_key" : "73392", - "_rev" : "_e4y3lh6---" + "_id" : "example/73381", + "_key" : "73381", + "_rev" : "_e9T2AS---_" } arangosh> a2 = db.example.replace(a1, { a : 2 }); { - "_id" : "example/73392", - "_key" : "73392", - "_rev" : "_e4y3li----", - "_oldRev" : "_e4y3lh6---" + "_id" : "example/73381", + "_key" : "73381", + "_rev" : "_e9T2AS---A", + "_oldRev" : "_e9T2AS---_" } arangosh> db.example.remove(a1); [ArangoError 1200: conflict, _rev values do not match] arangosh> db.example.remove(a1, true); { - "_id" : "example/73392", - "_key" : "73392", - "_rev" : "_e4y3li----" + "_id" : "example/73381", + "_key" : "73381", + "_rev" : "_e9T2AS---A" } arangosh> db.example.document(a1); [ArangoError 1202: document not found] diff --git a/3.10/generated/Examples/documentDocumentRemoveSimple.generated b/3.10/generated/Examples/documentDocumentRemoveSimple.generated index 8bf925bcb5..bcbacba342 100644 --- a/3.10/generated/Examples/documentDocumentRemoveSimple.generated +++ b/3.10/generated/Examples/documentDocumentRemoveSimple.generated @@ -1,21 +1,21 @@ arangosh> a1 = db.example.insert({ a : 1 }); { - "_id" : "example/73406", - "_key" : "73406", - "_rev" : "_e4y3lia---" + "_id" : "example/73395", + "_key" : "73395", + "_rev" : "_e9T2ASG--_" } arangosh> db.example.document(a1); { - "_key" : "73406", - "_id" : "example/73406", - "_rev" : "_e4y3lia---", + "_key" : "73395", + "_id" : "example/73395", + "_rev" : "_e9T2ASG--_", "a" : 1 } arangosh> db.example.remove(a1); { - "_id" : "example/73406", - "_key" : "73406", - "_rev" : "_e4y3lia---" + "_id" : "example/73395", + "_key" : "73395", + "_rev" : "_e9T2ASG--_" } arangosh> db.example.document(a1); [ArangoError 1202: document not found] diff --git a/3.10/generated/Examples/documentDocumentUpdate.generated b/3.10/generated/Examples/documentDocumentUpdate.generated index d39e3b2cd5..fa5861b6f1 100644 --- a/3.10/generated/Examples/documentDocumentUpdate.generated +++ b/3.10/generated/Examples/documentDocumentUpdate.generated @@ -1,15 +1,15 @@ arangosh> a1 = db.example.insert({ a : 1 }); { - "_id" : "example/73418", - "_key" : "73418", - "_rev" : "_e4y3li2---" + "_id" : "example/73407", + "_key" : "73407", + "_rev" : "_e9T2ASO--_" } arangosh> a2 = db._update(a1, { b : 2 }); { - "_id" : "example/73418", - "_key" : "73418", - "_rev" : "_e4y3li6---", - "_oldRev" : "_e4y3li2---" + "_id" : "example/73407", + "_key" : "73407", + "_rev" : "_e9T2ASO--A", + "_oldRev" : "_e9T2ASO--_" } arangosh> a3 = db._update(a1, { c : 3 }); [ArangoError 1200: conflict, _rev values do not match] diff --git a/3.10/generated/Examples/documentsCollectionInsertMulti.generated b/3.10/generated/Examples/documentsCollectionInsertMulti.generated index db71af339c..34f58731e9 100644 --- a/3.10/generated/Examples/documentsCollectionInsertMulti.generated +++ b/3.10/generated/Examples/documentsCollectionInsertMulti.generated @@ -1,26 +1,26 @@ arangosh> db.example.insert([{ Hello : "World" }, {Hello: "there"}]) [ { - "_id" : "example/73430", - "_key" : "73430", - "_rev" : "_e4y3ljS--_" + "_id" : "example/73419", + "_key" : "73419", + "_rev" : "_e9T2ASW---" }, { - "_id" : "example/73431", - "_key" : "73431", - "_rev" : "_e4y3ljS--A" + "_id" : "example/73420", + "_key" : "73420", + "_rev" : "_e9T2ASW--_" } ] arangosh> db.example.insert([{ Hello : "World" }, {}], {waitForSync: true}); [ { - "_id" : "example/73433", - "_key" : "73433", - "_rev" : "_e4y3ljW---" + "_id" : "example/73422", + "_key" : "73422", + "_rev" : "_e9T2ASW--A" }, { - "_id" : "example/73434", - "_key" : "73434", - "_rev" : "_e4y3ljW--_" + "_id" : "example/73423", + "_key" : "73423", + "_rev" : "_e9T2ASW--B" } ] diff --git a/3.10/generated/Examples/documentsCollectionInsertSingle.generated b/3.10/generated/Examples/documentsCollectionInsertSingle.generated index 2419646240..a90fc57568 100644 --- a/3.10/generated/Examples/documentsCollectionInsertSingle.generated +++ b/3.10/generated/Examples/documentsCollectionInsertSingle.generated @@ -1,12 +1,12 @@ arangosh> db.example.insert({ Hello : "World" }); { - "_id" : "example/73443", - "_key" : "73443", - "_rev" : "_e4y3lj2---" + "_id" : "example/73432", + "_key" : "73432", + "_rev" : "_e9T2ASm--_" } arangosh> db.example.insert({ Hello : "World" }, {waitForSync: true}); { - "_id" : "example/73445", - "_key" : "73445", - "_rev" : "_e4y3lj2--_" + "_id" : "example/73434", + "_key" : "73434", + "_rev" : "_e9T2ASm--A" } diff --git a/3.10/generated/Examples/documentsCollectionInsertSingleOverwrite.generated b/3.10/generated/Examples/documentsCollectionInsertSingleOverwrite.generated index 24f2c49dbe..afc65a2d8c 100644 --- a/3.10/generated/Examples/documentsCollectionInsertSingleOverwrite.generated +++ b/3.10/generated/Examples/documentsCollectionInsertSingleOverwrite.generated @@ -2,18 +2,18 @@ arangosh> db.example.insert({ _key : "_id" : "example/666", "_key" : "666", - "_rev" : "_e4y3lkW---" + "_rev" : "_e9T2AS6--_" } arangosh> db.example.insert({ _key : "666", Hello : "Universe" }, {overwrite: true, returnOld: true}); { "_id" : "example/666", "_key" : "666", - "_rev" : "_e4y3lka---", - "_oldRev" : "_e4y3lkW---", + "_rev" : "_e9T2AS6--A", + "_oldRev" : "_e9T2AS6--_", "old" : { "_key" : "666", "_id" : "example/666", - "_rev" : "_e4y3lkW---", + "_rev" : "_e9T2AS6--_", "Hello" : "World" } } diff --git a/3.10/generated/Examples/documentsCollectionNameValidByKey.generated b/3.10/generated/Examples/documentsCollectionNameValidByKey.generated index ed409138f4..1c054706d1 100644 --- a/3.10/generated/Examples/documentsCollectionNameValidByKey.generated +++ b/3.10/generated/Examples/documentsCollectionNameValidByKey.generated @@ -2,5 +2,5 @@ arangosh> db.example.document("2873916""_key" : "2873916", "_id" : "example/2873916", - "_rev" : "_e4y3llm---" + "_rev" : "_e9T2ATK--_" } diff --git a/3.10/generated/Examples/documentsCollectionNameValidByObject.generated b/3.10/generated/Examples/documentsCollectionNameValidByObject.generated index 86d39e006d..b933cde869 100644 --- a/3.10/generated/Examples/documentsCollectionNameValidByObject.generated +++ b/3.10/generated/Examples/documentsCollectionNameValidByObject.generated @@ -2,5 +2,5 @@ arangosh> db.example.document({_id: "_key" : "2873916", "_id" : "example/2873916", - "_rev" : "_e4y3lm----" + "_rev" : "_e9T2ATO--_" } diff --git a/3.10/generated/Examples/documentsCollectionNameValidMulti.generated b/3.10/generated/Examples/documentsCollectionNameValidMulti.generated index ad4caacc28..3630b8f308 100644 --- a/3.10/generated/Examples/documentsCollectionNameValidMulti.generated +++ b/3.10/generated/Examples/documentsCollectionNameValidMulti.generated @@ -3,11 +3,11 @@ arangosh> db.example.document(["2873916"< { "_key" : "2873916", "_id" : "example/2873916", - "_rev" : "_e4y3lma---" + "_rev" : "_e9T2ATW---" }, { "_key" : "2873917", "_id" : "example/2873917", - "_rev" : "_e4y3lma--_" + "_rev" : "_e9T2ATW--_" } ] diff --git a/3.10/generated/Examples/documentsCollectionNameValidPlain.generated b/3.10/generated/Examples/documentsCollectionNameValidPlain.generated index 13ca0b7a9c..531831ccdc 100644 --- a/3.10/generated/Examples/documentsCollectionNameValidPlain.generated +++ b/3.10/generated/Examples/documentsCollectionNameValidPlain.generated @@ -2,5 +2,5 @@ arangosh> db.example.document("example/2873916 { "_key" : "2873916", "_id" : "example/2873916", - "_rev" : "_e4y3lm6---" + "_rev" : "_e9T2ATa--_" } diff --git a/3.10/generated/Examples/documentsCollectionRemoveConflict.generated b/3.10/generated/Examples/documentsCollectionRemoveConflict.generated index e41d8c9422..c46430bfb9 100644 --- a/3.10/generated/Examples/documentsCollectionRemoveConflict.generated +++ b/3.10/generated/Examples/documentsCollectionRemoveConflict.generated @@ -1,23 +1,23 @@ arangosh> a1 = db.example.insert({ a : 1 }); { - "_id" : "example/73516", - "_key" : "73516", - "_rev" : "_e4y3lnS---" + "_id" : "example/73505", + "_key" : "73505", + "_rev" : "_e9T2ATe--_" } arangosh> a2 = db._replace(a1, { a : 2 }); { - "_id" : "example/73516", - "_key" : "73516", - "_rev" : "_e4y3lnW---", - "_oldRev" : "_e4y3lnS---" + "_id" : "example/73505", + "_key" : "73505", + "_rev" : "_e9T2ATe--A", + "_oldRev" : "_e9T2ATe--_" } arangosh> db._remove(a1); [ArangoError 1200: conflict, _rev values do not match] arangosh> db._remove(a1, {overwrite: true} ); { - "_id" : "example/73516", - "_key" : "73516", - "_rev" : "_e4y3lnW---" + "_id" : "example/73505", + "_key" : "73505", + "_rev" : "_e9T2ATe--A" } arangosh> db._document(a1); [ArangoError 1202: document not found] diff --git a/3.10/generated/Examples/documentsCollectionRemoveSignature.generated b/3.10/generated/Examples/documentsCollectionRemoveSignature.generated index a5983b4ea7..f94f073dc6 100644 --- a/3.10/generated/Examples/documentsCollectionRemoveSignature.generated +++ b/3.10/generated/Examples/documentsCollectionRemoveSignature.generated @@ -2,12 +2,12 @@ arangosh> db.example.insert({ _key: "_id" : "example/11265325374", "_key" : "11265325374", - "_rev" : "_e4y3ln6---" + "_rev" : "_e9T2ATm--_" } arangosh> db.example.remove("example/11265325374", ........> { overwrite: true, waitForSync: false}) { "_id" : "example/11265325374", "_key" : "11265325374", - "_rev" : "_e4y3ln6---" + "_rev" : "_e9T2ATm--_" } diff --git a/3.10/generated/Examples/documentsCollectionRemoveSuccess.generated b/3.10/generated/Examples/documentsCollectionRemoveSuccess.generated index 1cab9e263e..c12170fd9a 100644 --- a/3.10/generated/Examples/documentsCollectionRemoveSuccess.generated +++ b/3.10/generated/Examples/documentsCollectionRemoveSuccess.generated @@ -1,14 +1,14 @@ arangosh> a1 = db.example.insert({ a : 1 }); { - "_id" : "example/73539", - "_key" : "73539", - "_rev" : "_e4y3loS---" + "_id" : "example/73528", + "_key" : "73528", + "_rev" : "_e9T2ATu---" } arangosh> db._remove(a1); { - "_id" : "example/73539", - "_key" : "73539", - "_rev" : "_e4y3loS---" + "_id" : "example/73528", + "_key" : "73528", + "_rev" : "_e9T2ATu---" } arangosh> db._remove(a1); [ArangoError 1202: document not found] diff --git a/3.10/generated/Examples/documentsCollectionReplace1.generated b/3.10/generated/Examples/documentsCollectionReplace1.generated index 9e3121ffa9..53cdfacf7c 100644 --- a/3.10/generated/Examples/documentsCollectionReplace1.generated +++ b/3.10/generated/Examples/documentsCollectionReplace1.generated @@ -1,15 +1,15 @@ arangosh> a1 = db.example.insert({ a : 1 }); { - "_id" : "example/73551", - "_key" : "73551", - "_rev" : "_e4y3lo2---" + "_id" : "example/73540", + "_key" : "73540", + "_rev" : "_e9T2ATy--_" } arangosh> a2 = db.example.replace(a1, { a : 2 }); { - "_id" : "example/73551", - "_key" : "73551", - "_rev" : "_e4y3lo6---", - "_oldRev" : "_e4y3lo2---" + "_id" : "example/73540", + "_key" : "73540", + "_rev" : "_e9T2ATy--A", + "_oldRev" : "_e9T2ATy--_" } arangosh> a3 = db.example.replace(a1, { a : 3 }); [ArangoError 1200: conflict, _rev values do not match] diff --git a/3.10/generated/Examples/documentsCollectionReplaceHandle.generated b/3.10/generated/Examples/documentsCollectionReplaceHandle.generated index 9ceccf19ba..79a82a3835 100644 --- a/3.10/generated/Examples/documentsCollectionReplaceHandle.generated +++ b/3.10/generated/Examples/documentsCollectionReplaceHandle.generated @@ -2,12 +2,12 @@ arangosh> a1 = db.example.insert({ a : "_id" : "example/3903045", "_key" : "3903045", - "_rev" : "_e4y3lpa--_" + "_rev" : "_e9T2AT6--A" } arangosh> a2 = db.example.replace("example/3903044", { a : 2 }); { "_id" : "example/3903044", "_key" : "3903044", - "_rev" : "_e4y3lpe---", - "_oldRev" : "_e4y3lpa---" + "_rev" : "_e9T2AT6--B", + "_oldRev" : "_e9T2AT6--_" } diff --git a/3.10/generated/Examples/documentsCollection_UpdateDocument.generated b/3.10/generated/Examples/documentsCollection_UpdateDocument.generated index 091cf839e9..fe083010ed 100644 --- a/3.10/generated/Examples/documentsCollection_UpdateDocument.generated +++ b/3.10/generated/Examples/documentsCollection_UpdateDocument.generated @@ -1,51 +1,51 @@ arangosh> a1 = db.example.insert({"a" : 1}); { - "_id" : "example/73574", - "_key" : "73574", - "_rev" : "_e4y3lpy---" + "_id" : "example/73563", + "_key" : "73563", + "_rev" : "_e9T2AU---_" } arangosh> a2 = db.example.update(a1, {"b" : 2, "c" : 3}); { - "_id" : "example/73574", - "_key" : "73574", - "_rev" : "_e4y3lp2---", - "_oldRev" : "_e4y3lpy---" + "_id" : "example/73563", + "_key" : "73563", + "_rev" : "_e9T2AUC---", + "_oldRev" : "_e9T2AU---_" } arangosh> a3 = db.example.update(a1, {"d" : 4}); [ArangoError 1200: conflict, _rev values do not match] arangosh> a4 = db.example.update(a2, {"e" : 5, "f" : 6 }); { - "_id" : "example/73574", - "_key" : "73574", - "_rev" : "_e4y3lp6---", - "_oldRev" : "_e4y3lp2---" + "_id" : "example/73563", + "_key" : "73563", + "_rev" : "_e9T2AUC--_", + "_oldRev" : "_e9T2AUC---" } arangosh> db.example.document(a4); { - "_key" : "73574", - "_id" : "example/73574", - "_rev" : "_e4y3lp6---", + "_key" : "73563", + "_id" : "example/73563", + "_rev" : "_e9T2AUC--_", "a" : 1, - "b" : 2, "c" : 3, + "b" : 2, "e" : 5, "f" : 6 } arangosh> a5 = db.example.update(a4, {"a" : 1, c : 9, e : 42 }); { - "_id" : "example/73574", - "_key" : "73574", - "_rev" : "_e4y3lqC---", - "_oldRev" : "_e4y3lp6---" + "_id" : "example/73563", + "_key" : "73563", + "_rev" : "_e9T2AUC--A", + "_oldRev" : "_e9T2AUC--_" } arangosh> db.example.document(a5); { - "_key" : "73574", - "_id" : "example/73574", - "_rev" : "_e4y3lqC---", + "_key" : "73563", + "_id" : "example/73563", + "_rev" : "_e9T2AUC--A", "a" : 1, - "b" : 2, "c" : 9, + "b" : 2, "e" : 42, "f" : 6 } diff --git a/3.10/generated/Examples/documentsCollection_UpdateHandleArray.generated b/3.10/generated/Examples/documentsCollection_UpdateHandleArray.generated index 24e9396fb8..c00f5ec9af 100644 --- a/3.10/generated/Examples/documentsCollection_UpdateHandleArray.generated +++ b/3.10/generated/Examples/documentsCollection_UpdateHandleArray.generated @@ -3,21 +3,21 @@ arangosh> db.example.insert({"a" { "_id" : "example/20774804", "_key" : "20774804", - "_rev" : "_e4y3lq6---" + "_rev" : "_e9T2AUK--A" } arangosh> db.example.update("example/20774803", {"a" : { "four" : 4 }, ........> "b" : { "b1" : 1 }}); { "_id" : "example/20774803", "_key" : "20774803", - "_rev" : "_e4y3lr----", - "_oldRev" : "_e4y3lq2---" + "_rev" : "_e9T2AUO---", + "_oldRev" : "_e9T2AUK--_" } arangosh> db.example.document("example/20774803"); { "_key" : "20774803", "_id" : "example/20774803", - "_rev" : "_e4y3lr----", + "_rev" : "_e9T2AUO---", "a" : { "four" : 4 }, @@ -31,14 +31,14 @@ arangosh> db.example.update("example/20774803& { "_id" : "example/20774803", "_key" : "20774803", - "_rev" : "_e4y3lrC---", - "_oldRev" : "_e4y3lr----" + "_rev" : "_e9T2AUO--_", + "_oldRev" : "_e9T2AUO---" } arangosh> db.example.document("example/20774803"); { "_key" : "20774803", "_id" : "example/20774803", - "_rev" : "_e4y3lrC---", + "_rev" : "_e9T2AUO--_", "a" : { "four" : 4 } diff --git a/3.10/generated/Examples/documentsCollection_UpdateHandleKeepNull.generated b/3.10/generated/Examples/documentsCollection_UpdateHandleKeepNull.generated index 77bd692c93..63c2c23bb6 100644 --- a/3.10/generated/Examples/documentsCollection_UpdateHandleKeepNull.generated +++ b/3.10/generated/Examples/documentsCollection_UpdateHandleKeepNull.generated @@ -2,52 +2,52 @@ arangosh> db.example.insert({"a" : { "_id" : "example/19988372", "_key" : "19988372", - "_rev" : "_e4y3lrm---" + "_rev" : "_e9T2AUW--A" } arangosh> db.example.update("example/19988371", ........> { "b" : null, "c" : null, "d" : 3 }); { "_id" : "example/19988371", "_key" : "19988371", - "_rev" : "_e4y3lrq---", - "_oldRev" : "_e4y3lri---" + "_rev" : "_e9T2AUW--B", + "_oldRev" : "_e9T2AUW--_" } arangosh> db.example.document("example/19988371"); { "_key" : "19988371", "_id" : "example/19988371", - "_rev" : "_e4y3lrq---", + "_rev" : "_e9T2AUW--B", "d" : 3, - "c" : null, - "b" : null + "b" : null, + "c" : null } arangosh> db.example.update("example/19988371", { "a" : null }, false, false); { "_id" : "example/19988371", "_key" : "19988371", - "_rev" : "_e4y3lru---", - "_oldRev" : "_e4y3lrq---" + "_rev" : "_e9T2AUW--C", + "_oldRev" : "_e9T2AUW--B" } arangosh> db.example.document("example/19988371"); { "_key" : "19988371", "_id" : "example/19988371", - "_rev" : "_e4y3lru---", + "_rev" : "_e9T2AUW--C", "d" : 3, - "c" : null, - "b" : null + "b" : null, + "c" : null } arangosh> db.example.update("example/19988371", ........> { "b" : null, "c": null, "d" : null }, false, false); { "_id" : "example/19988371", "_key" : "19988371", - "_rev" : "_e4y3lr2---", - "_oldRev" : "_e4y3lru---" + "_rev" : "_e9T2AUW--D", + "_oldRev" : "_e9T2AUW--C" } arangosh> db.example.document("example/19988371"); { "_key" : "19988371", "_id" : "example/19988371", - "_rev" : "_e4y3lr2---" + "_rev" : "_e9T2AUW--D" } diff --git a/3.10/generated/Examples/documentsCollection_UpdateHandleSingle.generated b/3.10/generated/Examples/documentsCollection_UpdateHandleSingle.generated index 6e7d3839bf..ce30f937f5 100644 --- a/3.10/generated/Examples/documentsCollection_UpdateHandleSingle.generated +++ b/3.10/generated/Examples/documentsCollection_UpdateHandleSingle.generated @@ -2,12 +2,12 @@ arangosh> a1 = db.example.insert({"a""_id" : "example/18612116", "_key" : "18612116", - "_rev" : "_e4y3lse---" + "_rev" : "_e9T2AUe--A" } arangosh> a2 = db.example.update("example/18612115", { "x" : 1, "y" : 2 }); { "_id" : "example/18612115", "_key" : "18612115", - "_rev" : "_e4y3lsi---", - "_oldRev" : "_e4y3lsa---" + "_rev" : "_e9T2AUi---", + "_oldRev" : "_e9T2AUe--_" } diff --git a/3.10/generated/Examples/documentsDocumentName.generated b/3.10/generated/Examples/documentsDocumentName.generated index d5975bbe87..a9fb236f4d 100644 --- a/3.10/generated/Examples/documentsDocumentName.generated +++ b/3.10/generated/Examples/documentsDocumentName.generated @@ -2,5 +2,5 @@ arangosh> db._document("example/12345""_key" : "12345", "_id" : "example/12345", - "_rev" : "_e4y3ls6---" + "_rev" : "_e9T2AUm--_" } diff --git a/3.10/generated/Examples/documentsDocumentReplace.generated b/3.10/generated/Examples/documentsDocumentReplace.generated index 664e3edb02..9aed292e10 100644 --- a/3.10/generated/Examples/documentsDocumentReplace.generated +++ b/3.10/generated/Examples/documentsDocumentReplace.generated @@ -1,15 +1,15 @@ arangosh> a1 = db.example.insert({ a : 1 }); { - "_id" : "example/73640", - "_key" : "73640", - "_rev" : "_e4y3ltS---" + "_id" : "example/73629", + "_key" : "73629", + "_rev" : "_e9T2AUq--_" } arangosh> a2 = db._replace(a1, { a : 2 }); { - "_id" : "example/73640", - "_key" : "73640", - "_rev" : "_e4y3ltS--_", - "_oldRev" : "_e4y3ltS---" + "_id" : "example/73629", + "_key" : "73629", + "_rev" : "_e9T2AUq--A", + "_oldRev" : "_e9T2AUq--_" } arangosh> a3 = db._replace(a1, { a : 3 }); [ArangoError 1200: conflict, _rev values do not match] diff --git a/3.10/generated/Examples/dropIndex.generated b/3.10/generated/Examples/dropIndex.generated index 129db9b0e2..c6423e4a83 100644 --- a/3.10/generated/Examples/dropIndex.generated +++ b/3.10/generated/Examples/dropIndex.generated @@ -7,9 +7,9 @@ arangosh> db.example.ensureIndex({ type: "a", "b" ], - "id" : "example/73652", + "id" : "example/73641", "isNewlyCreated" : true, - "name" : "idx_1745940463666331648", + "name" : "idx_1747211390240686081", "selectivityEstimate" : 1, "sparse" : false, "type" : "persistent", @@ -38,8 +38,8 @@ arangosh> indexInfo; "a", "b" ], - "id" : "example/73652", - "name" : "idx_1745940463666331648", + "id" : "example/73641", + "name" : "idx_1747211390240686081", "selectivityEstimate" : 1, "sparse" : false, "type" : "persistent", diff --git a/3.10/generated/Examples/ensureFulltextIndex.generated b/3.10/generated/Examples/ensureFulltextIndex.generated index d765740aa0..f4f1270514 100644 --- a/3.10/generated/Examples/ensureFulltextIndex.generated +++ b/3.10/generated/Examples/ensureFulltextIndex.generated @@ -3,10 +3,10 @@ arangosh> db.example.ensureIndex({ type: "fields" : [ "text" ], - "id" : "example/73667", + "id" : "example/73656", "isNewlyCreated" : true, "minLength" : 3, - "name" : "idx_1745940463679963136", + "name" : "idx_1747211390243831809", "sparse" : true, "type" : "fulltext", "unique" : false, @@ -14,79 +14,79 @@ arangosh> db.example.ensureIndex({ type: text : "the quick brown", b : { c : 1 } }); { - "_id" : "example/73671", - "_key" : "73671", - "_rev" : "_e4y3luu---" + "_id" : "example/73660", + "_key" : "73660", + "_rev" : "_e9T2AVC---" } arangosh> db.example.save({ text : "quick brown fox", b : { c : 2 } }); { - "_id" : "example/73673", - "_key" : "73673", - "_rev" : "_e4y3luy---" + "_id" : "example/73662", + "_key" : "73662", + "_rev" : "_e9T2AVC--_" } arangosh> db.example.save({ text : "brown fox jums", b : { c : 3 } }); { - "_id" : "example/73675", - "_key" : "73675", - "_rev" : "_e4y3lu2---" + "_id" : "example/73664", + "_key" : "73664", + "_rev" : "_e9T2AVC--A" } arangosh> db.example.save({ text : "fox jumps over", b : { c : 4 } }); { - "_id" : "example/73677", - "_key" : "73677", - "_rev" : "_e4y3lu2--_" + "_id" : "example/73666", + "_key" : "73666", + "_rev" : "_e9T2AVC--B" } arangosh> db.example.save({ text : "jumps over the", b : { c : 5 } }); { - "_id" : "example/73679", - "_key" : "73679", - "_rev" : "_e4y3lu6---" + "_id" : "example/73668", + "_key" : "73668", + "_rev" : "_e9T2AVC--C" } arangosh> db.example.save({ text : "over the lazy", b : { c : 6 } }); { - "_id" : "example/73681", - "_key" : "73681", - "_rev" : "_e4y3lv----" + "_id" : "example/73670", + "_key" : "73670", + "_rev" : "_e9T2AVC--D" } arangosh> db.example.save({ text : "the lazy dog", b : { c : 7 } }); { - "_id" : "example/73683", - "_key" : "73683", - "_rev" : "_e4y3lvC---" + "_id" : "example/73672", + "_key" : "73672", + "_rev" : "_e9T2AVG---" } arangosh> db._query("FOR document IN FULLTEXT(example, 'text', 'the') RETURN document"); [ { - "_key" : "73671", - "_id" : "example/73671", - "_rev" : "_e4y3luu---", + "_key" : "73660", + "_id" : "example/73660", + "_rev" : "_e9T2AVC---", "text" : "the quick brown", "b" : { "c" : 1 } }, { - "_key" : "73679", - "_id" : "example/73679", - "_rev" : "_e4y3lu6---", + "_key" : "73668", + "_id" : "example/73668", + "_rev" : "_e9T2AVC--C", "text" : "jumps over the", "b" : { "c" : 5 } }, { - "_key" : "73681", - "_id" : "example/73681", - "_rev" : "_e4y3lv----", + "_key" : "73670", + "_id" : "example/73670", + "_rev" : "_e9T2AVC--D", "text" : "over the lazy", "b" : { "c" : 6 } }, { - "_key" : "73683", - "_id" : "example/73683", - "_rev" : "_e4y3lvC---", + "_key" : "73672", + "_id" : "example/73672", + "_rev" : "_e9T2AVG---", "text" : "the lazy dog", "b" : { "c" : 7 diff --git a/3.10/generated/Examples/ensurePersistent.generated b/3.10/generated/Examples/ensurePersistent.generated index efdd6f7e9b..857b0d6e89 100644 --- a/3.10/generated/Examples/ensurePersistent.generated +++ b/3.10/generated/Examples/ensurePersistent.generated @@ -6,9 +6,9 @@ arangosh> db.names.ensureIndex({ type: "fields" : [ "first" ], - "id" : "names/73694", + "id" : "names/73683", "isNewlyCreated" : true, - "name" : "idx_1745940463701983232", + "name" : "idx_1747211390249074688", "selectivityEstimate" : 1, "sparse" : false, "type" : "persistent", @@ -17,31 +17,31 @@ arangosh> db.names.ensureIndex({ type: "first" : "Tim" }); { - "_id" : "names/73698", - "_key" : "73698", - "_rev" : "_e4y3lw----" + "_id" : "names/73687", + "_key" : "73687", + "_rev" : "_e9T2AVS--_" } arangosh> db.names.save({ "first" : "Tom" }); { - "_id" : "names/73700", - "_key" : "73700", - "_rev" : "_e4y3lwC---" + "_id" : "names/73689", + "_key" : "73689", + "_rev" : "_e9T2AVS--A" } arangosh> db.names.save({ "first" : "John" }); { - "_id" : "names/73702", - "_key" : "73702", - "_rev" : "_e4y3lwG---" + "_id" : "names/73691", + "_key" : "73691", + "_rev" : "_e9T2AVS--B" } arangosh> db.names.save({ "first" : "Tim" }); { - "_id" : "names/73704", - "_key" : "73704", - "_rev" : "_e4y3lwG--_" + "_id" : "names/73693", + "_key" : "73693", + "_rev" : "_e9T2AVS--C" } arangosh> db.names.save({ "first" : "Tom" }); { - "_id" : "names/73706", - "_key" : "73706", - "_rev" : "_e4y3lwK---" + "_id" : "names/73695", + "_key" : "73695", + "_rev" : "_e9T2AVS--D" } diff --git a/3.10/generated/Examples/ensureTtlIndex.generated b/3.10/generated/Examples/ensureTtlIndex.generated index fa0d25a3bd..55ff26eb8c 100644 --- a/3.10/generated/Examples/ensureTtlIndex.generated +++ b/3.10/generated/Examples/ensureTtlIndex.generated @@ -5,9 +5,9 @@ arangosh> db.test.ensureIndex({ type: "fields" : [ "creationDate" ], - "id" : "test/73715", + "id" : "test/73704", "isNewlyCreated" : true, - "name" : "idx_1745940463713517568", + "name" : "idx_1747211390252220416", "sparse" : true, "type" : "ttl", "unique" : false, diff --git a/3.10/generated/Examples/ensureUniquePersistentMultiColmun.generated b/3.10/generated/Examples/ensureUniquePersistentMultiColmun.generated index 684831d7dc..7049c47167 100644 --- a/3.10/generated/Examples/ensureUniquePersistentMultiColmun.generated +++ b/3.10/generated/Examples/ensureUniquePersistentMultiColmun.generated @@ -7,9 +7,9 @@ arangosh> db.ids.ensureIndex({ type: "name.first", "name.last" ], - "id" : "ids/73926", + "id" : "ids/73915", "isNewlyCreated" : true, - "name" : "idx_1745940463773286400", + "name" : "idx_1747211390275289088", "selectivityEstimate" : 1, "sparse" : false, "type" : "persistent", @@ -18,21 +18,21 @@ arangosh> db.ids.ensureIndex({ type: "name" : { "first" : "hans", "last": "hansen" }}); { - "_id" : "ids/73930", - "_key" : "73930", - "_rev" : "_e4y3l0O---" + "_id" : "ids/73919", + "_key" : "73919", + "_rev" : "_e9T2AW2--_" } arangosh> db.ids.save({ "name" : { "first" : "jens", "last": "jensen" }}); { - "_id" : "ids/73932", - "_key" : "73932", - "_rev" : "_e4y3l0S---" + "_id" : "ids/73921", + "_key" : "73921", + "_rev" : "_e9T2AW2--A" } arangosh> db.ids.save({ "name" : { "first" : "hans", "last": "jensen" }}); { - "_id" : "ids/73934", - "_key" : "73934", - "_rev" : "_e4y3l0W---" + "_id" : "ids/73923", + "_key" : "73923", + "_rev" : "_e9T2AW2--B" } arangosh> db.ids.save({ "name" : { "first" : "hans", "last": "hansen" }}); -[ArangoError 1210: unique constraint violated - in index idx_1745940463773286400 of type persistent over 'name.first, name.last'; conflicting key: 73930] +[ArangoError 1210: unique constraint violated - in index idx_1747211390275289088 of type persistent over 'name.first, name.last'; conflicting key: 73919] diff --git a/3.10/generated/Examples/ensureUniquePersistentSingle.generated b/3.10/generated/Examples/ensureUniquePersistentSingle.generated index 008008498f..9316313291 100644 --- a/3.10/generated/Examples/ensureUniquePersistentSingle.generated +++ b/3.10/generated/Examples/ensureUniquePersistentSingle.generated @@ -6,9 +6,9 @@ arangosh> db.ids.ensureIndex({ type: "fields" : [ "myId" ], - "id" : "ids/73945", + "id" : "ids/73934", "isNewlyCreated" : true, - "name" : "idx_1745940463787966464", + "name" : "idx_1747211390278434816", "selectivityEstimate" : 1, "sparse" : false, "type" : "persistent", @@ -17,21 +17,21 @@ arangosh> db.ids.ensureIndex({ type: "myId": 123 }); { - "_id" : "ids/73949", - "_key" : "73949", - "_rev" : "_e4y3l1K---" + "_id" : "ids/73938", + "_key" : "73938", + "_rev" : "_e9T2AXC--_" } arangosh> db.ids.save({ "myId": 456 }); { - "_id" : "ids/73951", - "_key" : "73951", - "_rev" : "_e4y3l1K--_" + "_id" : "ids/73940", + "_key" : "73940", + "_rev" : "_e9T2AXC--A" } arangosh> db.ids.save({ "myId": 789 }); { - "_id" : "ids/73953", - "_key" : "73953", - "_rev" : "_e4y3l1O---" + "_id" : "ids/73942", + "_key" : "73942", + "_rev" : "_e9T2AXC--B" } arangosh> db.ids.save({ "myId": 123 }); -[ArangoError 1210: unique constraint violated - in index idx_1745940463787966464 of type persistent over 'myId'; conflicting key: 73949] +[ArangoError 1210: unique constraint violated - in index idx_1747211390278434816 of type persistent over 'myId'; conflicting key: 73938] diff --git a/3.10/generated/Examples/ensureVertexCentricIndex.generated b/3.10/generated/Examples/ensureVertexCentricIndex.generated index 4869e06d72..03e6796ac5 100644 --- a/3.10/generated/Examples/ensureVertexCentricIndex.generated +++ b/3.10/generated/Examples/ensureVertexCentricIndex.generated @@ -7,9 +7,9 @@ arangosh> db.collection.ensureIndex({ type: "_from", "type" ], - "id" : "collection/73966", + "id" : "collection/73955", "isNewlyCreated" : true, - "name" : "idx_1745940463801597952", + "name" : "idx_1747211390280531969", "selectivityEstimate" : 1, "sparse" : false, "type" : "persistent", diff --git a/3.10/generated/Examples/enterpriseGraphCreate2_cluster.generated b/3.10/generated/Examples/enterpriseGraphCreate2_cluster.generated index 9475302a34..3e51326ed1 100644 --- a/3.10/generated/Examples/enterpriseGraphCreate2_cluster.generated +++ b/3.10/generated/Examples/enterpriseGraphCreate2_cluster.generated @@ -3,6 +3,6 @@ arangosh> var edgeDefinitions = [ graph_mod arangosh> var graph = graph_module._create("myGraph", edgeDefinitions, [], {isSmart: true, numberOfShards: 9}); arangosh> graph_module._graph("myGraph"); {[EnterpriseGraph] - "edges" : [ArangoCollection 10079, "edges" (type edge, status loaded)], - "vertices" : [ArangoCollection 10069, "vertices" (type document, status loaded)] + "edges" : [ArangoCollection 10080, "edges" (type edge, status loaded)], + "vertices" : [ArangoCollection 10070, "vertices" (type document, status loaded)] } diff --git a/3.10/generated/Examples/enterpriseGraphCreate3_cluster.generated b/3.10/generated/Examples/enterpriseGraphCreate3_cluster.generated index 4bda3b84bf..d9cc99937a 100644 --- a/3.10/generated/Examples/enterpriseGraphCreate3_cluster.generated +++ b/3.10/generated/Examples/enterpriseGraphCreate3_cluster.generated @@ -3,8 +3,8 @@ arangosh> var edgeDefinitions = [ graph_mod arangosh> var graph = graph_module._create("myGraph", edgeDefinitions, ["sessions"], {isSmart: true, numberOfShards: 9}); arangosh> graph_module._graph("myGraph"); {[EnterpriseGraph] - "myRelation" : [ArangoCollection 10129, "myRelation" (type edge, status loaded)], - "female" : [ArangoCollection 10128, "female" (type document, status loaded)], - "male" : [ArangoCollection 10127, "male" (type document, status loaded)], - "sessions" : [ArangoCollection 10117, "sessions" (type document, status loaded)] + "myRelation" : [ArangoCollection 10130, "myRelation" (type edge, status loaded)], + "female" : [ArangoCollection 10129, "female" (type document, status loaded)], + "male" : [ArangoCollection 10128, "male" (type document, status loaded)], + "sessions" : [ArangoCollection 10118, "sessions" (type document, status loaded)] } diff --git a/3.10/generated/Examples/enterpriseGraphCreateGraphHowTo2_cluster.generated b/3.10/generated/Examples/enterpriseGraphCreateGraphHowTo2_cluster.generated index 982121ac45..6473c5589c 100644 --- a/3.10/generated/Examples/enterpriseGraphCreateGraphHowTo2_cluster.generated +++ b/3.10/generated/Examples/enterpriseGraphCreateGraphHowTo2_cluster.generated @@ -3,7 +3,7 @@ arangosh> graph._addVertexCollection("customer arangosh> graph._addVertexCollection("pet"); arangosh> graph_module._graph("myGraph"); {[EnterpriseGraph] - "customer" : [ArangoCollection 10202, "customer" (type document, status loaded)], - "pet" : [ArangoCollection 10213, "pet" (type document, status loaded)], - "shop" : [ArangoCollection 10191, "shop" (type document, status loaded)] + "customer" : [ArangoCollection 10203, "customer" (type document, status loaded)], + "pet" : [ArangoCollection 10214, "pet" (type document, status loaded)], + "shop" : [ArangoCollection 10192, "shop" (type document, status loaded)] } diff --git a/3.10/generated/Examples/enterpriseGraphCreateGraphHowTo3_cluster.generated b/3.10/generated/Examples/enterpriseGraphCreateGraphHowTo3_cluster.generated index 43f36e178a..97e9baa8fe 100644 --- a/3.10/generated/Examples/enterpriseGraphCreateGraphHowTo3_cluster.generated +++ b/3.10/generated/Examples/enterpriseGraphCreateGraphHowTo3_cluster.generated @@ -2,8 +2,8 @@ arangosh> var rel = graph_module._relation( arangosh> graph._extendEdgeDefinitions(rel); arangosh> graph_module._graph("myGraph"); {[EnterpriseGraph] - "isCustomer" : [ArangoCollection 10268, "isCustomer" (type edge, status loaded)], - "shop" : [ArangoCollection 10234, "shop" (type document, status loaded)], - "customer" : [ArangoCollection 10245, "customer" (type document, status loaded)], - "pet" : [ArangoCollection 10256, "pet" (type document, status loaded)] + "isCustomer" : [ArangoCollection 10269, "isCustomer" (type edge, status loaded)], + "shop" : [ArangoCollection 10235, "shop" (type document, status loaded)], + "customer" : [ArangoCollection 10246, "customer" (type document, status loaded)], + "pet" : [ArangoCollection 10257, "pet" (type document, status loaded)] } diff --git a/3.10/generated/Examples/enterpriseGraphCreateGraphHowTo4_cluster.generated b/3.10/generated/Examples/enterpriseGraphCreateGraphHowTo4_cluster.generated index 45bfeb2fe1..1591c6a479 100644 --- a/3.10/generated/Examples/enterpriseGraphCreateGraphHowTo4_cluster.generated +++ b/3.10/generated/Examples/enterpriseGraphCreateGraphHowTo4_cluster.generated @@ -3,7 +3,7 @@ arangosh> var rel = graph_module._relation( arangosh> var graph = graph_module._create("myGraph", [rel], [], {satellites: ["shop", "customer"], isSmart: true, numberOfShards: 9}); arangosh> graph_module._graph("myGraph"); {[EnterpriseGraph] - "isCustomer" : [ArangoCollection 10312, "isCustomer" (type edge, status loaded)], - "shop" : [ArangoCollection 10310, "shop" (type document, status loaded)], - "customer" : [ArangoCollection 10311, "customer" (type document, status loaded)] + "isCustomer" : [ArangoCollection 10313, "isCustomer" (type edge, status loaded)], + "shop" : [ArangoCollection 10311, "shop" (type document, status loaded)], + "customer" : [ArangoCollection 10312, "customer" (type document, status loaded)] } diff --git a/3.10/generated/Examples/enterpriseGraphModify2_cluster.generated b/3.10/generated/Examples/enterpriseGraphModify2_cluster.generated index d70eca9267..a401c98260 100644 --- a/3.10/generated/Examples/enterpriseGraphModify2_cluster.generated +++ b/3.10/generated/Examples/enterpriseGraphModify2_cluster.generated @@ -1,6 +1,6 @@ arangosh> graph._removeVertexCollection("other", true); arangosh> graph_module._graph("myGraph"); {[EnterpriseGraph] - "edges" : [ArangoCollection 10396, "edges" (type edge, status loaded)], - "vertices" : [ArangoCollection 10385, "vertices" (type document, status loaded)] + "edges" : [ArangoCollection 10397, "edges" (type edge, status loaded)], + "vertices" : [ArangoCollection 10386, "vertices" (type document, status loaded)] } diff --git a/3.10/generated/Examples/enterpriseGraphModify4_cluster.generated b/3.10/generated/Examples/enterpriseGraphModify4_cluster.generated index bb303bba1f..38a3fad13d 100644 --- a/3.10/generated/Examples/enterpriseGraphModify4_cluster.generated +++ b/3.10/generated/Examples/enterpriseGraphModify4_cluster.generated @@ -4,4 +4,4 @@ arangosh> var graph = graph_module._create( arangosh> graph._deleteEdgeDefinition("edges"); arangosh> graph._removeVertexCollection("vertices"); arangosh> db._drop("vertices"); -[ArangoError 1485: Collection 'vertices' must not be dropped while '_local_edges', 'edges', '_from_edges', '_to_edges' have distributeShardsLike set to 'vertices'.] +[ArangoError 1485: Collection 'vertices' must not be dropped while '_local_edges', '_to_edges', 'edges', '_from_edges' have distributeShardsLike set to 'vertices'.] diff --git a/3.10/generated/Examples/enterpriseGraphModify6_cluster.generated b/3.10/generated/Examples/enterpriseGraphModify6_cluster.generated index 3fed1d6bba..48c46ae414 100644 --- a/3.10/generated/Examples/enterpriseGraphModify6_cluster.generated +++ b/3.10/generated/Examples/enterpriseGraphModify6_cluster.generated @@ -4,5 +4,5 @@ arangosh> var graph = graph_module._create( arangosh> graph._deleteEdgeDefinition("edges", true); arangosh> graph_module._graph("myGraph"); {[EnterpriseGraph] - "vertices" : [ArangoCollection 10585, "vertices" (type document, status loaded)] + "vertices" : [ArangoCollection 10586, "vertices" (type document, status loaded)] } diff --git a/3.10/generated/Examples/executeQueryBatchSize.generated b/3.10/generated/Examples/executeQueryBatchSize.generated index b5771ba524..d198acdd74 100644 --- a/3.10/generated/Examples/executeQueryBatchSize.generated +++ b/3.10/generated/Examples/executeQueryBatchSize.generated @@ -13,41 +13,41 @@ arangosh> var result = [ ]; ........> print(result); [ { - "_key" : "73977", - "_id" : "users/73977", - "_rev" : "_e4y3l2e---", + "_key" : "73966", + "_id" : "users/73966", + "_rev" : "_e9T2AXW---", "name" : "Gerhard" }, { - "_key" : "73979", - "_id" : "users/73979", - "_rev" : "_e4y3l2i---", + "_key" : "73968", + "_id" : "users/73968", + "_rev" : "_e9T2AXW--_", "name" : "Helmut" }, { - "_key" : "73981", - "_id" : "users/73981", - "_rev" : "_e4y3l2m---", + "_key" : "73970", + "_id" : "users/73970", + "_rev" : "_e9T2AXW--A", "name" : "Angela" } ] [ { - "_key" : "73977", - "_id" : "users/73977", - "_rev" : "_e4y3l2e---", + "_key" : "73966", + "_id" : "users/73966", + "_rev" : "_e9T2AXW---", "name" : "Gerhard" }, { - "_key" : "73979", - "_id" : "users/73979", - "_rev" : "_e4y3l2i---", + "_key" : "73968", + "_id" : "users/73968", + "_rev" : "_e9T2AXW--_", "name" : "Helmut" }, { - "_key" : "73981", - "_id" : "users/73981", - "_rev" : "_e4y3l2m---", + "_key" : "73970", + "_id" : "users/73970", + "_rev" : "_e9T2AXW--A", "name" : "Angela" } ] diff --git a/3.10/generated/Examples/executeQueryNoBatchSize.generated b/3.10/generated/Examples/executeQueryNoBatchSize.generated index bd749410d7..7c1dac5bbf 100644 --- a/3.10/generated/Examples/executeQueryNoBatchSize.generated +++ b/3.10/generated/Examples/executeQueryNoBatchSize.generated @@ -8,41 +8,41 @@ arangosh> var result = db.users.all().toArr ........> print(result); [ { - "_key" : "73996", - "_id" : "users/73996", - "_rev" : "_e4y3l3q---", + "_key" : "73985", + "_id" : "users/73985", + "_rev" : "_e9T2AXe--_", "name" : "Gerhard" }, { - "_key" : "73998", - "_id" : "users/73998", - "_rev" : "_e4y3l3u---", + "_key" : "73987", + "_id" : "users/73987", + "_rev" : "_e9T2AXi---", "name" : "Helmut" }, { - "_key" : "74000", - "_id" : "users/74000", - "_rev" : "_e4y3l3y---", + "_key" : "73989", + "_id" : "users/73989", + "_rev" : "_e9T2AXi--_", "name" : "Angela" } ] [ { - "_key" : "73996", - "_id" : "users/73996", - "_rev" : "_e4y3l3q---", + "_key" : "73985", + "_id" : "users/73985", + "_rev" : "_e9T2AXe--_", "name" : "Gerhard" }, { - "_key" : "73998", - "_id" : "users/73998", - "_rev" : "_e4y3l3u---", + "_key" : "73987", + "_id" : "users/73987", + "_rev" : "_e9T2AXi---", "name" : "Helmut" }, { - "_key" : "74000", - "_id" : "users/74000", - "_rev" : "_e4y3l3y---", + "_key" : "73989", + "_id" : "users/73989", + "_rev" : "_e9T2AXi--_", "name" : "Angela" } ] diff --git a/3.10/generated/Examples/generalGraphCreateGraph2.generated b/3.10/generated/Examples/generalGraphCreateGraph2.generated index 38760b9c2b..caa5269d64 100644 --- a/3.10/generated/Examples/generalGraphCreateGraph2.generated +++ b/3.10/generated/Examples/generalGraphCreateGraph2.generated @@ -2,8 +2,8 @@ arangosh> var graph_module = "myGraph", ........> [graph_module._relation("myRelation", ["male", "female"], ["male", "female"])], ["sessions"]); {[GeneralGraph] - "myRelation" : [ArangoCollection 74024, "myRelation" (type edge, status loaded)], - "female" : [ArangoCollection 74021, "female" (type document, status loaded)], - "male" : [ArangoCollection 74018, "male" (type document, status loaded)], - "sessions" : [ArangoCollection 74015, "sessions" (type document, status loaded)] + "myRelation" : [ArangoCollection 74013, "myRelation" (type edge, status loaded)], + "female" : [ArangoCollection 74010, "female" (type document, status loaded)], + "male" : [ArangoCollection 74007, "male" (type document, status loaded)], + "sessions" : [ArangoCollection 74004, "sessions" (type document, status loaded)] } diff --git a/3.10/generated/Examples/generalGraphCreateGraphHowTo2.generated b/3.10/generated/Examples/generalGraphCreateGraphHowTo2.generated index 0cb195b714..4eb1e3ab07 100644 --- a/3.10/generated/Examples/generalGraphCreateGraphHowTo2.generated +++ b/3.10/generated/Examples/generalGraphCreateGraphHowTo2.generated @@ -1,6 +1,9 @@ arangosh> graph._addVertexCollection("shop"); arangosh> graph._addVertexCollection("customer"); arangosh> graph._addVertexCollection("pet"); -arangosh> graph; +arangosh> graph = graph_module._graph("myGraph"); {[GeneralGraph] + "customer" : [ArangoCollection 74084, "customer" (type document, status loaded)], + "pet" : [ArangoCollection 74093, "pet" (type document, status loaded)], + "shop" : [ArangoCollection 74075, "shop" (type document, status loaded)] } diff --git a/3.10/generated/Examples/generalGraphCreateGraphHowTo3.generated b/3.10/generated/Examples/generalGraphCreateGraphHowTo3.generated index 5b3bf14d99..8b2fdab4ca 100644 --- a/3.10/generated/Examples/generalGraphCreateGraphHowTo3.generated +++ b/3.10/generated/Examples/generalGraphCreateGraphHowTo3.generated @@ -1,5 +1,9 @@ arangosh> var rel = graph_module._relation("isCustomer", ["shop"], ["customer"]); arangosh> graph._extendEdgeDefinitions(rel); -arangosh> graph; +arangosh> graph = graph_module._graph("myGraph"); {[GeneralGraph] + "isCustomer" : [ArangoCollection 74158, "isCustomer" (type edge, status loaded)], + "shop" : [ArangoCollection 74152, "shop" (type document, status loaded)], + "customer" : [ArangoCollection 74155, "customer" (type document, status loaded)], + "pet" : [ArangoCollection 74141, "pet" (type document, status loaded)] } diff --git a/3.10/generated/Examples/generalGraphCreateGraphSingle.generated b/3.10/generated/Examples/generalGraphCreateGraphSingle.generated index f75e4e0af5..34886fe33d 100644 --- a/3.10/generated/Examples/generalGraphCreateGraphSingle.generated +++ b/3.10/generated/Examples/generalGraphCreateGraphSingle.generated @@ -2,6 +2,6 @@ arangosh> var graph_module = var edgeDefinitions = [ { collection: "edges", "from": [ "vertices" ], "to" : [ "vertices" ] } ]; arangosh> graph = graph_module._create("myGraph", edgeDefinitions); {[GeneralGraph] - "edges" : [ArangoCollection 74225, "edges" (type edge, status loaded)], - "vertices" : [ArangoCollection 74222, "vertices" (type document, status loaded)] + "edges" : [ArangoCollection 74218, "edges" (type edge, status loaded)], + "vertices" : [ArangoCollection 74215, "vertices" (type document, status loaded)] } diff --git a/3.10/generated/Examples/generalGraphDropGraphKeep.generated b/3.10/generated/Examples/generalGraphDropGraphKeep.generated index 7b51f7d7c8..c68d2be027 100644 --- a/3.10/generated/Examples/generalGraphDropGraphKeep.generated +++ b/3.10/generated/Examples/generalGraphDropGraphKeep.generated @@ -1,8 +1,8 @@ arangosh> var graph_module = require("@arangodb/general-graph"); arangosh> graph_module._drop("social"); arangosh> db._collection("female"); -[ArangoCollection 74308, "female" (type document, status loaded)] +[ArangoCollection 74301, "female" (type document, status loaded)] arangosh> db._collection("male"); -[ArangoCollection 74313, "male" (type document, status loaded)] +[ArangoCollection 74306, "male" (type document, status loaded)] arangosh> db._collection("relation"); -[ArangoCollection 74318, "relation" (type edge, status loaded)] +[ArangoCollection 74311, "relation" (type edge, status loaded)] diff --git a/3.10/generated/Examples/generalGraphEdgeCollectionRemove.generated b/3.10/generated/Examples/generalGraphEdgeCollectionRemove.generated index 6c2be075bf..021f790914 100644 --- a/3.10/generated/Examples/generalGraphEdgeCollectionRemove.generated +++ b/3.10/generated/Examples/generalGraphEdgeCollectionRemove.generated @@ -4,7 +4,7 @@ arangosh> graph.relation.save("female/alice&qu { "_id" : "relation/aliceAndDiana", "_key" : "aliceAndDiana", - "_rev" : "_e4y3mBe---" + "_rev" : "_e9T2AZu---" } arangosh> db._exists("relation/aliceAndDiana") true diff --git a/3.10/generated/Examples/generalGraphEdgeCollectionReplace.generated b/3.10/generated/Examples/generalGraphEdgeCollectionReplace.generated index c906f9e89c..dc499b698e 100644 --- a/3.10/generated/Examples/generalGraphEdgeCollectionReplace.generated +++ b/3.10/generated/Examples/generalGraphEdgeCollectionReplace.generated @@ -4,12 +4,12 @@ arangosh> graph.relation.save("female/alice&qu { "_id" : "relation/aliceAndDiana", "_key" : "aliceAndDiana", - "_rev" : "_e4y3mDa---" + "_rev" : "_e9T2AaG--E" } arangosh> graph.relation.replace("relation/aliceAndDiana", {type: "knows", _from: "female/alice", _to: "female/diana"}); { "_id" : "relation/aliceAndDiana", "_key" : "aliceAndDiana", - "_rev" : "_e4y3mDe---", - "_oldRev" : "_e4y3mDa---" + "_rev" : "_e9T2AaG--F", + "_oldRev" : "_e9T2AaG--E" } diff --git a/3.10/generated/Examples/generalGraphEdgeCollectionSave1.generated b/3.10/generated/Examples/generalGraphEdgeCollectionSave1.generated index a767945de6..515c2b23bf 100644 --- a/3.10/generated/Examples/generalGraphEdgeCollectionSave1.generated +++ b/3.10/generated/Examples/generalGraphEdgeCollectionSave1.generated @@ -7,5 +7,5 @@ arangosh> graph.relation.save({ { "_id" : "relation/bobAndAlice", "_key" : "bobAndAlice", - "_rev" : "_e4y3mFG--_" + "_rev" : "_e9T2Aae---" } diff --git a/3.10/generated/Examples/generalGraphEdgeCollectionUpdate.generated b/3.10/generated/Examples/generalGraphEdgeCollectionUpdate.generated index b06814954d..a4755508ba 100644 --- a/3.10/generated/Examples/generalGraphEdgeCollectionUpdate.generated +++ b/3.10/generated/Examples/generalGraphEdgeCollectionUpdate.generated @@ -4,12 +4,12 @@ arangosh> graph.relation.save("female/alice&qu { "_id" : "relation/aliceAndDiana", "_key" : "aliceAndDiana", - "_rev" : "_e4y3mIC---" + "_rev" : "_e9T2AbC--G" } arangosh> graph.relation.update("relation/aliceAndDiana", {type: "quarreled", _key: "aliceAndDiana"}); { "_id" : "relation/aliceAndDiana", "_key" : "aliceAndDiana", - "_rev" : "_e4y3mIG---", - "_oldRev" : "_e4y3mIC---" + "_rev" : "_e9T2AbG---", + "_oldRev" : "_e9T2AbC--G" } diff --git a/3.10/generated/Examples/generalGraphGetFromVertex.generated b/3.10/generated/Examples/generalGraphGetFromVertex.generated index 87747aae9e..bced8c0596 100644 --- a/3.10/generated/Examples/generalGraphGetFromVertex.generated +++ b/3.10/generated/Examples/generalGraphGetFromVertex.generated @@ -5,6 +5,6 @@ arangosh> graph._fromVertex("relation/""_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3mJm---", + "_rev" : "_e9T2Abe---", "name" : "Alice" } diff --git a/3.10/generated/Examples/generalGraphGetToVertex.generated b/3.10/generated/Examples/generalGraphGetToVertex.generated index a6c195b3c0..f0296a447f 100644 --- a/3.10/generated/Examples/generalGraphGetToVertex.generated +++ b/3.10/generated/Examples/generalGraphGetToVertex.generated @@ -3,8 +3,8 @@ arangosh> var graph = examples.loadGraph(var any = require("@arangodb").db.relation.any(); arangosh> graph._toVertex("relation/" + any._key); { - "_key" : "bob", - "_id" : "male/bob", - "_rev" : "_e4y3mLK---", - "name" : "Bob" + "_key" : "diana", + "_id" : "female/diana", + "_rev" : "_e9T2Aby--B", + "name" : "Diana" } diff --git a/3.10/generated/Examples/generalGraphList.generated b/3.10/generated/Examples/generalGraphList.generated index 0d023cd229..ef10b457e5 100644 --- a/3.10/generated/Examples/generalGraphList.generated +++ b/3.10/generated/Examples/generalGraphList.generated @@ -1,3 +1,6 @@ arangosh> var graph_module = require("@arangodb/general-graph"); arangosh> graph_module._list(); -[ ] +[ + "myGraph", + "myStore" +] diff --git a/3.10/generated/Examples/generalGraphListObjects.generated b/3.10/generated/Examples/generalGraphListObjects.generated new file mode 100644 index 0000000000..3536629d92 --- /dev/null +++ b/3.10/generated/Examples/generalGraphListObjects.generated @@ -0,0 +1,51 @@ +arangosh> var graph_module = require("@arangodb/general-graph"); +arangosh> graph_module._listObjects(); +[ + { + "_id" : "_graphs/myGraph", + "_key" : "myGraph", + "_rev" : "_e9T2AcK--_", + "edgeDefinitions" : [ + { + "collection" : "edges", + "from" : [ + "vertices" + ], + "to" : [ + "vertices" + ] + } + ], + "orphanCollections" : [ ], + "name" : "myGraph" + }, + { + "_id" : "_graphs/myStore", + "_key" : "myStore", + "_rev" : "_e9T2AcO--_", + "edgeDefinitions" : [ + { + "collection" : "friend_of", + "from" : [ + "Customer" + ], + "to" : [ + "Customer" + ] + }, + { + "collection" : "has_bought", + "from" : [ + "Company", + "Customer" + ], + "to" : [ + "Electronics", + "Groceries" + ] + } + ], + "orphanCollections" : [ ], + "name" : "myStore" + } +] diff --git a/3.10/generated/Examples/generalGraphLoadGraph.generated b/3.10/generated/Examples/generalGraphLoadGraph.generated index 5a86bf131f..6a2769b2d7 100644 --- a/3.10/generated/Examples/generalGraphLoadGraph.generated +++ b/3.10/generated/Examples/generalGraphLoadGraph.generated @@ -1,7 +1,7 @@ arangosh> var graph_module = require("@arangodb/general-graph"); arangosh> graph = graph_module._graph("social"); {[GeneralGraph] - "relation" : [ArangoCollection 74801, "relation" (type edge, status loaded)], - "female" : [ArangoCollection 74791, "female" (type document, status loaded)], - "male" : [ArangoCollection 74796, "male" (type document, status loaded)] + "relation" : [ArangoCollection 74920, "relation" (type edge, status loaded)], + "female" : [ArangoCollection 74910, "female" (type document, status loaded)], + "male" : [ArangoCollection 74915, "male" (type document, status loaded)] } diff --git a/3.10/generated/Examples/generalGraphModulePaths1.generated b/3.10/generated/Examples/generalGraphModulePaths1.generated index af0ddf67a1..cc9d129dd3 100644 --- a/3.10/generated/Examples/generalGraphModulePaths1.generated +++ b/3.10/generated/Examples/generalGraphModulePaths1.generated @@ -6,13 +6,13 @@ arangosh> g._paths(); "source" : { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nR2---", + "_rev" : "_e9T2AtK---", "name" : "Alice" }, "destination" : { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nR2---", + "_rev" : "_e9T2AtK---", "name" : "Alice" }, "edges" : [ ], @@ -20,7 +20,7 @@ arangosh> g._paths(); { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nR2---", + "_rev" : "_e9T2AtK---", "name" : "Alice" } ] @@ -29,22 +29,22 @@ arangosh> g._paths(); "source" : { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nR2---", + "_rev" : "_e9T2AtK---", "name" : "Alice" }, "destination" : { "_key" : "charly", "_id" : "male/charly", - "_rev" : "_e4y3nR6---", + "_rev" : "_e9T2AtK--A", "name" : "Charly" }, "edges" : [ { - "_key" : "77851", - "_id" : "relation/77851", + "_key" : "77970", + "_id" : "relation/77970", "_from" : "female/alice", "_to" : "male/charly", - "_rev" : "_e4y3nSC---", + "_rev" : "_e9T2AtK--D", "type" : "friend", "vertex" : "alice" } @@ -53,13 +53,13 @@ arangosh> g._paths(); { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nR2---", + "_rev" : "_e9T2AtK---", "name" : "Alice" }, { "_key" : "charly", "_id" : "male/charly", - "_rev" : "_e4y3nR6---", + "_rev" : "_e9T2AtK--A", "name" : "Charly" } ] @@ -68,31 +68,31 @@ arangosh> g._paths(); "source" : { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nR2---", + "_rev" : "_e9T2AtK---", "name" : "Alice" }, "destination" : { "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nS----", + "_rev" : "_e9T2AtK--B", "name" : "Diana" }, "edges" : [ { - "_key" : "77851", - "_id" : "relation/77851", + "_key" : "77970", + "_id" : "relation/77970", "_from" : "female/alice", "_to" : "male/charly", - "_rev" : "_e4y3nSC---", + "_rev" : "_e9T2AtK--D", "type" : "friend", "vertex" : "alice" }, { - "_key" : "77853", - "_id" : "relation/77853", + "_key" : "77972", + "_id" : "relation/77972", "_from" : "male/charly", "_to" : "female/diana", - "_rev" : "_e4y3nSG---", + "_rev" : "_e9T2AtK--E", "type" : "married", "vertex" : "charly" } @@ -101,19 +101,19 @@ arangosh> g._paths(); { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nR2---", + "_rev" : "_e9T2AtK---", "name" : "Alice" }, { "_key" : "charly", "_id" : "male/charly", - "_rev" : "_e4y3nR6---", + "_rev" : "_e9T2AtK--A", "name" : "Charly" }, { "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nS----", + "_rev" : "_e9T2AtK--B", "name" : "Diana" } ] @@ -122,22 +122,22 @@ arangosh> g._paths(); "source" : { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nR2---", + "_rev" : "_e9T2AtK---", "name" : "Alice" }, "destination" : { "_key" : "bob", "_id" : "male/bob", - "_rev" : "_e4y3nR2--_", + "_rev" : "_e9T2AtK--_", "name" : "Bob" }, "edges" : [ { - "_key" : "77849", - "_id" : "relation/77849", + "_key" : "77968", + "_id" : "relation/77968", "_from" : "female/alice", "_to" : "male/bob", - "_rev" : "_e4y3nS---_", + "_rev" : "_e9T2AtK--C", "type" : "married", "vertex" : "alice" } @@ -146,13 +146,13 @@ arangosh> g._paths(); { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nR2---", + "_rev" : "_e9T2AtK---", "name" : "Alice" }, { "_key" : "bob", "_id" : "male/bob", - "_rev" : "_e4y3nR2--_", + "_rev" : "_e9T2AtK--_", "name" : "Bob" } ] @@ -161,31 +161,31 @@ arangosh> g._paths(); "source" : { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nR2---", + "_rev" : "_e9T2AtK---", "name" : "Alice" }, "destination" : { "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nS----", + "_rev" : "_e9T2AtK--B", "name" : "Diana" }, "edges" : [ { - "_key" : "77849", - "_id" : "relation/77849", + "_key" : "77968", + "_id" : "relation/77968", "_from" : "female/alice", "_to" : "male/bob", - "_rev" : "_e4y3nS---_", + "_rev" : "_e9T2AtK--C", "type" : "married", "vertex" : "alice" }, { - "_key" : "77855", - "_id" : "relation/77855", + "_key" : "77974", + "_id" : "relation/77974", "_from" : "male/bob", "_to" : "female/diana", - "_rev" : "_e4y3nSG--_", + "_rev" : "_e9T2AtK--F", "type" : "friend", "vertex" : "bob" } @@ -194,19 +194,19 @@ arangosh> g._paths(); { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nR2---", + "_rev" : "_e9T2AtK---", "name" : "Alice" }, { "_key" : "bob", "_id" : "male/bob", - "_rev" : "_e4y3nR2--_", + "_rev" : "_e9T2AtK--_", "name" : "Bob" }, { "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nS----", + "_rev" : "_e9T2AtK--B", "name" : "Diana" } ] @@ -215,13 +215,13 @@ arangosh> g._paths(); "source" : { "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nS----", + "_rev" : "_e9T2AtK--B", "name" : "Diana" }, "destination" : { "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nS----", + "_rev" : "_e9T2AtK--B", "name" : "Diana" }, "edges" : [ ], @@ -229,7 +229,7 @@ arangosh> g._paths(); { "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nS----", + "_rev" : "_e9T2AtK--B", "name" : "Diana" } ] @@ -238,13 +238,13 @@ arangosh> g._paths(); "source" : { "_key" : "bob", "_id" : "male/bob", - "_rev" : "_e4y3nR2--_", + "_rev" : "_e9T2AtK--_", "name" : "Bob" }, "destination" : { "_key" : "bob", "_id" : "male/bob", - "_rev" : "_e4y3nR2--_", + "_rev" : "_e9T2AtK--_", "name" : "Bob" }, "edges" : [ ], @@ -252,7 +252,7 @@ arangosh> g._paths(); { "_key" : "bob", "_id" : "male/bob", - "_rev" : "_e4y3nR2--_", + "_rev" : "_e9T2AtK--_", "name" : "Bob" } ] @@ -261,22 +261,22 @@ arangosh> g._paths(); "source" : { "_key" : "bob", "_id" : "male/bob", - "_rev" : "_e4y3nR2--_", + "_rev" : "_e9T2AtK--_", "name" : "Bob" }, "destination" : { "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nS----", + "_rev" : "_e9T2AtK--B", "name" : "Diana" }, "edges" : [ { - "_key" : "77855", - "_id" : "relation/77855", + "_key" : "77974", + "_id" : "relation/77974", "_from" : "male/bob", "_to" : "female/diana", - "_rev" : "_e4y3nSG--_", + "_rev" : "_e9T2AtK--F", "type" : "friend", "vertex" : "bob" } @@ -285,13 +285,13 @@ arangosh> g._paths(); { "_key" : "bob", "_id" : "male/bob", - "_rev" : "_e4y3nR2--_", + "_rev" : "_e9T2AtK--_", "name" : "Bob" }, { "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nS----", + "_rev" : "_e9T2AtK--B", "name" : "Diana" } ] @@ -300,13 +300,13 @@ arangosh> g._paths(); "source" : { "_key" : "charly", "_id" : "male/charly", - "_rev" : "_e4y3nR6---", + "_rev" : "_e9T2AtK--A", "name" : "Charly" }, "destination" : { "_key" : "charly", "_id" : "male/charly", - "_rev" : "_e4y3nR6---", + "_rev" : "_e9T2AtK--A", "name" : "Charly" }, "edges" : [ ], @@ -314,7 +314,7 @@ arangosh> g._paths(); { "_key" : "charly", "_id" : "male/charly", - "_rev" : "_e4y3nR6---", + "_rev" : "_e9T2AtK--A", "name" : "Charly" } ] @@ -323,22 +323,22 @@ arangosh> g._paths(); "source" : { "_key" : "charly", "_id" : "male/charly", - "_rev" : "_e4y3nR6---", + "_rev" : "_e9T2AtK--A", "name" : "Charly" }, "destination" : { "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nS----", + "_rev" : "_e9T2AtK--B", "name" : "Diana" }, "edges" : [ { - "_key" : "77853", - "_id" : "relation/77853", + "_key" : "77972", + "_id" : "relation/77972", "_from" : "male/charly", "_to" : "female/diana", - "_rev" : "_e4y3nSG---", + "_rev" : "_e9T2AtK--E", "type" : "married", "vertex" : "charly" } @@ -347,13 +347,13 @@ arangosh> g._paths(); { "_key" : "charly", "_id" : "male/charly", - "_rev" : "_e4y3nR6---", + "_rev" : "_e9T2AtK--A", "name" : "Charly" }, { "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nS----", + "_rev" : "_e9T2AtK--B", "name" : "Diana" } ] diff --git a/3.10/generated/Examples/generalGraphModulePaths2.generated b/3.10/generated/Examples/generalGraphModulePaths2.generated index 254f3c8436..433edc6c68 100644 --- a/3.10/generated/Examples/generalGraphModulePaths2.generated +++ b/3.10/generated/Examples/generalGraphModulePaths2.generated @@ -6,22 +6,22 @@ arangosh> g._paths({direction : "source" : { "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nUu---", + "_rev" : "_e9T2Aty--B", "name" : "Diana" }, "destination" : { "_key" : "bob", "_id" : "male/bob", - "_rev" : "_e4y3nUq---", + "_rev" : "_e9T2Aty--_", "name" : "Bob" }, "edges" : [ { - "_key" : "77917", - "_id" : "relation/77917", + "_key" : "78036", + "_id" : "relation/78036", "_from" : "male/bob", "_to" : "female/diana", - "_rev" : "_e4y3nU6---", + "_rev" : "_e9T2At2---", "type" : "friend", "vertex" : "bob" } @@ -30,13 +30,13 @@ arangosh> g._paths({direction : "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nUu---", + "_rev" : "_e9T2Aty--B", "name" : "Diana" }, { "_key" : "bob", "_id" : "male/bob", - "_rev" : "_e4y3nUq---", + "_rev" : "_e9T2Aty--_", "name" : "Bob" } ] @@ -45,31 +45,31 @@ arangosh> g._paths({direction : "source" : { "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nUu---", + "_rev" : "_e9T2Aty--B", "name" : "Diana" }, "destination" : { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nUm---", + "_rev" : "_e9T2Aty---", "name" : "Alice" }, "edges" : [ { - "_key" : "77917", - "_id" : "relation/77917", + "_key" : "78036", + "_id" : "relation/78036", "_from" : "male/bob", "_to" : "female/diana", - "_rev" : "_e4y3nU6---", + "_rev" : "_e9T2At2---", "type" : "friend", "vertex" : "bob" }, { - "_key" : "77911", - "_id" : "relation/77911", + "_key" : "78030", + "_id" : "relation/78030", "_from" : "female/alice", "_to" : "male/bob", - "_rev" : "_e4y3nUy---", + "_rev" : "_e9T2Aty--C", "type" : "married", "vertex" : "alice" } @@ -78,19 +78,19 @@ arangosh> g._paths({direction : "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nUu---", + "_rev" : "_e9T2Aty--B", "name" : "Diana" }, { "_key" : "bob", "_id" : "male/bob", - "_rev" : "_e4y3nUq---", + "_rev" : "_e9T2Aty--_", "name" : "Bob" }, { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nUm---", + "_rev" : "_e9T2Aty---", "name" : "Alice" } ] @@ -99,22 +99,22 @@ arangosh> g._paths({direction : "source" : { "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nUu---", + "_rev" : "_e9T2Aty--B", "name" : "Diana" }, "destination" : { "_key" : "charly", "_id" : "male/charly", - "_rev" : "_e4y3nUq--_", + "_rev" : "_e9T2Aty--A", "name" : "Charly" }, "edges" : [ { - "_key" : "77915", - "_id" : "relation/77915", + "_key" : "78034", + "_id" : "relation/78034", "_from" : "male/charly", "_to" : "female/diana", - "_rev" : "_e4y3nU2---", + "_rev" : "_e9T2Aty--E", "type" : "married", "vertex" : "charly" } @@ -123,13 +123,13 @@ arangosh> g._paths({direction : "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nUu---", + "_rev" : "_e9T2Aty--B", "name" : "Diana" }, { "_key" : "charly", "_id" : "male/charly", - "_rev" : "_e4y3nUq--_", + "_rev" : "_e9T2Aty--A", "name" : "Charly" } ] @@ -138,31 +138,31 @@ arangosh> g._paths({direction : "source" : { "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nUu---", + "_rev" : "_e9T2Aty--B", "name" : "Diana" }, "destination" : { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nUm---", + "_rev" : "_e9T2Aty---", "name" : "Alice" }, "edges" : [ { - "_key" : "77915", - "_id" : "relation/77915", + "_key" : "78034", + "_id" : "relation/78034", "_from" : "male/charly", "_to" : "female/diana", - "_rev" : "_e4y3nU2---", + "_rev" : "_e9T2Aty--E", "type" : "married", "vertex" : "charly" }, { - "_key" : "77913", - "_id" : "relation/77913", + "_key" : "78032", + "_id" : "relation/78032", "_from" : "female/alice", "_to" : "male/charly", - "_rev" : "_e4y3nUy--_", + "_rev" : "_e9T2Aty--D", "type" : "friend", "vertex" : "alice" } @@ -171,19 +171,19 @@ arangosh> g._paths({direction : "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nUu---", + "_rev" : "_e9T2Aty--B", "name" : "Diana" }, { "_key" : "charly", "_id" : "male/charly", - "_rev" : "_e4y3nUq--_", + "_rev" : "_e9T2Aty--A", "name" : "Charly" }, { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nUm---", + "_rev" : "_e9T2Aty---", "name" : "Alice" } ] @@ -192,22 +192,22 @@ arangosh> g._paths({direction : "source" : { "_key" : "bob", "_id" : "male/bob", - "_rev" : "_e4y3nUq---", + "_rev" : "_e9T2Aty--_", "name" : "Bob" }, "destination" : { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nUm---", + "_rev" : "_e9T2Aty---", "name" : "Alice" }, "edges" : [ { - "_key" : "77911", - "_id" : "relation/77911", + "_key" : "78030", + "_id" : "relation/78030", "_from" : "female/alice", "_to" : "male/bob", - "_rev" : "_e4y3nUy---", + "_rev" : "_e9T2Aty--C", "type" : "married", "vertex" : "alice" } @@ -216,13 +216,13 @@ arangosh> g._paths({direction : "_key" : "bob", "_id" : "male/bob", - "_rev" : "_e4y3nUq---", + "_rev" : "_e9T2Aty--_", "name" : "Bob" }, { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nUm---", + "_rev" : "_e9T2Aty---", "name" : "Alice" } ] @@ -231,22 +231,22 @@ arangosh> g._paths({direction : "source" : { "_key" : "charly", "_id" : "male/charly", - "_rev" : "_e4y3nUq--_", + "_rev" : "_e9T2Aty--A", "name" : "Charly" }, "destination" : { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nUm---", + "_rev" : "_e9T2Aty---", "name" : "Alice" }, "edges" : [ { - "_key" : "77913", - "_id" : "relation/77913", + "_key" : "78032", + "_id" : "relation/78032", "_from" : "female/alice", "_to" : "male/charly", - "_rev" : "_e4y3nUy--_", + "_rev" : "_e9T2Aty--D", "type" : "friend", "vertex" : "alice" } @@ -255,13 +255,13 @@ arangosh> g._paths({direction : "_key" : "charly", "_id" : "male/charly", - "_rev" : "_e4y3nUq--_", + "_rev" : "_e9T2Aty--A", "name" : "Charly" }, { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nUm---", + "_rev" : "_e9T2Aty---", "name" : "Alice" } ] diff --git a/3.10/generated/Examples/generalGraphModuleShortestPaths1.generated b/3.10/generated/Examples/generalGraphModuleShortestPaths1.generated index 05f64b910e..8f34b4a95d 100644 --- a/3.10/generated/Examples/generalGraphModuleShortestPaths1.generated +++ b/3.10/generated/Examples/generalGraphModuleShortestPaths1.generated @@ -10,11 +10,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges" : [ { - "_key" : "78487", - "_id" : "frenchHighway/78487", + "_key" : "78606", + "_id" : "frenchHighway/78606", "_from" : "frenchCity/Paris", "_to" : "frenchCity/Lyon", - "_rev" : "_e4y3nj2---", + "_rev" : "_e9T2AxG--C", "distance" : 550 } ], @@ -27,11 +27,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges" : [ { - "_key" : "78489", - "_id" : "internationalHighway/78489", + "_key" : "78608", + "_id" : "internationalHighway/78608", "_from" : "germanCity/Berlin", "_to" : "frenchCity/Lyon", - "_rev" : "_e4y3nj6---", + "_rev" : "_e9T2AxK---", "distance" : 1100 } ], @@ -44,11 +44,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges" : [ { - "_key" : "78497", - "_id" : "internationalHighway/78497", + "_key" : "78616", + "_id" : "internationalHighway/78616", "_from" : "germanCity/Cologne", "_to" : "frenchCity/Lyon", - "_rev" : "_e4y3nkC--_", + "_rev" : "_e9T2AxK--C", "distance" : 700 } ], @@ -61,11 +61,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges" : [ { - "_key" : "78495", - "_id" : "internationalHighway/78495", + "_key" : "78614", + "_id" : "internationalHighway/78614", "_from" : "germanCity/Hamburg", "_to" : "frenchCity/Lyon", - "_rev" : "_e4y3nkC---", + "_rev" : "_e9T2AxK--B", "distance" : 1300 } ], @@ -78,11 +78,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges" : [ { - "_key" : "78487", - "_id" : "frenchHighway/78487", + "_key" : "78606", + "_id" : "frenchHighway/78606", "_from" : "frenchCity/Paris", "_to" : "frenchCity/Lyon", - "_rev" : "_e4y3nj2---", + "_rev" : "_e9T2AxG--C", "distance" : 550 } ], @@ -95,11 +95,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges" : [ { - "_key" : "78491", - "_id" : "internationalHighway/78491", + "_key" : "78610", + "_id" : "internationalHighway/78610", "_from" : "germanCity/Berlin", "_to" : "frenchCity/Paris", - "_rev" : "_e4y3nj6--_", + "_rev" : "_e9T2AxK--_", "distance" : 1200 } ], @@ -112,11 +112,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges" : [ { - "_key" : "78499", - "_id" : "internationalHighway/78499", + "_key" : "78618", + "_id" : "internationalHighway/78618", "_from" : "germanCity/Cologne", "_to" : "frenchCity/Paris", - "_rev" : "_e4y3nkG---", + "_rev" : "_e9T2AxK--D", "distance" : 550 } ], @@ -129,11 +129,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges" : [ { - "_key" : "78493", - "_id" : "internationalHighway/78493", + "_key" : "78612", + "_id" : "internationalHighway/78612", "_from" : "germanCity/Hamburg", "_to" : "frenchCity/Paris", - "_rev" : "_e4y3nk----", + "_rev" : "_e9T2AxK--A", "distance" : 900 } ], @@ -146,11 +146,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges" : [ { - "_key" : "78489", - "_id" : "internationalHighway/78489", + "_key" : "78608", + "_id" : "internationalHighway/78608", "_from" : "germanCity/Berlin", "_to" : "frenchCity/Lyon", - "_rev" : "_e4y3nj6---", + "_rev" : "_e9T2AxK---", "distance" : 1100 } ], @@ -163,11 +163,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges" : [ { - "_key" : "78491", - "_id" : "internationalHighway/78491", + "_key" : "78610", + "_id" : "internationalHighway/78610", "_from" : "germanCity/Berlin", "_to" : "frenchCity/Paris", - "_rev" : "_e4y3nj6--_", + "_rev" : "_e9T2AxK--_", "distance" : 1200 } ], @@ -180,11 +180,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges" : [ { - "_key" : "78481", - "_id" : "germanHighway/78481", + "_key" : "78600", + "_id" : "germanHighway/78600", "_from" : "germanCity/Berlin", "_to" : "germanCity/Cologne", - "_rev" : "_e4y3nju---", + "_rev" : "_e9T2AxG--_", "distance" : 850 } ], @@ -197,11 +197,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges" : [ { - "_key" : "78483", - "_id" : "germanHighway/78483", + "_key" : "78602", + "_id" : "germanHighway/78602", "_from" : "germanCity/Berlin", "_to" : "germanCity/Hamburg", - "_rev" : "_e4y3njy---", + "_rev" : "_e9T2AxG--A", "distance" : 400 } ], @@ -214,11 +214,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges" : [ { - "_key" : "78497", - "_id" : "internationalHighway/78497", + "_key" : "78616", + "_id" : "internationalHighway/78616", "_from" : "germanCity/Cologne", "_to" : "frenchCity/Lyon", - "_rev" : "_e4y3nkC--_", + "_rev" : "_e9T2AxK--C", "distance" : 700 } ], @@ -231,11 +231,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges" : [ { - "_key" : "78499", - "_id" : "internationalHighway/78499", + "_key" : "78618", + "_id" : "internationalHighway/78618", "_from" : "germanCity/Cologne", "_to" : "frenchCity/Paris", - "_rev" : "_e4y3nkG---", + "_rev" : "_e9T2AxK--D", "distance" : 550 } ], @@ -248,11 +248,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges" : [ { - "_key" : "78481", - "_id" : "germanHighway/78481", + "_key" : "78600", + "_id" : "germanHighway/78600", "_from" : "germanCity/Berlin", "_to" : "germanCity/Cologne", - "_rev" : "_e4y3nju---", + "_rev" : "_e9T2AxG--_", "distance" : 850 } ], @@ -265,11 +265,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges" : [ { - "_key" : "78485", - "_id" : "germanHighway/78485", + "_key" : "78604", + "_id" : "germanHighway/78604", "_from" : "germanCity/Hamburg", "_to" : "germanCity/Cologne", - "_rev" : "_e4y3njy--_", + "_rev" : "_e9T2AxG--B", "distance" : 500 } ], @@ -282,11 +282,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges" : [ { - "_key" : "78495", - "_id" : "internationalHighway/78495", + "_key" : "78614", + "_id" : "internationalHighway/78614", "_from" : "germanCity/Hamburg", "_to" : "frenchCity/Lyon", - "_rev" : "_e4y3nkC---", + "_rev" : "_e9T2AxK--B", "distance" : 1300 } ], @@ -299,11 +299,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges" : [ { - "_key" : "78493", - "_id" : "internationalHighway/78493", + "_key" : "78612", + "_id" : "internationalHighway/78612", "_from" : "germanCity/Hamburg", "_to" : "frenchCity/Paris", - "_rev" : "_e4y3nk----", + "_rev" : "_e9T2AxK--A", "distance" : 900 } ], @@ -316,11 +316,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges" : [ { - "_key" : "78483", - "_id" : "germanHighway/78483", + "_key" : "78602", + "_id" : "germanHighway/78602", "_from" : "germanCity/Berlin", "_to" : "germanCity/Hamburg", - "_rev" : "_e4y3njy---", + "_rev" : "_e9T2AxG--A", "distance" : 400 } ], @@ -333,11 +333,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges" : [ { - "_key" : "78485", - "_id" : "germanHighway/78485", + "_key" : "78604", + "_id" : "germanHighway/78604", "_from" : "germanCity/Hamburg", "_to" : "germanCity/Cologne", - "_rev" : "_e4y3njy--_", + "_rev" : "_e9T2AxG--B", "distance" : 500 } ], diff --git a/3.10/generated/Examples/generalGraphModuleShortestPaths2.generated b/3.10/generated/Examples/generalGraphModuleShortestPaths2.generated index 9686d9407e..edbc022db2 100644 --- a/3.10/generated/Examples/generalGraphModuleShortestPaths2.generated +++ b/3.10/generated/Examples/generalGraphModuleShortestPaths2.generated @@ -10,11 +10,11 @@ arangosh> g._shortestPath([{_id: "edges" : [ { - "_key" : "78596", - "_id" : "internationalHighway/78596", + "_key" : "78715", + "_id" : "internationalHighway/78715", "_from" : "germanCity/Cologne", "_to" : "frenchCity/Lyon", - "_rev" : "_e4y3nne---", + "_rev" : "_e9T2Ay---B", "distance" : 700 } ], diff --git a/3.10/generated/Examples/generalGraphVertexCollectionRemove.generated b/3.10/generated/Examples/generalGraphVertexCollectionRemove.generated index d522843aeb..962f3383ef 100644 --- a/3.10/generated/Examples/generalGraphVertexCollectionRemove.generated +++ b/3.10/generated/Examples/generalGraphVertexCollectionRemove.generated @@ -4,7 +4,7 @@ arangosh> graph.male.save({name: "_id" : "male/kermit", "_key" : "kermit", - "_rev" : "_e4y3np2---" + "_rev" : "_e9T2Aye--G" } arangosh> db._exists("male/kermit") true diff --git a/3.10/generated/Examples/generalGraphVertexCollectionReplace.generated b/3.10/generated/Examples/generalGraphVertexCollectionReplace.generated index 53d7eaf32d..f921d69966 100644 --- a/3.10/generated/Examples/generalGraphVertexCollectionReplace.generated +++ b/3.10/generated/Examples/generalGraphVertexCollectionReplace.generated @@ -4,12 +4,12 @@ arangosh> graph.male.save({neym: "_id" : "male/john", "_key" : "john", - "_rev" : "_e4y3nrm--_" + "_rev" : "_e9T2Ay6---" } arangosh> graph.male.replace("male/john", {name: "John"}); { "_id" : "male/john", "_key" : "john", - "_rev" : "_e4y3nrq---", - "_oldRev" : "_e4y3nrm--_" + "_rev" : "_e9T2Ay6--_", + "_oldRev" : "_e9T2Ay6---" } diff --git a/3.10/generated/Examples/generalGraphVertexCollectionSave.generated b/3.10/generated/Examples/generalGraphVertexCollectionSave.generated index 842e9e14d3..8a53e8accd 100644 --- a/3.10/generated/Examples/generalGraphVertexCollectionSave.generated +++ b/3.10/generated/Examples/generalGraphVertexCollectionSave.generated @@ -4,5 +4,5 @@ arangosh> graph.male.save({name: "_id" : "male/floyd", "_key" : "floyd", - "_rev" : "_e4y3ntO---" + "_rev" : "_e9T2AzO--_" } diff --git a/3.10/generated/Examples/generalGraphVertexCollectionUpdate.generated b/3.10/generated/Examples/generalGraphVertexCollectionUpdate.generated index 530d5f3753..a5e17db994 100644 --- a/3.10/generated/Examples/generalGraphVertexCollectionUpdate.generated +++ b/3.10/generated/Examples/generalGraphVertexCollectionUpdate.generated @@ -4,12 +4,12 @@ arangosh> graph.female.save({name: "_id" : "female/linda", "_key" : "linda", - "_rev" : "_e4y3nuq--_" + "_rev" : "_e9T2Aze--G" } arangosh> graph.female.update("female/linda", {name: "Linda", _key: "linda"}); { "_id" : "female/linda", "_key" : "linda", - "_rev" : "_e4y3nuu---", - "_oldRev" : "_e4y3nuq--_" + "_rev" : "_e9T2Azi---", + "_oldRev" : "_e9T2Aze--G" } diff --git a/3.10/generated/Examples/general_graph__addVertexCollection.generated b/3.10/generated/Examples/general_graph__addVertexCollection.generated index ab59d933c7..cd8f66f70f 100644 --- a/3.10/generated/Examples/general_graph__addVertexCollection.generated +++ b/3.10/generated/Examples/general_graph__addVertexCollection.generated @@ -2,3 +2,10 @@ arangosh> var graph_module = var ed1 = graph_module._relation("myEC1", ["myVC1"], ["myVC2"]); arangosh> var graph = graph_module._create("myGraph", [ed1]); arangosh> graph._addVertexCollection("myVC3", true); +arangosh> graph = graph_module._graph("myGraph"); +{[GeneralGraph] + "myEC1" : [ArangoCollection 79016, "myEC1" (type edge, status loaded)], + "myVC1" : [ArangoCollection 79013, "myVC1" (type document, status loaded)], + "myVC2" : [ArangoCollection 79010, "myVC2" (type document, status loaded)], + "myVC3" : [ArangoCollection 79029, "myVC3" (type document, status loaded)] +} diff --git a/3.10/generated/Examples/general_graph__deleteEdgeDefinitionNoDrop.generated b/3.10/generated/Examples/general_graph__deleteEdgeDefinitionNoDrop.generated index 5e123fac0c..1b8925d3bb 100644 --- a/3.10/generated/Examples/general_graph__deleteEdgeDefinitionNoDrop.generated +++ b/3.10/generated/Examples/general_graph__deleteEdgeDefinitionNoDrop.generated @@ -4,4 +4,4 @@ arangosh> var ed2 = graph_module._relation( arangosh> var graph = graph_module._create("myGraph", [ed1, ed2]); arangosh> graph._deleteEdgeDefinition("myEC1"); arangosh> db._collection("myEC1"); -[ArangoCollection 78960, "myEC1" (type edge, status loaded)] +[ArangoCollection 79079, "myEC1" (type edge, status loaded)] diff --git a/3.10/generated/Examples/general_graph__extendEdgeDefinitions.generated b/3.10/generated/Examples/general_graph__extendEdgeDefinitions.generated index 0c874f1fed..4d001cc1cd 100644 --- a/3.10/generated/Examples/general_graph__extendEdgeDefinitions.generated +++ b/3.10/generated/Examples/general_graph__extendEdgeDefinitions.generated @@ -3,3 +3,11 @@ arangosh> var ed1 = graph_module._relation( arangosh> var ed2 = graph_module._relation("myEC2", ["myVC1"], ["myVC3"]); arangosh> var graph = graph_module._create("myGraph", [ed1]); arangosh> graph._extendEdgeDefinitions(ed2); +arangosh> graph = graph_module._graph("myGraph"); +{[GeneralGraph] + "myEC1" : [ArangoCollection 79255, "myEC1" (type edge, status loaded)], + "myVC1" : [ArangoCollection 79252, "myVC1" (type document, status loaded)], + "myVC2" : [ArangoCollection 79249, "myVC2" (type document, status loaded)], + "myEC2" : [ArangoCollection 79273, "myEC2" (type edge, status loaded)], + "myVC3" : [ArangoCollection 79270, "myVC3" (type document, status loaded)] +} diff --git a/3.10/generated/Examples/general_graph_create_graph_example1.generated b/3.10/generated/Examples/general_graph_create_graph_example1.generated index 46ee510964..79a509847e 100644 --- a/3.10/generated/Examples/general_graph_create_graph_example1.generated +++ b/3.10/generated/Examples/general_graph_create_graph_example1.generated @@ -6,10 +6,10 @@ arangosh> graph_module._extendEdgeDefinitions( ........> "has_bought", ["Customer", "Company"], ["Groceries", "Electronics"])); arangosh> graph_module._create("myStore", edgeDefinitions); {[GeneralGraph] - "friend_of" : [ArangoCollection 79349, "friend_of" (type edge, status loaded)], - "Customer" : [ArangoCollection 79338, "Customer" (type document, status loaded)], - "has_bought" : [ArangoCollection 79344, "has_bought" (type edge, status loaded)], - "Company" : [ArangoCollection 79341, "Company" (type document, status loaded)], - "Electronics" : [ArangoCollection 79335, "Electronics" (type document, status loaded)], - "Groceries" : [ArangoCollection 79332, "Groceries" (type document, status loaded)] + "friend_of" : [ArangoCollection 79465, "friend_of" (type edge, status loaded)], + "Customer" : [ArangoCollection 79454, "Customer" (type document, status loaded)], + "has_bought" : [ArangoCollection 79460, "has_bought" (type edge, status loaded)], + "Company" : [ArangoCollection 79457, "Company" (type document, status loaded)], + "Electronics" : [ArangoCollection 79451, "Electronics" (type document, status loaded)], + "Groceries" : [ArangoCollection 79448, "Groceries" (type document, status loaded)] } diff --git a/3.10/generated/Examples/general_graph_create_graph_example2.generated b/3.10/generated/Examples/general_graph_create_graph_example2.generated index 765655d423..1c79ae3cd5 100644 --- a/3.10/generated/Examples/general_graph_create_graph_example2.generated +++ b/3.10/generated/Examples/general_graph_create_graph_example2.generated @@ -4,10 +4,10 @@ arangosh> var edgeDefinitions = graph_modu ........> "has_bought", ["Customer", "Company"], ["Groceries", "Electronics"])); arangosh> graph_module._create("myStore", edgeDefinitions); {[GeneralGraph] - "friend_of" : [ArangoCollection 79392, "friend_of" (type edge, status loaded)], - "Customer" : [ArangoCollection 79381, "Customer" (type document, status loaded)], - "has_bought" : [ArangoCollection 79387, "has_bought" (type edge, status loaded)], - "Company" : [ArangoCollection 79384, "Company" (type document, status loaded)], - "Electronics" : [ArangoCollection 79378, "Electronics" (type document, status loaded)], - "Groceries" : [ArangoCollection 79375, "Groceries" (type document, status loaded)] + "friend_of" : [ArangoCollection 79508, "friend_of" (type edge, status loaded)], + "Customer" : [ArangoCollection 79497, "Customer" (type document, status loaded)], + "has_bought" : [ArangoCollection 79503, "has_bought" (type edge, status loaded)], + "Company" : [ArangoCollection 79500, "Company" (type document, status loaded)], + "Electronics" : [ArangoCollection 79494, "Electronics" (type document, status loaded)], + "Groceries" : [ArangoCollection 79491, "Groceries" (type document, status loaded)] } diff --git a/3.10/generated/Examples/geoIndexCreateForArrayAttribute1.generated b/3.10/generated/Examples/geoIndexCreateForArrayAttribute1.generated index ee2784bc27..765619ae3f 100644 --- a/3.10/generated/Examples/geoIndexCreateForArrayAttribute1.generated +++ b/3.10/generated/Examples/geoIndexCreateForArrayAttribute1.generated @@ -5,11 +5,11 @@ arangosh> db.geo.ensureIndex({ type: "loc" ], "geoJson" : false, - "id" : "geo/79417", + "id" : "geo/79533", "isNewlyCreated" : true, "legacyPolygons" : false, "maxNumCoverCells" : 8, - "name" : "idx_1745940466034016256", + "name" : "idx_1747211390801674241", "sparse" : true, "type" : "geo", "unique" : false, diff --git a/3.10/generated/Examples/geoIndexCreateForArrayAttribute2.generated b/3.10/generated/Examples/geoIndexCreateForArrayAttribute2.generated index 42b29478a6..0d92b48628 100644 --- a/3.10/generated/Examples/geoIndexCreateForArrayAttribute2.generated +++ b/3.10/generated/Examples/geoIndexCreateForArrayAttribute2.generated @@ -6,11 +6,11 @@ arangosh> db.geo2.ensureIndex({ type: "location.longitude" ], "geoJson" : false, - "id" : "geo2/79428", + "id" : "geo2/79544", "isNewlyCreated" : true, "legacyPolygons" : false, "maxNumCoverCells" : 8, - "name" : "idx_1745940466042404864", + "name" : "idx_1747211390803771393", "sparse" : true, "type" : "geo", "unique" : false, diff --git a/3.10/generated/Examples/geoIndexFilterOptimization.generated b/3.10/generated/Examples/geoIndexFilterOptimization.generated index 4087651f71..a40dfb7e7d 100644 --- a/3.10/generated/Examples/geoIndexFilterOptimization.generated +++ b/3.10/generated/Examples/geoIndexFilterOptimization.generated @@ -6,11 +6,11 @@ arangosh> db.geoFilter.ensureIndex({ type: "longitude" ], "geoJson" : false, - "id" : "geoFilter/79439", + "id" : "geoFilter/79555", "isNewlyCreated" : true, "legacyPolygons" : false, "maxNumCoverCells" : 8, - "name" : "idx_1745940466051842048", + "name" : "idx_1747211390805868545", "sparse" : true, "type" : "geo", "unique" : false, @@ -35,7 +35,7 @@ Execution plan: Indexes used: By Name Type Collection Unique Sparse Cache Selectivity Fields Stored values Ranges - 6 idx_1745940466051842048 geo geoFilter false true false n/a [ `latitude`, `longitude` ] [ ] (GEO_DISTANCE([ 0, 0 ], [ doc.`longitude`, doc.`latitude` ]) < 2000) + 6 idx_1747211390805868545 geo geoFilter false true false n/a [ `latitude`, `longitude` ] [ ] (GEO_DISTANCE([ 0, 0 ], [ doc.`longitude`, doc.`latitude` ]) < 2000) Optimization rules applied: Id RuleName @@ -48,9 +48,9 @@ Optimization rules applied: arangosh> db._query(query); [ { - "_key" : "80145", - "_id" : "geoFilter/80145", - "_rev" : "_e4y3oFS--A", + "_key" : "80261", + "_id" : "geoFilter/80261", + "_rev" : "_e9T2A4W--E", "name" : "Name/0/0", "latitude" : 0, "longitude" : 0 diff --git a/3.10/generated/Examples/geoIndexSortOptimization.generated b/3.10/generated/Examples/geoIndexSortOptimization.generated index 667f554dd9..5889add5ed 100644 --- a/3.10/generated/Examples/geoIndexSortOptimization.generated +++ b/3.10/generated/Examples/geoIndexSortOptimization.generated @@ -6,11 +6,11 @@ arangosh> db.geoSort.ensureIndex({ type: "longitude" ], "geoJson" : false, - "id" : "geoSort/80860", + "id" : "geoSort/80976", "isNewlyCreated" : true, "legacyPolygons" : false, "maxNumCoverCells" : 8, - "name" : "idx_1745940466401017856", + "name" : "idx_1747211390874025985", "sparse" : true, "type" : "geo", "unique" : false, @@ -36,7 +36,7 @@ Execution plan: Indexes used: By Name Type Collection Unique Sparse Cache Selectivity Fields Stored values Ranges - 7 idx_1745940466401017856 geo geoSort false true false n/a [ `latitude`, `longitude` ] [ ] (GEO_DISTANCE([ 0, 0 ], [ doc.`longitude`, doc.`latitude` ]) < "unlimited") + 7 idx_1747211390874025985 geo geoSort false true false n/a [ `latitude`, `longitude` ] [ ] (GEO_DISTANCE([ 0, 0 ], [ doc.`longitude`, doc.`latitude` ]) < "unlimited") Optimization rules applied: Id RuleName @@ -49,41 +49,41 @@ Optimization rules applied: arangosh> db._query(query); [ { - "_key" : "81566", - "_id" : "geoSort/81566", - "_rev" : "_e4y3oae--A", + "_key" : "81682", + "_id" : "geoSort/81682", + "_rev" : "_e9T2A8e--G", "name" : "Name/0/0", "latitude" : 0, "longitude" : 0 }, { - "_key" : "81640", - "_id" : "geoSort/81640", - "_rev" : "_e4y3obW--A", + "_key" : "81756", + "_id" : "geoSort/81756", + "_rev" : "_e9T2A8q--H", "name" : "Name/10/0", "latitude" : 10, "longitude" : 0 }, { - "_key" : "81568", - "_id" : "geoSort/81568", - "_rev" : "_e4y3oai---", + "_key" : "81684", + "_id" : "geoSort/81684", + "_rev" : "_e9T2A8e--H", "name" : "Name/0/10", "latitude" : 0, "longitude" : 10 }, { - "_key" : "81492", - "_id" : "geoSort/81492", - "_rev" : "_e4y3oZm--_", + "_key" : "81608", + "_id" : "geoSort/81608", + "_rev" : "_e9T2A8S--E", "name" : "Name/-10/0", "latitude" : -10, "longitude" : 0 }, { - "_key" : "81564", - "_id" : "geoSort/81564", - "_rev" : "_e4y3oae--_", + "_key" : "81680", + "_id" : "geoSort/81680", + "_rev" : "_e9T2A8e--F", "name" : "Name/0/-10", "latitude" : 0, "longitude" : -10 diff --git a/3.10/generated/Examples/graph_create_cities_sample.generated b/3.10/generated/Examples/graph_create_cities_sample.generated index 1bd59a92bc..90f52e7a8a 100644 --- a/3.10/generated/Examples/graph_create_cities_sample.generated +++ b/3.10/generated/Examples/graph_create_cities_sample.generated @@ -5,7 +5,7 @@ arangosh> db.frenchCity.toArray(); { "_key" : "Lyon", "_id" : "frenchCity/Lyon", - "_rev" : "_e4y3okq---", + "_rev" : "_e9T2B-2--B", "population" : 80000, "isCapital" : false, "geometry" : { @@ -19,7 +19,7 @@ arangosh> db.frenchCity.toArray(); { "_key" : "Paris", "_id" : "frenchCity/Paris", - "_rev" : "_e4y3oku---", + "_rev" : "_e9T2B-6---", "population" : 4000000, "isCapital" : true, "geometry" : { @@ -36,7 +36,7 @@ arangosh> db.germanCity.toArray(); { "_key" : "Berlin", "_id" : "germanCity/Berlin", - "_rev" : "_e4y3oki---", + "_rev" : "_e9T2B-2---", "population" : 3000000, "isCapital" : true, "geometry" : { @@ -50,7 +50,7 @@ arangosh> db.germanCity.toArray(); { "_key" : "Cologne", "_id" : "germanCity/Cologne", - "_rev" : "_e4y3okm---", + "_rev" : "_e9T2B-2--_", "population" : 1000000, "isCapital" : false, "geometry" : { @@ -64,7 +64,7 @@ arangosh> db.germanCity.toArray(); { "_key" : "Hamburg", "_id" : "germanCity/Hamburg", - "_rev" : "_e4y3okm--_", + "_rev" : "_e9T2B-2--A", "population" : 1000000, "isCapital" : false, "geometry" : { @@ -79,89 +79,89 @@ arangosh> db.germanCity.toArray(); arangosh> db.germanHighway.toArray(); [ { - "_key" : "82321", - "_id" : "germanHighway/82321", + "_key" : "82437", + "_id" : "germanHighway/82437", "_from" : "germanCity/Berlin", "_to" : "germanCity/Cologne", - "_rev" : "_e4y3olC---", + "_rev" : "_e9T2B_----", "distance" : 850 }, { - "_key" : "82323", - "_id" : "germanHighway/82323", + "_key" : "82439", + "_id" : "germanHighway/82439", "_from" : "germanCity/Berlin", "_to" : "germanCity/Hamburg", - "_rev" : "_e4y3olC--_", + "_rev" : "_e9T2B_---_", "distance" : 400 }, { - "_key" : "82325", - "_id" : "germanHighway/82325", + "_key" : "82441", + "_id" : "germanHighway/82441", "_from" : "germanCity/Hamburg", "_to" : "germanCity/Cologne", - "_rev" : "_e4y3olG---", + "_rev" : "_e9T2B_---A", "distance" : 500 } ] arangosh> db.frenchHighway.toArray(); [ { - "_key" : "82327", - "_id" : "frenchHighway/82327", + "_key" : "82443", + "_id" : "frenchHighway/82443", "_from" : "frenchCity/Paris", "_to" : "frenchCity/Lyon", - "_rev" : "_e4y3olK---", + "_rev" : "_e9T2B_---B", "distance" : 550 } ] arangosh> db.internationalHighway.toArray(); [ { - "_key" : "82329", - "_id" : "internationalHighway/82329", + "_key" : "82445", + "_id" : "internationalHighway/82445", "_from" : "germanCity/Berlin", "_to" : "frenchCity/Lyon", - "_rev" : "_e4y3olO---", + "_rev" : "_e9T2B_---C", "distance" : 1100 }, { - "_key" : "82331", - "_id" : "internationalHighway/82331", + "_key" : "82447", + "_id" : "internationalHighway/82447", "_from" : "germanCity/Berlin", "_to" : "frenchCity/Paris", - "_rev" : "_e4y3olO--_", + "_rev" : "_e9T2B_---D", "distance" : 1200 }, { - "_key" : "82333", - "_id" : "internationalHighway/82333", + "_key" : "82449", + "_id" : "internationalHighway/82449", "_from" : "germanCity/Hamburg", "_to" : "frenchCity/Paris", - "_rev" : "_e4y3olS---", + "_rev" : "_e9T2B_---E", "distance" : 900 }, { - "_key" : "82335", - "_id" : "internationalHighway/82335", + "_key" : "82451", + "_id" : "internationalHighway/82451", "_from" : "germanCity/Hamburg", "_to" : "frenchCity/Lyon", - "_rev" : "_e4y3olS--_", + "_rev" : "_e9T2B_---F", "distance" : 1300 }, { - "_key" : "82337", - "_id" : "internationalHighway/82337", + "_key" : "82453", + "_id" : "internationalHighway/82453", "_from" : "germanCity/Cologne", "_to" : "frenchCity/Lyon", - "_rev" : "_e4y3olW---", + "_rev" : "_e9T2B_---G", "distance" : 700 }, { - "_key" : "82339", - "_id" : "internationalHighway/82339", + "_key" : "82455", + "_id" : "internationalHighway/82455", "_from" : "germanCity/Cologne", "_to" : "frenchCity/Paris", - "_rev" : "_e4y3ola---", + "_rev" : "_e9T2B_---H", "distance" : 550 } ] diff --git a/3.10/generated/Examples/graph_create_connectedcomponentsgraph_sample.generated b/3.10/generated/Examples/graph_create_connectedcomponentsgraph_sample.generated index 387cb5eb65..0f4ebea51b 100644 --- a/3.10/generated/Examples/graph_create_connectedcomponentsgraph_sample.generated +++ b/3.10/generated/Examples/graph_create_connectedcomponentsgraph_sample.generated @@ -5,437 +5,437 @@ arangosh> db.components.toArray(); { "_key" : "A1", "_id" : "components/A1", - "_rev" : "_e4y3onq---" + "_rev" : "_e9T2B_e---" }, { "_key" : "A2", "_id" : "components/A2", - "_rev" : "_e4y3onu---" + "_rev" : "_e9T2B_e--_" }, { "_key" : "A3", "_id" : "components/A3", - "_rev" : "_e4y3onu--_" + "_rev" : "_e9T2B_e--A" }, { "_key" : "A4", "_id" : "components/A4", - "_rev" : "_e4y3ony---" + "_rev" : "_e9T2B_e--B" }, { "_key" : "B1", "_id" : "components/B1", - "_rev" : "_e4y3ony--_" + "_rev" : "_e9T2B_e--C" }, { "_key" : "B3", "_id" : "components/B3", - "_rev" : "_e4y3on2---" + "_rev" : "_e9T2B_e--D" }, { "_key" : "B2", "_id" : "components/B2", - "_rev" : "_e4y3on6---" + "_rev" : "_e9T2B_e--E" }, { "_key" : "B4", "_id" : "components/B4", - "_rev" : "_e4y3on6--_" + "_rev" : "_e9T2B_e--F" }, { "_key" : "B6", "_id" : "components/B6", - "_rev" : "_e4y3on6--A" + "_rev" : "_e9T2B_e--G" }, { "_key" : "B5", "_id" : "components/B5", - "_rev" : "_e4y3oo----" + "_rev" : "_e9T2B_i---" }, { "_key" : "B7", "_id" : "components/B7", - "_rev" : "_e4y3oo---_" + "_rev" : "_e9T2B_i--_" }, { "_key" : "B8", "_id" : "components/B8", - "_rev" : "_e4y3ooC---" + "_rev" : "_e9T2B_i--A" }, { "_key" : "B9", "_id" : "components/B9", - "_rev" : "_e4y3ooC--_" + "_rev" : "_e9T2B_i--B" }, { "_key" : "B10", "_id" : "components/B10", - "_rev" : "_e4y3ooG---" + "_rev" : "_e9T2B_i--C" }, { "_key" : "B19", "_id" : "components/B19", - "_rev" : "_e4y3ooG--_" + "_rev" : "_e9T2B_i--D" }, { "_key" : "B11", "_id" : "components/B11", - "_rev" : "_e4y3ooK---" + "_rev" : "_e9T2B_i--E" }, { "_key" : "B12", "_id" : "components/B12", - "_rev" : "_e4y3ooK--_" + "_rev" : "_e9T2B_i--F" }, { "_key" : "B13", "_id" : "components/B13", - "_rev" : "_e4y3ooK--A" + "_rev" : "_e9T2B_i--G" }, { "_key" : "B20", "_id" : "components/B20", - "_rev" : "_e4y3ooO---" + "_rev" : "_e9T2B_i--H" }, { "_key" : "B14", "_id" : "components/B14", - "_rev" : "_e4y3ooO--_" + "_rev" : "_e9T2B_i--I" }, { "_key" : "B15", "_id" : "components/B15", - "_rev" : "_e4y3ooS---" + "_rev" : "_e9T2B_i--J" }, { "_key" : "B16", "_id" : "components/B16", - "_rev" : "_e4y3ooS--_" + "_rev" : "_e9T2B_m---" }, { "_key" : "B17", "_id" : "components/B17", - "_rev" : "_e4y3ooW---" + "_rev" : "_e9T2B_m--_" }, { "_key" : "B18", "_id" : "components/B18", - "_rev" : "_e4y3ooW--_" + "_rev" : "_e9T2B_m--A" }, { "_key" : "B21", "_id" : "components/B21", - "_rev" : "_e4y3ooW--A" + "_rev" : "_e9T2B_m--B" }, { "_key" : "B22", "_id" : "components/B22", - "_rev" : "_e4y3ooa---" + "_rev" : "_e9T2B_m--C" }, { "_key" : "C1", "_id" : "components/C1", - "_rev" : "_e4y3ooa--_" + "_rev" : "_e9T2B_m--D" }, { "_key" : "C2", "_id" : "components/C2", - "_rev" : "_e4y3ooe---" + "_rev" : "_e9T2B_m--E" }, { "_key" : "C3", "_id" : "components/C3", - "_rev" : "_e4y3ooe--_" + "_rev" : "_e9T2B_m--F" }, { "_key" : "C4", "_id" : "components/C4", - "_rev" : "_e4y3ooe--A" + "_rev" : "_e9T2B_m--G" }, { "_key" : "C5", "_id" : "components/C5", - "_rev" : "_e4y3ooi---" + "_rev" : "_e9T2B_m--H" }, { "_key" : "C7", "_id" : "components/C7", - "_rev" : "_e4y3ooi--_" + "_rev" : "_e9T2B_m--I" }, { "_key" : "C6", "_id" : "components/C6", - "_rev" : "_e4y3oom---" + "_rev" : "_e9T2B_m--J" }, { "_key" : "C8", "_id" : "components/C8", - "_rev" : "_e4y3oom--_" + "_rev" : "_e9T2B_q---" }, { "_key" : "C9", "_id" : "components/C9", - "_rev" : "_e4y3oom--A" + "_rev" : "_e9T2B_q--_" }, { "_key" : "C10", "_id" : "components/C10", - "_rev" : "_e4y3ooq---" + "_rev" : "_e9T2B_q--A" } ] arangosh> db.connections.toArray(); [ { - "_key" : "82442", - "_id" : "connections/82442", + "_key" : "82558", + "_id" : "connections/82558", "_from" : "components/A1", "_to" : "components/A2", - "_rev" : "_e4y3ooq--_" + "_rev" : "_e9T2B_q--B" }, { - "_key" : "82444", - "_id" : "connections/82444", + "_key" : "82560", + "_id" : "connections/82560", "_from" : "components/A2", "_to" : "components/A3", - "_rev" : "_e4y3oou---" + "_rev" : "_e9T2B_q--C" }, { - "_key" : "82446", - "_id" : "connections/82446", + "_key" : "82562", + "_id" : "connections/82562", "_from" : "components/A3", "_to" : "components/A4", - "_rev" : "_e4y3oou--_" + "_rev" : "_e9T2B_q--D" }, { - "_key" : "82448", - "_id" : "connections/82448", + "_key" : "82564", + "_id" : "connections/82564", "_from" : "components/A4", "_to" : "components/A1", - "_rev" : "_e4y3oou--A" + "_rev" : "_e9T2B_q--E" }, { - "_key" : "82450", - "_id" : "connections/82450", + "_key" : "82566", + "_id" : "connections/82566", "_from" : "components/B1", "_to" : "components/B3", - "_rev" : "_e4y3ooy---" + "_rev" : "_e9T2B_q--F" }, { - "_key" : "82452", - "_id" : "connections/82452", + "_key" : "82568", + "_id" : "connections/82568", "_from" : "components/B2", "_to" : "components/B4", - "_rev" : "_e4y3ooy--_" + "_rev" : "_e9T2B_q--G" }, { - "_key" : "82454", - "_id" : "connections/82454", + "_key" : "82570", + "_id" : "connections/82570", "_from" : "components/B3", "_to" : "components/B6", - "_rev" : "_e4y3oo2---" + "_rev" : "_e9T2B_q--H" }, { - "_key" : "82456", - "_id" : "connections/82456", + "_key" : "82572", + "_id" : "connections/82572", "_from" : "components/B4", "_to" : "components/B3", - "_rev" : "_e4y3oo2--_" + "_rev" : "_e9T2B_q--I" }, { - "_key" : "82458", - "_id" : "connections/82458", + "_key" : "82574", + "_id" : "connections/82574", "_from" : "components/B4", "_to" : "components/B5", - "_rev" : "_e4y3oo6---" + "_rev" : "_e9T2B_u---" }, { - "_key" : "82460", - "_id" : "connections/82460", + "_key" : "82576", + "_id" : "connections/82576", "_from" : "components/B6", "_to" : "components/B7", - "_rev" : "_e4y3oo6--_" + "_rev" : "_e9T2B_u--_" }, { - "_key" : "82462", - "_id" : "connections/82462", + "_key" : "82578", + "_id" : "connections/82578", "_from" : "components/B7", "_to" : "components/B8", - "_rev" : "_e4y3op----" + "_rev" : "_e9T2B_u--A" }, { - "_key" : "82464", - "_id" : "connections/82464", + "_key" : "82580", + "_id" : "connections/82580", "_from" : "components/B7", "_to" : "components/B9", - "_rev" : "_e4y3op---_" + "_rev" : "_e9T2B_u--B" }, { - "_key" : "82466", - "_id" : "connections/82466", + "_key" : "82582", + "_id" : "connections/82582", "_from" : "components/B7", "_to" : "components/B10", - "_rev" : "_e4y3op---A" + "_rev" : "_e9T2B_u--C" }, { - "_key" : "82468", - "_id" : "connections/82468", + "_key" : "82584", + "_id" : "connections/82584", "_from" : "components/B7", "_to" : "components/B19", - "_rev" : "_e4y3opC---" + "_rev" : "_e9T2B_u--D" }, { - "_key" : "82470", - "_id" : "connections/82470", + "_key" : "82586", + "_id" : "connections/82586", "_from" : "components/B11", "_to" : "components/B10", - "_rev" : "_e4y3opC--_" + "_rev" : "_e9T2B_u--E" }, { - "_key" : "82472", - "_id" : "connections/82472", + "_key" : "82588", + "_id" : "connections/82588", "_from" : "components/B12", "_to" : "components/B11", - "_rev" : "_e4y3opG---" + "_rev" : "_e9T2B_u--F" }, { - "_key" : "82474", - "_id" : "connections/82474", + "_key" : "82590", + "_id" : "connections/82590", "_from" : "components/B13", "_to" : "components/B12", - "_rev" : "_e4y3opG--_" + "_rev" : "_e9T2B_u--G" }, { - "_key" : "82476", - "_id" : "connections/82476", + "_key" : "82592", + "_id" : "connections/82592", "_from" : "components/B13", "_to" : "components/B20", - "_rev" : "_e4y3opK---" + "_rev" : "_e9T2B_u--H" }, { - "_key" : "82478", - "_id" : "connections/82478", + "_key" : "82594", + "_id" : "connections/82594", "_from" : "components/B14", "_to" : "components/B13", - "_rev" : "_e4y3opK--_" + "_rev" : "_e9T2B_u--I" }, { - "_key" : "82480", - "_id" : "connections/82480", + "_key" : "82596", + "_id" : "connections/82596", "_from" : "components/B15", "_to" : "components/B14", - "_rev" : "_e4y3opK--A" + "_rev" : "_e9T2B_y---" }, { - "_key" : "82482", - "_id" : "connections/82482", + "_key" : "82598", + "_id" : "connections/82598", "_from" : "components/B15", "_to" : "components/B16", - "_rev" : "_e4y3opO---" + "_rev" : "_e9T2B_y--_" }, { - "_key" : "82484", - "_id" : "connections/82484", + "_key" : "82600", + "_id" : "connections/82600", "_from" : "components/B17", "_to" : "components/B15", - "_rev" : "_e4y3opO--_" + "_rev" : "_e9T2B_y--A" }, { - "_key" : "82486", - "_id" : "connections/82486", + "_key" : "82602", + "_id" : "connections/82602", "_from" : "components/B17", "_to" : "components/B18", - "_rev" : "_e4y3opS---" + "_rev" : "_e9T2B_y--B" }, { - "_key" : "82488", - "_id" : "connections/82488", + "_key" : "82604", + "_id" : "connections/82604", "_from" : "components/B19", "_to" : "components/B17", - "_rev" : "_e4y3opS--_" + "_rev" : "_e9T2B_y--C" }, { - "_key" : "82490", - "_id" : "connections/82490", + "_key" : "82606", + "_id" : "connections/82606", "_from" : "components/B20", "_to" : "components/B21", - "_rev" : "_e4y3opW---" + "_rev" : "_e9T2B_y--D" }, { - "_key" : "82492", - "_id" : "connections/82492", + "_key" : "82608", + "_id" : "connections/82608", "_from" : "components/B20", "_to" : "components/B22", - "_rev" : "_e4y3opW--_" + "_rev" : "_e9T2B_y--E" }, { - "_key" : "82494", - "_id" : "connections/82494", + "_key" : "82610", + "_id" : "connections/82610", "_from" : "components/C1", "_to" : "components/C2", - "_rev" : "_e4y3opa---" + "_rev" : "_e9T2B_y--F" }, { - "_key" : "82496", - "_id" : "connections/82496", + "_key" : "82612", + "_id" : "connections/82612", "_from" : "components/C2", "_to" : "components/C3", - "_rev" : "_e4y3opa--_" + "_rev" : "_e9T2B_y--G" }, { - "_key" : "82498", - "_id" : "connections/82498", + "_key" : "82614", + "_id" : "connections/82614", "_from" : "components/C3", "_to" : "components/C4", - "_rev" : "_e4y3ope---" + "_rev" : "_e9T2B_y--H" }, { - "_key" : "82500", - "_id" : "connections/82500", + "_key" : "82616", + "_id" : "connections/82616", "_from" : "components/C4", "_to" : "components/C5", - "_rev" : "_e4y3ope--_" + "_rev" : "_e9T2B_y--I" }, { - "_key" : "82502", - "_id" : "connections/82502", + "_key" : "82618", + "_id" : "connections/82618", "_from" : "components/C4", "_to" : "components/C7", - "_rev" : "_e4y3opi---" + "_rev" : "_e9T2B_2---" }, { - "_key" : "82504", - "_id" : "connections/82504", + "_key" : "82620", + "_id" : "connections/82620", "_from" : "components/C5", "_to" : "components/C6", - "_rev" : "_e4y3opi--_" + "_rev" : "_e9T2B_2--_" }, { - "_key" : "82506", - "_id" : "connections/82506", + "_key" : "82622", + "_id" : "connections/82622", "_from" : "components/C5", "_to" : "components/C7", - "_rev" : "_e4y3opm---" + "_rev" : "_e9T2B_2--A" }, { - "_key" : "82508", - "_id" : "connections/82508", + "_key" : "82624", + "_id" : "connections/82624", "_from" : "components/C7", "_to" : "components/C8", - "_rev" : "_e4y3opm--_" + "_rev" : "_e9T2B_2--B" }, { - "_key" : "82510", - "_id" : "connections/82510", + "_key" : "82626", + "_id" : "connections/82626", "_from" : "components/C8", "_to" : "components/C9", - "_rev" : "_e4y3opm--A" + "_rev" : "_e9T2B_2--C" }, { - "_key" : "82512", - "_id" : "connections/82512", + "_key" : "82628", + "_id" : "connections/82628", "_from" : "components/C8", "_to" : "components/C10", - "_rev" : "_e4y3opq---" + "_rev" : "_e9T2B_2--D" } ] arangosh> examples.dropGraph("connectedComponentsGraph"); diff --git a/3.10/generated/Examples/graph_create_knows_sample.generated b/3.10/generated/Examples/graph_create_knows_sample.generated index d396da46cc..5e6f859b16 100644 --- a/3.10/generated/Examples/graph_create_knows_sample.generated +++ b/3.10/generated/Examples/graph_create_knows_sample.generated @@ -5,74 +5,74 @@ arangosh> db.persons.toArray() { "_key" : "alice", "_id" : "persons/alice", - "_rev" : "_e4y3or6---", + "_rev" : "_e9T2BAe---", "name" : "Alice" }, { "_key" : "bob", "_id" : "persons/bob", - "_rev" : "_e4y3os----", + "_rev" : "_e9T2BAe--_", "name" : "Bob" }, { "_key" : "charlie", "_id" : "persons/charlie", - "_rev" : "_e4y3os---_", + "_rev" : "_e9T2BAe--A", "name" : "Charlie" }, { "_key" : "dave", "_id" : "persons/dave", - "_rev" : "_e4y3osC---", + "_rev" : "_e9T2BAe--B", "name" : "Dave" }, { "_key" : "eve", "_id" : "persons/eve", - "_rev" : "_e4y3osG---", + "_rev" : "_e9T2BAe--C", "name" : "Eve" } ] arangosh> db.knows.toArray(); [ { - "_key" : "82560", - "_id" : "knows/82560", + "_key" : "82676", + "_id" : "knows/82676", "_from" : "persons/alice", "_to" : "persons/bob", - "_rev" : "_e4y3osG--_", + "_rev" : "_e9T2BAe--D", "vertex" : "alice" }, { - "_key" : "82562", - "_id" : "knows/82562", + "_key" : "82678", + "_id" : "knows/82678", "_from" : "persons/bob", "_to" : "persons/charlie", - "_rev" : "_e4y3osK---", + "_rev" : "_e9T2BAe--E", "vertex" : "bob" }, { - "_key" : "82564", - "_id" : "knows/82564", + "_key" : "82680", + "_id" : "knows/82680", "_from" : "persons/bob", "_to" : "persons/dave", - "_rev" : "_e4y3osO---", + "_rev" : "_e9T2BAe--F", "vertex" : "bob" }, { - "_key" : "82566", - "_id" : "knows/82566", + "_key" : "82682", + "_id" : "knows/82682", "_from" : "persons/eve", "_to" : "persons/alice", - "_rev" : "_e4y3osS---", + "_rev" : "_e9T2BAe--G", "vertex" : "eve" }, { - "_key" : "82568", - "_id" : "knows/82568", + "_key" : "82684", + "_id" : "knows/82684", "_from" : "persons/eve", "_to" : "persons/bob", - "_rev" : "_e4y3osS--_", + "_rev" : "_e9T2BAe--H", "vertex" : "eve" } ] diff --git a/3.10/generated/Examples/graph_create_kshortestpaths_sample.generated b/3.10/generated/Examples/graph_create_kshortestpaths_sample.generated index 5d54b03003..7d59abf44c 100644 --- a/3.10/generated/Examples/graph_create_kshortestpaths_sample.generated +++ b/3.10/generated/Examples/graph_create_kshortestpaths_sample.generated @@ -5,400 +5,400 @@ arangosh> db.places.toArray(); { "_key" : "Inverness", "_id" : "places/Inverness", - "_rev" : "_e4y3ote---", + "_rev" : "_e9T2BAy--A", "label" : "Inverness" }, { "_key" : "Aberdeen", "_id" : "places/Aberdeen", - "_rev" : "_e4y3oti---", + "_rev" : "_e9T2BAy--B", "label" : "Aberdeen" }, { "_key" : "Leuchars", "_id" : "places/Leuchars", - "_rev" : "_e4y3otm---", + "_rev" : "_e9T2BAy--C", "label" : "Leuchars" }, { "_key" : "StAndrews", "_id" : "places/StAndrews", - "_rev" : "_e4y3otm--_", + "_rev" : "_e9T2BAy--D", "label" : "StAndrews" }, { "_key" : "Edinburgh", "_id" : "places/Edinburgh", - "_rev" : "_e4y3otq---", + "_rev" : "_e9T2BA2---", "label" : "Edinburgh" }, { "_key" : "Glasgow", "_id" : "places/Glasgow", - "_rev" : "_e4y3otu---", + "_rev" : "_e9T2BA2--_", "label" : "Glasgow" }, { "_key" : "York", "_id" : "places/York", - "_rev" : "_e4y3otu--_", + "_rev" : "_e9T2BA2--A", "label" : "York" }, { "_key" : "Carlisle", "_id" : "places/Carlisle", - "_rev" : "_e4y3oty---", + "_rev" : "_e9T2BA2--B", "label" : "Carlisle" }, { "_key" : "Birmingham", "_id" : "places/Birmingham", - "_rev" : "_e4y3ot2---", + "_rev" : "_e9T2BA2--C", "label" : "Birmingham" }, { "_key" : "London", "_id" : "places/London", - "_rev" : "_e4y3ot2--_", + "_rev" : "_e9T2BA2--D", "label" : "London" }, { "_key" : "Brussels", "_id" : "places/Brussels", - "_rev" : "_e4y3ot6---", + "_rev" : "_e9T2BA2--E", "label" : "Brussels" }, { "_key" : "Cologne", "_id" : "places/Cologne", - "_rev" : "_e4y3ot6--_", + "_rev" : "_e9T2BA2--F", "label" : "Cologne" }, { "_key" : "Toronto", "_id" : "places/Toronto", - "_rev" : "_e4y3ot6--A", + "_rev" : "_e9T2BA2--G", "label" : "Toronto" }, { "_key" : "Winnipeg", "_id" : "places/Winnipeg", - "_rev" : "_e4y3ou----", + "_rev" : "_e9T2BA2--H", "label" : "Winnipeg" }, { "_key" : "Saskatoon", "_id" : "places/Saskatoon", - "_rev" : "_e4y3ouC---", + "_rev" : "_e9T2BA2--I", "label" : "Saskatoon" }, { "_key" : "Edmonton", "_id" : "places/Edmonton", - "_rev" : "_e4y3ouC--_", + "_rev" : "_e9T2BA6---", "label" : "Edmonton" }, { "_key" : "Jasper", "_id" : "places/Jasper", - "_rev" : "_e4y3ouG---", + "_rev" : "_e9T2BA6--_", "label" : "Jasper" }, { "_key" : "Vancouver", "_id" : "places/Vancouver", - "_rev" : "_e4y3ouG--_", + "_rev" : "_e9T2BA6--A", "label" : "Vancouver" } ] arangosh> db.connections.toArray(); [ { - "_key" : "82629", - "_id" : "connections/82629", + "_key" : "82745", + "_id" : "connections/82745", "_from" : "places/Inverness", "_to" : "places/Aberdeen", - "_rev" : "_e4y3ouK---", + "_rev" : "_e9T2BB----", "travelTime" : 3 }, { - "_key" : "82631", - "_id" : "connections/82631", + "_key" : "82747", + "_id" : "connections/82747", "_from" : "places/Aberdeen", "_to" : "places/Inverness", - "_rev" : "_e4y3ouO---", + "_rev" : "_e9T2BB---_", "travelTime" : 2.5 }, { - "_key" : "82633", - "_id" : "connections/82633", + "_key" : "82749", + "_id" : "connections/82749", "_from" : "places/Aberdeen", "_to" : "places/Leuchars", - "_rev" : "_e4y3ouS---", + "_rev" : "_e9T2BB---A", "travelTime" : 1.5 }, { - "_key" : "82635", - "_id" : "connections/82635", + "_key" : "82751", + "_id" : "connections/82751", "_from" : "places/Leuchars", "_to" : "places/Aberdeen", - "_rev" : "_e4y3ouS--_", + "_rev" : "_e9T2BB---B", "travelTime" : 1 }, { - "_key" : "82637", - "_id" : "connections/82637", + "_key" : "82753", + "_id" : "connections/82753", "_from" : "places/Leuchars", "_to" : "places/Edinburgh", - "_rev" : "_e4y3ouW---", + "_rev" : "_e9T2BB---C", "travelTime" : 1.5 }, { - "_key" : "82639", - "_id" : "connections/82639", + "_key" : "82755", + "_id" : "connections/82755", "_from" : "places/Edinburgh", "_to" : "places/Leuchars", - "_rev" : "_e4y3oua---", + "_rev" : "_e9T2BB---D", "travelTime" : 3 }, { - "_key" : "82641", - "_id" : "connections/82641", + "_key" : "82757", + "_id" : "connections/82757", "_from" : "places/Edinburgh", "_to" : "places/Glasgow", - "_rev" : "_e4y3oua--_", + "_rev" : "_e9T2BB---E", "travelTime" : 1 }, { - "_key" : "82643", - "_id" : "connections/82643", + "_key" : "82759", + "_id" : "connections/82759", "_from" : "places/Glasgow", "_to" : "places/Edinburgh", - "_rev" : "_e4y3oue---", + "_rev" : "_e9T2BB---F", "travelTime" : 1 }, { - "_key" : "82645", - "_id" : "connections/82645", + "_key" : "82761", + "_id" : "connections/82761", "_from" : "places/Edinburgh", "_to" : "places/York", - "_rev" : "_e4y3oue--_", + "_rev" : "_e9T2BB---G", "travelTime" : 3.5 }, { - "_key" : "82647", - "_id" : "connections/82647", + "_key" : "82763", + "_id" : "connections/82763", "_from" : "places/York", "_to" : "places/Edinburgh", - "_rev" : "_e4y3oui---", + "_rev" : "_e9T2BB---H", "travelTime" : 4 }, { - "_key" : "82649", - "_id" : "connections/82649", + "_key" : "82765", + "_id" : "connections/82765", "_from" : "places/Glasgow", "_to" : "places/Carlisle", - "_rev" : "_e4y3oui--_", + "_rev" : "_e9T2BBC---", "travelTime" : 1 }, { - "_key" : "82651", - "_id" : "connections/82651", + "_key" : "82767", + "_id" : "connections/82767", "_from" : "places/Carlisle", "_to" : "places/Glasgow", - "_rev" : "_e4y3oum---", + "_rev" : "_e9T2BBC--_", "travelTime" : 1 }, { - "_key" : "82653", - "_id" : "connections/82653", + "_key" : "82769", + "_id" : "connections/82769", "_from" : "places/Carlisle", "_to" : "places/York", - "_rev" : "_e4y3oum--_", + "_rev" : "_e9T2BBC--A", "travelTime" : 2.5 }, { - "_key" : "82655", - "_id" : "connections/82655", + "_key" : "82771", + "_id" : "connections/82771", "_from" : "places/York", "_to" : "places/Carlisle", - "_rev" : "_e4y3ouq---", + "_rev" : "_e9T2BBC--B", "travelTime" : 3.5 }, { - "_key" : "82657", - "_id" : "connections/82657", + "_key" : "82773", + "_id" : "connections/82773", "_from" : "places/Carlisle", "_to" : "places/Birmingham", - "_rev" : "_e4y3ouq--_", + "_rev" : "_e9T2BBC--C", "travelTime" : 2 }, { - "_key" : "82659", - "_id" : "connections/82659", + "_key" : "82775", + "_id" : "connections/82775", "_from" : "places/Birmingham", "_to" : "places/Carlisle", - "_rev" : "_e4y3ouu---", + "_rev" : "_e9T2BBC--D", "travelTime" : 1 }, { - "_key" : "82661", - "_id" : "connections/82661", + "_key" : "82777", + "_id" : "connections/82777", "_from" : "places/Birmingham", "_to" : "places/London", - "_rev" : "_e4y3ouu--_", + "_rev" : "_e9T2BBC--E", "travelTime" : 1.5 }, { - "_key" : "82663", - "_id" : "connections/82663", + "_key" : "82779", + "_id" : "connections/82779", "_from" : "places/London", "_to" : "places/Birmingham", - "_rev" : "_e4y3ouy---", + "_rev" : "_e9T2BBC--F", "travelTime" : 2.5 }, { - "_key" : "82665", - "_id" : "connections/82665", + "_key" : "82781", + "_id" : "connections/82781", "_from" : "places/Leuchars", "_to" : "places/StAndrews", - "_rev" : "_e4y3ouy--_", + "_rev" : "_e9T2BBC--G", "travelTime" : 0.2 }, { - "_key" : "82667", - "_id" : "connections/82667", + "_key" : "82783", + "_id" : "connections/82783", "_from" : "places/StAndrews", "_to" : "places/Leuchars", - "_rev" : "_e4y3ou2---", + "_rev" : "_e9T2BBC--H", "travelTime" : 0.2 }, { - "_key" : "82669", - "_id" : "connections/82669", + "_key" : "82785", + "_id" : "connections/82785", "_from" : "places/York", "_to" : "places/London", - "_rev" : "_e4y3ou2--_", + "_rev" : "_e9T2BBC--I", "travelTime" : 1.8 }, { - "_key" : "82671", - "_id" : "connections/82671", + "_key" : "82787", + "_id" : "connections/82787", "_from" : "places/London", "_to" : "places/York", - "_rev" : "_e4y3ou6---", + "_rev" : "_e9T2BBG---", "travelTime" : 2 }, { - "_key" : "82673", - "_id" : "connections/82673", + "_key" : "82789", + "_id" : "connections/82789", "_from" : "places/London", "_to" : "places/Brussels", - "_rev" : "_e4y3ou6--_", + "_rev" : "_e9T2BBG--_", "travelTime" : 2.5 }, { - "_key" : "82675", - "_id" : "connections/82675", + "_key" : "82791", + "_id" : "connections/82791", "_from" : "places/Brussels", "_to" : "places/London", - "_rev" : "_e4y3ou6--A", + "_rev" : "_e9T2BBG--A", "travelTime" : 3.5 }, { - "_key" : "82677", - "_id" : "connections/82677", + "_key" : "82793", + "_id" : "connections/82793", "_from" : "places/Brussels", "_to" : "places/Cologne", - "_rev" : "_e4y3ov----", + "_rev" : "_e9T2BBG--B", "travelTime" : 2 }, { - "_key" : "82679", - "_id" : "connections/82679", + "_key" : "82795", + "_id" : "connections/82795", "_from" : "places/Cologne", "_to" : "places/Brussels", - "_rev" : "_e4y3ov---_", + "_rev" : "_e9T2BBG--C", "travelTime" : 1.5 }, { - "_key" : "82681", - "_id" : "connections/82681", + "_key" : "82797", + "_id" : "connections/82797", "_from" : "places/Toronto", "_to" : "places/Winnipeg", - "_rev" : "_e4y3ovC---", + "_rev" : "_e9T2BBG--D", "travelTime" : 36 }, { - "_key" : "82683", - "_id" : "connections/82683", + "_key" : "82799", + "_id" : "connections/82799", "_from" : "places/Winnipeg", "_to" : "places/Toronto", - "_rev" : "_e4y3ovC--_", + "_rev" : "_e9T2BBG--E", "travelTime" : 35 }, { - "_key" : "82685", - "_id" : "connections/82685", + "_key" : "82801", + "_id" : "connections/82801", "_from" : "places/Winnipeg", "_to" : "places/Saskatoon", - "_rev" : "_e4y3ovG---", + "_rev" : "_e9T2BBG--F", "travelTime" : 12 }, { - "_key" : "82687", - "_id" : "connections/82687", + "_key" : "82803", + "_id" : "connections/82803", "_from" : "places/Saskatoon", "_to" : "places/Winnipeg", - "_rev" : "_e4y3ovG--_", + "_rev" : "_e9T2BBG--G", "travelTime" : 5 }, { - "_key" : "82689", - "_id" : "connections/82689", + "_key" : "82805", + "_id" : "connections/82805", "_from" : "places/Saskatoon", "_to" : "places/Edmonton", - "_rev" : "_e4y3ovK---", + "_rev" : "_e9T2BBG--H", "travelTime" : 12 }, { - "_key" : "82691", - "_id" : "connections/82691", + "_key" : "82807", + "_id" : "connections/82807", "_from" : "places/Edmonton", "_to" : "places/Saskatoon", - "_rev" : "_e4y3ovK--_", + "_rev" : "_e9T2BBK---", "travelTime" : 17 }, { - "_key" : "82693", - "_id" : "connections/82693", + "_key" : "82809", + "_id" : "connections/82809", "_from" : "places/Edmonton", "_to" : "places/Jasper", - "_rev" : "_e4y3ovK--A", + "_rev" : "_e9T2BBK--_", "travelTime" : 6 }, { - "_key" : "82695", - "_id" : "connections/82695", + "_key" : "82811", + "_id" : "connections/82811", "_from" : "places/Jasper", "_to" : "places/Edmonton", - "_rev" : "_e4y3ovO---", + "_rev" : "_e9T2BBK--A", "travelTime" : 5 }, { - "_key" : "82697", - "_id" : "connections/82697", + "_key" : "82813", + "_id" : "connections/82813", "_from" : "places/Jasper", "_to" : "places/Vancouver", - "_rev" : "_e4y3ovO--_", + "_rev" : "_e9T2BBK--B", "travelTime" : 12 }, { - "_key" : "82699", - "_id" : "connections/82699", + "_key" : "82815", + "_id" : "connections/82815", "_from" : "places/Vancouver", "_to" : "places/Jasper", - "_rev" : "_e4y3ovS---", + "_rev" : "_e9T2BBK--C", "travelTime" : 13 } ] diff --git a/3.10/generated/Examples/graph_create_mps_sample.generated b/3.10/generated/Examples/graph_create_mps_sample.generated index 3bbcee9cc0..346c5823b4 100644 --- a/3.10/generated/Examples/graph_create_mps_sample.generated +++ b/3.10/generated/Examples/graph_create_mps_sample.generated @@ -5,90 +5,90 @@ arangosh> db.mps_verts.toArray(); { "_key" : "A", "_id" : "mps_verts/A", - "_rev" : "_e4y3oxi---" + "_rev" : "_e9T2BBy---" }, { "_key" : "B", "_id" : "mps_verts/B", - "_rev" : "_e4y3oxm---" + "_rev" : "_e9T2BBy--_" }, { "_key" : "C", "_id" : "mps_verts/C", - "_rev" : "_e4y3oxq---" + "_rev" : "_e9T2BBy--A" }, { "_key" : "D", "_id" : "mps_verts/D", - "_rev" : "_e4y3oxu---" + "_rev" : "_e9T2BBy--B" }, { "_key" : "E", "_id" : "mps_verts/E", - "_rev" : "_e4y3oxu--_" + "_rev" : "_e9T2BBy--C" }, { "_key" : "F", "_id" : "mps_verts/F", - "_rev" : "_e4y3oxy---" + "_rev" : "_e9T2BBy--D" } ] arangosh> db.mps_edges.toArray(); [ { - "_key" : "82748", - "_id" : "mps_edges/82748", + "_key" : "82864", + "_id" : "mps_edges/82864", "_from" : "mps_verts/A", "_to" : "mps_verts/B", - "_rev" : "_e4y3ox2---", + "_rev" : "_e9T2BBy--E", "vertex" : "A" }, { - "_key" : "82750", - "_id" : "mps_edges/82750", + "_key" : "82866", + "_id" : "mps_edges/82866", "_from" : "mps_verts/A", "_to" : "mps_verts/E", - "_rev" : "_e4y3ox6---", + "_rev" : "_e9T2BBy--F", "vertex" : "A" }, { - "_key" : "82752", - "_id" : "mps_edges/82752", + "_key" : "82868", + "_id" : "mps_edges/82868", "_from" : "mps_verts/A", "_to" : "mps_verts/D", - "_rev" : "_e4y3ox6--_", + "_rev" : "_e9T2BB2---", "vertex" : "A" }, { - "_key" : "82754", - "_id" : "mps_edges/82754", + "_key" : "82870", + "_id" : "mps_edges/82870", "_from" : "mps_verts/B", "_to" : "mps_verts/C", - "_rev" : "_e4y3oy----", + "_rev" : "_e9T2BB2--_", "vertex" : "B" }, { - "_key" : "82756", - "_id" : "mps_edges/82756", + "_key" : "82872", + "_id" : "mps_edges/82872", "_from" : "mps_verts/D", "_to" : "mps_verts/C", - "_rev" : "_e4y3oyC---", + "_rev" : "_e9T2BB2--A", "vertex" : "D" }, { - "_key" : "82758", - "_id" : "mps_edges/82758", + "_key" : "82874", + "_id" : "mps_edges/82874", "_from" : "mps_verts/E", "_to" : "mps_verts/F", - "_rev" : "_e4y3oyC--_", + "_rev" : "_e9T2BB2--B", "vertex" : "E" }, { - "_key" : "82760", - "_id" : "mps_edges/82760", + "_key" : "82876", + "_id" : "mps_edges/82876", "_from" : "mps_verts/F", "_to" : "mps_verts/C", - "_rev" : "_e4y3oyG---", + "_rev" : "_e9T2BB2--C", "vertex" : "F" } ] diff --git a/3.10/generated/Examples/graph_create_social_sample.generated b/3.10/generated/Examples/graph_create_social_sample.generated index 01ba88064a..0a4a84d00e 100644 --- a/3.10/generated/Examples/graph_create_social_sample.generated +++ b/3.10/generated/Examples/graph_create_social_sample.generated @@ -5,13 +5,13 @@ arangosh> db.female.toArray() { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3ozm---", + "_rev" : "_e9T2BCK--_", "name" : "Alice" }, { "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3ozu--_", + "_rev" : "_e9T2BCO--_", "name" : "Diana" } ] @@ -20,51 +20,51 @@ arangosh> db.male.toArray() { "_key" : "bob", "_id" : "male/bob", - "_rev" : "_e4y3ozq---", + "_rev" : "_e9T2BCK--A", "name" : "Bob" }, { "_key" : "charly", "_id" : "male/charly", - "_rev" : "_e4y3ozu---", + "_rev" : "_e9T2BCO---", "name" : "Charly" } ] arangosh> db.relation.toArray() [ { - "_key" : "82814", - "_id" : "relation/82814", + "_key" : "82930", + "_id" : "relation/82930", "_from" : "female/alice", "_to" : "male/bob", - "_rev" : "_e4y3ozy---", + "_rev" : "_e9T2BCO--A", "type" : "married", "vertex" : "alice" }, { - "_key" : "82816", - "_id" : "relation/82816", + "_key" : "82932", + "_id" : "relation/82932", "_from" : "female/alice", "_to" : "male/charly", - "_rev" : "_e4y3oz2---", + "_rev" : "_e9T2BCO--B", "type" : "friend", "vertex" : "alice" }, { - "_key" : "82818", - "_id" : "relation/82818", + "_key" : "82934", + "_id" : "relation/82934", "_from" : "male/charly", "_to" : "female/diana", - "_rev" : "_e4y3oz6---", + "_rev" : "_e9T2BCO--C", "type" : "married", "vertex" : "charly" }, { - "_key" : "82820", - "_id" : "relation/82820", + "_key" : "82936", + "_id" : "relation/82936", "_from" : "male/bob", "_to" : "female/diana", - "_rev" : "_e4y3oz6--_", + "_rev" : "_e9T2BCO--D", "type" : "friend", "vertex" : "bob" } diff --git a/3.10/generated/Examples/graph_create_traversal_sample.generated b/3.10/generated/Examples/graph_create_traversal_sample.generated index e2260835f1..c9f9da5170 100644 --- a/3.10/generated/Examples/graph_create_traversal_sample.generated +++ b/3.10/generated/Examples/graph_create_traversal_sample.generated @@ -5,168 +5,168 @@ arangosh> db.circles.toArray(); { "_key" : "A", "_id" : "circles/A", - "_rev" : "_e4y3o1K---", + "_rev" : "_e9T2BCi---", "label" : "1" }, { "_key" : "B", "_id" : "circles/B", - "_rev" : "_e4y3o1O---", + "_rev" : "_e9T2BCi--_", "label" : "2" }, { "_key" : "C", "_id" : "circles/C", - "_rev" : "_e4y3o1O--_", + "_rev" : "_e9T2BCi--A", "label" : "3" }, { "_key" : "D", "_id" : "circles/D", - "_rev" : "_e4y3o1S---", + "_rev" : "_e9T2BCi--B", "label" : "4" }, { "_key" : "E", "_id" : "circles/E", - "_rev" : "_e4y3o1W---", + "_rev" : "_e9T2BCi--C", "label" : "5" }, { "_key" : "F", "_id" : "circles/F", - "_rev" : "_e4y3o1W--_", + "_rev" : "_e9T2BCi--D", "label" : "6" }, { "_key" : "G", "_id" : "circles/G", - "_rev" : "_e4y3o1a---", + "_rev" : "_e9T2BCi--E", "label" : "7" }, { "_key" : "H", "_id" : "circles/H", - "_rev" : "_e4y3o1a--_", + "_rev" : "_e9T2BCm---", "label" : "8" }, { "_key" : "I", "_id" : "circles/I", - "_rev" : "_e4y3o1e---", + "_rev" : "_e9T2BCm--_", "label" : "9" }, { "_key" : "J", "_id" : "circles/J", - "_rev" : "_e4y3o1e--_", + "_rev" : "_e9T2BCm--A", "label" : "10" }, { "_key" : "K", "_id" : "circles/K", - "_rev" : "_e4y3o1i---", + "_rev" : "_e9T2BCm--B", "label" : "11" } ] arangosh> db.edges.toArray(); [ { - "_key" : "82882", - "_id" : "edges/82882", + "_key" : "82998", + "_id" : "edges/82998", "_from" : "circles/A", "_to" : "circles/B", - "_rev" : "_e4y3o1i--_", + "_rev" : "_e9T2BCm--C", "theFalse" : false, "theTruth" : true, "label" : "left_bar" }, { - "_key" : "82884", - "_id" : "edges/82884", + "_key" : "83000", + "_id" : "edges/83000", "_from" : "circles/B", "_to" : "circles/C", - "_rev" : "_e4y3o1m---", + "_rev" : "_e9T2BCm--D", "theFalse" : false, "theTruth" : true, "label" : "left_blarg" }, { - "_key" : "82886", - "_id" : "edges/82886", + "_key" : "83002", + "_id" : "edges/83002", "_from" : "circles/C", "_to" : "circles/D", - "_rev" : "_e4y3o1q---", + "_rev" : "_e9T2BCm--E", "theFalse" : false, "theTruth" : true, "label" : "left_blorg" }, { - "_key" : "82888", - "_id" : "edges/82888", + "_key" : "83004", + "_id" : "edges/83004", "_from" : "circles/B", "_to" : "circles/E", - "_rev" : "_e4y3o1q--_", + "_rev" : "_e9T2BCm--F", "theFalse" : false, "theTruth" : true, "label" : "left_blub" }, { - "_key" : "82890", - "_id" : "edges/82890", + "_key" : "83006", + "_id" : "edges/83006", "_from" : "circles/E", "_to" : "circles/F", - "_rev" : "_e4y3o1u---", + "_rev" : "_e9T2BCm--G", "theFalse" : false, "theTruth" : true, "label" : "left_schubi" }, { - "_key" : "82892", - "_id" : "edges/82892", + "_key" : "83008", + "_id" : "edges/83008", "_from" : "circles/A", "_to" : "circles/G", - "_rev" : "_e4y3o1u--_", + "_rev" : "_e9T2BCm--H", "theFalse" : false, "theTruth" : true, "label" : "right_foo" }, { - "_key" : "82894", - "_id" : "edges/82894", + "_key" : "83010", + "_id" : "edges/83010", "_from" : "circles/G", "_to" : "circles/H", - "_rev" : "_e4y3o1y---", + "_rev" : "_e9T2BCm--I", "theFalse" : false, "theTruth" : true, "label" : "right_blob" }, { - "_key" : "82896", - "_id" : "edges/82896", + "_key" : "83012", + "_id" : "edges/83012", "_from" : "circles/H", "_to" : "circles/I", - "_rev" : "_e4y3o1y--_", + "_rev" : "_e9T2BCq---", "theFalse" : false, "theTruth" : true, "label" : "right_blub" }, { - "_key" : "82898", - "_id" : "edges/82898", + "_key" : "83014", + "_id" : "edges/83014", "_from" : "circles/G", "_to" : "circles/J", - "_rev" : "_e4y3o12---", + "_rev" : "_e9T2BCq--_", "theFalse" : false, "theTruth" : true, "label" : "right_zip" }, { - "_key" : "82900", - "_id" : "edges/82900", + "_key" : "83016", + "_id" : "edges/83016", "_from" : "circles/J", "_to" : "circles/K", - "_rev" : "_e4y3o16---", + "_rev" : "_e9T2BCq--A", "theFalse" : false, "theTruth" : true, "label" : "right_zup" diff --git a/3.10/generated/Examples/graph_create_world_sample.generated b/3.10/generated/Examples/graph_create_world_sample.generated index 8ce5ab13bd..670c3232c2 100644 --- a/3.10/generated/Examples/graph_create_world_sample.generated +++ b/3.10/generated/Examples/graph_create_world_sample.generated @@ -5,56 +5,56 @@ arangosh> db.worldVertices.toArray(); { "_key" : "world", "_id" : "worldVertices/world", - "_rev" : "_e4y3o3i---", + "_rev" : "_e9T2BDC---", "name" : "World", "type" : "root" }, { "_key" : "continent-africa", "_id" : "worldVertices/continent-africa", - "_rev" : "_e4y3o3m---", + "_rev" : "_e9T2BDC--_", "name" : "Africa", "type" : "continent" }, { "_key" : "continent-asia", "_id" : "worldVertices/continent-asia", - "_rev" : "_e4y3o3m--_", + "_rev" : "_e9T2BDC--A", "name" : "Asia", "type" : "continent" }, { "_key" : "continent-australia", "_id" : "worldVertices/continent-australia", - "_rev" : "_e4y3o3q---", + "_rev" : "_e9T2BDC--B", "name" : "Australia", "type" : "continent" }, { "_key" : "continent-europe", "_id" : "worldVertices/continent-europe", - "_rev" : "_e4y3o3u---", + "_rev" : "_e9T2BDC--C", "name" : "Europe", "type" : "continent" }, { "_key" : "continent-north-america", "_id" : "worldVertices/continent-north-america", - "_rev" : "_e4y3o3u--_", + "_rev" : "_e9T2BDC--D", "name" : "North America", "type" : "continent" }, { "_key" : "continent-south-america", "_id" : "worldVertices/continent-south-america", - "_rev" : "_e4y3o3y---", + "_rev" : "_e9T2BDC--E", "name" : "South America", "type" : "continent" }, { "_key" : "country-afghanistan", "_id" : "worldVertices/country-afghanistan", - "_rev" : "_e4y3o32---", + "_rev" : "_e9T2BDG---", "name" : "Afghanistan", "type" : "country", "code" : "AFG" @@ -62,7 +62,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-albania", "_id" : "worldVertices/country-albania", - "_rev" : "_e4y3o32--_", + "_rev" : "_e9T2BDG--_", "name" : "Albania", "type" : "country", "code" : "ALB" @@ -70,7 +70,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-algeria", "_id" : "worldVertices/country-algeria", - "_rev" : "_e4y3o36---", + "_rev" : "_e9T2BDG--A", "name" : "Algeria", "type" : "country", "code" : "DZA" @@ -78,7 +78,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-andorra", "_id" : "worldVertices/country-andorra", - "_rev" : "_e4y3o36--_", + "_rev" : "_e9T2BDG--B", "name" : "Andorra", "type" : "country", "code" : "AND" @@ -86,7 +86,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-angola", "_id" : "worldVertices/country-angola", - "_rev" : "_e4y3o4----", + "_rev" : "_e9T2BDG--C", "name" : "Angola", "type" : "country", "code" : "AGO" @@ -94,7 +94,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-antigua-and-barbuda", "_id" : "worldVertices/country-antigua-and-barbuda", - "_rev" : "_e4y3o4C---", + "_rev" : "_e9T2BDG--D", "name" : "Antigua and Barbuda", "type" : "country", "code" : "ATG" @@ -102,7 +102,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-argentina", "_id" : "worldVertices/country-argentina", - "_rev" : "_e4y3o4C--_", + "_rev" : "_e9T2BDG--E", "name" : "Argentina", "type" : "country", "code" : "ARG" @@ -110,7 +110,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-australia", "_id" : "worldVertices/country-australia", - "_rev" : "_e4y3o4G---", + "_rev" : "_e9T2BDG--F", "name" : "Australia", "type" : "country", "code" : "AUS" @@ -118,7 +118,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-austria", "_id" : "worldVertices/country-austria", - "_rev" : "_e4y3o4G--_", + "_rev" : "_e9T2BDG--G", "name" : "Austria", "type" : "country", "code" : "AUT" @@ -126,7 +126,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-bahamas", "_id" : "worldVertices/country-bahamas", - "_rev" : "_e4y3o4K---", + "_rev" : "_e9T2BDG--H", "name" : "Bahamas", "type" : "country", "code" : "BHS" @@ -134,7 +134,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-bahrain", "_id" : "worldVertices/country-bahrain", - "_rev" : "_e4y3o4K--_", + "_rev" : "_e9T2BDG--I", "name" : "Bahrain", "type" : "country", "code" : "BHR" @@ -142,7 +142,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-bangladesh", "_id" : "worldVertices/country-bangladesh", - "_rev" : "_e4y3o4O---", + "_rev" : "_e9T2BDG--J", "name" : "Bangladesh", "type" : "country", "code" : "BGD" @@ -150,7 +150,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-barbados", "_id" : "worldVertices/country-barbados", - "_rev" : "_e4y3o4O--_", + "_rev" : "_e9T2BDK---", "name" : "Barbados", "type" : "country", "code" : "BRB" @@ -158,7 +158,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-belgium", "_id" : "worldVertices/country-belgium", - "_rev" : "_e4y3o4S---", + "_rev" : "_e9T2BDK--_", "name" : "Belgium", "type" : "country", "code" : "BEL" @@ -166,7 +166,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-bhutan", "_id" : "worldVertices/country-bhutan", - "_rev" : "_e4y3o4S--_", + "_rev" : "_e9T2BDK--A", "name" : "Bhutan", "type" : "country", "code" : "BTN" @@ -174,7 +174,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-bolivia", "_id" : "worldVertices/country-bolivia", - "_rev" : "_e4y3o4W---", + "_rev" : "_e9T2BDK--B", "name" : "Bolivia", "type" : "country", "code" : "BOL" @@ -182,7 +182,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-bosnia-and-herzegovina", "_id" : "worldVertices/country-bosnia-and-herzegovina", - "_rev" : "_e4y3o4W--_", + "_rev" : "_e9T2BDK--C", "name" : "Bosnia and Herzegovina", "type" : "country", "code" : "BIH" @@ -190,7 +190,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-botswana", "_id" : "worldVertices/country-botswana", - "_rev" : "_e4y3o4W--A", + "_rev" : "_e9T2BDK--D", "name" : "Botswana", "type" : "country", "code" : "BWA" @@ -198,7 +198,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-brazil", "_id" : "worldVertices/country-brazil", - "_rev" : "_e4y3o4a---", + "_rev" : "_e9T2BDK--E", "name" : "Brazil", "type" : "country", "code" : "BRA" @@ -206,7 +206,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-brunei", "_id" : "worldVertices/country-brunei", - "_rev" : "_e4y3o4a--_", + "_rev" : "_e9T2BDK--F", "name" : "Brunei", "type" : "country", "code" : "BRN" @@ -214,7 +214,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-bulgaria", "_id" : "worldVertices/country-bulgaria", - "_rev" : "_e4y3o4e---", + "_rev" : "_e9T2BDK--G", "name" : "Bulgaria", "type" : "country", "code" : "BGR" @@ -222,7 +222,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-burkina-faso", "_id" : "worldVertices/country-burkina-faso", - "_rev" : "_e4y3o4e--_", + "_rev" : "_e9T2BDK--H", "name" : "Burkina Faso", "type" : "country", "code" : "BFA" @@ -230,7 +230,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-burundi", "_id" : "worldVertices/country-burundi", - "_rev" : "_e4y3o4i---", + "_rev" : "_e9T2BDK--I", "name" : "Burundi", "type" : "country", "code" : "BDI" @@ -238,7 +238,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-cambodia", "_id" : "worldVertices/country-cambodia", - "_rev" : "_e4y3o4i--_", + "_rev" : "_e9T2BDK--J", "name" : "Cambodia", "type" : "country", "code" : "KHM" @@ -246,7 +246,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-cameroon", "_id" : "worldVertices/country-cameroon", - "_rev" : "_e4y3o4m---", + "_rev" : "_e9T2BDO---", "name" : "Cameroon", "type" : "country", "code" : "CMR" @@ -254,7 +254,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-canada", "_id" : "worldVertices/country-canada", - "_rev" : "_e4y3o4m--_", + "_rev" : "_e9T2BDO--_", "name" : "Canada", "type" : "country", "code" : "CAN" @@ -262,7 +262,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-chad", "_id" : "worldVertices/country-chad", - "_rev" : "_e4y3o4q---", + "_rev" : "_e9T2BDO--A", "name" : "Chad", "type" : "country", "code" : "TCD" @@ -270,7 +270,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-chile", "_id" : "worldVertices/country-chile", - "_rev" : "_e4y3o4q--_", + "_rev" : "_e9T2BDO--B", "name" : "Chile", "type" : "country", "code" : "CHL" @@ -278,7 +278,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-colombia", "_id" : "worldVertices/country-colombia", - "_rev" : "_e4y3o4u---", + "_rev" : "_e9T2BDO--C", "name" : "Colombia", "type" : "country", "code" : "COL" @@ -286,7 +286,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-cote-d-ivoire", "_id" : "worldVertices/country-cote-d-ivoire", - "_rev" : "_e4y3o4u--_", + "_rev" : "_e9T2BDO--D", "name" : "Cote d'Ivoire", "type" : "country", "code" : "CIV" @@ -294,7 +294,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-croatia", "_id" : "worldVertices/country-croatia", - "_rev" : "_e4y3o4y---", + "_rev" : "_e9T2BDO--E", "name" : "Croatia", "type" : "country", "code" : "HRV" @@ -302,7 +302,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-czech-republic", "_id" : "worldVertices/country-czech-republic", - "_rev" : "_e4y3o4y--_", + "_rev" : "_e9T2BDO--F", "name" : "Czech Republic", "type" : "country", "code" : "CZE" @@ -310,7 +310,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-denmark", "_id" : "worldVertices/country-denmark", - "_rev" : "_e4y3o4y--A", + "_rev" : "_e9T2BDO--G", "name" : "Denmark", "type" : "country", "code" : "DNK" @@ -318,7 +318,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-ecuador", "_id" : "worldVertices/country-ecuador", - "_rev" : "_e4y3o42---", + "_rev" : "_e9T2BDO--H", "name" : "Ecuador", "type" : "country", "code" : "ECU" @@ -326,7 +326,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-egypt", "_id" : "worldVertices/country-egypt", - "_rev" : "_e4y3o42--_", + "_rev" : "_e9T2BDO--I", "name" : "Egypt", "type" : "country", "code" : "EGY" @@ -334,7 +334,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-eritrea", "_id" : "worldVertices/country-eritrea", - "_rev" : "_e4y3o46---", + "_rev" : "_e9T2BDO--J", "name" : "Eritrea", "type" : "country", "code" : "ERI" @@ -342,7 +342,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-finland", "_id" : "worldVertices/country-finland", - "_rev" : "_e4y3o46--_", + "_rev" : "_e9T2BDS---", "name" : "Finland", "type" : "country", "code" : "FIN" @@ -350,7 +350,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-france", "_id" : "worldVertices/country-france", - "_rev" : "_e4y3o46--A", + "_rev" : "_e9T2BDS--_", "name" : "France", "type" : "country", "code" : "FRA" @@ -358,7 +358,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-germany", "_id" : "worldVertices/country-germany", - "_rev" : "_e4y3o5----", + "_rev" : "_e9T2BDS--A", "name" : "Germany", "type" : "country", "code" : "DEU" @@ -366,7 +366,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-people-s-republic-of-china", "_id" : "worldVertices/country-people-s-republic-of-china", - "_rev" : "_e4y3o5---_", + "_rev" : "_e9T2BDS--B", "name" : "People's Republic of China", "type" : "country", "code" : "CHN" @@ -374,280 +374,280 @@ arangosh> db.worldVertices.toArray(); { "_key" : "capital-algiers", "_id" : "worldVertices/capital-algiers", - "_rev" : "_e4y3o5C---", + "_rev" : "_e9T2BDS--C", "name" : "Algiers", "type" : "capital" }, { "_key" : "capital-andorra-la-vella", "_id" : "worldVertices/capital-andorra-la-vella", - "_rev" : "_e4y3o5C--_", + "_rev" : "_e9T2BDS--D", "name" : "Andorra la Vella", "type" : "capital" }, { "_key" : "capital-asmara", "_id" : "worldVertices/capital-asmara", - "_rev" : "_e4y3o5C--A", + "_rev" : "_e9T2BDS--E", "name" : "Asmara", "type" : "capital" }, { "_key" : "capital-bandar-seri-begawan", "_id" : "worldVertices/capital-bandar-seri-begawan", - "_rev" : "_e4y3o5G---", + "_rev" : "_e9T2BDS--F", "name" : "Bandar Seri Begawan", "type" : "capital" }, { "_key" : "capital-beijing", "_id" : "worldVertices/capital-beijing", - "_rev" : "_e4y3o5G--_", + "_rev" : "_e9T2BDS--G", "name" : "Beijing", "type" : "capital" }, { "_key" : "capital-berlin", "_id" : "worldVertices/capital-berlin", - "_rev" : "_e4y3o5K---", + "_rev" : "_e9T2BDS--H", "name" : "Berlin", "type" : "capital" }, { "_key" : "capital-bogota", "_id" : "worldVertices/capital-bogota", - "_rev" : "_e4y3o5K--_", + "_rev" : "_e9T2BDS--I", "name" : "Bogota", "type" : "capital" }, { "_key" : "capital-brasilia", "_id" : "worldVertices/capital-brasilia", - "_rev" : "_e4y3o5K--A", + "_rev" : "_e9T2BDS--J", "name" : "Brasilia", "type" : "capital" }, { "_key" : "capital-bridgetown", "_id" : "worldVertices/capital-bridgetown", - "_rev" : "_e4y3o5O---", + "_rev" : "_e9T2BDS--K", "name" : "Bridgetown", "type" : "capital" }, { "_key" : "capital-brussels", "_id" : "worldVertices/capital-brussels", - "_rev" : "_e4y3o5O--_", + "_rev" : "_e9T2BDW---", "name" : "Brussels", "type" : "capital" }, { "_key" : "capital-buenos-aires", "_id" : "worldVertices/capital-buenos-aires", - "_rev" : "_e4y3o5S---", + "_rev" : "_e9T2BDW--_", "name" : "Buenos Aires", "type" : "capital" }, { "_key" : "capital-bujumbura", "_id" : "worldVertices/capital-bujumbura", - "_rev" : "_e4y3o5S--_", + "_rev" : "_e9T2BDW--A", "name" : "Bujumbura", "type" : "capital" }, { "_key" : "capital-cairo", "_id" : "worldVertices/capital-cairo", - "_rev" : "_e4y3o5S--A", + "_rev" : "_e9T2BDW--B", "name" : "Cairo", "type" : "capital" }, { "_key" : "capital-canberra", "_id" : "worldVertices/capital-canberra", - "_rev" : "_e4y3o5W---", + "_rev" : "_e9T2BDW--C", "name" : "Canberra", "type" : "capital" }, { "_key" : "capital-copenhagen", "_id" : "worldVertices/capital-copenhagen", - "_rev" : "_e4y3o5W--_", + "_rev" : "_e9T2BDW--D", "name" : "Copenhagen", "type" : "capital" }, { "_key" : "capital-dhaka", "_id" : "worldVertices/capital-dhaka", - "_rev" : "_e4y3o5a---", + "_rev" : "_e9T2BDW--E", "name" : "Dhaka", "type" : "capital" }, { "_key" : "capital-gaborone", "_id" : "worldVertices/capital-gaborone", - "_rev" : "_e4y3o5a--_", + "_rev" : "_e9T2BDW--F", "name" : "Gaborone", "type" : "capital" }, { "_key" : "capital-helsinki", "_id" : "worldVertices/capital-helsinki", - "_rev" : "_e4y3o5a--A", + "_rev" : "_e9T2BDW--G", "name" : "Helsinki", "type" : "capital" }, { "_key" : "capital-kabul", "_id" : "worldVertices/capital-kabul", - "_rev" : "_e4y3o5e---", + "_rev" : "_e9T2BDW--H", "name" : "Kabul", "type" : "capital" }, { "_key" : "capital-la-paz", "_id" : "worldVertices/capital-la-paz", - "_rev" : "_e4y3o5e--_", + "_rev" : "_e9T2BDW--I", "name" : "La Paz", "type" : "capital" }, { "_key" : "capital-luanda", "_id" : "worldVertices/capital-luanda", - "_rev" : "_e4y3o5e--A", + "_rev" : "_e9T2BDW--J", "name" : "Luanda", "type" : "capital" }, { "_key" : "capital-manama", "_id" : "worldVertices/capital-manama", - "_rev" : "_e4y3o5i---", + "_rev" : "_e9T2BDa---", "name" : "Manama", "type" : "capital" }, { "_key" : "capital-nassau", "_id" : "worldVertices/capital-nassau", - "_rev" : "_e4y3o5i--_", + "_rev" : "_e9T2BDa--_", "name" : "Nassau", "type" : "capital" }, { "_key" : "capital-n-djamena", "_id" : "worldVertices/capital-n-djamena", - "_rev" : "_e4y3o5m---", + "_rev" : "_e9T2BDa--A", "name" : "N'Djamena", "type" : "capital" }, { "_key" : "capital-ottawa", "_id" : "worldVertices/capital-ottawa", - "_rev" : "_e4y3o5m--_", + "_rev" : "_e9T2BDa--B", "name" : "Ottawa", "type" : "capital" }, { "_key" : "capital-ouagadougou", "_id" : "worldVertices/capital-ouagadougou", - "_rev" : "_e4y3o5m--A", + "_rev" : "_e9T2BDa--C", "name" : "Ouagadougou", "type" : "capital" }, { "_key" : "capital-paris", "_id" : "worldVertices/capital-paris", - "_rev" : "_e4y3o5q---", + "_rev" : "_e9T2BDa--D", "name" : "Paris", "type" : "capital" }, { "_key" : "capital-phnom-penh", "_id" : "worldVertices/capital-phnom-penh", - "_rev" : "_e4y3o5q--_", + "_rev" : "_e9T2BDa--E", "name" : "Phnom Penh", "type" : "capital" }, { "_key" : "capital-prague", "_id" : "worldVertices/capital-prague", - "_rev" : "_e4y3o5q--A", + "_rev" : "_e9T2BDa--F", "name" : "Prague", "type" : "capital" }, { "_key" : "capital-quito", "_id" : "worldVertices/capital-quito", - "_rev" : "_e4y3o5u---", + "_rev" : "_e9T2BDa--G", "name" : "Quito", "type" : "capital" }, { "_key" : "capital-saint-john-s", "_id" : "worldVertices/capital-saint-john-s", - "_rev" : "_e4y3o5u--_", + "_rev" : "_e9T2BDa--H", "name" : "Saint John's", "type" : "capital" }, { "_key" : "capital-santiago", "_id" : "worldVertices/capital-santiago", - "_rev" : "_e4y3o5y---", + "_rev" : "_e9T2BDa--I", "name" : "Santiago", "type" : "capital" }, { "_key" : "capital-sarajevo", "_id" : "worldVertices/capital-sarajevo", - "_rev" : "_e4y3o5y--_", + "_rev" : "_e9T2BDa--J", "name" : "Sarajevo", "type" : "capital" }, { "_key" : "capital-sofia", "_id" : "worldVertices/capital-sofia", - "_rev" : "_e4y3o5y--A", + "_rev" : "_e9T2BDe---", "name" : "Sofia", "type" : "capital" }, { "_key" : "capital-thimphu", "_id" : "worldVertices/capital-thimphu", - "_rev" : "_e4y3o52---", + "_rev" : "_e9T2BDe--_", "name" : "Thimphu", "type" : "capital" }, { "_key" : "capital-tirana", "_id" : "worldVertices/capital-tirana", - "_rev" : "_e4y3o52--_", + "_rev" : "_e9T2BDe--A", "name" : "Tirana", "type" : "capital" }, { "_key" : "capital-vienna", "_id" : "worldVertices/capital-vienna", - "_rev" : "_e4y3o52--A", + "_rev" : "_e9T2BDe--B", "name" : "Vienna", "type" : "capital" }, { "_key" : "capital-yamoussoukro", "_id" : "worldVertices/capital-yamoussoukro", - "_rev" : "_e4y3o56---", + "_rev" : "_e9T2BDe--C", "name" : "Yamoussoukro", "type" : "capital" }, { "_key" : "capital-yaounde", "_id" : "worldVertices/capital-yaounde", - "_rev" : "_e4y3o56--_", + "_rev" : "_e9T2BDe--D", "name" : "Yaounde", "type" : "capital" }, { "_key" : "capital-zagreb", "_id" : "worldVertices/capital-zagreb", - "_rev" : "_e4y3o56--A", + "_rev" : "_e9T2BDe--E", "name" : "Zagreb", "type" : "capital" } @@ -655,691 +655,691 @@ arangosh> db.worldVertices.toArray(); arangosh> db.worldEdges.toArray(); [ { - "_key" : "83030", - "_id" : "worldEdges/83030", + "_key" : "83146", + "_id" : "worldEdges/83146", "_from" : "worldVertices/continent-africa", "_to" : "worldVertices/world", - "_rev" : "_e4y3o6----", + "_rev" : "_e9T2BDe--F", "type" : "is-in" }, { - "_key" : "83032", - "_id" : "worldEdges/83032", + "_key" : "83148", + "_id" : "worldEdges/83148", "_from" : "worldVertices/continent-asia", "_to" : "worldVertices/world", - "_rev" : "_e4y3o6---_", + "_rev" : "_e9T2BDe--G", "type" : "is-in" }, { - "_key" : "83034", - "_id" : "worldEdges/83034", + "_key" : "83150", + "_id" : "worldEdges/83150", "_from" : "worldVertices/continent-australia", "_to" : "worldVertices/world", - "_rev" : "_e4y3o6C---", + "_rev" : "_e9T2BDe--H", "type" : "is-in" }, { - "_key" : "83036", - "_id" : "worldEdges/83036", + "_key" : "83152", + "_id" : "worldEdges/83152", "_from" : "worldVertices/continent-europe", "_to" : "worldVertices/world", - "_rev" : "_e4y3o6C--_", + "_rev" : "_e9T2BDe--I", "type" : "is-in" }, { - "_key" : "83038", - "_id" : "worldEdges/83038", + "_key" : "83154", + "_id" : "worldEdges/83154", "_from" : "worldVertices/continent-north-america", "_to" : "worldVertices/world", - "_rev" : "_e4y3o6G---", + "_rev" : "_e9T2BDe--J", "type" : "is-in" }, { - "_key" : "83040", - "_id" : "worldEdges/83040", + "_key" : "83156", + "_id" : "worldEdges/83156", "_from" : "worldVertices/continent-south-america", "_to" : "worldVertices/world", - "_rev" : "_e4y3o6G--_", + "_rev" : "_e9T2BDi---", "type" : "is-in" }, { - "_key" : "83042", - "_id" : "worldEdges/83042", + "_key" : "83158", + "_id" : "worldEdges/83158", "_from" : "worldVertices/country-afghanistan", "_to" : "worldVertices/continent-asia", - "_rev" : "_e4y3o6G--A", + "_rev" : "_e9T2BDi--_", "type" : "is-in" }, { - "_key" : "83044", - "_id" : "worldEdges/83044", + "_key" : "83160", + "_id" : "worldEdges/83160", "_from" : "worldVertices/country-albania", "_to" : "worldVertices/continent-europe", - "_rev" : "_e4y3o6K---", + "_rev" : "_e9T2BDi--A", "type" : "is-in" }, { - "_key" : "83046", - "_id" : "worldEdges/83046", + "_key" : "83162", + "_id" : "worldEdges/83162", "_from" : "worldVertices/country-algeria", "_to" : "worldVertices/continent-africa", - "_rev" : "_e4y3o6K--_", + "_rev" : "_e9T2BDi--B", "type" : "is-in" }, { - "_key" : "83048", - "_id" : "worldEdges/83048", + "_key" : "83164", + "_id" : "worldEdges/83164", "_from" : "worldVertices/country-andorra", "_to" : "worldVertices/continent-europe", - "_rev" : "_e4y3o6O---", + "_rev" : "_e9T2BDi--C", "type" : "is-in" }, { - "_key" : "83050", - "_id" : "worldEdges/83050", + "_key" : "83166", + "_id" : "worldEdges/83166", "_from" : "worldVertices/country-angola", "_to" : "worldVertices/continent-africa", - "_rev" : "_e4y3o6O--_", + "_rev" : "_e9T2BDi--D", "type" : "is-in" }, { - "_key" : "83052", - "_id" : "worldEdges/83052", + "_key" : "83168", + "_id" : "worldEdges/83168", "_from" : "worldVertices/country-antigua-and-barbuda", "_to" : "worldVertices/continent-north-america", - "_rev" : "_e4y3o6O--A", + "_rev" : "_e9T2BDi--E", "type" : "is-in" }, { - "_key" : "83054", - "_id" : "worldEdges/83054", + "_key" : "83170", + "_id" : "worldEdges/83170", "_from" : "worldVertices/country-argentina", "_to" : "worldVertices/continent-south-america", - "_rev" : "_e4y3o6S---", + "_rev" : "_e9T2BDi--F", "type" : "is-in" }, { - "_key" : "83056", - "_id" : "worldEdges/83056", + "_key" : "83172", + "_id" : "worldEdges/83172", "_from" : "worldVertices/country-australia", "_to" : "worldVertices/continent-australia", - "_rev" : "_e4y3o6S--_", + "_rev" : "_e9T2BDi--G", "type" : "is-in" }, { - "_key" : "83058", - "_id" : "worldEdges/83058", + "_key" : "83174", + "_id" : "worldEdges/83174", "_from" : "worldVertices/country-austria", "_to" : "worldVertices/continent-europe", - "_rev" : "_e4y3o6W---", + "_rev" : "_e9T2BDi--H", "type" : "is-in" }, { - "_key" : "83060", - "_id" : "worldEdges/83060", + "_key" : "83176", + "_id" : "worldEdges/83176", "_from" : "worldVertices/country-bahamas", "_to" : "worldVertices/continent-north-america", - "_rev" : "_e4y3o6W--_", + "_rev" : "_e9T2BDi--I", "type" : "is-in" }, { - "_key" : "83062", - "_id" : "worldEdges/83062", + "_key" : "83178", + "_id" : "worldEdges/83178", "_from" : "worldVertices/country-bahrain", "_to" : "worldVertices/continent-asia", - "_rev" : "_e4y3o6W--A", + "_rev" : "_e9T2BDm---", "type" : "is-in" }, { - "_key" : "83064", - "_id" : "worldEdges/83064", + "_key" : "83180", + "_id" : "worldEdges/83180", "_from" : "worldVertices/country-bangladesh", "_to" : "worldVertices/continent-asia", - "_rev" : "_e4y3o6a---", + "_rev" : "_e9T2BDm--_", "type" : "is-in" }, { - "_key" : "83066", - "_id" : "worldEdges/83066", + "_key" : "83182", + "_id" : "worldEdges/83182", "_from" : "worldVertices/country-barbados", "_to" : "worldVertices/continent-north-america", - "_rev" : "_e4y3o6a--_", + "_rev" : "_e9T2BDm--A", "type" : "is-in" }, { - "_key" : "83068", - "_id" : "worldEdges/83068", + "_key" : "83184", + "_id" : "worldEdges/83184", "_from" : "worldVertices/country-belgium", "_to" : "worldVertices/continent-europe", - "_rev" : "_e4y3o6e---", + "_rev" : "_e9T2BDm--B", "type" : "is-in" }, { - "_key" : "83070", - "_id" : "worldEdges/83070", + "_key" : "83186", + "_id" : "worldEdges/83186", "_from" : "worldVertices/country-bhutan", "_to" : "worldVertices/continent-asia", - "_rev" : "_e4y3o6e--_", + "_rev" : "_e9T2BDm--C", "type" : "is-in" }, { - "_key" : "83072", - "_id" : "worldEdges/83072", + "_key" : "83188", + "_id" : "worldEdges/83188", "_from" : "worldVertices/country-bolivia", "_to" : "worldVertices/continent-south-america", - "_rev" : "_e4y3o6i---", + "_rev" : "_e9T2BDm--D", "type" : "is-in" }, { - "_key" : "83074", - "_id" : "worldEdges/83074", + "_key" : "83190", + "_id" : "worldEdges/83190", "_from" : "worldVertices/country-bosnia-and-herzegovina", "_to" : "worldVertices/continent-europe", - "_rev" : "_e4y3o6i--_", + "_rev" : "_e9T2BDm--E", "type" : "is-in" }, { - "_key" : "83076", - "_id" : "worldEdges/83076", + "_key" : "83192", + "_id" : "worldEdges/83192", "_from" : "worldVertices/country-botswana", "_to" : "worldVertices/continent-africa", - "_rev" : "_e4y3o6i--A", + "_rev" : "_e9T2BDm--F", "type" : "is-in" }, { - "_key" : "83078", - "_id" : "worldEdges/83078", + "_key" : "83194", + "_id" : "worldEdges/83194", "_from" : "worldVertices/country-brazil", "_to" : "worldVertices/continent-south-america", - "_rev" : "_e4y3o6m---", + "_rev" : "_e9T2BDm--G", "type" : "is-in" }, { - "_key" : "83080", - "_id" : "worldEdges/83080", + "_key" : "83196", + "_id" : "worldEdges/83196", "_from" : "worldVertices/country-brunei", "_to" : "worldVertices/continent-asia", - "_rev" : "_e4y3o6m--_", + "_rev" : "_e9T2BDm--H", "type" : "is-in" }, { - "_key" : "83082", - "_id" : "worldEdges/83082", + "_key" : "83198", + "_id" : "worldEdges/83198", "_from" : "worldVertices/country-bulgaria", "_to" : "worldVertices/continent-europe", - "_rev" : "_e4y3o6q---", + "_rev" : "_e9T2BDm--I", "type" : "is-in" }, { - "_key" : "83084", - "_id" : "worldEdges/83084", + "_key" : "83200", + "_id" : "worldEdges/83200", "_from" : "worldVertices/country-burkina-faso", "_to" : "worldVertices/continent-africa", - "_rev" : "_e4y3o6q--_", + "_rev" : "_e9T2BDq---", "type" : "is-in" }, { - "_key" : "83086", - "_id" : "worldEdges/83086", + "_key" : "83202", + "_id" : "worldEdges/83202", "_from" : "worldVertices/country-burundi", "_to" : "worldVertices/continent-africa", - "_rev" : "_e4y3o6q--A", + "_rev" : "_e9T2BDq--_", "type" : "is-in" }, { - "_key" : "83088", - "_id" : "worldEdges/83088", + "_key" : "83204", + "_id" : "worldEdges/83204", "_from" : "worldVertices/country-cambodia", "_to" : "worldVertices/continent-asia", - "_rev" : "_e4y3o6u---", + "_rev" : "_e9T2BDq--A", "type" : "is-in" }, { - "_key" : "83090", - "_id" : "worldEdges/83090", + "_key" : "83206", + "_id" : "worldEdges/83206", "_from" : "worldVertices/country-cameroon", "_to" : "worldVertices/continent-africa", - "_rev" : "_e4y3o6u--_", + "_rev" : "_e9T2BDq--B", "type" : "is-in" }, { - "_key" : "83092", - "_id" : "worldEdges/83092", + "_key" : "83208", + "_id" : "worldEdges/83208", "_from" : "worldVertices/country-canada", "_to" : "worldVertices/continent-north-america", - "_rev" : "_e4y3o6y---", + "_rev" : "_e9T2BDq--C", "type" : "is-in" }, { - "_key" : "83094", - "_id" : "worldEdges/83094", + "_key" : "83210", + "_id" : "worldEdges/83210", "_from" : "worldVertices/country-chad", "_to" : "worldVertices/continent-africa", - "_rev" : "_e4y3o6y--_", + "_rev" : "_e9T2BDq--D", "type" : "is-in" }, { - "_key" : "83096", - "_id" : "worldEdges/83096", + "_key" : "83212", + "_id" : "worldEdges/83212", "_from" : "worldVertices/country-chile", "_to" : "worldVertices/continent-south-america", - "_rev" : "_e4y3o62---", + "_rev" : "_e9T2BDq--E", "type" : "is-in" }, { - "_key" : "83098", - "_id" : "worldEdges/83098", + "_key" : "83214", + "_id" : "worldEdges/83214", "_from" : "worldVertices/country-colombia", "_to" : "worldVertices/continent-south-america", - "_rev" : "_e4y3o62--_", + "_rev" : "_e9T2BDq--F", "type" : "is-in" }, { - "_key" : "83100", - "_id" : "worldEdges/83100", + "_key" : "83216", + "_id" : "worldEdges/83216", "_from" : "worldVertices/country-cote-d-ivoire", "_to" : "worldVertices/continent-africa", - "_rev" : "_e4y3o62--A", + "_rev" : "_e9T2BDq--G", "type" : "is-in" }, { - "_key" : "83102", - "_id" : "worldEdges/83102", + "_key" : "83218", + "_id" : "worldEdges/83218", "_from" : "worldVertices/country-croatia", "_to" : "worldVertices/continent-europe", - "_rev" : "_e4y3o66---", + "_rev" : "_e9T2BDq--H", "type" : "is-in" }, { - "_key" : "83104", - "_id" : "worldEdges/83104", + "_key" : "83220", + "_id" : "worldEdges/83220", "_from" : "worldVertices/country-czech-republic", "_to" : "worldVertices/continent-europe", - "_rev" : "_e4y3o66--_", + "_rev" : "_e9T2BDq--I", "type" : "is-in" }, { - "_key" : "83106", - "_id" : "worldEdges/83106", + "_key" : "83222", + "_id" : "worldEdges/83222", "_from" : "worldVertices/country-denmark", "_to" : "worldVertices/continent-europe", - "_rev" : "_e4y3o7----", + "_rev" : "_e9T2BDu---", "type" : "is-in" }, { - "_key" : "83108", - "_id" : "worldEdges/83108", + "_key" : "83224", + "_id" : "worldEdges/83224", "_from" : "worldVertices/country-ecuador", "_to" : "worldVertices/continent-south-america", - "_rev" : "_e4y3o7---_", + "_rev" : "_e9T2BDu--_", "type" : "is-in" }, { - "_key" : "83110", - "_id" : "worldEdges/83110", + "_key" : "83226", + "_id" : "worldEdges/83226", "_from" : "worldVertices/country-egypt", "_to" : "worldVertices/continent-africa", - "_rev" : "_e4y3o7---A", + "_rev" : "_e9T2BDu--A", "type" : "is-in" }, { - "_key" : "83112", - "_id" : "worldEdges/83112", + "_key" : "83228", + "_id" : "worldEdges/83228", "_from" : "worldVertices/country-eritrea", "_to" : "worldVertices/continent-africa", - "_rev" : "_e4y3o7C---", + "_rev" : "_e9T2BDu--B", "type" : "is-in" }, { - "_key" : "83114", - "_id" : "worldEdges/83114", + "_key" : "83230", + "_id" : "worldEdges/83230", "_from" : "worldVertices/country-finland", "_to" : "worldVertices/continent-europe", - "_rev" : "_e4y3o7C--_", + "_rev" : "_e9T2BDu--C", "type" : "is-in" }, { - "_key" : "83116", - "_id" : "worldEdges/83116", + "_key" : "83232", + "_id" : "worldEdges/83232", "_from" : "worldVertices/country-france", "_to" : "worldVertices/continent-europe", - "_rev" : "_e4y3o7G---", + "_rev" : "_e9T2BDu--D", "type" : "is-in" }, { - "_key" : "83118", - "_id" : "worldEdges/83118", + "_key" : "83234", + "_id" : "worldEdges/83234", "_from" : "worldVertices/country-germany", "_to" : "worldVertices/continent-europe", - "_rev" : "_e4y3o7G--_", + "_rev" : "_e9T2BDu--E", "type" : "is-in" }, { - "_key" : "83120", - "_id" : "worldEdges/83120", + "_key" : "83236", + "_id" : "worldEdges/83236", "_from" : "worldVertices/country-people-s-republic-of-china", "_to" : "worldVertices/continent-asia", - "_rev" : "_e4y3o7K---", + "_rev" : "_e9T2BDu--F", "type" : "is-in" }, { - "_key" : "83122", - "_id" : "worldEdges/83122", + "_key" : "83238", + "_id" : "worldEdges/83238", "_from" : "worldVertices/capital-algiers", "_to" : "worldVertices/country-algeria", - "_rev" : "_e4y3o7K--_", + "_rev" : "_e9T2BDu--G", "type" : "is-in" }, { - "_key" : "83124", - "_id" : "worldEdges/83124", + "_key" : "83240", + "_id" : "worldEdges/83240", "_from" : "worldVertices/capital-andorra-la-vella", "_to" : "worldVertices/country-andorra", - "_rev" : "_e4y3o7K--A", + "_rev" : "_e9T2BDu--H", "type" : "is-in" }, { - "_key" : "83126", - "_id" : "worldEdges/83126", + "_key" : "83242", + "_id" : "worldEdges/83242", "_from" : "worldVertices/capital-asmara", "_to" : "worldVertices/country-eritrea", - "_rev" : "_e4y3o7O---", + "_rev" : "_e9T2BDu--I", "type" : "is-in" }, { - "_key" : "83128", - "_id" : "worldEdges/83128", + "_key" : "83244", + "_id" : "worldEdges/83244", "_from" : "worldVertices/capital-bandar-seri-begawan", "_to" : "worldVertices/country-brunei", - "_rev" : "_e4y3o7O--_", + "_rev" : "_e9T2BDy---", "type" : "is-in" }, { - "_key" : "83130", - "_id" : "worldEdges/83130", + "_key" : "83246", + "_id" : "worldEdges/83246", "_from" : "worldVertices/capital-beijing", "_to" : "worldVertices/country-people-s-republic-of-china", - "_rev" : "_e4y3o7S---", + "_rev" : "_e9T2BDy--_", "type" : "is-in" }, { - "_key" : "83132", - "_id" : "worldEdges/83132", + "_key" : "83248", + "_id" : "worldEdges/83248", "_from" : "worldVertices/capital-berlin", "_to" : "worldVertices/country-germany", - "_rev" : "_e4y3o7S--_", + "_rev" : "_e9T2BDy--A", "type" : "is-in" }, { - "_key" : "83134", - "_id" : "worldEdges/83134", + "_key" : "83250", + "_id" : "worldEdges/83250", "_from" : "worldVertices/capital-bogota", "_to" : "worldVertices/country-colombia", - "_rev" : "_e4y3o7S--A", + "_rev" : "_e9T2BDy--B", "type" : "is-in" }, { - "_key" : "83136", - "_id" : "worldEdges/83136", + "_key" : "83252", + "_id" : "worldEdges/83252", "_from" : "worldVertices/capital-brasilia", "_to" : "worldVertices/country-brazil", - "_rev" : "_e4y3o7W---", + "_rev" : "_e9T2BDy--C", "type" : "is-in" }, { - "_key" : "83138", - "_id" : "worldEdges/83138", + "_key" : "83254", + "_id" : "worldEdges/83254", "_from" : "worldVertices/capital-bridgetown", "_to" : "worldVertices/country-barbados", - "_rev" : "_e4y3o7W--_", + "_rev" : "_e9T2BDy--D", "type" : "is-in" }, { - "_key" : "83140", - "_id" : "worldEdges/83140", + "_key" : "83256", + "_id" : "worldEdges/83256", "_from" : "worldVertices/capital-brussels", "_to" : "worldVertices/country-belgium", - "_rev" : "_e4y3o7a---", + "_rev" : "_e9T2BDy--E", "type" : "is-in" }, { - "_key" : "83142", - "_id" : "worldEdges/83142", + "_key" : "83258", + "_id" : "worldEdges/83258", "_from" : "worldVertices/capital-buenos-aires", "_to" : "worldVertices/country-argentina", - "_rev" : "_e4y3o7a--_", + "_rev" : "_e9T2BDy--F", "type" : "is-in" }, { - "_key" : "83144", - "_id" : "worldEdges/83144", + "_key" : "83260", + "_id" : "worldEdges/83260", "_from" : "worldVertices/capital-bujumbura", "_to" : "worldVertices/country-burundi", - "_rev" : "_e4y3o7e---", + "_rev" : "_e9T2BDy--G", "type" : "is-in" }, { - "_key" : "83146", - "_id" : "worldEdges/83146", + "_key" : "83262", + "_id" : "worldEdges/83262", "_from" : "worldVertices/capital-cairo", "_to" : "worldVertices/country-egypt", - "_rev" : "_e4y3o7e--_", + "_rev" : "_e9T2BDy--H", "type" : "is-in" }, { - "_key" : "83148", - "_id" : "worldEdges/83148", + "_key" : "83264", + "_id" : "worldEdges/83264", "_from" : "worldVertices/capital-canberra", "_to" : "worldVertices/country-australia", - "_rev" : "_e4y3o7e--A", + "_rev" : "_e9T2BDy--I", "type" : "is-in" }, { - "_key" : "83150", - "_id" : "worldEdges/83150", + "_key" : "83266", + "_id" : "worldEdges/83266", "_from" : "worldVertices/capital-copenhagen", "_to" : "worldVertices/country-denmark", - "_rev" : "_e4y3o7i---", + "_rev" : "_e9T2BD2---", "type" : "is-in" }, { - "_key" : "83152", - "_id" : "worldEdges/83152", + "_key" : "83268", + "_id" : "worldEdges/83268", "_from" : "worldVertices/capital-dhaka", "_to" : "worldVertices/country-bangladesh", - "_rev" : "_e4y3o7i--_", + "_rev" : "_e9T2BD2--_", "type" : "is-in" }, { - "_key" : "83154", - "_id" : "worldEdges/83154", + "_key" : "83270", + "_id" : "worldEdges/83270", "_from" : "worldVertices/capital-gaborone", "_to" : "worldVertices/country-botswana", - "_rev" : "_e4y3o7m---", + "_rev" : "_e9T2BD2--A", "type" : "is-in" }, { - "_key" : "83156", - "_id" : "worldEdges/83156", + "_key" : "83272", + "_id" : "worldEdges/83272", "_from" : "worldVertices/capital-helsinki", "_to" : "worldVertices/country-finland", - "_rev" : "_e4y3o7m--_", + "_rev" : "_e9T2BD2--B", "type" : "is-in" }, { - "_key" : "83158", - "_id" : "worldEdges/83158", + "_key" : "83274", + "_id" : "worldEdges/83274", "_from" : "worldVertices/capital-kabul", "_to" : "worldVertices/country-afghanistan", - "_rev" : "_e4y3o7m--A", + "_rev" : "_e9T2BD2--C", "type" : "is-in" }, { - "_key" : "83160", - "_id" : "worldEdges/83160", + "_key" : "83276", + "_id" : "worldEdges/83276", "_from" : "worldVertices/capital-la-paz", "_to" : "worldVertices/country-bolivia", - "_rev" : "_e4y3o7q---", + "_rev" : "_e9T2BD2--D", "type" : "is-in" }, { - "_key" : "83162", - "_id" : "worldEdges/83162", + "_key" : "83278", + "_id" : "worldEdges/83278", "_from" : "worldVertices/capital-luanda", "_to" : "worldVertices/country-angola", - "_rev" : "_e4y3o7q--_", + "_rev" : "_e9T2BD2--E", "type" : "is-in" }, { - "_key" : "83164", - "_id" : "worldEdges/83164", + "_key" : "83280", + "_id" : "worldEdges/83280", "_from" : "worldVertices/capital-manama", "_to" : "worldVertices/country-bahrain", - "_rev" : "_e4y3o7u---", + "_rev" : "_e9T2BD2--F", "type" : "is-in" }, { - "_key" : "83166", - "_id" : "worldEdges/83166", + "_key" : "83282", + "_id" : "worldEdges/83282", "_from" : "worldVertices/capital-nassau", "_to" : "worldVertices/country-bahamas", - "_rev" : "_e4y3o7u--_", + "_rev" : "_e9T2BD2--G", "type" : "is-in" }, { - "_key" : "83168", - "_id" : "worldEdges/83168", + "_key" : "83284", + "_id" : "worldEdges/83284", "_from" : "worldVertices/capital-n-djamena", "_to" : "worldVertices/country-chad", - "_rev" : "_e4y3o7u--A", + "_rev" : "_e9T2BD2--H", "type" : "is-in" }, { - "_key" : "83170", - "_id" : "worldEdges/83170", + "_key" : "83286", + "_id" : "worldEdges/83286", "_from" : "worldVertices/capital-ottawa", "_to" : "worldVertices/country-canada", - "_rev" : "_e4y3o7y---", + "_rev" : "_e9T2BD2--I", "type" : "is-in" }, { - "_key" : "83172", - "_id" : "worldEdges/83172", + "_key" : "83288", + "_id" : "worldEdges/83288", "_from" : "worldVertices/capital-ouagadougou", "_to" : "worldVertices/country-burkina-faso", - "_rev" : "_e4y3o7y--_", + "_rev" : "_e9T2BD6---", "type" : "is-in" }, { - "_key" : "83174", - "_id" : "worldEdges/83174", + "_key" : "83290", + "_id" : "worldEdges/83290", "_from" : "worldVertices/capital-paris", "_to" : "worldVertices/country-france", - "_rev" : "_e4y3o72---", + "_rev" : "_e9T2BD6--_", "type" : "is-in" }, { - "_key" : "83176", - "_id" : "worldEdges/83176", + "_key" : "83292", + "_id" : "worldEdges/83292", "_from" : "worldVertices/capital-phnom-penh", "_to" : "worldVertices/country-cambodia", - "_rev" : "_e4y3o72--_", + "_rev" : "_e9T2BD6--A", "type" : "is-in" }, { - "_key" : "83178", - "_id" : "worldEdges/83178", + "_key" : "83294", + "_id" : "worldEdges/83294", "_from" : "worldVertices/capital-prague", "_to" : "worldVertices/country-czech-republic", - "_rev" : "_e4y3o72--A", + "_rev" : "_e9T2BD6--B", "type" : "is-in" }, { - "_key" : "83180", - "_id" : "worldEdges/83180", + "_key" : "83296", + "_id" : "worldEdges/83296", "_from" : "worldVertices/capital-quito", "_to" : "worldVertices/country-ecuador", - "_rev" : "_e4y3o76---", + "_rev" : "_e9T2BD6--C", "type" : "is-in" }, { - "_key" : "83182", - "_id" : "worldEdges/83182", + "_key" : "83298", + "_id" : "worldEdges/83298", "_from" : "worldVertices/capital-saint-john-s", "_to" : "worldVertices/country-antigua-and-barbuda", - "_rev" : "_e4y3o76--_", + "_rev" : "_e9T2BD6--D", "type" : "is-in" }, { - "_key" : "83184", - "_id" : "worldEdges/83184", + "_key" : "83300", + "_id" : "worldEdges/83300", "_from" : "worldVertices/capital-santiago", "_to" : "worldVertices/country-chile", - "_rev" : "_e4y3o8----", + "_rev" : "_e9T2BD6--E", "type" : "is-in" }, { - "_key" : "83186", - "_id" : "worldEdges/83186", + "_key" : "83302", + "_id" : "worldEdges/83302", "_from" : "worldVertices/capital-sarajevo", "_to" : "worldVertices/country-bosnia-and-herzegovina", - "_rev" : "_e4y3o8---_", + "_rev" : "_e9T2BD6--F", "type" : "is-in" }, { - "_key" : "83188", - "_id" : "worldEdges/83188", + "_key" : "83304", + "_id" : "worldEdges/83304", "_from" : "worldVertices/capital-sofia", "_to" : "worldVertices/country-bulgaria", - "_rev" : "_e4y3o8---A", + "_rev" : "_e9T2BD6--G", "type" : "is-in" }, { - "_key" : "83190", - "_id" : "worldEdges/83190", + "_key" : "83306", + "_id" : "worldEdges/83306", "_from" : "worldVertices/capital-thimphu", "_to" : "worldVertices/country-bhutan", - "_rev" : "_e4y3o8C---", + "_rev" : "_e9T2BD6--H", "type" : "is-in" }, { - "_key" : "83192", - "_id" : "worldEdges/83192", + "_key" : "83308", + "_id" : "worldEdges/83308", "_from" : "worldVertices/capital-tirana", "_to" : "worldVertices/country-albania", - "_rev" : "_e4y3o8C--_", + "_rev" : "_e9T2BD6--I", "type" : "is-in" }, { - "_key" : "83194", - "_id" : "worldEdges/83194", + "_key" : "83310", + "_id" : "worldEdges/83310", "_from" : "worldVertices/capital-vienna", "_to" : "worldVertices/country-austria", - "_rev" : "_e4y3o8G---", + "_rev" : "_e9T2BE----", "type" : "is-in" }, { - "_key" : "83196", - "_id" : "worldEdges/83196", + "_key" : "83312", + "_id" : "worldEdges/83312", "_from" : "worldVertices/capital-yamoussoukro", "_to" : "worldVertices/country-cote-d-ivoire", - "_rev" : "_e4y3o8G--_", + "_rev" : "_e9T2BE---_", "type" : "is-in" }, { - "_key" : "83198", - "_id" : "worldEdges/83198", + "_key" : "83314", + "_id" : "worldEdges/83314", "_from" : "worldVertices/capital-yaounde", "_to" : "worldVertices/country-cameroon", - "_rev" : "_e4y3o8G--A", + "_rev" : "_e9T2BE---A", "type" : "is-in" }, { - "_key" : "83200", - "_id" : "worldEdges/83200", + "_key" : "83316", + "_id" : "worldEdges/83316", "_from" : "worldVertices/capital-zagreb", "_to" : "worldVertices/country-croatia", - "_rev" : "_e4y3o8K---", + "_rev" : "_e9T2BE---B", "type" : "is-in" } ] diff --git a/3.10/generated/Examples/hybridSmartGraphCreateGraphHowTo1_cluster.generated b/3.10/generated/Examples/hybridSmartGraphCreateGraphHowTo1_cluster.generated index 1b21363d2e..5973548d7c 100644 --- a/3.10/generated/Examples/hybridSmartGraphCreateGraphHowTo1_cluster.generated +++ b/3.10/generated/Examples/hybridSmartGraphCreateGraphHowTo1_cluster.generated @@ -3,7 +3,7 @@ arangosh> var rel = graph_module._relation( arangosh> var graph = graph_module._create("myGraph", [rel], [], {satellites: ["shop", "customer"], smartGraphAttribute: "region", numberOfShards: 9}); arangosh> graph_module._graph("myGraph"); {[SmartGraph] - "isCustomer" : [ArangoCollection 10802, "isCustomer" (type edge, status loaded)], - "shop" : [ArangoCollection 10800, "shop" (type document, status loaded)], - "customer" : [ArangoCollection 10801, "customer" (type document, status loaded)] + "isCustomer" : [ArangoCollection 10803, "isCustomer" (type edge, status loaded)], + "shop" : [ArangoCollection 10801, "shop" (type document, status loaded)], + "customer" : [ArangoCollection 10802, "customer" (type document, status loaded)] } diff --git a/3.10/generated/Examples/hybridSmartGraphCreateGraphHowTo2_cluster.generated b/3.10/generated/Examples/hybridSmartGraphCreateGraphHowTo2_cluster.generated index 0664905271..af8c827a0d 100644 --- a/3.10/generated/Examples/hybridSmartGraphCreateGraphHowTo2_cluster.generated +++ b/3.10/generated/Examples/hybridSmartGraphCreateGraphHowTo2_cluster.generated @@ -5,5 +5,5 @@ arangosh> graph_module._graph("myGraph""isCustomer" : [ArangoCollection 10826, "isCustomer" (type edge, status loaded)], "shop" : [ArangoCollection 10825, "shop" (type document, status loaded)], - "customer" : [ArangoCollection 10814, "customer" (type document, status loaded)] + "customer" : [ArangoCollection 10815, "customer" (type document, status loaded)] } diff --git a/3.10/generated/Examples/job_cancel.generated b/3.10/generated/Examples/job_cancel.generated index d83eea2678..19318a61da 100644 --- a/3.10/generated/Examples/job_cancel.generated +++ b/3.10/generated/Examples/job_cancel.generated @@ -14,7 +14,7 @@ expires: 0 pragma: no-cache server: ArangoDB strict-transport-security: max-age=31536000 ; includeSubDomains -x-arango-async-id: 83496 +x-arango-async-id: 83612 x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff @@ -34,9 +34,9 @@ x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff [ - "83496" + "83612" ] -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/job/83496/cancel +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/job/83612/cancel HTTP/1.1 200 OK content-type: application/json @@ -70,5 +70,5 @@ x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff [ - "83496" + "83612" ] diff --git a/3.10/generated/Examples/job_delete_01.generated b/3.10/generated/Examples/job_delete_01.generated index 5fe077d628..ca55b2ebd9 100644 --- a/3.10/generated/Examples/job_delete_01.generated +++ b/3.10/generated/Examples/job_delete_01.generated @@ -10,7 +10,7 @@ expires: 0 pragma: no-cache server: ArangoDB strict-transport-security: max-age=31536000 ; includeSubDomains -x-arango-async-id: 83500 +x-arango-async-id: 83616 x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff diff --git a/3.10/generated/Examples/job_delete_02.generated b/3.10/generated/Examples/job_delete_02.generated index bfe18c95be..0c21c16880 100644 --- a/3.10/generated/Examples/job_delete_02.generated +++ b/3.10/generated/Examples/job_delete_02.generated @@ -10,7 +10,7 @@ expires: 0 pragma: no-cache server: ArangoDB strict-transport-security: max-age=31536000 ; includeSubDomains -x-arango-async-id: 83502 +x-arango-async-id: 83618 x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff @@ -20,7 +20,7 @@ HTTP/1.1 200 O content-type: application/json cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0, max-age=0, s-maxage=0 connection: Keep-Alive -content-length: 50 +content-length: 55 content-security-policy: frame-ancestors 'self'; form-action 'self'; expires: 0 pragma: no-cache @@ -32,9 +32,9 @@ x-content-type-options: nosniff { "error" : false, "code" : 200, - "time" : 1665058581.65619 + "time" : 1666270629.0053465 } -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/job/expired?stamp=1665058581.65619 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/job/expired?stamp=1666270629.0053465 HTTP/1.1 200 OK content-type: application/json diff --git a/3.10/generated/Examples/job_delete_03.generated b/3.10/generated/Examples/job_delete_03.generated index 1d115ed418..8a575ad59d 100644 --- a/3.10/generated/Examples/job_delete_03.generated +++ b/3.10/generated/Examples/job_delete_03.generated @@ -10,11 +10,11 @@ expires: 0 pragma: no-cache server: ArangoDB strict-transport-security: max-age=31536000 ; includeSubDomains -x-arango-async-id: 83504 +x-arango-async-id: 83620 x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/job/83504 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/job/83620 HTTP/1.1 200 OK content-type: application/json diff --git a/3.10/generated/Examples/job_fetch_result_03.generated b/3.10/generated/Examples/job_fetch_result_03.generated index b813e6872b..46c647ac75 100644 --- a/3.10/generated/Examples/job_fetch_result_03.generated +++ b/3.10/generated/Examples/job_fetch_result_03.generated @@ -10,11 +10,11 @@ expires: 0 pragma: no-cache server: ArangoDB strict-transport-security: max-age=31536000 ; includeSubDomains -x-arango-async-id: 83509 +x-arango-async-id: 83625 x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/job/83509 +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/job/83625 HTTP/1.1 200 OK content-type: application/json @@ -26,7 +26,7 @@ expires: 0 pragma: no-cache server: ArangoDB strict-transport-security: max-age=31536000 ; includeSubDomains -x-arango-async-id: 83509 +x-arango-async-id: 83625 x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff diff --git a/3.10/generated/Examples/job_fetch_result_04.generated b/3.10/generated/Examples/job_fetch_result_04.generated index 82816fb664..38b1edee90 100644 --- a/3.10/generated/Examples/job_fetch_result_04.generated +++ b/3.10/generated/Examples/job_fetch_result_04.generated @@ -14,11 +14,11 @@ expires: 0 pragma: no-cache server: ArangoDB strict-transport-security: max-age=31536000 ; includeSubDomains -x-arango-async-id: 83511 +x-arango-async-id: 83627 x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/job/83511 +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/job/83627 HTTP/1.1 400 Bad Request content-type: application/json @@ -30,7 +30,7 @@ expires: 0 pragma: no-cache server: ArangoDB strict-transport-security: max-age=31536000 ; includeSubDomains -x-arango-async-id: 83511 +x-arango-async-id: 83627 x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff diff --git a/3.10/generated/Examples/job_getByType_01.generated b/3.10/generated/Examples/job_getByType_01.generated index c6adb17a1b..64ac9a8f87 100644 --- a/3.10/generated/Examples/job_getByType_01.generated +++ b/3.10/generated/Examples/job_getByType_01.generated @@ -10,7 +10,7 @@ expires: 0 pragma: no-cache server: ArangoDB strict-transport-security: max-age=31536000 ; includeSubDomains -x-arango-async-id: 83513 +x-arango-async-id: 83629 x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff @@ -30,5 +30,5 @@ x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff [ - "83513" + "83629" ] diff --git a/3.10/generated/Examples/job_getByType_02.generated b/3.10/generated/Examples/job_getByType_02.generated index f9ef00d6df..9d34ef1c9e 100644 --- a/3.10/generated/Examples/job_getByType_02.generated +++ b/3.10/generated/Examples/job_getByType_02.generated @@ -10,7 +10,7 @@ expires: 0 pragma: no-cache server: ArangoDB strict-transport-security: max-age=31536000 ; includeSubDomains -x-arango-async-id: 83515 +x-arango-async-id: 83631 x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff diff --git a/3.10/generated/Examples/job_getByType_03.generated b/3.10/generated/Examples/job_getByType_03.generated index 2fc228fa74..c71f65a128 100644 --- a/3.10/generated/Examples/job_getByType_03.generated +++ b/3.10/generated/Examples/job_getByType_03.generated @@ -19,7 +19,7 @@ expires: 0 pragma: no-cache server: ArangoDB strict-transport-security: max-age=31536000 ; includeSubDomains -x-arango-async-id: 83517 +x-arango-async-id: 83633 x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff @@ -39,9 +39,9 @@ x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff [ - "83517" + "83633" ] -shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/job/83517 +shell> curl -X DELETE --header 'accept: application/json' --dump - http://localhost:8529/_api/job/83633 HTTP/1.1 200 OK content-type: application/json diff --git a/3.10/generated/Examples/job_getStatusById_01.generated b/3.10/generated/Examples/job_getStatusById_01.generated index 59323b8583..c9678795e2 100644 --- a/3.10/generated/Examples/job_getStatusById_01.generated +++ b/3.10/generated/Examples/job_getStatusById_01.generated @@ -10,11 +10,11 @@ expires: 0 pragma: no-cache server: ArangoDB strict-transport-security: max-age=31536000 ; includeSubDomains -x-arango-async-id: 83520 +x-arango-async-id: 83636 x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff -shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/job/83520 +shell> curl -X PUT --header 'accept: application/json' --dump - http://localhost:8529/_api/job/83636 HTTP/1.1 200 OK content-type: application/json @@ -26,7 +26,7 @@ expires: 0 pragma: no-cache server: ArangoDB strict-transport-security: max-age=31536000 ; includeSubDomains -x-arango-async-id: 83520 +x-arango-async-id: 83636 x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff diff --git a/3.10/generated/Examples/job_getStatusById_02.generated b/3.10/generated/Examples/job_getStatusById_02.generated index 3877ce4d54..2eed7185d0 100644 --- a/3.10/generated/Examples/job_getStatusById_02.generated +++ b/3.10/generated/Examples/job_getStatusById_02.generated @@ -19,11 +19,11 @@ expires: 0 pragma: no-cache server: ArangoDB strict-transport-security: max-age=31536000 ; includeSubDomains -x-arango-async-id: 83522 +x-arango-async-id: 83638 x-arango-queue-time-seconds: 0.000000 x-content-type-options: nosniff -shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/job/83522 +shell> curl --header 'accept: application/json' --dump - http://localhost:8529/_api/job/83638 HTTP/1.1 204 No Content content-type: text/plain diff --git a/3.10/generated/Examples/jsStreamTransaction_1.generated b/3.10/generated/Examples/jsStreamTransaction_1.generated index 247f7215f4..d17011459e 100644 --- a/3.10/generated/Examples/jsStreamTransaction_1.generated +++ b/3.10/generated/Examples/jsStreamTransaction_1.generated @@ -13,19 +13,19 @@ arangosh> if (task) { { "_key" : "123", "_id" : "tasks/123", - "_rev" : "_e4y3pN----", + "_rev" : "_e9T2BIW---", "type" : "sendEmail", "date" : "2022-07-07T15:20:00.000Z" } { "_key" : "124", "_id" : "tasks/124", - "_rev" : "_e4y3pNS---", + "_rev" : "_e9T2BIa--_", "type" : "sendEmail", - "date" : "2022-10-06T12:16:21.748Z" + "date" : "2022-10-20T12:57:09.031Z" } arangosh> trx.status(); { - "id" : "83568", + "id" : "83684", "status" : "committed" } diff --git a/3.10/generated/Examples/listCurrentConfigOpts.generated b/3.10/generated/Examples/listCurrentConfigOpts.generated index d72cad56f6..0afa77b9f8 100644 --- a/3.10/generated/Examples/listCurrentConfigOpts.generated +++ b/3.10/generated/Examples/listCurrentConfigOpts.generated @@ -44,10 +44,10 @@ arangosh> db._executeTransaction({ collections "agency.supervision-grace-period" : 10, "agency.supervision-ok-threshold" : 5, "agency.wait-for-sync" : true, - "arangosearch.commit-threads" : 5, - "arangosearch.commit-threads-idle" : 5, - "arangosearch.consolidation-threads" : 5, - "arangosearch.consolidation-threads-idle" : 5, + "arangosearch.commit-threads" : 6, + "arangosearch.commit-threads-idle" : 6, + "arangosearch.consolidation-threads" : 6, + "arangosearch.consolidation-threads-idle" : 6, "arangosearch.fail-queries-on-out-of-sync" : false, "arangosearch.skip-recovery" : [ ], "arangosearch.threads" : 0, @@ -61,7 +61,7 @@ arangosh> db._executeTransaction({ collections "backup.files-per-batch" : 100, "backup.local-path-prefix" : "/", "cache.rebalancing-interval" : 2000000, - "cache.size" : 16341337088, + "cache.size" : 17872711680, "cluster.agency-endpoint" : [ ], "cluster.api-jwt-policy" : "jwt-compat", "cluster.create-waits-for-sync-replication" : true, @@ -87,7 +87,7 @@ arangosh> db._executeTransaction({ collections "cluster.write-concern" : 1, "database.auto-upgrade" : false, "database.check-version" : false, - "database.directory" : "/tmp/arangosh_LKmPPJ/rocksdb-clusterOrNot/single_0/data", + "database.directory" : "/tmp/arangosh_APNGjA/rocksdb-clusterOrNot/single_0/data", "database.extended-names-databases" : true, "database.force-sync-properties" : false, "database.ignore-datafile-errors" : false, @@ -117,7 +117,7 @@ arangosh> db._executeTransaction({ collections "javascript.allow-admin-execute" : true, "javascript.allow-external-process-control" : false, "javascript.allow-port-testing" : false, - "javascript.app-path" : "/tmp/arangosh_LKmPPJ/rocksdb-clusterOrNot/single_0/apps", + "javascript.app-path" : "/tmp/arangosh_APNGjA/rocksdb-clusterOrNot/single_0/apps", "javascript.copy-installation" : false, "javascript.enabled" : true, "javascript.endpoints-allowlist" : [ ], @@ -216,7 +216,7 @@ arangosh> db._executeTransaction({ collections "log.color" : true, "log.escape-control-chars" : true, "log.escape-unicode-chars" : false, - "log.file" : "/tmp/arangosh_LKmPPJ/rocksdb-clusterOrNot/single_0/log", + "log.file" : "/tmp/arangosh_APNGjA/rocksdb-clusterOrNot/single_0/log", "log.file-group" : "", "log.file-mode" : "", "log.force-direct" : false, @@ -234,7 +234,7 @@ arangosh> db._executeTransaction({ collections "log.line-number" : false, "log.max-entry-length" : 134217728, "log.output" : [ - "file:///tmp/arangosh_LKmPPJ/rocksdb-clusterOrNot/single_0/log" + "file:///tmp/arangosh_APNGjA/rocksdb-clusterOrNot/single_0/log" ], "log.performance" : false, "log.prefix" : "", @@ -255,12 +255,12 @@ arangosh> db._executeTransaction({ collections "network.max-requests-in-flight" : 65536, "network.protocol" : "", "network.verify-hosts" : false, - "pregel.max-parallelism" : 32, + "pregel.max-parallelism" : 36, "pregel.memory-mapped-files" : true, "pregel.memory-mapped-files-custom-path" : "", "pregel.memory-mapped-files-location-type" : "temp-directory", "pregel.min-parallelism" : 1, - "pregel.parallelism" : 8, + "pregel.parallelism" : 9, "query.allow-collections-in-expressions" : false, "query.cache-entries" : 128, "query.cache-entries-max-size" : 268435456, @@ -268,11 +268,11 @@ arangosh> db._executeTransaction({ collections "query.cache-include-system-collections" : false, "query.cache-mode" : "off", "query.fail-on-warning" : false, - "query.global-memory-limit" : 54685393920, + "query.global-memory-limit" : 59647047598, "query.max-nodes-per-callstack" : 250, "query.max-parallelism" : 4, "query.max-runtime" : 0, - "query.memory-limit" : 40507699200, + "query.memory-limit" : 44182998221, "query.memory-limit-override" : true, "query.optimizer-max-plans" : 128, "query.optimizer-rules" : [ ], @@ -301,7 +301,7 @@ arangosh> db._executeTransaction({ collections "rocksdb.allow-fallocate" : true, "rocksdb.block-align-data-blocks" : false, "rocksdb.block-cache-shard-bits" : 7, - "rocksdb.block-cache-size" : 19609604505, + "rocksdb.block-cache-size" : 21447254016, "rocksdb.cache-index-and-filter-blocks" : true, "rocksdb.cache-index-and-filter-blocks-with-high-priority" : true, "rocksdb.checksum-type" : "xxHash64", @@ -331,7 +331,7 @@ arangosh> db._executeTransaction({ collections "rocksdb.level0-slowdown-trigger" : 16, "rocksdb.level0-stop-trigger" : 256, "rocksdb.limit-open-files-at-startup" : false, - "rocksdb.max-background-jobs" : 32, + "rocksdb.max-background-jobs" : 36, "rocksdb.max-bytes-for-level-base" : 268435456, "rocksdb.max-bytes-for-level-multiplier" : 10, "rocksdb.max-parallel-compactions" : 2, @@ -352,8 +352,8 @@ arangosh> db._executeTransaction({ collections "rocksdb.minimum-disk-free-bytes" : 16777216, "rocksdb.minimum-disk-free-percent" : 0.01, "rocksdb.num-levels" : 7, - "rocksdb.num-threads-priority-high" : 16, - "rocksdb.num-threads-priority-low" : 16, + "rocksdb.num-threads-priority-high" : 18, + "rocksdb.num-threads-priority-low" : 18, "rocksdb.num-uncompressed-levels" : 2, "rocksdb.optimize-filters-for-hits" : false, "rocksdb.pending-compactions-slowdown-trigger" : 131072, @@ -377,8 +377,8 @@ arangosh> db._executeTransaction({ collections "rocksdb.throttle-scaling-factor" : 17, "rocksdb.throttle-slots" : 120, "rocksdb.throttle-slow-down-writes-trigger" : 8, - "rocksdb.total-write-buffer-size" : 26146139340, - "rocksdb.transaction-lock-stripes" : 32, + "rocksdb.total-write-buffer-size" : 28596338688, + "rocksdb.transaction-lock-stripes" : 36, "rocksdb.transaction-lock-timeout" : 1000, "rocksdb.use-direct-io-for-flush-and-compaction" : false, "rocksdb.use-direct-reads" : false, @@ -400,20 +400,20 @@ arangosh> db._executeTransaction({ collections "server.descriptors-minimum" : 8192, "server.early-connections" : false, "server.endpoint" : [ - "tcp://127.0.0.1:13726" + "tcp://127.0.0.1:16336" ], "server.export-metrics-api" : true, "server.export-read-write-metrics" : false, "server.gid" : "", "server.harden" : false, - "server.io-threads" : 8, + "server.io-threads" : 9, "server.local-authentication" : true, "server.maintenance-actions-block" : 2, "server.maintenance-actions-linger" : 3600, - "server.maintenance-slow-threads" : 4, - "server.maintenance-threads" : 9, + "server.maintenance-slow-threads" : 5, + "server.maintenance-threads" : 10, "server.maximal-queue-size" : 4096, - "server.maximal-threads" : 64, + "server.maximal-threads" : 72, "server.minimal-threads" : 4, "server.ongoing-low-priority-multiplier" : 4, "server.prio1-size" : 4096, @@ -444,10 +444,10 @@ arangosh> db._executeTransaction({ collections "temp.-intermediate-results-encryption-hardware-acceleration" : true, "temp.intermediate-results-capacity" : 0, "temp.intermediate-results-encryption" : false, - "temp.intermediate-results-path" : "/tmp/arangosh_LKmPPJ/rocksdb-clusterOrNot/single_0/temp-rocksdb-dir/", + "temp.intermediate-results-path" : "/tmp/arangosh_APNGjA/rocksdb-clusterOrNot/single_0/temp-rocksdb-dir/", "temp.intermediate-results-spillover-threshold-memory-usage" : 134217728, "temp.intermediate-results-spillover-threshold-num-rows" : 5000000, - "temp.path" : "/tmp/arangosh_LKmPPJ/rocksdb-clusterOrNot/single_0/tmp", + "temp.path" : "/tmp/arangosh_APNGjA/rocksdb-clusterOrNot/single_0/tmp", "transaction.streaming-idle-timeout" : 60, "transaction.streaming-lock-timeout" : 8, "ttl.frequency" : 30000, diff --git a/3.10/generated/Examples/satelliteGraphCreate2_cluster.generated b/3.10/generated/Examples/satelliteGraphCreate2_cluster.generated index a7858fa39d..edc7687051 100644 --- a/3.10/generated/Examples/satelliteGraphCreate2_cluster.generated +++ b/3.10/generated/Examples/satelliteGraphCreate2_cluster.generated @@ -1,2 +1,6 @@ arangosh> var graph = satelliteGraphModule._create("satelliteGraph"); arangosh> graph._addVertexCollection("aVertexCollection"); +arangosh> graph = satelliteGraphModule._graph("satelliteGraph"); +{[SatelliteGraph] + "aVertexCollection" : [ArangoCollection 10848, "aVertexCollection" (type document, status loaded)] +} diff --git a/3.10/generated/Examples/satelliteGraphCreate3_cluster.generated b/3.10/generated/Examples/satelliteGraphCreate3_cluster.generated index 1b57371967..63ccc1dd6c 100644 --- a/3.10/generated/Examples/satelliteGraphCreate3_cluster.generated +++ b/3.10/generated/Examples/satelliteGraphCreate3_cluster.generated @@ -1,3 +1,8 @@ arangosh> var graph = satelliteGraphModule._create("satelliteGraph"); arangosh> var relation = satelliteGraphModule._relation("isFriend", ["person"], ["person"]); arangosh> graph._extendEdgeDefinitions(relation); +arangosh> graph = satelliteGraphModule._graph("satelliteGraph"); +{[SatelliteGraph] + "isFriend" : [ArangoCollection 10858, "isFriend" (type edge, status loaded)], + "person" : [ArangoCollection 10856, "person" (type document, status loaded)] +} diff --git a/3.10/generated/Examples/satelliteGraphPrototype2_cluster.generated b/3.10/generated/Examples/satelliteGraphPrototype2_cluster.generated index dddbf1f452..df6a0f6a24 100644 --- a/3.10/generated/Examples/satelliteGraphPrototype2_cluster.generated +++ b/3.10/generated/Examples/satelliteGraphPrototype2_cluster.generated @@ -1,3 +1,7 @@ arangosh> var satelliteGraphModule = require("@arangodb/satellite-graph"); arangosh> var graph = satelliteGraphModule._create("satelliteGraph"); arangosh> graph._addVertexCollection("myPrototypeColl"); +arangosh> graph = satelliteGraphModule._graph("satelliteGraph"); +{[SatelliteGraph] + "myPrototypeColl" : [ArangoCollection 11107, "myPrototypeColl" (type document, status loaded)] +} diff --git a/3.10/generated/Examples/satelliteGraphPrototype3_cluster.generated b/3.10/generated/Examples/satelliteGraphPrototype3_cluster.generated index d70c999b26..37aaca93fb 100644 --- a/3.10/generated/Examples/satelliteGraphPrototype3_cluster.generated +++ b/3.10/generated/Examples/satelliteGraphPrototype3_cluster.generated @@ -2,3 +2,8 @@ arangosh> var satelliteGraphModule = var graph = satelliteGraphModule._create("satelliteGraph"); arangosh> var relation = satelliteGraphModule._relation("isFriend", ["person"], ["person"]); arangosh> graph._extendEdgeDefinitions(relation); +arangosh> graph = satelliteGraphModule._graph("satelliteGraph"); +{[SatelliteGraph] + "isFriend" : [ArangoCollection 11117, "isFriend" (type edge, status loaded)], + "person" : [ArangoCollection 11115, "person" (type document, status loaded)] +} diff --git a/3.10/generated/Examples/smartGraphModify4_cluster.generated b/3.10/generated/Examples/smartGraphModify4_cluster.generated index 186e08c477..455f760747 100644 --- a/3.10/generated/Examples/smartGraphModify4_cluster.generated +++ b/3.10/generated/Examples/smartGraphModify4_cluster.generated @@ -4,4 +4,4 @@ arangosh> var graph = graph_module._create( arangosh> graph._deleteEdgeDefinition("edges"); arangosh> graph._removeVertexCollection("vertices"); arangosh> db._drop("vertices"); -[ArangoError 1485: Collection 'vertices' must not be dropped while '_from_edges', '_to_edges', '_local_edges', 'edges' have distributeShardsLike set to 'vertices'.] +[ArangoError 1485: Collection 'vertices' must not be dropped while '_local_edges', '_to_edges', 'edges', '_from_edges' have distributeShardsLike set to 'vertices'.] diff --git a/3.10/generated/Examples/usingToArray.generated b/3.10/generated/Examples/usingToArray.generated index 91ac0ac9a7..f07290ab5e 100644 --- a/3.10/generated/Examples/usingToArray.generated +++ b/3.10/generated/Examples/usingToArray.generated @@ -1,36 +1,36 @@ arangosh> db._create("five") -[ArangoCollection 83678, "five" (type document, status loaded)] +[ArangoCollection 83794, "five" (type document, status loaded)] arangosh> for (i = 0; i < 5; i++) db.five.save({value:i}) arangosh> db.five.toArray() [ { - "_key" : "83683", - "_id" : "five/83683", - "_rev" : "_e4y3q_S---", + "_key" : "83799", + "_id" : "five/83799", + "_rev" : "_e9T2Bcq--_", "value" : 0 }, { - "_key" : "83685", - "_id" : "five/83685", - "_rev" : "_e4y3q_W---", + "_key" : "83801", + "_id" : "five/83801", + "_rev" : "_e9T2Bcq--A", "value" : 1 }, { - "_key" : "83687", - "_id" : "five/83687", - "_rev" : "_e4y3q_W--_", + "_key" : "83803", + "_id" : "five/83803", + "_rev" : "_e9T2Bcq--B", "value" : 2 }, { - "_key" : "83689", - "_id" : "five/83689", - "_rev" : "_e4y3q_a---", + "_key" : "83805", + "_id" : "five/83805", + "_rev" : "_e9T2Bcq--C", "value" : 3 }, { - "_key" : "83691", - "_id" : "five/83691", - "_rev" : "_e4y3q_a--_", + "_key" : "83807", + "_id" : "five/83807", + "_rev" : "_e9T2Bcu---", "value" : 4 } ] diff --git a/3.10/generated/Examples/viewDatabaseCreate.generated b/3.10/generated/Examples/viewDatabaseCreate.generated index f8dd34cb9b..09374c60bd 100644 --- a/3.10/generated/Examples/viewDatabaseCreate.generated +++ b/3.10/generated/Examples/viewDatabaseCreate.generated @@ -1,5 +1,5 @@ arangosh> v = db._createView("example", "arangosearch"); -[ArangoView 83697, "example" (type arangosearch)] +[ArangoView 83813, "example" (type arangosearch)] arangosh> v.properties() { "writebufferSizeMax" : 33554432, diff --git a/3.10/generated/Examples/viewDatabaseDrop.generated b/3.10/generated/Examples/viewDatabaseDrop.generated index 1d9a9fd5a1..c89fcef299 100644 --- a/3.10/generated/Examples/viewDatabaseDrop.generated +++ b/3.10/generated/Examples/viewDatabaseDrop.generated @@ -1,5 +1,5 @@ arangosh> db._createView("exampleView", "arangosearch"); -[ArangoView 83703, "exampleView" (type arangosearch)] +[ArangoView 83819, "exampleView" (type arangosearch)] arangosh> db._dropView("exampleView"); arangosh> db._view("exampleView"); null diff --git a/3.10/generated/Examples/viewDatabaseGet.generated b/3.10/generated/Examples/viewDatabaseGet.generated index b405f717b2..d184a02b2e 100644 --- a/3.10/generated/Examples/viewDatabaseGet.generated +++ b/3.10/generated/Examples/viewDatabaseGet.generated @@ -1,5 +1,5 @@ arangosh> view = db._view("example"); ........> // or, alternatively -[ArangoView 83707, "example" (type arangosearch)] +[ArangoView 83823, "example" (type arangosearch)] arangosh> view = db["example"] -[ArangoView 83707, "example" (type arangosearch)] +[ArangoView 83823, "example" (type arangosearch)] diff --git a/3.10/generated/Examples/viewDatabaseList.generated b/3.10/generated/Examples/viewDatabaseList.generated index a37dfd3de2..5a3eb49fca 100644 --- a/3.10/generated/Examples/viewDatabaseList.generated +++ b/3.10/generated/Examples/viewDatabaseList.generated @@ -1,5 +1,5 @@ arangosh> db._views(); [ - [ArangoView 105, "demoView" (type arangosearch)], - [ArangoView 83711, "exampleView" (type arangosearch)] + [ArangoView 101, "demoView" (type arangosearch)], + [ArangoView 83827, "exampleView" (type arangosearch)] ] diff --git a/3.10/generated/Examples/viewDatabaseNameKnown.generated b/3.10/generated/Examples/viewDatabaseNameKnown.generated index 5976771241..d298938459 100644 --- a/3.10/generated/Examples/viewDatabaseNameKnown.generated +++ b/3.10/generated/Examples/viewDatabaseNameKnown.generated @@ -1,2 +1,2 @@ arangosh> db._view("demoView"); -[ArangoView 105, "demoView" (type arangosearch)] +[ArangoView 101, "demoView" (type arangosearch)] diff --git a/3.10/generated/Examples/viewDrop.generated b/3.10/generated/Examples/viewDrop.generated index 194f7aad52..e63e24abb4 100644 --- a/3.10/generated/Examples/viewDrop.generated +++ b/3.10/generated/Examples/viewDrop.generated @@ -1,8 +1,8 @@ arangosh> v = db._createView("example", "arangosearch"); ........> // or -[ArangoView 83719, "example" (type arangosearch)] +[ArangoView 83835, "example" (type arangosearch)] arangosh> v = db._view("example"); -[ArangoView 83719, "example" (type arangosearch)] +[ArangoView 83835, "example" (type arangosearch)] arangosh> v.drop(); arangosh> db._view("example"); null diff --git a/3.10/generated/Examples/viewGetProperties.generated b/3.10/generated/Examples/viewGetProperties.generated index 6d1ddfd36a..2b5fa474d5 100644 --- a/3.10/generated/Examples/viewGetProperties.generated +++ b/3.10/generated/Examples/viewGetProperties.generated @@ -1,5 +1,5 @@ arangosh> v = db._view("demoView"); -[ArangoView 105, "demoView" (type arangosearch)] +[ArangoView 101, "demoView" (type arangosearch)] arangosh> v.properties(); { "writebufferSizeMax" : 33554432, diff --git a/3.10/generated/Examples/viewModifyProperties.generated b/3.10/generated/Examples/viewModifyProperties.generated index 838784d62b..955b96ba40 100644 --- a/3.10/generated/Examples/viewModifyProperties.generated +++ b/3.10/generated/Examples/viewModifyProperties.generated @@ -1,5 +1,5 @@ arangosh> v = db._view("example"); -[ArangoView 83726, "example" (type arangosearch)] +[ArangoView 83842, "example" (type arangosearch)] arangosh> v.properties(); ........> // set cleanupIntervalStep to 12 { diff --git a/3.10/generated/Examples/viewName.generated b/3.10/generated/Examples/viewName.generated index 963646f4ac..32b769ea5a 100644 --- a/3.10/generated/Examples/viewName.generated +++ b/3.10/generated/Examples/viewName.generated @@ -1,4 +1,4 @@ arangosh> v = db._view("demoView"); -[ArangoView 105, "demoView" (type arangosearch)] +[ArangoView 101, "demoView" (type arangosearch)] arangosh> v.name(); demoView diff --git a/3.10/generated/Examples/viewRename.generated b/3.10/generated/Examples/viewRename.generated index af4e78ff04..55ddbdfac4 100644 --- a/3.10/generated/Examples/viewRename.generated +++ b/3.10/generated/Examples/viewRename.generated @@ -1,5 +1,5 @@ arangosh> v = db._createView("example", "arangosearch"); -[ArangoView 83762, "example" (type arangosearch)] +[ArangoView 83878, "example" (type arangosearch)] arangosh> v.name(); example arangosh> v.rename("exampleRenamed"); diff --git a/3.10/generated/Examples/viewType.generated b/3.10/generated/Examples/viewType.generated index 1c75750e3e..a48e264120 100644 --- a/3.10/generated/Examples/viewType.generated +++ b/3.10/generated/Examples/viewType.generated @@ -1,4 +1,4 @@ arangosh> v = db._view("demoView"); -[ArangoView 105, "demoView" (type arangosearch)] +[ArangoView 101, "demoView" (type arangosearch)] arangosh> v.type(); arangosearch diff --git a/3.10/generated/Examples/viewUsage_01.generated b/3.10/generated/Examples/viewUsage_01.generated index 63a508c066..bde964cbc6 100644 --- a/3.10/generated/Examples/viewUsage_01.generated +++ b/3.10/generated/Examples/viewUsage_01.generated @@ -1,2 +1,2 @@ arangosh> view = db._createView("myView", "arangosearch", {}); -[ArangoView 83779, "myView" (type arangosearch)] +[ArangoView 83895, "myView" (type arangosearch)] diff --git a/3.10/generated/Examples/viewUsage_02.generated b/3.10/generated/Examples/viewUsage_02.generated index 93fb57d1c0..d9b0a8e708 100644 --- a/3.10/generated/Examples/viewUsage_02.generated +++ b/3.10/generated/Examples/viewUsage_02.generated @@ -1,2 +1,2 @@ arangosh> view = db._view("myView"); -[ArangoView 83779, "myView" (type arangosearch)] +[ArangoView 83895, "myView" (type arangosearch)] diff --git a/3.10/generated/Examples/working_with_date_time.generated b/3.10/generated/Examples/working_with_date_time.generated index 6195e2bd25..9b257ca13c 100644 --- a/3.10/generated/Examples/working_with_date_time.generated +++ b/3.10/generated/Examples/working_with_date_time.generated @@ -1,27 +1,27 @@ arangosh> db._create("exampleTime"); -[ArangoCollection 83898, "exampleTime" (type document, status loaded)] +[ArangoCollection 84014, "exampleTime" (type document, status loaded)] arangosh> var timestamps = ["2014-05-07T14:19:09.522","2014-05-07T21:19:09.522","2014-05-08T04:19:09.522","2014-05-08T11:19:09.522","2014-05-08T18:19:09.522"]; arangosh> for (i = 0; i < 5; i++) db.exampleTime.save({value:i, ts: timestamps[i]}) arangosh> db._query("FOR d IN exampleTime FILTER d.ts > '2014-05-07T14:19:09.522' and d.ts < '2014-05-08T18:19:09.522' RETURN d").toArray() [ { - "_key" : "83905", - "_id" : "exampleTime/83905", - "_rev" : "_e4y3qMS---", + "_key" : "84021", + "_id" : "exampleTime/84021", + "_rev" : "_e9T2Bgq--A", "value" : 1, "ts" : "2014-05-07T21:19:09.522" }, { - "_key" : "83907", - "_id" : "exampleTime/83907", - "_rev" : "_e4y3qMW---", + "_key" : "84023", + "_id" : "exampleTime/84023", + "_rev" : "_e9T2Bgq--B", "value" : 2, "ts" : "2014-05-08T04:19:09.522" }, { - "_key" : "83909", - "_id" : "exampleTime/83909", - "_rev" : "_e4y3qMa---", + "_key" : "84025", + "_id" : "exampleTime/84025", + "_rev" : "_e9T2Bgu---", "value" : 3, "ts" : "2014-05-08T11:19:09.522" } diff --git a/3.10/generated/allComments.txt b/3.10/generated/allComments.txt index 692911d9ce..dd77c0ab64 100644 --- a/3.10/generated/allComments.txt +++ b/3.10/generated/allComments.txt @@ -1104,10 +1104,10 @@ arangosh> db._executeTransaction({ collections "agency.supervision-grace-period" : 10, "agency.supervision-ok-threshold" : 5, "agency.wait-for-sync" : true, - "arangosearch.commit-threads" : 5, - "arangosearch.commit-threads-idle" : 5, - "arangosearch.consolidation-threads" : 5, - "arangosearch.consolidation-threads-idle" : 5, + "arangosearch.commit-threads" : 6, + "arangosearch.commit-threads-idle" : 6, + "arangosearch.consolidation-threads" : 6, + "arangosearch.consolidation-threads-idle" : 6, "arangosearch.fail-queries-on-out-of-sync" : false, "arangosearch.skip-recovery" : [ ], "arangosearch.threads" : 0, @@ -1121,7 +1121,7 @@ arangosh> db._executeTransaction({ collections "backup.files-per-batch" : 100, "backup.local-path-prefix" : "/", "cache.rebalancing-interval" : 2000000, - "cache.size" : 16341337088, + "cache.size" : 17872711680, "cluster.agency-endpoint" : [ ], "cluster.api-jwt-policy" : "jwt-compat", "cluster.create-waits-for-sync-replication" : true, @@ -1147,7 +1147,7 @@ arangosh> db._executeTransaction({ collections "cluster.write-concern" : 1, "database.auto-upgrade" : false, "database.check-version" : false, - "database.directory" : "/tmp/arangosh_LKmPPJ/rocksdb-clusterOrNot/single_0/data", + "database.directory" : "/tmp/arangosh_APNGjA/rocksdb-clusterOrNot/single_0/data", "database.extended-names-databases" : true, "database.force-sync-properties" : false, "database.ignore-datafile-errors" : false, @@ -1177,7 +1177,7 @@ arangosh> db._executeTransaction({ collections "javascript.allow-admin-execute" : true, "javascript.allow-external-process-control" : false, "javascript.allow-port-testing" : false, - "javascript.app-path" : "/tmp/arangosh_LKmPPJ/rocksdb-clusterOrNot/single_0/apps", + "javascript.app-path" : "/tmp/arangosh_APNGjA/rocksdb-clusterOrNot/single_0/apps", "javascript.copy-installation" : false, "javascript.enabled" : true, "javascript.endpoints-allowlist" : [ ], @@ -1276,7 +1276,7 @@ arangosh> db._executeTransaction({ collections "log.color" : true, "log.escape-control-chars" : true, "log.escape-unicode-chars" : false, - "log.file" : "/tmp/arangosh_LKmPPJ/rocksdb-clusterOrNot/single_0/log", + "log.file" : "/tmp/arangosh_APNGjA/rocksdb-clusterOrNot/single_0/log", "log.file-group" : "", "log.file-mode" : "", "log.force-direct" : false, @@ -1294,7 +1294,7 @@ arangosh> db._executeTransaction({ collections "log.line-number" : false, "log.max-entry-length" : 134217728, "log.output" : [ - "file:///tmp/arangosh_LKmPPJ/rocksdb-clusterOrNot/single_0/log" + "file:///tmp/arangosh_APNGjA/rocksdb-clusterOrNot/single_0/log" ], "log.performance" : false, "log.prefix" : "", @@ -1315,12 +1315,12 @@ arangosh> db._executeTransaction({ collections "network.max-requests-in-flight" : 65536, "network.protocol" : "", "network.verify-hosts" : false, - "pregel.max-parallelism" : 32, + "pregel.max-parallelism" : 36, "pregel.memory-mapped-files" : true, "pregel.memory-mapped-files-custom-path" : "", "pregel.memory-mapped-files-location-type" : "temp-directory", "pregel.min-parallelism" : 1, - "pregel.parallelism" : 8, + "pregel.parallelism" : 9, "query.allow-collections-in-expressions" : false, "query.cache-entries" : 128, "query.cache-entries-max-size" : 268435456, @@ -1328,11 +1328,11 @@ arangosh> db._executeTransaction({ collections "query.cache-include-system-collections" : false, "query.cache-mode" : "off", "query.fail-on-warning" : false, - "query.global-memory-limit" : 54685393920, + "query.global-memory-limit" : 59647047598, "query.max-nodes-per-callstack" : 250, "query.max-parallelism" : 4, "query.max-runtime" : 0, - "query.memory-limit" : 40507699200, + "query.memory-limit" : 44182998221, "query.memory-limit-override" : true, "query.optimizer-max-plans" : 128, "query.optimizer-rules" : [ ], @@ -1361,7 +1361,7 @@ arangosh> db._executeTransaction({ collections "rocksdb.allow-fallocate" : true, "rocksdb.block-align-data-blocks" : false, "rocksdb.block-cache-shard-bits" : 7, - "rocksdb.block-cache-size" : 19609604505, + "rocksdb.block-cache-size" : 21447254016, "rocksdb.cache-index-and-filter-blocks" : true, "rocksdb.cache-index-and-filter-blocks-with-high-priority" : true, "rocksdb.checksum-type" : "xxHash64", @@ -1391,7 +1391,7 @@ arangosh> db._executeTransaction({ collections "rocksdb.level0-slowdown-trigger" : 16, "rocksdb.level0-stop-trigger" : 256, "rocksdb.limit-open-files-at-startup" : false, - "rocksdb.max-background-jobs" : 32, + "rocksdb.max-background-jobs" : 36, "rocksdb.max-bytes-for-level-base" : 268435456, "rocksdb.max-bytes-for-level-multiplier" : 10, "rocksdb.max-parallel-compactions" : 2, @@ -1412,8 +1412,8 @@ arangosh> db._executeTransaction({ collections "rocksdb.minimum-disk-free-bytes" : 16777216, "rocksdb.minimum-disk-free-percent" : 0.01, "rocksdb.num-levels" : 7, - "rocksdb.num-threads-priority-high" : 16, - "rocksdb.num-threads-priority-low" : 16, + "rocksdb.num-threads-priority-high" : 18, + "rocksdb.num-threads-priority-low" : 18, "rocksdb.num-uncompressed-levels" : 2, "rocksdb.optimize-filters-for-hits" : false, "rocksdb.pending-compactions-slowdown-trigger" : 131072, @@ -1437,8 +1437,8 @@ arangosh> db._executeTransaction({ collections "rocksdb.throttle-scaling-factor" : 17, "rocksdb.throttle-slots" : 120, "rocksdb.throttle-slow-down-writes-trigger" : 8, - "rocksdb.total-write-buffer-size" : 26146139340, - "rocksdb.transaction-lock-stripes" : 32, + "rocksdb.total-write-buffer-size" : 28596338688, + "rocksdb.transaction-lock-stripes" : 36, "rocksdb.transaction-lock-timeout" : 1000, "rocksdb.use-direct-io-for-flush-and-compaction" : false, "rocksdb.use-direct-reads" : false, @@ -1460,20 +1460,20 @@ arangosh> db._executeTransaction({ collections "server.descriptors-minimum" : 8192, "server.early-connections" : false, "server.endpoint" : [ - "tcp://127.0.0.1:13726" + "tcp://127.0.0.1:16336" ], "server.export-metrics-api" : true, "server.export-read-write-metrics" : false, "server.gid" : "", "server.harden" : false, - "server.io-threads" : 8, + "server.io-threads" : 9, "server.local-authentication" : true, "server.maintenance-actions-block" : 2, "server.maintenance-actions-linger" : 3600, - "server.maintenance-slow-threads" : 4, - "server.maintenance-threads" : 9, + "server.maintenance-slow-threads" : 5, + "server.maintenance-threads" : 10, "server.maximal-queue-size" : 4096, - "server.maximal-threads" : 64, + "server.maximal-threads" : 72, "server.minimal-threads" : 4, "server.ongoing-low-priority-multiplier" : 4, "server.prio1-size" : 4096, @@ -1504,10 +1504,10 @@ arangosh> db._executeTransaction({ collections "temp.-intermediate-results-encryption-hardware-acceleration" : true, "temp.intermediate-results-capacity" : 0, "temp.intermediate-results-encryption" : false, - "temp.intermediate-results-path" : "/tmp/arangosh_LKmPPJ/rocksdb-clusterOrNot/single_0/temp-rocksdb-dir/", + "temp.intermediate-results-path" : "/tmp/arangosh_APNGjA/rocksdb-clusterOrNot/single_0/temp-rocksdb-dir/", "temp.intermediate-results-spillover-threshold-memory-usage" : 134217728, "temp.intermediate-results-spillover-threshold-num-rows" : 5000000, - "temp.path" : "/tmp/arangosh_LKmPPJ/rocksdb-clusterOrNot/single_0/tmp", + "temp.path" : "/tmp/arangosh_APNGjA/rocksdb-clusterOrNot/single_0/tmp", "transaction.streaming-idle-timeout" : 60, "transaction.streaming-lock-timeout" : 8, "ttl.frequency" : 30000, @@ -2229,24 +2229,24 @@ arangosh> db.test.save([ ........> ]); [ { - "_id" : "test/71704", - "_key" : "71704", - "_rev" : "_e4y3jaG---" + "_id" : "test/71693", + "_key" : "71693", + "_rev" : "_e9T2_rG--_" }, { - "_id" : "test/71705", - "_key" : "71705", - "_rev" : "_e4y3jaG--_" + "_id" : "test/71694", + "_key" : "71694", + "_rev" : "_e9T2_rG--A" }, { - "_id" : "test/71706", - "_key" : "71706", - "_rev" : "_e4y3jaG--A" + "_id" : "test/71695", + "_key" : "71695", + "_rev" : "_e9T2_rG--B" }, { - "_id" : "test/71707", - "_key" : "71707", - "_rev" : "_e4y3jaG--B" + "_id" : "test/71696", + "_key" : "71696", + "_rev" : "_e9T2_rG--C" } ] arangosh> var view = db._createView("view", "arangosearch", @@ -2421,9 +2421,9 @@ arangosh> var view = db._createView("FOR doc IN view SEARCH ANALYZER(doc.value IN ['regular', 'irregular'], 'filter') RETURN doc"); [ { - "_key" : "71641", - "_id" : "coll/71641", - "_rev" : "_e4y3jSC---", + "_key" : "71630", + "_id" : "coll/71630", + "_rev" : "_e9T2_n2--_", "value" : "regular" } ] @@ -2470,9 +2470,9 @@ arangosh> var view = db._createView("FOR d IN view SEARCH PHRASE(d.text, {TERM: 'B'}, 1, {TERM: 'D'}, 'uncollapsed') RETURN d"); [ { - "_key" : "71564", - "_id" : "coll/71564", - "_rev" : "_e4y3jKW---", + "_key" : "71553", + "_id" : "coll/71553", + "_rev" : "_e9T2_k6---", "text" : "A-B-C-D" } ] @@ -2480,9 +2480,9 @@ arangosh> db._query("FOR d IN view SEARCH PHRA arangosh> db._query("FOR d IN view SEARCH PHRASE(d.text, {TERM: 'B'}, -1, {TERM: 'D'}, 'uncollapsed') RETURN d"); [ { - "_key" : "71564", - "_id" : "coll/71564", - "_rev" : "_e4y3jKW---", + "_key" : "71553", + "_id" : "coll/71553", + "_rev" : "_e9T2_k6---", "text" : "A-B-C-D" } ] @@ -2492,9 +2492,9 @@ arangosh> db._query("FOR d IN view SEARCH PHRA arangosh> db._query("FOR d IN view SEARCH PHRASE(d.text, {TERM: 'B'}, -1, {TERM: 'D'}, 'collapsed') RETURN d"); [ { - "_key" : "71564", - "_id" : "coll/71564", - "_rev" : "_e4y3jKW---", + "_key" : "71553", + "_id" : "coll/71553", + "_rev" : "_e9T2_k6---", "text" : "A-B-C-D" } ] @@ -2834,7 +2834,7 @@ arangosh> db._query(` arangosh> var analyzers = require("@arangodb/analyzers"); arangosh> var a = analyzers.save("geo_json", "geojson", {}, ["frequency", "norm", "position"]); arangosh> db._create("geo"); -[ArangoCollection 71740, "geo" (type document, status loaded)] +[ArangoCollection 71729, "geo" (type document, status loaded)] arangosh> db.geo.save([ ........> { location: { type: "Point", coordinates: [6.937, 50.932] } }, ........> { location: { type: "Point", coordinates: [6.956, 50.941] } }, @@ -2842,19 +2842,19 @@ arangosh> db.geo.save([ ........> ]); [ { - "_id" : "geo/71745", - "_key" : "71745", - "_rev" : "_e4y3jiW---" + "_id" : "geo/71734", + "_key" : "71734", + "_rev" : "_e9T2_uK--_" }, { - "_id" : "geo/71746", - "_key" : "71746", - "_rev" : "_e4y3jiW--_" + "_id" : "geo/71735", + "_key" : "71735", + "_rev" : "_e9T2_uK--A" }, { - "_id" : "geo/71747", - "_key" : "71747", - "_rev" : "_e4y3jiW--A" + "_id" : "geo/71736", + "_key" : "71736", + "_rev" : "_e9T2_uK--B" } ] arangosh> db._createView("geo_view", "arangosearch", { @@ -2868,16 +2868,16 @@ arangosh> db._createView("geo_view"71748, "geo_view" (type arangosearch)] +[ArangoView 71737, "geo_view" (type arangosearch)] arangosh> db._query(`LET point = GEO_POINT(6.93, 50.94) ........> FOR doc IN geo_view ........> SEARCH ANALYZER(GEO_DISTANCE(doc.location, point) < 2000, "geo_json") ........> RETURN MERGE(doc, { distance: GEO_DISTANCE(doc.location, point) })`).toArray(); [ { - "_id" : "geo/71745", - "_key" : "71745", - "_rev" : "_e4y3jiW---", + "_id" : "geo/71734", + "_key" : "71734", + "_rev" : "_e9T2_uK--_", "location" : { "type" : "Point", "coordinates" : [ @@ -2888,9 +2888,9 @@ arangosh> db._query(`LET point = GEO_POINT(6.93, 50 "distance" : 1015.8355739436823 }, { - "_id" : "geo/71746", - "_key" : "71746", - "_rev" : "_e4y3jiW--_", + "_id" : "geo/71735", + "_key" : "71735", + "_rev" : "_e9T2_uK--A", "location" : { "type" : "Point", "coordinates" : [ @@ -2945,7 +2945,7 @@ arangosh> db._query(`LET point = GEO_POINT(6.93, 50 arangosh> var analyzers = require("@arangodb/analyzers"); arangosh> var a = analyzers.save("geo_pair", "geopoint", {}, ["frequency", "norm", "position"]); arangosh> db._create("geo"); -[ArangoCollection 71790, "geo" (type document, status loaded)] +[ArangoCollection 71779, "geo" (type document, status loaded)] arangosh> db.geo.save([ ........> { location: [50.932, 6.937] }, ........> { location: [50.941, 6.956] }, @@ -2953,19 +2953,19 @@ arangosh> db.geo.save([ ........> ]); [ { - "_id" : "geo/71795", - "_key" : "71795", - "_rev" : "_e4y3jvu---" + "_id" : "geo/71784", + "_key" : "71784", + "_rev" : "_e9T2_ye--_" }, { - "_id" : "geo/71796", - "_key" : "71796", - "_rev" : "_e4y3jvu--_" + "_id" : "geo/71785", + "_key" : "71785", + "_rev" : "_e9T2_ye--A" }, { - "_id" : "geo/71797", - "_key" : "71797", - "_rev" : "_e4y3jvu--A" + "_id" : "geo/71786", + "_key" : "71786", + "_rev" : "_e9T2_ye--B" } ] arangosh> db._createView("geo_view", "arangosearch", { @@ -2979,16 +2979,16 @@ arangosh> db._createView("geo_view"71798, "geo_view" (type arangosearch)] +[ArangoView 71787, "geo_view" (type arangosearch)] arangosh> db._query(`LET point = GEO_POINT(6.93, 50.94) ........> FOR doc IN geo_view ........> SEARCH ANALYZER(GEO_DISTANCE(doc.location, point) < 2000, "geo_pair") ........> RETURN MERGE(doc, { distance: GEO_DISTANCE([doc.location[1], doc.location[0]], point) })`).toArray(); [ { - "_id" : "geo/71795", - "_key" : "71795", - "_rev" : "_e4y3jvu---", + "_id" : "geo/71784", + "_key" : "71784", + "_rev" : "_e9T2_ye--_", "location" : [ 50.932, 6.937 @@ -2996,9 +2996,9 @@ arangosh> db._query(`LET point = GEO_POINT(6.93, 50 "distance" : 1015.8355739436823 }, { - "_id" : "geo/71796", - "_key" : "71796", - "_rev" : "_e4y3jvu--_", + "_id" : "geo/71785", + "_key" : "71785", + "_rev" : "_e9T2_ye--A", "location" : [ 50.941, 6.956 @@ -3053,7 +3053,7 @@ arangosh> var a = analyzers.save("lng"] ........> }, ["frequency", "norm", "position"]); arangosh> db._create("geo"); -[ArangoCollection 71765, "geo" (type document, status loaded)] +[ArangoCollection 71754, "geo" (type document, status loaded)] arangosh> db.geo.save([ ........> { location: { lat: 50.932, lng: 6.937 } }, ........> { location: { lat: 50.941, lng: 6.956 } }, @@ -3061,19 +3061,19 @@ arangosh> db.geo.save([ ........> ]); [ { - "_id" : "geo/71770", - "_key" : "71770", - "_rev" : "_e4y3jpK---" + "_id" : "geo/71759", + "_key" : "71759", + "_rev" : "_e9T2_wa--_" }, { - "_id" : "geo/71771", - "_key" : "71771", - "_rev" : "_e4y3jpK--_" + "_id" : "geo/71760", + "_key" : "71760", + "_rev" : "_e9T2_wa--A" }, { - "_id" : "geo/71772", - "_key" : "71772", - "_rev" : "_e4y3jpK--A" + "_id" : "geo/71761", + "_key" : "71761", + "_rev" : "_e9T2_wa--B" } ] arangosh> db._createView("geo_view", "arangosearch", { @@ -3087,16 +3087,16 @@ arangosh> db._createView("geo_view"71773, "geo_view" (type arangosearch)] +[ArangoView 71762, "geo_view" (type arangosearch)] arangosh> db._query(`LET point = GEO_POINT(6.93, 50.94) ........> FOR doc IN geo_view ........> SEARCH ANALYZER(GEO_DISTANCE(doc.location, point) < 2000, "geo_latlng") ........> RETURN MERGE(doc, { distance: GEO_DISTANCE([doc.location.lng, doc.location.lat], point) })`).toArray(); [ { - "_id" : "geo/71770", - "_key" : "71770", - "_rev" : "_e4y3jpK---", + "_id" : "geo/71759", + "_key" : "71759", + "_rev" : "_e9T2_wa--_", "location" : { "lat" : 50.932, "lng" : 6.937 @@ -3104,9 +3104,9 @@ arangosh> db._query(`LET point = GEO_POINT(6.93, 50 "distance" : 1015.8355739436823 }, { - "_id" : "geo/71771", - "_key" : "71771", - "_rev" : "_e4y3jpK--_", + "_id" : "geo/71760", + "_key" : "71760", + "_rev" : "_e9T2_wa--A", "location" : { "lat" : 50.941, "lng" : 6.956 @@ -3212,18 +3212,18 @@ arangosh> analyzers.analyzer("text_en"var analyzers = require("@arangodb/analyzers"); arangosh> analyzers.toArray(); [ - [ArangoAnalyzer "text_sv" (type text)], [ArangoAnalyzer "text_pt" (type text)], [ArangoAnalyzer "text_no" (type text)], - [ArangoAnalyzer "text_nl" (type text)], [ArangoAnalyzer "text_it" (type text)], - [ArangoAnalyzer "text_fr" (type text)], - [ArangoAnalyzer "text_zh" (type text)], - [ArangoAnalyzer "text_fi" (type text)], - [ArangoAnalyzer "text_ru" (type text)], [ArangoAnalyzer "text_es" (type text)], + [ArangoAnalyzer "text_sv" (type text)], [ArangoAnalyzer "text_en" (type text)], + [ArangoAnalyzer "text_zh" (type text)], + [ArangoAnalyzer "text_nl" (type text)], + [ArangoAnalyzer "text_fr" (type text)], [ArangoAnalyzer "text_de" (type text)], + [ArangoAnalyzer "text_ru" (type text)], + [ArangoAnalyzer "text_fi" (type text)], [ArangoAnalyzer "identity" (type identity)], [ArangoAnalyzer "_system::delimiter_hyphen" (type delimiter)], [ArangoAnalyzer "_system::custom" (type text)] @@ -3420,7 +3420,7 @@ arangosh> tasks.register({ { "id" : "mytask-1", "name" : "this is a sample task to spawn a slow aql query", - "created" : 1665058526.743889, + "created" : 1666270583.4779425, "type" : "timed", "offset" : 0, "command" : "(function (params) { require('@arangodb').db._query('FOR sleepLoooong IN 1..5 LET sleepLoooonger = SLEEP(1000) RETURN sleepLoooong'); } )(params);", @@ -3429,14 +3429,14 @@ arangosh> tasks.register({ arangosh> queries.current(); [ { - "id" : "67670", + "id" : "67667", "database" : "_system", "user" : "root", "query" : "FOR sleepLoooong IN 1..5 LET sleepLoooonger = SLEEP(1000) RETURN sleepLoooong", "bindVars" : { }, - "started" : "2022-10-06T12:15:26Z", - "runTime" : 1.0374008549842983, + "started" : "2022-10-20T12:56:23Z", + "runTime" : 1.0201851669999087, "state" : "executing", "stream" : false } @@ -3527,33 +3527,33 @@ arangosh> queries.kill(runningQueries[0].id) arangosh> var a = db._query("FOR x IN five RETURN x"); arangosh> while (a.hasNext()) print(a.next()); { - "_key" : "73281", - "_id" : "five/73281", - "_rev" : "_e4y3lcK---", + "_key" : "73270", + "_id" : "five/73270", + "_rev" : "_e9T2AQ2---", "name" : "one" } { - "_key" : "73283", - "_id" : "five/73283", - "_rev" : "_e4y3lcO---", + "_key" : "73272", + "_id" : "five/73272", + "_rev" : "_e9T2AQ2--_", "name" : "two" } { - "_key" : "73285", - "_id" : "five/73285", - "_rev" : "_e4y3lcS---", + "_key" : "73274", + "_id" : "five/73274", + "_rev" : "_e9T2AQ2--A", "name" : "three" } { - "_key" : "73287", - "_id" : "five/73287", - "_rev" : "_e4y3lcW---", + "_key" : "73276", + "_id" : "five/73276", + "_rev" : "_e9T2AQ2--B", "name" : "four" } { - "_key" : "73289", - "_id" : "five/73289", - "_rev" : "_e4y3lca---", + "_key" : "73278", + "_id" : "five/73278", + "_rev" : "_e9T2AQ2--C", "name" : "five" } @@ -3578,9 +3578,9 @@ arangosh> while (a.hasNext()) print(a.next(
 arangosh> db._query("FOR x IN five RETURN x").next();
 { 
-  "_key" : "73300", 
-  "_id" : "five/73300", 
-  "_rev" : "_e4y3ld----", 
+  "_key" : "73289", 
+  "_id" : "five/73289", 
+  "_rev" : "_e9T2AR---_", 
   "name" : "one" 
 }
 
@@ -3612,41 +3612,41 @@ arangosh> var result = db.users.all().toArr ........> print(result); [ { - "_key" : "73996", - "_id" : "users/73996", - "_rev" : "_e4y3l3q---", + "_key" : "73985", + "_id" : "users/73985", + "_rev" : "_e9T2AXe--_", "name" : "Gerhard" }, { - "_key" : "73998", - "_id" : "users/73998", - "_rev" : "_e4y3l3u---", + "_key" : "73987", + "_id" : "users/73987", + "_rev" : "_e9T2AXi---", "name" : "Helmut" }, { - "_key" : "74000", - "_id" : "users/74000", - "_rev" : "_e4y3l3y---", + "_key" : "73989", + "_id" : "users/73989", + "_rev" : "_e9T2AXi--_", "name" : "Angela" } ] [ { - "_key" : "73996", - "_id" : "users/73996", - "_rev" : "_e4y3l3q---", + "_key" : "73985", + "_id" : "users/73985", + "_rev" : "_e9T2AXe--_", "name" : "Gerhard" }, { - "_key" : "73998", - "_id" : "users/73998", - "_rev" : "_e4y3l3u---", + "_key" : "73987", + "_id" : "users/73987", + "_rev" : "_e9T2AXi---", "name" : "Helmut" }, { - "_key" : "74000", - "_id" : "users/74000", - "_rev" : "_e4y3l3y---", + "_key" : "73989", + "_id" : "users/73989", + "_rev" : "_e9T2AXi--_", "name" : "Angela" } ] @@ -3691,41 +3691,41 @@ arangosh> var result = [ ]; ........> print(result); [ { - "_key" : "73977", - "_id" : "users/73977", - "_rev" : "_e4y3l2e---", + "_key" : "73966", + "_id" : "users/73966", + "_rev" : "_e9T2AXW---", "name" : "Gerhard" }, { - "_key" : "73979", - "_id" : "users/73979", - "_rev" : "_e4y3l2i---", + "_key" : "73968", + "_id" : "users/73968", + "_rev" : "_e9T2AXW--_", "name" : "Helmut" }, { - "_key" : "73981", - "_id" : "users/73981", - "_rev" : "_e4y3l2m---", + "_key" : "73970", + "_id" : "users/73970", + "_rev" : "_e9T2AXW--A", "name" : "Angela" } ] [ { - "_key" : "73977", - "_id" : "users/73977", - "_rev" : "_e4y3l2e---", + "_key" : "73966", + "_id" : "users/73966", + "_rev" : "_e9T2AXW---", "name" : "Gerhard" }, { - "_key" : "73979", - "_id" : "users/73979", - "_rev" : "_e4y3l2i---", + "_key" : "73968", + "_id" : "users/73968", + "_rev" : "_e9T2AXW--_", "name" : "Helmut" }, { - "_key" : "73981", - "_id" : "users/73981", - "_rev" : "_e4y3l2m---", + "_key" : "73970", + "_id" : "users/73970", + "_rev" : "_e9T2AXW--A", "name" : "Angela" } ] @@ -4153,10 +4153,10 @@ arangosh> db._query(`FOR doc IN food_view
 arangosh> col = db.example;
-[ArangoCollection 72962, "example" (type document, status loaded)]
+[ArangoCollection 72951, "example" (type document, status loaded)]
 arangosh> col.drop();
 arangosh> col;
-[ArangoCollection 72962, "example" (type document, status deleted)]
+[ArangoCollection 72951, "example" (type document, status deleted)]
 
@@ -4172,10 +4172,10 @@ arangosh> col;
 arangosh> col = db._example;
-[ArangoCollection 72969, "_example" (type document, status loaded)]
+[ArangoCollection 72958, "_example" (type document, status loaded)]
 arangosh> col.drop({ isSystem: true });
 arangosh> col;
-[ArangoCollection 72969, "_example" (type document, status deleted)]
+[ArangoCollection 72958, "_example" (type document, status deleted)]
 
@@ -4191,12 +4191,12 @@ arangosh> col; @@ -4386,10 +4386,10 @@ arangosh> col;
 arangosh> col = db.example;
-[ArangoCollection 61262, "example" (type document, status loaded)]
+[ArangoCollection 61259, "example" (type document, status loaded)]
 arangosh> col.unload();
 arangosh> col;
-[ArangoCollection 61262, "example" (type document, status loaded)]
+[ArangoCollection 61259, "example" (type document, status loaded)]
 
@@ -4405,10 +4405,10 @@ arangosh> col;
 arangosh> c = db.example;
-[ArangoCollection 73118, "example" (type document, status loaded)]
+[ArangoCollection 73107, "example" (type document, status loaded)]
 arangosh> c.rename("better-example");
 arangosh> c;
-[ArangoCollection 73118, "better-example" (type document, status loaded)]
+[ArangoCollection 73107, "better-example" (type document, status loaded)]
 
@@ -4424,7 +4424,7 @@ arangosh> c;
 arangosh> db._collection("demo");
-[ArangoCollection 95, "demo" (type document, status loaded)]
+[ArangoCollection 91, "demo" (type document, status loaded)]
 
@@ -4456,10 +4456,10 @@ arangosh> db._collection("unknown" @@ -4627,9 +4627,9 @@ arangosh> db._collections(); [ArangoCollection 13, "_statistics15" (type document, status loaded)], [ArangoCollection 16, "_statisticsRaw" (type document, status loaded)], [ArangoCollection 4, "_users" (type document, status loaded)], - [ArangoCollection 101, "animals" (type document, status loaded)], - [ArangoCollection 95, "demo" (type document, status loaded)], - [ArangoCollection 73139, "example" (type document, status loaded)] + [ArangoCollection 97, "animals" (type document, status loaded)], + [ArangoCollection 91, "demo" (type document, status loaded)], + [ArangoCollection 73128, "example" (type document, status loaded)] ]
Hide execution results
@@ -4651,7 +4651,7 @@ arangosh> db._collections();
 arangosh> db.example;
-[ArangoCollection 72871, "example" (type document, status loaded)]
+[ArangoCollection 72860, "example" (type document, status loaded)]
 
@@ -4667,10 +4667,10 @@ arangosh> db.example;
 arangosh> col = db.example;
-[ArangoCollection 72916, "example" (type document, status loaded)]
+[ArangoCollection 72905, "example" (type document, status loaded)]
 arangosh> db._drop(col);
 arangosh> col;
-[ArangoCollection 72916, "example" (type document, status loaded)]
+[ArangoCollection 72905, "example" (type document, status loaded)]
 
@@ -4686,10 +4686,10 @@ arangosh> col;
 arangosh> col = db.example;
-[ArangoCollection 72923, "example" (type document, status loaded)]
+[ArangoCollection 72912, "example" (type document, status loaded)]
 arangosh> db._drop("example");
 arangosh> col;
-[ArangoCollection 72923, "example" (type document, status deleted)]
+[ArangoCollection 72912, "example" (type document, status deleted)]
 
@@ -4705,10 +4705,10 @@ arangosh> col;
 arangosh> col = db._example;
-[ArangoCollection 72930, "_example" (type document, status loaded)]
+[ArangoCollection 72919, "_example" (type document, status loaded)]
 arangosh> db._drop("_example", { isSystem: true });
 arangosh> col;
-[ArangoCollection 72930, "_example" (type document, status deleted)]
+[ArangoCollection 72919, "_example" (type document, status deleted)]
 
@@ -4724,12 +4724,12 @@ arangosh> col;
@@ -5259,16 +5259,16 @@ arangosh> db._document("example/12345"
arangosh> a1 = db.example.insert({ a : 1 }); { - "_id" : "example/73640", - "_key" : "73640", - "_rev" : "_e4y3ltS---" + "_id" : "example/73629", + "_key" : "73629", + "_rev" : "_e9T2AUq--_" } arangosh> a2 = db._replace(a1, { a : 2 }); { - "_id" : "example/73640", - "_key" : "73640", - "_rev" : "_e4y3ltS--_", - "_oldRev" : "_e4y3ltS---" + "_id" : "example/73629", + "_key" : "73629", + "_rev" : "_e9T2AUq--A", + "_oldRev" : "_e9T2AUq--_" } arangosh> a3 = db._replace(a1, { a : 3 }); [ArangoError 1200: conflict, _rev values do not match] @@ -5295,16 +5295,16 @@ arangosh> a3 = db._replace(a1, { a : arangosh> a1 = db.example.insert({ a : 1 }); { - "_id" : "example/73418", - "_key" : "73418", - "_rev" : "_e4y3li2---" + "_id" : "example/73407", + "_key" : "73407", + "_rev" : "_e9T2ASO--_" } arangosh> a2 = db._update(a1, { b : 2 }); { - "_id" : "example/73418", - "_key" : "73418", - "_rev" : "_e4y3li6---", - "_oldRev" : "_e4y3li2---" + "_id" : "example/73407", + "_key" : "73407", + "_rev" : "_e9T2ASO--A", + "_oldRev" : "_e9T2ASO--_" } arangosh> a3 = db._update(a1, { c : 3 }); [ArangoError 1200: conflict, _rev values do not match] @@ -5331,15 +5331,15 @@ arangosh> a3 = db._update(a1, { c : arangosh> a1 = db.example.insert({ a : 1 }); { - "_id" : "example/73539", - "_key" : "73539", - "_rev" : "_e4y3loS---" + "_id" : "example/73528", + "_key" : "73528", + "_rev" : "_e9T2ATu---" } arangosh> db._remove(a1); { - "_id" : "example/73539", - "_key" : "73539", - "_rev" : "_e4y3loS---" + "_id" : "example/73528", + "_key" : "73528", + "_rev" : "_e9T2ATu---" } arangosh> db._remove(a1); [ArangoError 1202: document not found] @@ -5369,24 +5369,24 @@ arangosh> db._remove(a1, {overwrite: arangosh> a1 = db.example.insert({ a : 1 }); { - "_id" : "example/73516", - "_key" : "73516", - "_rev" : "_e4y3lnS---" + "_id" : "example/73505", + "_key" : "73505", + "_rev" : "_e9T2ATe--_" } arangosh> a2 = db._replace(a1, { a : 2 }); { - "_id" : "example/73516", - "_key" : "73516", - "_rev" : "_e4y3lnW---", - "_oldRev" : "_e4y3lnS---" + "_id" : "example/73505", + "_key" : "73505", + "_rev" : "_e9T2ATe--A", + "_oldRev" : "_e9T2ATe--_" } arangosh> db._remove(a1); [ArangoError 1200: conflict, _rev values do not match] arangosh> db._remove(a1, {overwrite: true} ); { - "_id" : "example/73516", - "_key" : "73516", - "_rev" : "_e4y3lnW---" + "_id" : "example/73505", + "_key" : "73505", + "_rev" : "_e9T2ATe--A" } arangosh> db._document(a1); [ArangoError 1202: document not found] @@ -5417,14 +5417,14 @@ arangosh> db.example.insert({ _key: "_id" : "example/11265325374", "_key" : "11265325374", - "_rev" : "_e4y3ln6---" + "_rev" : "_e9T2ATm--_" } arangosh> db.example.remove("example/11265325374", ........> { overwrite: true, waitForSync: false}) { "_id" : "example/11265325374", "_key" : "11265325374", - "_rev" : "_e4y3ln6---" + "_rev" : "_e9T2ATm--_" }
Hide execution results
@@ -5449,64 +5449,64 @@ arangosh> db.example.remove("example/112653253
 arangosh> db.five.insert({ name : "one" });
 { 
-  "_id" : "five/114", 
-  "_key" : "114", 
-  "_rev" : "_e4y2kGC---" 
+  "_id" : "five/110", 
+  "_key" : "110", 
+  "_rev" : "_e9T1QkW--_" 
 }
 arangosh> db.five.insert({ name : "two" });
 { 
-  "_id" : "five/116", 
-  "_key" : "116", 
-  "_rev" : "_e4y2kGK---" 
+  "_id" : "five/112", 
+  "_key" : "112", 
+  "_rev" : "_e9T1Qka---" 
 }
 arangosh> db.five.insert({ name : "three" });
 { 
-  "_id" : "five/118", 
-  "_key" : "118", 
-  "_rev" : "_e4y2kGO---" 
+  "_id" : "five/114", 
+  "_key" : "114", 
+  "_rev" : "_e9T1Qka--_" 
 }
 arangosh> db.five.insert({ name : "four" });
 { 
-  "_id" : "five/120", 
-  "_key" : "120", 
-  "_rev" : "_e4y2kGW---" 
+  "_id" : "five/116", 
+  "_key" : "116", 
+  "_rev" : "_e9T1Qka--A" 
 }
 arangosh> db.five.insert({ name : "five" });
 { 
-  "_id" : "five/122", 
-  "_key" : "122", 
-  "_rev" : "_e4y2kGa---" 
+  "_id" : "five/118", 
+  "_key" : "118", 
+  "_rev" : "_e9T1Qka--B" 
 }
 arangosh> db.five.all().toArray();
 [ 
   { 
-    "_key" : "114", 
-    "_id" : "five/114", 
-    "_rev" : "_e4y2kGC---", 
+    "_key" : "110", 
+    "_id" : "five/110", 
+    "_rev" : "_e9T1QkW--_", 
     "name" : "one" 
   }, 
   { 
-    "_key" : "116", 
-    "_id" : "five/116", 
-    "_rev" : "_e4y2kGK---", 
+    "_key" : "112", 
+    "_id" : "five/112", 
+    "_rev" : "_e9T1Qka---", 
     "name" : "two" 
   }, 
   { 
-    "_key" : "118", 
-    "_id" : "five/118", 
-    "_rev" : "_e4y2kGO---", 
+    "_key" : "114", 
+    "_id" : "five/114", 
+    "_rev" : "_e9T1Qka--_", 
     "name" : "three" 
   }, 
   { 
-    "_key" : "120", 
-    "_id" : "five/120", 
-    "_rev" : "_e4y2kGW---", 
+    "_key" : "116", 
+    "_id" : "five/116", 
+    "_rev" : "_e9T1Qka--A", 
     "name" : "four" 
   }, 
   { 
-    "_key" : "122", 
-    "_id" : "five/122", 
-    "_rev" : "_e4y2kGa---", 
+    "_key" : "118", 
+    "_id" : "five/118", 
+    "_rev" : "_e9T1Qka--B", 
     "name" : "five" 
   } 
 ]
@@ -5536,46 +5536,46 @@ arangosh> db.five.all().toArray();
 
 arangosh> db.five.insert({ name : "one" });
 { 
-  "_id" : "five/134", 
-  "_key" : "134", 
-  "_rev" : "_e4y2kIy---" 
+  "_id" : "five/130", 
+  "_key" : "130", 
+  "_rev" : "_e9T1QlK--_" 
 }
 arangosh> db.five.insert({ name : "two" });
 { 
-  "_id" : "five/136", 
-  "_key" : "136", 
-  "_rev" : "_e4y2kI2---" 
+  "_id" : "five/132", 
+  "_key" : "132", 
+  "_rev" : "_e9T1QlK--A" 
 }
 arangosh> db.five.insert({ name : "three" });
 { 
-  "_id" : "five/138", 
-  "_key" : "138", 
-  "_rev" : "_e4y2kI6---" 
+  "_id" : "five/134", 
+  "_key" : "134", 
+  "_rev" : "_e9T1QlO---" 
 }
 arangosh> db.five.insert({ name : "four" });
 { 
-  "_id" : "five/140", 
-  "_key" : "140", 
-  "_rev" : "_e4y2kI6--_" 
+  "_id" : "five/136", 
+  "_key" : "136", 
+  "_rev" : "_e9T1QlO--_" 
 }
 arangosh> db.five.insert({ name : "five" });
 { 
-  "_id" : "five/142", 
-  "_key" : "142", 
-  "_rev" : "_e4y2kJ----" 
+  "_id" : "five/138", 
+  "_key" : "138", 
+  "_rev" : "_e9T1QlO--A" 
 }
 arangosh> db.five.all().limit(2).toArray();
 [ 
   { 
-    "_key" : "134", 
-    "_id" : "five/134", 
-    "_rev" : "_e4y2kIy---", 
+    "_key" : "130", 
+    "_id" : "five/130", 
+    "_rev" : "_e9T1QlK--_", 
     "name" : "one" 
   }, 
   { 
-    "_key" : "136", 
-    "_id" : "five/136", 
-    "_rev" : "_e4y2kI2---", 
+    "_key" : "132", 
+    "_id" : "five/132", 
+    "_rev" : "_e9T1QlK--A", 
     "name" : "two" 
   } 
 ]
@@ -5605,40 +5605,40 @@ arangosh> db.five.all().limit(2).toArray();
 
 arangosh> db.users.insert({ name: "Gerhard" });
 { 
-  "_id" : "users/154", 
-  "_key" : "154", 
-  "_rev" : "_e4y2kJy---" 
+  "_id" : "users/150", 
+  "_key" : "150", 
+  "_rev" : "_e9T1Qla--_" 
 }
 arangosh> db.users.insert({ name: "Helmut" });
 { 
-  "_id" : "users/156", 
-  "_key" : "156", 
-  "_rev" : "_e4y2kJ2---" 
+  "_id" : "users/152", 
+  "_key" : "152", 
+  "_rev" : "_e9T1Qle---" 
 }
 arangosh> db.users.insert({ name: "Angela" });
 { 
-  "_id" : "users/158", 
-  "_key" : "158", 
-  "_rev" : "_e4y2kJ6---" 
+  "_id" : "users/154", 
+  "_key" : "154", 
+  "_rev" : "_e9T1Qle--_" 
 }
 arangosh> db.users.all().toArray();
 [ 
   { 
-    "_key" : "154", 
-    "_id" : "users/154", 
-    "_rev" : "_e4y2kJy---", 
+    "_key" : "150", 
+    "_id" : "users/150", 
+    "_rev" : "_e9T1Qla--_", 
     "name" : "Gerhard" 
   }, 
   { 
-    "_key" : "156", 
-    "_id" : "users/156", 
-    "_rev" : "_e4y2kJ2---", 
+    "_key" : "152", 
+    "_id" : "users/152", 
+    "_rev" : "_e9T1Qle---", 
     "name" : "Helmut" 
   }, 
   { 
-    "_key" : "158", 
-    "_id" : "users/158", 
-    "_rev" : "_e4y2kJ6---", 
+    "_key" : "154", 
+    "_id" : "users/154", 
+    "_rev" : "_e9T1Qle--_", 
     "name" : "Angela" 
   } 
 ]
@@ -5647,9 +5647,9 @@ arangosh> db.users.byExample({ "_id""name" : "Gerhard" }).toArray();
 [ 
   { 
-    "_key" : "154", 
-    "_id" : "users/154", 
-    "_rev" : "_e4y2kJy---", 
+    "_key" : "150", 
+    "_id" : "users/150", 
+    "_rev" : "_e9T1Qla--_", 
     "name" : "Gerhard" 
   } 
 ]
@@ -5682,28 +5682,28 @@ arangosh> db.users.byExample({ "name"
 arangosh> db.users.insert({ name: "Gerhard" });
 { 
-  "_id" : "users/176", 
-  "_key" : "176", 
-  "_rev" : "_e4y2kLK---" 
+  "_id" : "users/172", 
+  "_key" : "172", 
+  "_rev" : "_e9T1Qlu--_" 
 }
 arangosh> db.users.insert({ name: "Helmut" });
 { 
-  "_id" : "users/178", 
-  "_key" : "178", 
-  "_rev" : "_e4y2kLS---" 
+  "_id" : "users/174", 
+  "_key" : "174", 
+  "_rev" : "_e9T1Qly---" 
 }
 arangosh> db.users.insert({ name: "Angela" });
 { 
-  "_id" : "users/180", 
-  "_key" : "180", 
-  "_rev" : "_e4y2kLS--_" 
+  "_id" : "users/176", 
+  "_key" : "176", 
+  "_rev" : "_e9T1Qly--_" 
 }
 arangosh> var a = db.users.byExample( {"name" : "Angela" } );
 arangosh> while (a.hasNext()) print(a.next());
 { 
-  "_key" : "180", 
-  "_id" : "users/180", 
-  "_rev" : "_e4y2kLS--_", 
+  "_key" : "176", 
+  "_id" : "users/176", 
+  "_rev" : "_e9T1Qly--_", 
   "name" : "Angela" 
 }
 
@@ -5731,9 +5731,9 @@ arangosh> while (a.hasNext()) print(a.next(
 arangosh> db.users.firstExample("name", "Angela");
 { 
-  "_key" : "73003", 
-  "_id" : "users/73003", 
-  "_rev" : "_e4y3lG6--_", 
+  "_key" : "72992", 
+  "_id" : "users/72992", 
+  "_rev" : "_e9T2AKG--B", 
   "name" : "Angela" 
 }
 
@@ -5775,7 +5775,7 @@ arangosh> db.example.document("example/2873916 { "_key" : "2873916", "_id" : "example/2873916", - "_rev" : "_e4y3lm6---" + "_rev" : "_e9T2ATa--_" }
Hide execution results
@@ -5800,7 +5800,7 @@ arangosh> db.example.document("2873916""_key" : "2873916", "_id" : "example/2873916", - "_rev" : "_e4y3llm---" + "_rev" : "_e9T2ATK--_" }
Hide execution results
@@ -5825,7 +5825,7 @@ arangosh> db.example.document({_id: "_key" : "2873916", "_id" : "example/2873916", - "_rev" : "_e4y3lm----" + "_rev" : "_e9T2ATO--_" }
Hide execution results
@@ -5851,12 +5851,12 @@ arangosh> db.example.document(["2873916"< { "_key" : "2873916", "_id" : "example/2873916", - "_rev" : "_e4y3lma---" + "_rev" : "_e9T2ATW---" }, { "_key" : "2873917", "_id" : "example/2873917", - "_rev" : "_e4y3lma--_" + "_rev" : "_e9T2ATW--_" } ] @@ -5922,61 +5922,61 @@ arangosh> db.example.documents(keys); { "_key" : "test0", "_id" : "example/test0", - "_rev" : "_e4y3lSm---", + "_rev" : "_e9T2ANy---", "value" : 0 }, { "_key" : "test1", "_id" : "example/test1", - "_rev" : "_e4y3lSq---", + "_rev" : "_e9T2ANy--_", "value" : 1 }, { "_key" : "test2", "_id" : "example/test2", - "_rev" : "_e4y3lSu---", + "_rev" : "_e9T2ANy--A", "value" : 2 }, { "_key" : "test3", "_id" : "example/test3", - "_rev" : "_e4y3lSy---", + "_rev" : "_e9T2ANy--B", "value" : 3 }, { "_key" : "test4", "_id" : "example/test4", - "_rev" : "_e4y3lS2---", + "_rev" : "_e9T2ANy--C", "value" : 4 }, { "_key" : "test5", "_id" : "example/test5", - "_rev" : "_e4y3lS2--_", + "_rev" : "_e9T2ANy--D", "value" : 5 }, { "_key" : "test6", "_id" : "example/test6", - "_rev" : "_e4y3lS6---", + "_rev" : "_e9T2ANy--E", "value" : 6 }, { "_key" : "test7", "_id" : "example/test7", - "_rev" : "_e4y3lT----", + "_rev" : "_e9T2ANy--F", "value" : 7 }, { "_key" : "test8", "_id" : "example/test8", - "_rev" : "_e4y3lTC---", + "_rev" : "_e9T2AN2---", "value" : 8 }, { "_key" : "test9", "_id" : "example/test9", - "_rev" : "_e4y3lTC--_", + "_rev" : "_e9T2AN2--_", "value" : 9 } ] @@ -6007,15 +6007,15 @@ arangosh> db.example.documents(keys);
 arangosh> db.example.insert({ Hello : "World" });
 { 
-  "_id" : "example/73443", 
-  "_key" : "73443", 
-  "_rev" : "_e4y3lj2---" 
+  "_id" : "example/73432", 
+  "_key" : "73432", 
+  "_rev" : "_e9T2ASm--_" 
 }
 arangosh> db.example.insert({ Hello : "World" }, {waitForSync: true});
 { 
-  "_id" : "example/73445", 
-  "_key" : "73445", 
-  "_rev" : "_e4y3lj2--_" 
+  "_id" : "example/73434", 
+  "_key" : "73434", 
+  "_rev" : "_e9T2ASm--A" 
 }
 
Hide execution results
@@ -6040,27 +6040,27 @@ arangosh> db.example.insert({ Hello : Hello : "World" }, {Hello: "there"}]) [ { - "_id" : "example/73430", - "_key" : "73430", - "_rev" : "_e4y3ljS--_" + "_id" : "example/73419", + "_key" : "73419", + "_rev" : "_e9T2ASW---" }, { - "_id" : "example/73431", - "_key" : "73431", - "_rev" : "_e4y3ljS--A" + "_id" : "example/73420", + "_key" : "73420", + "_rev" : "_e9T2ASW--_" } ] arangosh> db.example.insert([{ Hello : "World" }, {}], {waitForSync: true}); [ { - "_id" : "example/73433", - "_key" : "73433", - "_rev" : "_e4y3ljW---" + "_id" : "example/73422", + "_key" : "73422", + "_rev" : "_e9T2ASW--A" }, { - "_id" : "example/73434", - "_key" : "73434", - "_rev" : "_e4y3ljW--_" + "_id" : "example/73423", + "_key" : "73423", + "_rev" : "_e9T2ASW--B" } ] @@ -6087,18 +6087,18 @@ arangosh> db.example.insert({ _key : "_id" : "example/666", "_key" : "666", - "_rev" : "_e4y3lkW---" + "_rev" : "_e9T2AS6--_" } arangosh> db.example.insert({ _key : "666", Hello : "Universe" }, {overwrite: true, returnOld: true}); { "_id" : "example/666", "_key" : "666", - "_rev" : "_e4y3lka---", - "_oldRev" : "_e4y3lkW---", + "_rev" : "_e9T2AS6--A", + "_oldRev" : "_e9T2AS6--_", "old" : { "_key" : "666", "_id" : "example/666", - "_rev" : "_e4y3lkW---", + "_rev" : "_e9T2AS6--_", "Hello" : "World" } } @@ -6124,16 +6124,16 @@ arangosh> db.example.insert({ _key : arangosh> a1 = db.example.insert({ a : 1 }); { - "_id" : "example/73551", - "_key" : "73551", - "_rev" : "_e4y3lo2---" + "_id" : "example/73540", + "_key" : "73540", + "_rev" : "_e9T2ATy--_" } arangosh> a2 = db.example.replace(a1, { a : 2 }); { - "_id" : "example/73551", - "_key" : "73551", - "_rev" : "_e4y3lo6---", - "_oldRev" : "_e4y3lo2---" + "_id" : "example/73540", + "_key" : "73540", + "_rev" : "_e9T2ATy--A", + "_oldRev" : "_e9T2ATy--_" } arangosh> a3 = db.example.replace(a1, { a : 3 }); [ArangoError 1200: conflict, _rev values do not match] @@ -6162,14 +6162,14 @@ arangosh> a1 = db.example.insert({ a : "_id" : "example/3903045", "_key" : "3903045", - "_rev" : "_e4y3lpa--_" + "_rev" : "_e9T2AT6--A" } arangosh> a2 = db.example.replace("example/3903044", { a : 2 }); { "_id" : "example/3903044", "_key" : "3903044", - "_rev" : "_e4y3lpe---", - "_oldRev" : "_e4y3lpa---" + "_rev" : "_e9T2AT6--B", + "_oldRev" : "_e9T2AT6--_" }
Hide execution results
@@ -6193,52 +6193,52 @@ arangosh> a2 = db.example.replace("example/390
 arangosh> a1 = db.example.insert({"a" : 1});
 { 
-  "_id" : "example/73574", 
-  "_key" : "73574", 
-  "_rev" : "_e4y3lpy---" 
+  "_id" : "example/73563", 
+  "_key" : "73563", 
+  "_rev" : "_e9T2AU---_" 
 }
 arangosh> a2 = db.example.update(a1, {"b" : 2, "c" : 3});
 { 
-  "_id" : "example/73574", 
-  "_key" : "73574", 
-  "_rev" : "_e4y3lp2---", 
-  "_oldRev" : "_e4y3lpy---" 
+  "_id" : "example/73563", 
+  "_key" : "73563", 
+  "_rev" : "_e9T2AUC---", 
+  "_oldRev" : "_e9T2AU---_" 
 }
 arangosh> a3 = db.example.update(a1, {"d" : 4});
 [ArangoError 1200: conflict, _rev values do not match]
 arangosh> a4 = db.example.update(a2, {"e" : 5, "f" : 6 });
 { 
-  "_id" : "example/73574", 
-  "_key" : "73574", 
-  "_rev" : "_e4y3lp6---", 
-  "_oldRev" : "_e4y3lp2---" 
+  "_id" : "example/73563", 
+  "_key" : "73563", 
+  "_rev" : "_e9T2AUC--_", 
+  "_oldRev" : "_e9T2AUC---" 
 }
 arangosh> db.example.document(a4);
 { 
-  "_key" : "73574", 
-  "_id" : "example/73574", 
-  "_rev" : "_e4y3lp6---", 
+  "_key" : "73563", 
+  "_id" : "example/73563", 
+  "_rev" : "_e9T2AUC--_", 
   "a" : 1, 
-  "b" : 2, 
   "c" : 3, 
+  "b" : 2, 
   "e" : 5, 
   "f" : 6 
 }
 arangosh> a5 = db.example.update(a4, {"a" : 1, c : 9, e : 42 });
 { 
-  "_id" : "example/73574", 
-  "_key" : "73574", 
-  "_rev" : "_e4y3lqC---", 
-  "_oldRev" : "_e4y3lp6---" 
+  "_id" : "example/73563", 
+  "_key" : "73563", 
+  "_rev" : "_e9T2AUC--A", 
+  "_oldRev" : "_e9T2AUC--_" 
 }
 arangosh> db.example.document(a5);
 { 
-  "_key" : "73574", 
-  "_id" : "example/73574", 
-  "_rev" : "_e4y3lqC---", 
+  "_key" : "73563", 
+  "_id" : "example/73563", 
+  "_rev" : "_e9T2AUC--A", 
   "a" : 1, 
-  "b" : 2, 
   "c" : 9, 
+  "b" : 2, 
   "e" : 42, 
   "f" : 6 
 }
@@ -6271,14 +6271,14 @@ arangosh> a1 = db.example.insert({"a""_id" : "example/18612116", 
   "_key" : "18612116", 
-  "_rev" : "_e4y3lse---" 
+  "_rev" : "_e9T2AUe--A" 
 }
 arangosh> a2 = db.example.update("example/18612115", { "x" : 1, "y" : 2 });
 { 
   "_id" : "example/18612115", 
   "_key" : "18612115", 
-  "_rev" : "_e4y3lsi---", 
-  "_oldRev" : "_e4y3lsa---" 
+  "_rev" : "_e9T2AUi---", 
+  "_oldRev" : "_e9T2AUe--_" 
 }
 
Hide execution results
@@ -6304,54 +6304,54 @@ arangosh> db.example.insert({"a" : { "_id" : "example/19988372", "_key" : "19988372", - "_rev" : "_e4y3lrm---" + "_rev" : "_e9T2AUW--A" } arangosh> db.example.update("example/19988371", ........> { "b" : null, "c" : null, "d" : 3 }); { "_id" : "example/19988371", "_key" : "19988371", - "_rev" : "_e4y3lrq---", - "_oldRev" : "_e4y3lri---" + "_rev" : "_e9T2AUW--B", + "_oldRev" : "_e9T2AUW--_" } arangosh> db.example.document("example/19988371"); { "_key" : "19988371", "_id" : "example/19988371", - "_rev" : "_e4y3lrq---", + "_rev" : "_e9T2AUW--B", "d" : 3, - "c" : null, - "b" : null + "b" : null, + "c" : null } arangosh> db.example.update("example/19988371", { "a" : null }, false, false); { "_id" : "example/19988371", "_key" : "19988371", - "_rev" : "_e4y3lru---", - "_oldRev" : "_e4y3lrq---" + "_rev" : "_e9T2AUW--C", + "_oldRev" : "_e9T2AUW--B" } arangosh> db.example.document("example/19988371"); { "_key" : "19988371", "_id" : "example/19988371", - "_rev" : "_e4y3lru---", + "_rev" : "_e9T2AUW--C", "d" : 3, - "c" : null, - "b" : null + "b" : null, + "c" : null } arangosh> db.example.update("example/19988371", ........> { "b" : null, "c": null, "d" : null }, false, false); { "_id" : "example/19988371", "_key" : "19988371", - "_rev" : "_e4y3lr2---", - "_oldRev" : "_e4y3lru---" + "_rev" : "_e9T2AUW--D", + "_oldRev" : "_e9T2AUW--C" } arangosh> db.example.document("example/19988371"); { "_key" : "19988371", "_id" : "example/19988371", - "_rev" : "_e4y3lr2---" + "_rev" : "_e9T2AUW--D" }
Hide execution results
@@ -6385,21 +6385,21 @@ arangosh> db.example.insert({"a" { "_id" : "example/20774804", "_key" : "20774804", - "_rev" : "_e4y3lq6---" + "_rev" : "_e9T2AUK--A" } arangosh> db.example.update("example/20774803", {"a" : { "four" : 4 }, ........> "b" : { "b1" : 1 }}); { "_id" : "example/20774803", "_key" : "20774803", - "_rev" : "_e4y3lr----", - "_oldRev" : "_e4y3lq2---" + "_rev" : "_e9T2AUO---", + "_oldRev" : "_e9T2AUK--_" } arangosh> db.example.document("example/20774803"); { "_key" : "20774803", "_id" : "example/20774803", - "_rev" : "_e4y3lr----", + "_rev" : "_e9T2AUO---", "a" : { "four" : 4 }, @@ -6413,14 +6413,14 @@ arangosh> db.example.update("example/20774803& { "_id" : "example/20774803", "_key" : "20774803", - "_rev" : "_e4y3lrC---", - "_oldRev" : "_e4y3lr----" + "_rev" : "_e9T2AUO--_", + "_oldRev" : "_e9T2AUO---" } arangosh> db.example.document("example/20774803"); { "_key" : "20774803", "_id" : "example/20774803", - "_rev" : "_e4y3lrC---", + "_rev" : "_e9T2AUO--_", "a" : { "four" : 4 } @@ -6454,22 +6454,22 @@ arangosh> db.example.document("example/2077480
 arangosh> a1 = db.example.insert({ a : 1 });
 { 
-  "_id" : "example/73406", 
-  "_key" : "73406", 
-  "_rev" : "_e4y3lia---" 
+  "_id" : "example/73395", 
+  "_key" : "73395", 
+  "_rev" : "_e9T2ASG--_" 
 }
 arangosh> db.example.document(a1);
 { 
-  "_key" : "73406", 
-  "_id" : "example/73406", 
-  "_rev" : "_e4y3lia---", 
+  "_key" : "73395", 
+  "_id" : "example/73395", 
+  "_rev" : "_e9T2ASG--_", 
   "a" : 1 
 }
 arangosh> db.example.remove(a1);
 { 
-  "_id" : "example/73406", 
-  "_key" : "73406", 
-  "_rev" : "_e4y3lia---" 
+  "_id" : "example/73395", 
+  "_key" : "73395", 
+  "_rev" : "_e9T2ASG--_" 
 }
 arangosh> db.example.document(a1);
 [ArangoError 1202: document not found]
@@ -6497,24 +6497,24 @@ arangosh> db.example.document(a1);
 
 arangosh> a1 = db.example.insert({ a : 1 });
 { 
-  "_id" : "example/73392", 
-  "_key" : "73392", 
-  "_rev" : "_e4y3lh6---" 
+  "_id" : "example/73381", 
+  "_key" : "73381", 
+  "_rev" : "_e9T2AS---_" 
 }
 arangosh> a2 = db.example.replace(a1, { a : 2 });
 { 
-  "_id" : "example/73392", 
-  "_key" : "73392", 
-  "_rev" : "_e4y3li----", 
-  "_oldRev" : "_e4y3lh6---" 
+  "_id" : "example/73381", 
+  "_key" : "73381", 
+  "_rev" : "_e9T2AS---A", 
+  "_oldRev" : "_e9T2AS---_" 
 }
 arangosh> db.example.remove(a1);
 [ArangoError 1200: conflict, _rev values do not match]
 arangosh> db.example.remove(a1, true);
 { 
-  "_id" : "example/73392", 
-  "_key" : "73392", 
-  "_rev" : "_e4y3li----" 
+  "_id" : "example/73381", 
+  "_key" : "73381", 
+  "_rev" : "_e9T2AS---A" 
 }
 arangosh> db.example.document(a1);
 [ArangoError 1202: document not found]
@@ -6594,9 +6594,9 @@ arangosh> db.example.removeByExample( {Hello :
 
 arangosh> db.example.insert({ Hello : "world" });
 { 
-  "_id" : "example/202", 
-  "_key" : "202", 
-  "_rev" : "_e4y2kMq---" 
+  "_id" : "example/198", 
+  "_key" : "198", 
+  "_rev" : "_e9T1QmG--_" 
 }
 arangosh> db.example.replaceByExample({ Hello: "world" }, {Hello: "mars"}, false, 5);
 1
@@ -6622,18 +6622,18 @@ arangosh> db.example.replaceByExample({ Hello:
 
 arangosh> db.example.insert({ Hello : "world", foo : "bar" });
 { 
-  "_id" : "example/213", 
-  "_key" : "213", 
-  "_rev" : "_e4y2kNW---" 
+  "_id" : "example/209", 
+  "_key" : "209", 
+  "_rev" : "_e9T1QmS--_" 
 }
 arangosh> db.example.updateByExample({ Hello: "world" }, { Hello: "foo", World: "bar" }, false);
 1
 arangosh> db.example.byExample({ Hello: "foo" }).toArray()
 [ 
   { 
-    "_key" : "213", 
-    "_id" : "example/213", 
-    "_rev" : "_e4y2kNi---", 
+    "_key" : "209", 
+    "_id" : "example/209", 
+    "_rev" : "_e9T1QmW---", 
     "Hello" : "foo", 
     "foo" : "bar", 
     "World" : "bar" 
@@ -6661,36 +6661,36 @@ arangosh> db.example.byExample({ Hello: 
@@ -7822,10 +7822,10 @@ arangosh> var edgeDefinitions = [ graph_mod arangosh> var graph = graph_module._create("myGraph", edgeDefinitions, ["sessions"], {isSmart: true, numberOfShards: 9}); arangosh> graph_module._graph("myGraph"); {[EnterpriseGraph] - "myRelation" : [ArangoCollection 10129, "myRelation" (type edge, status loaded)], - "female" : [ArangoCollection 10128, "female" (type document, status loaded)], - "male" : [ArangoCollection 10127, "male" (type document, status loaded)], - "sessions" : [ArangoCollection 10117, "sessions" (type document, status loaded)] + "myRelation" : [ArangoCollection 10130, "myRelation" (type edge, status loaded)], + "female" : [ArangoCollection 10129, "female" (type document, status loaded)], + "male" : [ArangoCollection 10128, "male" (type document, status loaded)], + "sessions" : [ArangoCollection 10118, "sessions" (type document, status loaded)] }
Hide execution results
@@ -7873,8 +7873,8 @@ arangosh> graph._orphanCollections(); arangosh> graph._removeVertexCollection("other", true); arangosh> graph_module._graph("myGraph"); {[EnterpriseGraph] - "edges" : [ArangoCollection 10396, "edges" (type edge, status loaded)], - "vertices" : [ArangoCollection 10385, "vertices" (type document, status loaded)] + "edges" : [ArangoCollection 10397, "edges" (type edge, status loaded)], + "vertices" : [ArangoCollection 10386, "vertices" (type document, status loaded)] }
@@ -7912,7 +7912,7 @@ arangosh> var graph = graph_module._create( arangosh> graph._deleteEdgeDefinition("edges"); arangosh> graph._removeVertexCollection("vertices"); arangosh> db._drop("vertices"); -[ArangoError 1485: Collection 'vertices' must not be dropped while '_local_edges', 'edges', '_from_edges', '_to_edges' have distributeShardsLike set to 'vertices'.] +[ArangoError 1485: Collection 'vertices' must not be dropped while '_local_edges', '_to_edges', 'edges', '_from_edges' have distributeShardsLike set to 'vertices'.]
@@ -7955,7 +7955,7 @@ arangosh> var graph = graph_module._create( arangosh> graph._deleteEdgeDefinition("edges", true); arangosh> graph_module._graph("myGraph"); {[EnterpriseGraph] - "vertices" : [ArangoCollection 10585, "vertices" (type document, status loaded)] + "vertices" : [ArangoCollection 10586, "vertices" (type document, status loaded)] } @@ -8026,7 +8026,7 @@ arangosh> graph._fromVertex("relation/""_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3mJm---", + "_rev" : "_e9T2Abe---", "name" : "Alice" } @@ -8056,10 +8056,10 @@ arangosh> var graph = examples.loadGraph(var
any = require("@arangodb").db.relation.any(); arangosh> graph._toVertex("relation/" + any._key); { - "_key" : "bob", - "_id" : "male/bob", - "_rev" : "_e4y3mLK---", - "name" : "Bob" + "_key" : "diana", + "_id" : "female/diana", + "_rev" : "_e9T2Aby--B", + "name" : "Diana" }
Hide execution results
@@ -8580,13 +8580,13 @@ arangosh> g._paths(); "source" : { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nR2---", + "_rev" : "_e9T2AtK---", "name" : "Alice" }, "destination" : { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nR2---", + "_rev" : "_e9T2AtK---", "name" : "Alice" }, "edges" : [ ], @@ -8594,7 +8594,7 @@ arangosh> g._paths(); { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nR2---", + "_rev" : "_e9T2AtK---", "name" : "Alice" } ] @@ -8603,22 +8603,22 @@ arangosh> g._paths(); "source" : { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nR2---", + "_rev" : "_e9T2AtK---", "name" : "Alice" }, "destination" : { "_key" : "charly", "_id" : "male/charly", - "_rev" : "_e4y3nR6---", + "_rev" : "_e9T2AtK--A", "name" : "Charly" }, "edges" : [ { - "_key" : "77851", - "_id" : "relation/77851", + "_key" : "77970", + "_id" : "relation/77970", "_from" : "female/alice", "_to" : "male/charly", - "_rev" : "_e4y3nSC---", + "_rev" : "_e9T2AtK--D", "type" : "friend", "vertex" : "alice" } @@ -8627,13 +8627,13 @@ arangosh> g._paths(); { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nR2---", + "_rev" : "_e9T2AtK---", "name" : "Alice" }, { "_key" : "charly", "_id" : "male/charly", - "_rev" : "_e4y3nR6---", + "_rev" : "_e9T2AtK--A", "name" : "Charly" } ] @@ -8642,31 +8642,31 @@ arangosh> g._paths(); "source" : { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nR2---", + "_rev" : "_e9T2AtK---", "name" : "Alice" }, "destination" : { "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nS----", + "_rev" : "_e9T2AtK--B", "name" : "Diana" }, "edges" : [ { - "_key" : "77851", - "_id" : "relation/77851", + "_key" : "77970", + "_id" : "relation/77970", "_from" : "female/alice", "_to" : "male/charly", - "_rev" : "_e4y3nSC---", + "_rev" : "_e9T2AtK--D", "type" : "friend", "vertex" : "alice" }, { - "_key" : "77853", - "_id" : "relation/77853", + "_key" : "77972", + "_id" : "relation/77972", "_from" : "male/charly", "_to" : "female/diana", - "_rev" : "_e4y3nSG---", + "_rev" : "_e9T2AtK--E", "type" : "married", "vertex" : "charly" } @@ -8675,19 +8675,19 @@ arangosh> g._paths(); { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nR2---", + "_rev" : "_e9T2AtK---", "name" : "Alice" }, { "_key" : "charly", "_id" : "male/charly", - "_rev" : "_e4y3nR6---", + "_rev" : "_e9T2AtK--A", "name" : "Charly" }, { "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nS----", + "_rev" : "_e9T2AtK--B", "name" : "Diana" } ] @@ -8696,22 +8696,22 @@ arangosh> g._paths(); "source" : { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nR2---", + "_rev" : "_e9T2AtK---", "name" : "Alice" }, "destination" : { "_key" : "bob", "_id" : "male/bob", - "_rev" : "_e4y3nR2--_", + "_rev" : "_e9T2AtK--_", "name" : "Bob" }, "edges" : [ { - "_key" : "77849", - "_id" : "relation/77849", + "_key" : "77968", + "_id" : "relation/77968", "_from" : "female/alice", "_to" : "male/bob", - "_rev" : "_e4y3nS---_", + "_rev" : "_e9T2AtK--C", "type" : "married", "vertex" : "alice" } @@ -8720,13 +8720,13 @@ arangosh> g._paths(); { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nR2---", + "_rev" : "_e9T2AtK---", "name" : "Alice" }, { "_key" : "bob", "_id" : "male/bob", - "_rev" : "_e4y3nR2--_", + "_rev" : "_e9T2AtK--_", "name" : "Bob" } ] @@ -8735,31 +8735,31 @@ arangosh> g._paths(); "source" : { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nR2---", + "_rev" : "_e9T2AtK---", "name" : "Alice" }, "destination" : { "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nS----", + "_rev" : "_e9T2AtK--B", "name" : "Diana" }, "edges" : [ { - "_key" : "77849", - "_id" : "relation/77849", + "_key" : "77968", + "_id" : "relation/77968", "_from" : "female/alice", "_to" : "male/bob", - "_rev" : "_e4y3nS---_", + "_rev" : "_e9T2AtK--C", "type" : "married", "vertex" : "alice" }, { - "_key" : "77855", - "_id" : "relation/77855", + "_key" : "77974", + "_id" : "relation/77974", "_from" : "male/bob", "_to" : "female/diana", - "_rev" : "_e4y3nSG--_", + "_rev" : "_e9T2AtK--F", "type" : "friend", "vertex" : "bob" } @@ -8768,19 +8768,19 @@ arangosh> g._paths(); { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nR2---", + "_rev" : "_e9T2AtK---", "name" : "Alice" }, { "_key" : "bob", "_id" : "male/bob", - "_rev" : "_e4y3nR2--_", + "_rev" : "_e9T2AtK--_", "name" : "Bob" }, { "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nS----", + "_rev" : "_e9T2AtK--B", "name" : "Diana" } ] @@ -8789,13 +8789,13 @@ arangosh> g._paths(); "source" : { "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nS----", + "_rev" : "_e9T2AtK--B", "name" : "Diana" }, "destination" : { "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nS----", + "_rev" : "_e9T2AtK--B", "name" : "Diana" }, "edges" : [ ], @@ -8803,7 +8803,7 @@ arangosh> g._paths(); { "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nS----", + "_rev" : "_e9T2AtK--B", "name" : "Diana" } ] @@ -8812,13 +8812,13 @@ arangosh> g._paths(); "source" : { "_key" : "bob", "_id" : "male/bob", - "_rev" : "_e4y3nR2--_", + "_rev" : "_e9T2AtK--_", "name" : "Bob" }, "destination" : { "_key" : "bob", "_id" : "male/bob", - "_rev" : "_e4y3nR2--_", + "_rev" : "_e9T2AtK--_", "name" : "Bob" }, "edges" : [ ], @@ -8826,7 +8826,7 @@ arangosh> g._paths(); { "_key" : "bob", "_id" : "male/bob", - "_rev" : "_e4y3nR2--_", + "_rev" : "_e9T2AtK--_", "name" : "Bob" } ] @@ -8835,22 +8835,22 @@ arangosh> g._paths(); "source" : { "_key" : "bob", "_id" : "male/bob", - "_rev" : "_e4y3nR2--_", + "_rev" : "_e9T2AtK--_", "name" : "Bob" }, "destination" : { "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nS----", + "_rev" : "_e9T2AtK--B", "name" : "Diana" }, "edges" : [ { - "_key" : "77855", - "_id" : "relation/77855", + "_key" : "77974", + "_id" : "relation/77974", "_from" : "male/bob", "_to" : "female/diana", - "_rev" : "_e4y3nSG--_", + "_rev" : "_e9T2AtK--F", "type" : "friend", "vertex" : "bob" } @@ -8859,13 +8859,13 @@ arangosh> g._paths(); { "_key" : "bob", "_id" : "male/bob", - "_rev" : "_e4y3nR2--_", + "_rev" : "_e9T2AtK--_", "name" : "Bob" }, { "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nS----", + "_rev" : "_e9T2AtK--B", "name" : "Diana" } ] @@ -8874,13 +8874,13 @@ arangosh> g._paths(); "source" : { "_key" : "charly", "_id" : "male/charly", - "_rev" : "_e4y3nR6---", + "_rev" : "_e9T2AtK--A", "name" : "Charly" }, "destination" : { "_key" : "charly", "_id" : "male/charly", - "_rev" : "_e4y3nR6---", + "_rev" : "_e9T2AtK--A", "name" : "Charly" }, "edges" : [ ], @@ -8888,7 +8888,7 @@ arangosh> g._paths(); { "_key" : "charly", "_id" : "male/charly", - "_rev" : "_e4y3nR6---", + "_rev" : "_e9T2AtK--A", "name" : "Charly" } ] @@ -8897,22 +8897,22 @@ arangosh> g._paths(); "source" : { "_key" : "charly", "_id" : "male/charly", - "_rev" : "_e4y3nR6---", + "_rev" : "_e9T2AtK--A", "name" : "Charly" }, "destination" : { "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nS----", + "_rev" : "_e9T2AtK--B", "name" : "Diana" }, "edges" : [ { - "_key" : "77853", - "_id" : "relation/77853", + "_key" : "77972", + "_id" : "relation/77972", "_from" : "male/charly", "_to" : "female/diana", - "_rev" : "_e4y3nSG---", + "_rev" : "_e9T2AtK--E", "type" : "married", "vertex" : "charly" } @@ -8921,13 +8921,13 @@ arangosh> g._paths(); { "_key" : "charly", "_id" : "male/charly", - "_rev" : "_e4y3nR6---", + "_rev" : "_e9T2AtK--A", "name" : "Charly" }, { "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nS----", + "_rev" : "_e9T2AtK--B", "name" : "Diana" } ] @@ -8962,22 +8962,22 @@ arangosh> g._paths({direction : "source" : { "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nUu---", + "_rev" : "_e9T2Aty--B", "name" : "Diana" }, "destination" : { "_key" : "bob", "_id" : "male/bob", - "_rev" : "_e4y3nUq---", + "_rev" : "_e9T2Aty--_", "name" : "Bob" }, "edges" : [ { - "_key" : "77917", - "_id" : "relation/77917", + "_key" : "78036", + "_id" : "relation/78036", "_from" : "male/bob", "_to" : "female/diana", - "_rev" : "_e4y3nU6---", + "_rev" : "_e9T2At2---", "type" : "friend", "vertex" : "bob" } @@ -8986,13 +8986,13 @@ arangosh> g._paths({direction : "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nUu---", + "_rev" : "_e9T2Aty--B", "name" : "Diana" }, { "_key" : "bob", "_id" : "male/bob", - "_rev" : "_e4y3nUq---", + "_rev" : "_e9T2Aty--_", "name" : "Bob" } ] @@ -9001,31 +9001,31 @@ arangosh> g._paths({direction : "source" : { "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nUu---", + "_rev" : "_e9T2Aty--B", "name" : "Diana" }, "destination" : { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nUm---", + "_rev" : "_e9T2Aty---", "name" : "Alice" }, "edges" : [ { - "_key" : "77917", - "_id" : "relation/77917", + "_key" : "78036", + "_id" : "relation/78036", "_from" : "male/bob", "_to" : "female/diana", - "_rev" : "_e4y3nU6---", + "_rev" : "_e9T2At2---", "type" : "friend", "vertex" : "bob" }, { - "_key" : "77911", - "_id" : "relation/77911", + "_key" : "78030", + "_id" : "relation/78030", "_from" : "female/alice", "_to" : "male/bob", - "_rev" : "_e4y3nUy---", + "_rev" : "_e9T2Aty--C", "type" : "married", "vertex" : "alice" } @@ -9034,19 +9034,19 @@ arangosh> g._paths({direction : "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nUu---", + "_rev" : "_e9T2Aty--B", "name" : "Diana" }, { "_key" : "bob", "_id" : "male/bob", - "_rev" : "_e4y3nUq---", + "_rev" : "_e9T2Aty--_", "name" : "Bob" }, { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nUm---", + "_rev" : "_e9T2Aty---", "name" : "Alice" } ] @@ -9055,22 +9055,22 @@ arangosh> g._paths({direction : "source" : { "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nUu---", + "_rev" : "_e9T2Aty--B", "name" : "Diana" }, "destination" : { "_key" : "charly", "_id" : "male/charly", - "_rev" : "_e4y3nUq--_", + "_rev" : "_e9T2Aty--A", "name" : "Charly" }, "edges" : [ { - "_key" : "77915", - "_id" : "relation/77915", + "_key" : "78034", + "_id" : "relation/78034", "_from" : "male/charly", "_to" : "female/diana", - "_rev" : "_e4y3nU2---", + "_rev" : "_e9T2Aty--E", "type" : "married", "vertex" : "charly" } @@ -9079,13 +9079,13 @@ arangosh> g._paths({direction : "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nUu---", + "_rev" : "_e9T2Aty--B", "name" : "Diana" }, { "_key" : "charly", "_id" : "male/charly", - "_rev" : "_e4y3nUq--_", + "_rev" : "_e9T2Aty--A", "name" : "Charly" } ] @@ -9094,31 +9094,31 @@ arangosh> g._paths({direction : "source" : { "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nUu---", + "_rev" : "_e9T2Aty--B", "name" : "Diana" }, "destination" : { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nUm---", + "_rev" : "_e9T2Aty---", "name" : "Alice" }, "edges" : [ { - "_key" : "77915", - "_id" : "relation/77915", + "_key" : "78034", + "_id" : "relation/78034", "_from" : "male/charly", "_to" : "female/diana", - "_rev" : "_e4y3nU2---", + "_rev" : "_e9T2Aty--E", "type" : "married", "vertex" : "charly" }, { - "_key" : "77913", - "_id" : "relation/77913", + "_key" : "78032", + "_id" : "relation/78032", "_from" : "female/alice", "_to" : "male/charly", - "_rev" : "_e4y3nUy--_", + "_rev" : "_e9T2Aty--D", "type" : "friend", "vertex" : "alice" } @@ -9127,19 +9127,19 @@ arangosh> g._paths({direction : "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3nUu---", + "_rev" : "_e9T2Aty--B", "name" : "Diana" }, { "_key" : "charly", "_id" : "male/charly", - "_rev" : "_e4y3nUq--_", + "_rev" : "_e9T2Aty--A", "name" : "Charly" }, { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nUm---", + "_rev" : "_e9T2Aty---", "name" : "Alice" } ] @@ -9148,22 +9148,22 @@ arangosh> g._paths({direction : "source" : { "_key" : "bob", "_id" : "male/bob", - "_rev" : "_e4y3nUq---", + "_rev" : "_e9T2Aty--_", "name" : "Bob" }, "destination" : { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nUm---", + "_rev" : "_e9T2Aty---", "name" : "Alice" }, "edges" : [ { - "_key" : "77911", - "_id" : "relation/77911", + "_key" : "78030", + "_id" : "relation/78030", "_from" : "female/alice", "_to" : "male/bob", - "_rev" : "_e4y3nUy---", + "_rev" : "_e9T2Aty--C", "type" : "married", "vertex" : "alice" } @@ -9172,13 +9172,13 @@ arangosh> g._paths({direction : "_key" : "bob", "_id" : "male/bob", - "_rev" : "_e4y3nUq---", + "_rev" : "_e9T2Aty--_", "name" : "Bob" }, { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nUm---", + "_rev" : "_e9T2Aty---", "name" : "Alice" } ] @@ -9187,22 +9187,22 @@ arangosh> g._paths({direction : "source" : { "_key" : "charly", "_id" : "male/charly", - "_rev" : "_e4y3nUq--_", + "_rev" : "_e9T2Aty--A", "name" : "Charly" }, "destination" : { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nUm---", + "_rev" : "_e9T2Aty---", "name" : "Alice" }, "edges" : [ { - "_key" : "77913", - "_id" : "relation/77913", + "_key" : "78032", + "_id" : "relation/78032", "_from" : "female/alice", "_to" : "male/charly", - "_rev" : "_e4y3nUy--_", + "_rev" : "_e9T2Aty--D", "type" : "friend", "vertex" : "alice" } @@ -9211,13 +9211,13 @@ arangosh> g._paths({direction : "_key" : "charly", "_id" : "male/charly", - "_rev" : "_e4y3nUq--_", + "_rev" : "_e9T2Aty--A", "name" : "Charly" }, { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3nUm---", + "_rev" : "_e9T2Aty---", "name" : "Alice" } ] @@ -9256,11 +9256,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges"
: [ { - "_key" : "78487", - "_id" : "frenchHighway/78487", + "_key" : "78606", + "_id" : "frenchHighway/78606", "_from" : "frenchCity/Paris", "_to" : "frenchCity/Lyon", - "_rev" : "_e4y3nj2---", + "_rev" : "_e9T2AxG--C", "distance" : 550 } ], @@ -9273,11 +9273,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges"
: [ { - "_key" : "78489", - "_id" : "internationalHighway/78489", + "_key" : "78608", + "_id" : "internationalHighway/78608", "_from" : "germanCity/Berlin", "_to" : "frenchCity/Lyon", - "_rev" : "_e4y3nj6---", + "_rev" : "_e9T2AxK---", "distance" : 1100 } ], @@ -9290,11 +9290,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges"
: [ { - "_key" : "78497", - "_id" : "internationalHighway/78497", + "_key" : "78616", + "_id" : "internationalHighway/78616", "_from" : "germanCity/Cologne", "_to" : "frenchCity/Lyon", - "_rev" : "_e4y3nkC--_", + "_rev" : "_e9T2AxK--C", "distance" : 700 } ], @@ -9307,11 +9307,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges"
: [ { - "_key" : "78495", - "_id" : "internationalHighway/78495", + "_key" : "78614", + "_id" : "internationalHighway/78614", "_from" : "germanCity/Hamburg", "_to" : "frenchCity/Lyon", - "_rev" : "_e4y3nkC---", + "_rev" : "_e9T2AxK--B", "distance" : 1300 } ], @@ -9324,11 +9324,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges"
: [ { - "_key" : "78487", - "_id" : "frenchHighway/78487", + "_key" : "78606", + "_id" : "frenchHighway/78606", "_from" : "frenchCity/Paris", "_to" : "frenchCity/Lyon", - "_rev" : "_e4y3nj2---", + "_rev" : "_e9T2AxG--C", "distance" : 550 } ], @@ -9341,11 +9341,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges"
: [ { - "_key" : "78491", - "_id" : "internationalHighway/78491", + "_key" : "78610", + "_id" : "internationalHighway/78610", "_from" : "germanCity/Berlin", "_to" : "frenchCity/Paris", - "_rev" : "_e4y3nj6--_", + "_rev" : "_e9T2AxK--_", "distance" : 1200 } ], @@ -9358,11 +9358,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges"
: [ { - "_key" : "78499", - "_id" : "internationalHighway/78499", + "_key" : "78618", + "_id" : "internationalHighway/78618", "_from" : "germanCity/Cologne", "_to" : "frenchCity/Paris", - "_rev" : "_e4y3nkG---", + "_rev" : "_e9T2AxK--D", "distance" : 550 } ], @@ -9375,11 +9375,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges"
: [ { - "_key" : "78493", - "_id" : "internationalHighway/78493", + "_key" : "78612", + "_id" : "internationalHighway/78612", "_from" : "germanCity/Hamburg", "_to" : "frenchCity/Paris", - "_rev" : "_e4y3nk----", + "_rev" : "_e9T2AxK--A", "distance" : 900 } ], @@ -9392,11 +9392,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges" : [ { - "_key" : "78489", - "_id" : "internationalHighway/78489", + "_key" : "78608", + "_id" : "internationalHighway/78608", "_from" : "germanCity/Berlin", "_to" : "frenchCity/Lyon", - "_rev" : "_e4y3nj6---", + "_rev" : "_e9T2AxK---", "distance" : 1100 } ], @@ -9409,11 +9409,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges" : [ { - "_key" : "78491", - "_id" : "internationalHighway/78491", + "_key" : "78610", + "_id" : "internationalHighway/78610", "_from" : "germanCity/Berlin", "_to" : "frenchCity/Paris", - "_rev" : "_e4y3nj6--_", + "_rev" : "_e9T2AxK--_", "distance" : 1200 } ], @@ -9426,11 +9426,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges" : [ { - "_key" : "78481", - "_id" : "germanHighway/78481", + "_key" : "78600", + "_id" : "germanHighway/78600", "_from" : "germanCity/Berlin", "_to" : "germanCity/Cologne", - "_rev" : "_e4y3nju---", + "_rev" : "_e9T2AxG--_", "distance" : 850 } ], @@ -9443,11 +9443,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges" : [ { - "_key" : "78483", - "_id" : "germanHighway/78483", + "_key" : "78602", + "_id" : "germanHighway/78602", "_from" : "germanCity/Berlin", "_to" : "germanCity/Hamburg", - "_rev" : "_e4y3njy---", + "_rev" : "_e9T2AxG--A", "distance" : 400 } ], @@ -9460,11 +9460,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges" : [ { - "_key" : "78497", - "_id" : "internationalHighway/78497", + "_key" : "78616", + "_id" : "internationalHighway/78616", "_from" : "germanCity/Cologne", "_to" : "frenchCity/Lyon", - "_rev" : "_e4y3nkC--_", + "_rev" : "_e9T2AxK--C", "distance" : 700 } ], @@ -9477,11 +9477,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges" : [ { - "_key" : "78499", - "_id" : "internationalHighway/78499", + "_key" : "78618", + "_id" : "internationalHighway/78618", "_from" : "germanCity/Cologne", "_to" : "frenchCity/Paris", - "_rev" : "_e4y3nkG---", + "_rev" : "_e9T2AxK--D", "distance" : 550 } ], @@ -9494,11 +9494,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges" : [ { - "_key" : "78481", - "_id" : "germanHighway/78481", + "_key" : "78600", + "_id" : "germanHighway/78600", "_from" : "germanCity/Berlin", "_to" : "germanCity/Cologne", - "_rev" : "_e4y3nju---", + "_rev" : "_e9T2AxG--_", "distance" : 850 } ], @@ -9511,11 +9511,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges" : [ { - "_key" : "78485", - "_id" : "germanHighway/78485", + "_key" : "78604", + "_id" : "germanHighway/78604", "_from" : "germanCity/Hamburg", "_to" : "germanCity/Cologne", - "_rev" : "_e4y3njy--_", + "_rev" : "_e9T2AxG--B", "distance" : 500 } ], @@ -9528,11 +9528,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges" : [ { - "_key" : "78495", - "_id" : "internationalHighway/78495", + "_key" : "78614", + "_id" : "internationalHighway/78614", "_from" : "germanCity/Hamburg", "_to" : "frenchCity/Lyon", - "_rev" : "_e4y3nkC---", + "_rev" : "_e9T2AxK--B", "distance" : 1300 } ], @@ -9545,11 +9545,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges" : [ { - "_key" : "78493", - "_id" : "internationalHighway/78493", + "_key" : "78612", + "_id" : "internationalHighway/78612", "_from" : "germanCity/Hamburg", "_to" : "frenchCity/Paris", - "_rev" : "_e4y3nk----", + "_rev" : "_e9T2AxK--A", "distance" : 900 } ], @@ -9562,11 +9562,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges" : [ { - "_key" : "78483", - "_id" : "germanHighway/78483", + "_key" : "78602", + "_id" : "germanHighway/78602", "_from" : "germanCity/Berlin", "_to" : "germanCity/Hamburg", - "_rev" : "_e4y3njy---", + "_rev" : "_e9T2AxG--A", "distance" : 400 } ], @@ -9579,11 +9579,11 @@ arangosh> g._shortestPath({}, {}, {weight : "edges" : [ { - "_key" : "78485", - "_id" : "germanHighway/78485", + "_key" : "78604", + "_id" : "germanHighway/78604", "_from" : "germanCity/Hamburg", "_to" : "germanCity/Cologne", - "_rev" : "_e4y3njy--_", + "_rev" : "_e9T2AxG--B", "distance" : 500 } ], @@ -9624,11 +9624,11 @@ arangosh> g._shortestPath([{_id: "edges" : [ { - "_key" : "78596", - "_id" : "internationalHighway/78596", + "_key" : "78715", + "_id" : "internationalHighway/78715", "_from" : "germanCity/Cologne", "_to" : "frenchCity/Lyon", - "_rev" : "_e4y3nne---", + "_rev" : "_e9T2Ay---B", "distance" : 700 } ], @@ -10548,67 +10548,67 @@ arangosh> edgedefinitions = graph_module._extendEdgeDefinitions(undirected_re - @startDocuBlockInline generalGraphRelationDefinitionSave + @startDocuBlockInline generalGraphRelationDefinitionSingle -
- @@ -10733,12 +10733,12 @@ arangosh> var edgeDefinitions = graph_modu ........> "has_bought", ["Customer", "Company"], ["Groceries", "Electronics"])); arangosh> graph_module._create("myStore", edgeDefinitions); {[GeneralGraph] - "friend_of" : [ArangoCollection 79392, "friend_of" (type edge, status loaded)], - "Customer" : [ArangoCollection 79381, "Customer" (type document, status loaded)], - "has_bought" : [ArangoCollection 79387, "has_bought" (type edge, status loaded)], - "Company" : [ArangoCollection 79384, "Company" (type document, status loaded)], - "Electronics" : [ArangoCollection 79378, "Electronics" (type document, status loaded)], - "Groceries" : [ArangoCollection 79375, "Groceries" (type document, status loaded)] + "friend_of" : [ArangoCollection 79508, "friend_of" (type edge, status loaded)], + "Customer" : [ArangoCollection 79497, "Customer" (type document, status loaded)], + "has_bought" : [ArangoCollection 79503, "has_bought" (type edge, status loaded)], + "Company" : [ArangoCollection 79500, "Company" (type document, status loaded)], + "Electronics" : [ArangoCollection 79494, "Electronics" (type document, status loaded)], + "Groceries" : [ArangoCollection 79491, "Groceries" (type document, status loaded)] }
Hide execution results
@@ -10765,7 +10765,10 @@ arangosh> graph_module._create("myStore"<
 arangosh> var graph_module = require("@arangodb/general-graph");
 arangosh> graph_module._list();
-[ ]
+[ 
+  "myGraph", 
+  "myStore" 
+]
 
@@ -10773,6 +10776,77 @@ arangosh> graph_module._list(); @endDocuBlock generalGraphList + + @startDocuBlockInline generalGraphListObjects + + +
+ +
+
+arangosh> var graph_module = require("@arangodb/general-graph");
+arangosh> graph_module._listObjects();
+
Show execution results
+
+
+ + @endDocuBlock generalGraphListObjects + + @startDocuBlockInline generalGraphLoadGraph @@ -10783,9 +10857,9 @@ arangosh> graph_module._list(); arangosh> var graph_module = require("@arangodb/general-graph"); arangosh> graph = graph_module._graph("social"); {[GeneralGraph] - "relation" : [ArangoCollection 74801, "relation" (type edge, status loaded)], - "female" : [ArangoCollection 74791, "female" (type document, status loaded)], - "male" : [ArangoCollection 74796, "male" (type document, status loaded)] + "relation" : [ArangoCollection 74920, "relation" (type edge, status loaded)], + "female" : [ArangoCollection 74910, "female" (type document, status loaded)], + "male" : [ArangoCollection 74915, "male" (type document, status loaded)] }
Hide execution results
@@ -10810,11 +10884,11 @@ arangosh> graph = graph_module._graph("social& arangosh> var graph_module = require("@arangodb/general-graph"); arangosh> graph_module._drop("social"); arangosh> db._collection("female"); -[ArangoCollection 74308, "female" (type document, status loaded)] +[ArangoCollection 74301, "female" (type document, status loaded)] arangosh> db._collection("male"); -[ArangoCollection 74313, "male" (type document, status loaded)] +[ArangoCollection 74306, "male" (type document, status loaded)] arangosh> db._collection("relation"); -[ArangoCollection 74318, "relation" (type edge, status loaded)] +[ArangoCollection 74311, "relation" (type edge, status loaded)] @@ -10849,14 +10923,32 @@ arangosh> db._collection("relation" -
+ +
+
+arangosh> var graph_module = require("@arangodb/general-graph")
+arangosh> var ed1 = graph_module._relation("myEC1", ["myVC1"], ["myVC2"]);
+arangosh> var ed2 = graph_module._relation("myEC2", ["myVC1"], ["myVC3"]);
+arangosh> var graph = graph_module._create("myGraph", [ed1]);
+arangosh> graph._extendEdgeDefinitions(ed2);
+arangosh> graph = graph_module._graph("myGraph");
+
Show execution results
@@ -10895,7 +10987,7 @@ arangosh> var ed2 = graph_module._relation( arangosh> var graph = graph_module._create("myGraph", [ed1, ed2]); arangosh> graph._deleteEdgeDefinition("myEC1"); arangosh> db._collection("myEC1"); -[ArangoCollection 78960, "myEC1" (type edge, status loaded)] +[ArangoCollection 79079, "myEC1" (type edge, status loaded)] @@ -10929,13 +11021,29 @@ arangosh> db._collection("myEC1");
-
+ +
+
+arangosh> var graph_module = require("@arangodb/general-graph");
+arangosh> var ed1 = graph_module._relation("myEC1", ["myVC1"], ["myVC2"]);
+arangosh> var graph = graph_module._create("myGraph", [ed1]);
+arangosh> graph._addVertexCollection("myVC3", true);
+arangosh> graph = graph_module._graph("myGraph");
+
Show execution results
@@ -11018,7 +11126,7 @@ arangosh> graph.male.save({name: "_id" : "male/floyd", "_key" : "floyd", - "_rev" : "_e4y3ntO---" + "_rev" : "_e9T2AzO--_" }
Hide execution results
@@ -11047,14 +11155,14 @@ arangosh> graph.male.save({neym: "_id" : "male/john", "_key" : "john", - "_rev" : "_e4y3nrm--_" + "_rev" : "_e9T2Ay6---" } arangosh> graph.male.replace("male/john", {name: "John"}); { "_id" : "male/john", "_key" : "john", - "_rev" : "_e4y3nrq---", - "_oldRev" : "_e4y3nrm--_" + "_rev" : "_e9T2Ay6--_", + "_oldRev" : "_e9T2Ay6---" }
Hide execution results
@@ -11084,14 +11192,14 @@ arangosh> graph.female.save({name: "_id" : "female/linda", "_key" : "linda", - "_rev" : "_e4y3nuq--_" + "_rev" : "_e9T2Aze--G" } arangosh> graph.female.update("female/linda", {name: "Linda", _key: "linda"}); { "_id" : "female/linda", "_key" : "linda", - "_rev" : "_e4y3nuu---", - "_oldRev" : "_e4y3nuq--_" + "_rev" : "_e9T2Azi---", + "_oldRev" : "_e9T2Aze--G" }
Hide execution results
@@ -11121,7 +11229,7 @@ arangosh> graph.male.save({name: "_id" : "male/kermit", "_key" : "kermit", - "_rev" : "_e4y3np2---" + "_rev" : "_e9T2Aye--G" } arangosh> db._exists("male/kermit") true @@ -11162,7 +11270,7 @@ arangosh> graph.relation.save({ { "_id" : "relation/bobAndAlice", "_key" : "bobAndAlice", - "_rev" : "_e4y3mFG--_" + "_rev" : "_e9T2Aae---" }
Hide execution results
@@ -11215,14 +11323,14 @@ arangosh> graph.relation.save("female/alice&qu { "_id" : "relation/aliceAndDiana", "_key" : "aliceAndDiana", - "_rev" : "_e4y3mDa---" + "_rev" : "_e9T2AaG--E" } arangosh> graph.relation.replace("relation/aliceAndDiana", {type: "knows", _from: "female/alice", _to: "female/diana"}); { "_id" : "relation/aliceAndDiana", "_key" : "aliceAndDiana", - "_rev" : "_e4y3mDe---", - "_oldRev" : "_e4y3mDa---" + "_rev" : "_e9T2AaG--F", + "_oldRev" : "_e9T2AaG--E" }
Hide execution results
@@ -11252,14 +11360,14 @@ arangosh> graph.relation.save("female/alice&qu { "_id" : "relation/aliceAndDiana", "_key" : "aliceAndDiana", - "_rev" : "_e4y3mIC---" + "_rev" : "_e9T2AbC--G" } arangosh> graph.relation.update("relation/aliceAndDiana", {type: "quarreled", _key: "aliceAndDiana"}); { "_id" : "relation/aliceAndDiana", "_key" : "aliceAndDiana", - "_rev" : "_e4y3mIG---", - "_oldRev" : "_e4y3mIC---" + "_rev" : "_e9T2AbG---", + "_oldRev" : "_e9T2AbC--G" }
Hide execution results
@@ -11289,7 +11397,7 @@ arangosh> graph.relation.save("female/alice&qu { "_id" : "relation/aliceAndDiana", "_key" : "aliceAndDiana", - "_rev" : "_e4y3mBe---" + "_rev" : "_e9T2AZu---" } arangosh> db._exists("relation/aliceAndDiana") true @@ -11338,15 +11446,26 @@ arangosh> graph;
-
+ +
+
+arangosh> graph._addVertexCollection("shop");
+arangosh> graph._addVertexCollection("customer");
+arangosh> graph._addVertexCollection("pet");
+arangosh> graph = graph_module._graph("myGraph");
+
Show execution results
@@ -11358,14 +11477,25 @@ arangosh> graph;
-
+ +
+
+arangosh> var rel = graph_module._relation("isCustomer", ["shop"], ["customer"]);
+arangosh> graph._extendEdgeDefinitions(rel);
+arangosh> graph = graph_module._graph("myGraph");
+
Show execution results
@@ -11400,6 +11530,10 @@ arangosh> satelliteGraphModule._graph("satelli
 arangosh> var graph = satelliteGraphModule._create("satelliteGraph");
 arangosh> graph._addVertexCollection("aVertexCollection");
+arangosh> graph = satelliteGraphModule._graph("satelliteGraph");
+{[SatelliteGraph] 
+  "aVertexCollection" : [ArangoCollection 10848, "aVertexCollection" (type document, status loaded)] 
+}
 
@@ -11417,6 +11551,11 @@ arangosh> graph._addVertexCollection("aVertexC arangosh> var graph = satelliteGraphModule._create("satelliteGraph"); arangosh> var relation = satelliteGraphModule._relation("isFriend", ["person"], ["person"]); arangosh> graph._extendEdgeDefinitions(relation); +arangosh> graph = satelliteGraphModule._graph("satelliteGraph"); +{[SatelliteGraph] + "isFriend" : [ArangoCollection 10858, "isFriend" (type edge, status loaded)], + "person" : [ArangoCollection 10856, "person" (type document, status loaded)] +} @@ -11425,7 +11564,7 @@ arangosh> graph._extendEdgeDefinitions(relation); - @startDocuBlockInline satelliteGraphPrototype1_cluster + @startDocuBlockInline satelliteGraphPrototype1_cluster
@@ -11439,11 +11578,11 @@ arangosh> satelliteGraphModule._create("satell
- @endDocuBlock satelliteGraphPrototype1_cluster + @endDocuBlock satelliteGraphPrototype1_cluster - @startDocuBlockInline satelliteGraphPrototype2_cluster + @startDocuBlockInline satelliteGraphPrototype2_cluster
@@ -11452,15 +11591,19 @@ arangosh> satelliteGraphModule._create("satell arangosh> var satelliteGraphModule = require("@arangodb/satellite-graph"); arangosh> var graph = satelliteGraphModule._create("satelliteGraph"); arangosh> graph._addVertexCollection("myPrototypeColl"); +arangosh> graph = satelliteGraphModule._graph("satelliteGraph"); +{[SatelliteGraph] + "myPrototypeColl" : [ArangoCollection 11107, "myPrototypeColl" (type document, status loaded)] +}
- @endDocuBlock satelliteGraphPrototype2_cluster + @endDocuBlock satelliteGraphPrototype2_cluster - @startDocuBlockInline satelliteGraphPrototype3_cluster + @startDocuBlockInline satelliteGraphPrototype3_cluster
@@ -11470,15 +11613,20 @@ arangosh> var satelliteGraphModule = var graph = satelliteGraphModule._create("satelliteGraph"); arangosh> var relation = satelliteGraphModule._relation("isFriend", ["person"], ["person"]); arangosh> graph._extendEdgeDefinitions(relation); +arangosh> graph = satelliteGraphModule._graph("satelliteGraph"); +{[SatelliteGraph] + "isFriend" : [ArangoCollection 11117, "isFriend" (type edge, status loaded)], + "person" : [ArangoCollection 11115, "person" (type document, status loaded)] +}
- @endDocuBlock satelliteGraphPrototype3_cluster + @endDocuBlock satelliteGraphPrototype3_cluster - @startDocuBlockInline satelliteGraphGeneralGraph1_cluster + @startDocuBlockInline satelliteGraphGeneralGraph1_cluster
@@ -11511,11 +11659,11 @@ arangosh> db._create("collection",
- @endDocuBlock satelliteGraphGeneralGraph1_cluster + @endDocuBlock satelliteGraphGeneralGraph1_cluster - @startDocuBlockInline satelliteGraphGeneralGraph2_cluster + @startDocuBlockInline satelliteGraphGeneralGraph2_cluster
@@ -11560,11 +11708,11 @@ arangosh> db._explain(`FOR doc in collection FOR v,e,p IN OUTBOUND "vert
- @endDocuBlock satelliteGraphGeneralGraph2_cluster + @endDocuBlock satelliteGraphGeneralGraph2_cluster - @startDocuBlockInline satelliteGraphGeneralGraph3_cluster + @startDocuBlockInline satelliteGraphGeneralGraph3_cluster
@@ -11614,7 +11762,7 @@ arangosh> db._explain(`FOR doc in collection FOR v,e,p IN OUTBOUND "vert
- @endDocuBlock satelliteGraphGeneralGraph3_cluster + @endDocuBlock satelliteGraphGeneralGraph3_cluster @@ -11971,9 +12119,9 @@ arangosh> var rel = graph_module._relation( arangosh> var graph = graph_module._create("myGraph", [rel], [], {satellites: ["shop", "customer"], smartGraphAttribute: "region", numberOfShards: 9}); arangosh> graph_module._graph("myGraph"); {[SmartGraph] - "isCustomer" : [ArangoCollection 10802, "isCustomer" (type edge, status loaded)], - "shop" : [ArangoCollection 10800, "shop" (type document, status loaded)], - "customer" : [ArangoCollection 10801, "customer" (type document, status loaded)] + "isCustomer" : [ArangoCollection 10803, "isCustomer" (type edge, status loaded)], + "shop" : [ArangoCollection 10801, "shop" (type document, status loaded)], + "customer" : [ArangoCollection 10802, "customer" (type document, status loaded)] }
Hide execution results
@@ -12004,7 +12152,7 @@ arangosh> graph_module._graph("myGraph""isCustomer" : [ArangoCollection 10826, "isCustomer" (type edge, status loaded)], "shop" : [ArangoCollection 10825, "shop" (type document, status loaded)], - "customer" : [ArangoCollection 10814, "customer" (type document, status loaded)] + "customer" : [ArangoCollection 10815, "customer" (type document, status loaded)] }
Hide execution results
@@ -12164,7 +12312,7 @@ arangosh> var graph = graph_module._create( arangosh> graph._deleteEdgeDefinition("edges"); arangosh> graph._removeVertexCollection("vertices"); arangosh> db._drop("vertices"); -[ArangoError 1485: Collection 'vertices' must not be dropped while '_from_edges', '_to_edges', '_local_edges', 'edges' have distributeShardsLike set to 'vertices'.] +[ArangoError 1485: Collection 'vertices' must not be dropped while '_local_edges', '_to_edges', 'edges', '_from_edges' have distributeShardsLike set to 'vertices'.] @@ -12278,74 +12426,74 @@ arangosh> db.persons.toArray() { "_key" : "alice", "_id" : "persons/alice", - "_rev" : "_e4y3or6---", + "_rev" : "_e9T2BAe---", "name" : "Alice" }, { "_key" : "bob", "_id" : "persons/bob", - "_rev" : "_e4y3os----", + "_rev" : "_e9T2BAe--_", "name" : "Bob" }, { "_key" : "charlie", "_id" : "persons/charlie", - "_rev" : "_e4y3os---_", + "_rev" : "_e9T2BAe--A", "name" : "Charlie" }, { "_key" : "dave", "_id" : "persons/dave", - "_rev" : "_e4y3osC---", + "_rev" : "_e9T2BAe--B", "name" : "Dave" }, { "_key" : "eve", "_id" : "persons/eve", - "_rev" : "_e4y3osG---", + "_rev" : "_e9T2BAe--C", "name" : "Eve" } ] arangosh> db.knows.toArray(); [ { - "_key" : "82560", - "_id" : "knows/82560", + "_key" : "82676", + "_id" : "knows/82676", "_from" : "persons/alice", "_to" : "persons/bob", - "_rev" : "_e4y3osG--_", + "_rev" : "_e9T2BAe--D", "vertex" : "alice" }, { - "_key" : "82562", - "_id" : "knows/82562", + "_key" : "82678", + "_id" : "knows/82678", "_from" : "persons/bob", "_to" : "persons/charlie", - "_rev" : "_e4y3osK---", + "_rev" : "_e9T2BAe--E", "vertex" : "bob" }, { - "_key" : "82564", - "_id" : "knows/82564", + "_key" : "82680", + "_id" : "knows/82680", "_from" : "persons/bob", "_to" : "persons/dave", - "_rev" : "_e4y3osO---", + "_rev" : "_e9T2BAe--F", "vertex" : "bob" }, { - "_key" : "82566", - "_id" : "knows/82566", + "_key" : "82682", + "_id" : "knows/82682", "_from" : "persons/eve", "_to" : "persons/alice", - "_rev" : "_e4y3osS---", + "_rev" : "_e9T2BAe--G", "vertex" : "eve" }, { - "_key" : "82568", - "_id" : "knows/82568", + "_key" : "82684", + "_id" : "knows/82684", "_from" : "persons/eve", "_to" : "persons/bob", - "_rev" : "_e4y3osS--_", + "_rev" : "_e9T2BAe--H", "vertex" : "eve" } ] @@ -12380,13 +12528,13 @@ arangosh> db.female.toArray() { "_key" : "alice", "_id" : "female/alice", - "_rev" : "_e4y3ozm---", + "_rev" : "_e9T2BCK--_", "name" : "Alice" }, { "_key" : "diana", "_id" : "female/diana", - "_rev" : "_e4y3ozu--_", + "_rev" : "_e9T2BCO--_", "name" : "Diana" } ] @@ -12395,51 +12543,51 @@ arangosh> db.male.toArray() { "_key" : "bob", "_id" : "male/bob", - "_rev" : "_e4y3ozq---", + "_rev" : "_e9T2BCK--A", "name" : "Bob" }, { "_key" : "charly", "_id" : "male/charly", - "_rev" : "_e4y3ozu---", + "_rev" : "_e9T2BCO---", "name" : "Charly" } ] arangosh> db.relation.toArray() [ { - "_key" : "82814", - "_id" : "relation/82814", + "_key" : "82930", + "_id" : "relation/82930", "_from" : "female/alice", "_to" : "male/bob", - "_rev" : "_e4y3ozy---", + "_rev" : "_e9T2BCO--A", "type" : "married", "vertex" : "alice" }, { - "_key" : "82816", - "_id" : "relation/82816", + "_key" : "82932", + "_id" : "relation/82932", "_from" : "female/alice", "_to" : "male/charly", - "_rev" : "_e4y3oz2---", + "_rev" : "_e9T2BCO--B", "type" : "friend", "vertex" : "alice" }, { - "_key" : "82818", - "_id" : "relation/82818", + "_key" : "82934", + "_id" : "relation/82934", "_from" : "male/charly", "_to" : "female/diana", - "_rev" : "_e4y3oz6---", + "_rev" : "_e9T2BCO--C", "type" : "married", "vertex" : "charly" }, { - "_key" : "82820", - "_id" : "relation/82820", + "_key" : "82936", + "_id" : "relation/82936", "_from" : "male/bob", "_to" : "female/diana", - "_rev" : "_e4y3oz6--_", + "_rev" : "_e9T2BCO--D", "type" : "friend", "vertex" : "bob" } @@ -12476,7 +12624,7 @@ arangosh> db.frenchCity.toArray(); { "_key" : "Lyon", "_id" : "frenchCity/Lyon", - "_rev" : "_e4y3okq---", + "_rev" : "_e9T2B-2--B", "population" : 80000, "isCapital" : false, "geometry" : { @@ -12490,7 +12638,7 @@ arangosh> db.frenchCity.toArray(); { "_key" : "Paris", "_id" : "frenchCity/Paris", - "_rev" : "_e4y3oku---", + "_rev" : "_e9T2B-6---", "population" : 4000000, "isCapital" : true, "geometry" : { @@ -12507,7 +12655,7 @@ arangosh> db.germanCity.toArray(); { "_key" : "Berlin", "_id" : "germanCity/Berlin", - "_rev" : "_e4y3oki---", + "_rev" : "_e9T2B-2---", "population" : 3000000, "isCapital" : true, "geometry" : { @@ -12521,7 +12669,7 @@ arangosh> db.germanCity.toArray(); { "_key" : "Cologne", "_id" : "germanCity/Cologne", - "_rev" : "_e4y3okm---", + "_rev" : "_e9T2B-2--_", "population" : 1000000, "isCapital" : false, "geometry" : { @@ -12535,7 +12683,7 @@ arangosh> db.germanCity.toArray(); { "_key" : "Hamburg", "_id" : "germanCity/Hamburg", - "_rev" : "_e4y3okm--_", + "_rev" : "_e9T2B-2--A", "population" : 1000000, "isCapital" : false, "geometry" : { @@ -12550,89 +12698,89 @@ arangosh> db.germanCity.toArray(); arangosh> db.germanHighway.toArray(); [ { - "_key" : "82321", - "_id" : "germanHighway/82321", + "_key" : "82437", + "_id" : "germanHighway/82437", "_from" : "germanCity/Berlin", "_to" : "germanCity/Cologne", - "_rev" : "_e4y3olC---", + "_rev" : "_e9T2B_----", "distance" : 850 }, { - "_key" : "82323", - "_id" : "germanHighway/82323", + "_key" : "82439", + "_id" : "germanHighway/82439", "_from" : "germanCity/Berlin", "_to" : "germanCity/Hamburg", - "_rev" : "_e4y3olC--_", + "_rev" : "_e9T2B_---_", "distance" : 400 }, { - "_key" : "82325", - "_id" : "germanHighway/82325", + "_key" : "82441", + "_id" : "germanHighway/82441", "_from" : "germanCity/Hamburg", "_to" : "germanCity/Cologne", - "_rev" : "_e4y3olG---", + "_rev" : "_e9T2B_---A", "distance" : 500 } ] arangosh> db.frenchHighway.toArray(); [ { - "_key" : "82327", - "_id" : "frenchHighway/82327", + "_key" : "82443", + "_id" : "frenchHighway/82443", "_from" : "frenchCity/Paris", "_to" : "frenchCity/Lyon", - "_rev" : "_e4y3olK---", + "_rev" : "_e9T2B_---B", "distance" : 550 } ] arangosh> db.internationalHighway.toArray(); [ { - "_key" : "82329", - "_id" : "internationalHighway/82329", + "_key" : "82445", + "_id" : "internationalHighway/82445", "_from" : "germanCity/Berlin", "_to" : "frenchCity/Lyon", - "_rev" : "_e4y3olO---", + "_rev" : "_e9T2B_---C", "distance" : 1100 }, { - "_key" : "82331", - "_id" : "internationalHighway/82331", + "_key" : "82447", + "_id" : "internationalHighway/82447", "_from" : "germanCity/Berlin", "_to" : "frenchCity/Paris", - "_rev" : "_e4y3olO--_", + "_rev" : "_e9T2B_---D", "distance" : 1200 }, { - "_key" : "82333", - "_id" : "internationalHighway/82333", + "_key" : "82449", + "_id" : "internationalHighway/82449", "_from" : "germanCity/Hamburg", "_to" : "frenchCity/Paris", - "_rev" : "_e4y3olS---", + "_rev" : "_e9T2B_---E", "distance" : 900 }, { - "_key" : "82335", - "_id" : "internationalHighway/82335", + "_key" : "82451", + "_id" : "internationalHighway/82451", "_from" : "germanCity/Hamburg", "_to" : "frenchCity/Lyon", - "_rev" : "_e4y3olS--_", + "_rev" : "_e9T2B_---F", "distance" : 1300 }, { - "_key" : "82337", - "_id" : "internationalHighway/82337", + "_key" : "82453", + "_id" : "internationalHighway/82453", "_from" : "germanCity/Cologne", "_to" : "frenchCity/Lyon", - "_rev" : "_e4y3olW---", + "_rev" : "_e9T2B_---G", "distance" : 700 }, { - "_key" : "82339", - "_id" : "internationalHighway/82339", + "_key" : "82455", + "_id" : "internationalHighway/82455", "_from" : "germanCity/Cologne", "_to" : "frenchCity/Paris", - "_rev" : "_e4y3ola---", + "_rev" : "_e9T2B_---H", "distance" : 550 } ] @@ -12670,168 +12818,168 @@ arangosh> db.circles.toArray(); { "_key" : "A", "_id" : "circles/A", - "_rev" : "_e4y3o1K---", + "_rev" : "_e9T2BCi---", "label" : "1" }, { "_key" : "B", "_id" : "circles/B", - "_rev" : "_e4y3o1O---", + "_rev" : "_e9T2BCi--_", "label" : "2" }, { "_key" : "C", "_id" : "circles/C", - "_rev" : "_e4y3o1O--_", + "_rev" : "_e9T2BCi--A", "label" : "3" }, { "_key" : "D", "_id" : "circles/D", - "_rev" : "_e4y3o1S---", + "_rev" : "_e9T2BCi--B", "label" : "4" }, { "_key" : "E", "_id" : "circles/E", - "_rev" : "_e4y3o1W---", + "_rev" : "_e9T2BCi--C", "label" : "5" }, { "_key" : "F", "_id" : "circles/F", - "_rev" : "_e4y3o1W--_", + "_rev" : "_e9T2BCi--D", "label" : "6" }, { "_key" : "G", "_id" : "circles/G", - "_rev" : "_e4y3o1a---", + "_rev" : "_e9T2BCi--E", "label" : "7" }, { "_key" : "H", "_id" : "circles/H", - "_rev" : "_e4y3o1a--_", + "_rev" : "_e9T2BCm---", "label" : "8" }, { "_key" : "I", "_id" : "circles/I", - "_rev" : "_e4y3o1e---", + "_rev" : "_e9T2BCm--_", "label" : "9" }, { "_key" : "J", "_id" : "circles/J", - "_rev" : "_e4y3o1e--_", + "_rev" : "_e9T2BCm--A", "label" : "10" }, { "_key" : "K", "_id" : "circles/K", - "_rev" : "_e4y3o1i---", + "_rev" : "_e9T2BCm--B", "label" : "11" } ] arangosh> db.edges.toArray(); [ { - "_key" : "82882", - "_id" : "edges/82882", + "_key" : "82998", + "_id" : "edges/82998", "_from" : "circles/A", "_to" : "circles/B", - "_rev" : "_e4y3o1i--_", + "_rev" : "_e9T2BCm--C", "theFalse" : false, "theTruth" : true, "label" : "left_bar" }, { - "_key" : "82884", - "_id" : "edges/82884", + "_key" : "83000", + "_id" : "edges/83000", "_from" : "circles/B", "_to" : "circles/C", - "_rev" : "_e4y3o1m---", + "_rev" : "_e9T2BCm--D", "theFalse" : false, "theTruth" : true, "label" : "left_blarg" }, { - "_key" : "82886", - "_id" : "edges/82886", + "_key" : "83002", + "_id" : "edges/83002", "_from" : "circles/C", "_to" : "circles/D", - "_rev" : "_e4y3o1q---", + "_rev" : "_e9T2BCm--E", "theFalse" : false, "theTruth" : true, "label" : "left_blorg" }, { - "_key" : "82888", - "_id" : "edges/82888", + "_key" : "83004", + "_id" : "edges/83004", "_from" : "circles/B", "_to" : "circles/E", - "_rev" : "_e4y3o1q--_", + "_rev" : "_e9T2BCm--F", "theFalse" : false, "theTruth" : true, "label" : "left_blub" }, { - "_key" : "82890", - "_id" : "edges/82890", + "_key" : "83006", + "_id" : "edges/83006", "_from" : "circles/E", "_to" : "circles/F", - "_rev" : "_e4y3o1u---", + "_rev" : "_e9T2BCm--G", "theFalse" : false, "theTruth" : true, "label" : "left_schubi" }, { - "_key" : "82892", - "_id" : "edges/82892", + "_key" : "83008", + "_id" : "edges/83008", "_from" : "circles/A", "_to" : "circles/G", - "_rev" : "_e4y3o1u--_", + "_rev" : "_e9T2BCm--H", "theFalse" : false, "theTruth" : true, "label" : "right_foo" }, { - "_key" : "82894", - "_id" : "edges/82894", + "_key" : "83010", + "_id" : "edges/83010", "_from" : "circles/G", "_to" : "circles/H", - "_rev" : "_e4y3o1y---", + "_rev" : "_e9T2BCm--I", "theFalse" : false, "theTruth" : true, "label" : "right_blob" }, { - "_key" : "82896", - "_id" : "edges/82896", + "_key" : "83012", + "_id" : "edges/83012", "_from" : "circles/H", "_to" : "circles/I", - "_rev" : "_e4y3o1y--_", + "_rev" : "_e9T2BCq---", "theFalse" : false, "theTruth" : true, "label" : "right_blub" }, { - "_key" : "82898", - "_id" : "edges/82898", + "_key" : "83014", + "_id" : "edges/83014", "_from" : "circles/G", "_to" : "circles/J", - "_rev" : "_e4y3o12---", + "_rev" : "_e9T2BCq--_", "theFalse" : false, "theTruth" : true, "label" : "right_zip" }, { - "_key" : "82900", - "_id" : "edges/82900", + "_key" : "83016", + "_id" : "edges/83016", "_from" : "circles/J", "_to" : "circles/K", - "_rev" : "_e4y3o16---", + "_rev" : "_e9T2BCq--A", "theFalse" : false, "theTruth" : true, "label" : "right_zup" @@ -12868,400 +13016,400 @@ arangosh> db.places.toArray(); { "_key" : "Inverness", "_id" : "places/Inverness", - "_rev" : "_e4y3ote---", + "_rev" : "_e9T2BAy--A", "label" : "Inverness" }, { "_key" : "Aberdeen", "_id" : "places/Aberdeen", - "_rev" : "_e4y3oti---", + "_rev" : "_e9T2BAy--B", "label" : "Aberdeen" }, { "_key" : "Leuchars", "_id" : "places/Leuchars", - "_rev" : "_e4y3otm---", + "_rev" : "_e9T2BAy--C", "label" : "Leuchars" }, { "_key" : "StAndrews", "_id" : "places/StAndrews", - "_rev" : "_e4y3otm--_", + "_rev" : "_e9T2BAy--D", "label" : "StAndrews" }, { "_key" : "Edinburgh", "_id" : "places/Edinburgh", - "_rev" : "_e4y3otq---", + "_rev" : "_e9T2BA2---", "label" : "Edinburgh" }, { "_key" : "Glasgow", "_id" : "places/Glasgow", - "_rev" : "_e4y3otu---", + "_rev" : "_e9T2BA2--_", "label" : "Glasgow" }, { "_key" : "York", "_id" : "places/York", - "_rev" : "_e4y3otu--_", + "_rev" : "_e9T2BA2--A", "label" : "York" }, { "_key" : "Carlisle", "_id" : "places/Carlisle", - "_rev" : "_e4y3oty---", + "_rev" : "_e9T2BA2--B", "label" : "Carlisle" }, { "_key" : "Birmingham", "_id" : "places/Birmingham", - "_rev" : "_e4y3ot2---", + "_rev" : "_e9T2BA2--C", "label" : "Birmingham" }, { "_key" : "London", "_id" : "places/London", - "_rev" : "_e4y3ot2--_", + "_rev" : "_e9T2BA2--D", "label" : "London" }, { "_key" : "Brussels", "_id" : "places/Brussels", - "_rev" : "_e4y3ot6---", + "_rev" : "_e9T2BA2--E", "label" : "Brussels" }, { "_key" : "Cologne", "_id" : "places/Cologne", - "_rev" : "_e4y3ot6--_", + "_rev" : "_e9T2BA2--F", "label" : "Cologne" }, { "_key" : "Toronto", "_id" : "places/Toronto", - "_rev" : "_e4y3ot6--A", + "_rev" : "_e9T2BA2--G", "label" : "Toronto" }, { "_key" : "Winnipeg", "_id" : "places/Winnipeg", - "_rev" : "_e4y3ou----", + "_rev" : "_e9T2BA2--H", "label" : "Winnipeg" }, { "_key" : "Saskatoon", "_id" : "places/Saskatoon", - "_rev" : "_e4y3ouC---", + "_rev" : "_e9T2BA2--I", "label" : "Saskatoon" }, { "_key" : "Edmonton", "_id" : "places/Edmonton", - "_rev" : "_e4y3ouC--_", + "_rev" : "_e9T2BA6---", "label" : "Edmonton" }, { "_key" : "Jasper", "_id" : "places/Jasper", - "_rev" : "_e4y3ouG---", + "_rev" : "_e9T2BA6--_", "label" : "Jasper" }, { "_key" : "Vancouver", "_id" : "places/Vancouver", - "_rev" : "_e4y3ouG--_", + "_rev" : "_e9T2BA6--A", "label" : "Vancouver" } ] arangosh> db.connections.toArray(); [ { - "_key" : "82629", - "_id" : "connections/82629", + "_key" : "82745", + "_id" : "connections/82745", "_from" : "places/Inverness", "_to" : "places/Aberdeen", - "_rev" : "_e4y3ouK---", + "_rev" : "_e9T2BB----", "travelTime" : 3 }, { - "_key" : "82631", - "_id" : "connections/82631", + "_key" : "82747", + "_id" : "connections/82747", "_from" : "places/Aberdeen", "_to" : "places/Inverness", - "_rev" : "_e4y3ouO---", + "_rev" : "_e9T2BB---_", "travelTime" : 2.5 }, { - "_key" : "82633", - "_id" : "connections/82633", + "_key" : "82749", + "_id" : "connections/82749", "_from" : "places/Aberdeen", "_to" : "places/Leuchars", - "_rev" : "_e4y3ouS---", + "_rev" : "_e9T2BB---A", "travelTime" : 1.5 }, { - "_key" : "82635", - "_id" : "connections/82635", + "_key" : "82751", + "_id" : "connections/82751", "_from" : "places/Leuchars", "_to" : "places/Aberdeen", - "_rev" : "_e4y3ouS--_", + "_rev" : "_e9T2BB---B", "travelTime" : 1 }, { - "_key" : "82637", - "_id" : "connections/82637", + "_key" : "82753", + "_id" : "connections/82753", "_from" : "places/Leuchars", "_to" : "places/Edinburgh", - "_rev" : "_e4y3ouW---", + "_rev" : "_e9T2BB---C", "travelTime" : 1.5 }, { - "_key" : "82639", - "_id" : "connections/82639", + "_key" : "82755", + "_id" : "connections/82755", "_from" : "places/Edinburgh", "_to" : "places/Leuchars", - "_rev" : "_e4y3oua---", + "_rev" : "_e9T2BB---D", "travelTime" : 3 }, { - "_key" : "82641", - "_id" : "connections/82641", + "_key" : "82757", + "_id" : "connections/82757", "_from" : "places/Edinburgh", "_to" : "places/Glasgow", - "_rev" : "_e4y3oua--_", + "_rev" : "_e9T2BB---E", "travelTime" : 1 }, { - "_key" : "82643", - "_id" : "connections/82643", + "_key" : "82759", + "_id" : "connections/82759", "_from" : "places/Glasgow", "_to" : "places/Edinburgh", - "_rev" : "_e4y3oue---", + "_rev" : "_e9T2BB---F", "travelTime" : 1 }, { - "_key" : "82645", - "_id" : "connections/82645", + "_key" : "82761", + "_id" : "connections/82761", "_from" : "places/Edinburgh", "_to" : "places/York", - "_rev" : "_e4y3oue--_", + "_rev" : "_e9T2BB---G", "travelTime" : 3.5 }, { - "_key" : "82647", - "_id" : "connections/82647", + "_key" : "82763", + "_id" : "connections/82763", "_from" : "places/York", "_to" : "places/Edinburgh", - "_rev" : "_e4y3oui---", + "_rev" : "_e9T2BB---H", "travelTime" : 4 }, { - "_key" : "82649", - "_id" : "connections/82649", + "_key" : "82765", + "_id" : "connections/82765", "_from" : "places/Glasgow", "_to" : "places/Carlisle", - "_rev" : "_e4y3oui--_", + "_rev" : "_e9T2BBC---", "travelTime" : 1 }, { - "_key" : "82651", - "_id" : "connections/82651", + "_key" : "82767", + "_id" : "connections/82767", "_from" : "places/Carlisle", "_to" : "places/Glasgow", - "_rev" : "_e4y3oum---", + "_rev" : "_e9T2BBC--_", "travelTime" : 1 }, { - "_key" : "82653", - "_id" : "connections/82653", + "_key" : "82769", + "_id" : "connections/82769", "_from" : "places/Carlisle", "_to" : "places/York", - "_rev" : "_e4y3oum--_", + "_rev" : "_e9T2BBC--A", "travelTime" : 2.5 }, { - "_key" : "82655", - "_id" : "connections/82655", + "_key" : "82771", + "_id" : "connections/82771", "_from" : "places/York", "_to" : "places/Carlisle", - "_rev" : "_e4y3ouq---", + "_rev" : "_e9T2BBC--B", "travelTime" : 3.5 }, { - "_key" : "82657", - "_id" : "connections/82657", + "_key" : "82773", + "_id" : "connections/82773", "_from" : "places/Carlisle", "_to" : "places/Birmingham", - "_rev" : "_e4y3ouq--_", + "_rev" : "_e9T2BBC--C", "travelTime" : 2 }, { - "_key" : "82659", - "_id" : "connections/82659", + "_key" : "82775", + "_id" : "connections/82775", "_from" : "places/Birmingham", "_to" : "places/Carlisle", - "_rev" : "_e4y3ouu---", + "_rev" : "_e9T2BBC--D", "travelTime" : 1 }, { - "_key" : "82661", - "_id" : "connections/82661", + "_key" : "82777", + "_id" : "connections/82777", "_from" : "places/Birmingham", "_to" : "places/London", - "_rev" : "_e4y3ouu--_", + "_rev" : "_e9T2BBC--E", "travelTime" : 1.5 }, { - "_key" : "82663", - "_id" : "connections/82663", + "_key" : "82779", + "_id" : "connections/82779", "_from" : "places/London", "_to" : "places/Birmingham", - "_rev" : "_e4y3ouy---", + "_rev" : "_e9T2BBC--F", "travelTime" : 2.5 }, { - "_key" : "82665", - "_id" : "connections/82665", + "_key" : "82781", + "_id" : "connections/82781", "_from" : "places/Leuchars", "_to" : "places/StAndrews", - "_rev" : "_e4y3ouy--_", + "_rev" : "_e9T2BBC--G", "travelTime" : 0.2 }, { - "_key" : "82667", - "_id" : "connections/82667", + "_key" : "82783", + "_id" : "connections/82783", "_from" : "places/StAndrews", "_to" : "places/Leuchars", - "_rev" : "_e4y3ou2---", + "_rev" : "_e9T2BBC--H", "travelTime" : 0.2 }, { - "_key" : "82669", - "_id" : "connections/82669", + "_key" : "82785", + "_id" : "connections/82785", "_from" : "places/York", "_to" : "places/London", - "_rev" : "_e4y3ou2--_", + "_rev" : "_e9T2BBC--I", "travelTime" : 1.8 }, { - "_key" : "82671", - "_id" : "connections/82671", + "_key" : "82787", + "_id" : "connections/82787", "_from" : "places/London", "_to" : "places/York", - "_rev" : "_e4y3ou6---", + "_rev" : "_e9T2BBG---", "travelTime" : 2 }, { - "_key" : "82673", - "_id" : "connections/82673", + "_key" : "82789", + "_id" : "connections/82789", "_from" : "places/London", "_to" : "places/Brussels", - "_rev" : "_e4y3ou6--_", + "_rev" : "_e9T2BBG--_", "travelTime" : 2.5 }, { - "_key" : "82675", - "_id" : "connections/82675", + "_key" : "82791", + "_id" : "connections/82791", "_from" : "places/Brussels", "_to" : "places/London", - "_rev" : "_e4y3ou6--A", + "_rev" : "_e9T2BBG--A", "travelTime" : 3.5 }, { - "_key" : "82677", - "_id" : "connections/82677", + "_key" : "82793", + "_id" : "connections/82793", "_from" : "places/Brussels", "_to" : "places/Cologne", - "_rev" : "_e4y3ov----", + "_rev" : "_e9T2BBG--B", "travelTime" : 2 }, { - "_key" : "82679", - "_id" : "connections/82679", + "_key" : "82795", + "_id" : "connections/82795", "_from" : "places/Cologne", "_to" : "places/Brussels", - "_rev" : "_e4y3ov---_", + "_rev" : "_e9T2BBG--C", "travelTime" : 1.5 }, { - "_key" : "82681", - "_id" : "connections/82681", + "_key" : "82797", + "_id" : "connections/82797", "_from" : "places/Toronto", "_to" : "places/Winnipeg", - "_rev" : "_e4y3ovC---", + "_rev" : "_e9T2BBG--D", "travelTime" : 36 }, { - "_key" : "82683", - "_id" : "connections/82683", + "_key" : "82799", + "_id" : "connections/82799", "_from" : "places/Winnipeg", "_to" : "places/Toronto", - "_rev" : "_e4y3ovC--_", + "_rev" : "_e9T2BBG--E", "travelTime" : 35 }, { - "_key" : "82685", - "_id" : "connections/82685", + "_key" : "82801", + "_id" : "connections/82801", "_from" : "places/Winnipeg", "_to" : "places/Saskatoon", - "_rev" : "_e4y3ovG---", + "_rev" : "_e9T2BBG--F", "travelTime" : 12 }, { - "_key" : "82687", - "_id" : "connections/82687", + "_key" : "82803", + "_id" : "connections/82803", "_from" : "places/Saskatoon", "_to" : "places/Winnipeg", - "_rev" : "_e4y3ovG--_", + "_rev" : "_e9T2BBG--G", "travelTime" : 5 }, { - "_key" : "82689", - "_id" : "connections/82689", + "_key" : "82805", + "_id" : "connections/82805", "_from" : "places/Saskatoon", "_to" : "places/Edmonton", - "_rev" : "_e4y3ovK---", + "_rev" : "_e9T2BBG--H", "travelTime" : 12 }, { - "_key" : "82691", - "_id" : "connections/82691", + "_key" : "82807", + "_id" : "connections/82807", "_from" : "places/Edmonton", "_to" : "places/Saskatoon", - "_rev" : "_e4y3ovK--_", + "_rev" : "_e9T2BBK---", "travelTime" : 17 }, { - "_key" : "82693", - "_id" : "connections/82693", + "_key" : "82809", + "_id" : "connections/82809", "_from" : "places/Edmonton", "_to" : "places/Jasper", - "_rev" : "_e4y3ovK--A", + "_rev" : "_e9T2BBK--_", "travelTime" : 6 }, { - "_key" : "82695", - "_id" : "connections/82695", + "_key" : "82811", + "_id" : "connections/82811", "_from" : "places/Jasper", "_to" : "places/Edmonton", - "_rev" : "_e4y3ovO---", + "_rev" : "_e9T2BBK--A", "travelTime" : 5 }, { - "_key" : "82697", - "_id" : "connections/82697", + "_key" : "82813", + "_id" : "connections/82813", "_from" : "places/Jasper", "_to" : "places/Vancouver", - "_rev" : "_e4y3ovO--_", + "_rev" : "_e9T2BBK--B", "travelTime" : 12 }, { - "_key" : "82699", - "_id" : "connections/82699", + "_key" : "82815", + "_id" : "connections/82815", "_from" : "places/Vancouver", "_to" : "places/Jasper", - "_rev" : "_e4y3ovS---", + "_rev" : "_e9T2BBK--C", "travelTime" : 13 } ] @@ -13296,56 +13444,56 @@ arangosh> db.worldVertices.toArray(); { "_key" : "world", "_id" : "worldVertices/world", - "_rev" : "_e4y3o3i---", + "_rev" : "_e9T2BDC---", "name" : "World", "type" : "root" }, { "_key" : "continent-africa", "_id" : "worldVertices/continent-africa", - "_rev" : "_e4y3o3m---", + "_rev" : "_e9T2BDC--_", "name" : "Africa", "type" : "continent" }, { "_key" : "continent-asia", "_id" : "worldVertices/continent-asia", - "_rev" : "_e4y3o3m--_", + "_rev" : "_e9T2BDC--A", "name" : "Asia", "type" : "continent" }, { "_key" : "continent-australia", "_id" : "worldVertices/continent-australia", - "_rev" : "_e4y3o3q---", + "_rev" : "_e9T2BDC--B", "name" : "Australia", "type" : "continent" }, { "_key" : "continent-europe", "_id" : "worldVertices/continent-europe", - "_rev" : "_e4y3o3u---", + "_rev" : "_e9T2BDC--C", "name" : "Europe", "type" : "continent" }, { "_key" : "continent-north-america", "_id" : "worldVertices/continent-north-america", - "_rev" : "_e4y3o3u--_", + "_rev" : "_e9T2BDC--D", "name" : "North America", "type" : "continent" }, { "_key" : "continent-south-america", "_id" : "worldVertices/continent-south-america", - "_rev" : "_e4y3o3y---", + "_rev" : "_e9T2BDC--E", "name" : "South America", "type" : "continent" }, { "_key" : "country-afghanistan", "_id" : "worldVertices/country-afghanistan", - "_rev" : "_e4y3o32---", + "_rev" : "_e9T2BDG---", "name" : "Afghanistan", "type" : "country", "code" : "AFG" @@ -13353,7 +13501,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-albania", "_id" : "worldVertices/country-albania", - "_rev" : "_e4y3o32--_", + "_rev" : "_e9T2BDG--_", "name" : "Albania", "type" : "country", "code" : "ALB" @@ -13361,7 +13509,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-algeria", "_id" : "worldVertices/country-algeria", - "_rev" : "_e4y3o36---", + "_rev" : "_e9T2BDG--A", "name" : "Algeria", "type" : "country", "code" : "DZA" @@ -13369,7 +13517,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-andorra", "_id" : "worldVertices/country-andorra", - "_rev" : "_e4y3o36--_", + "_rev" : "_e9T2BDG--B", "name" : "Andorra", "type" : "country", "code" : "AND" @@ -13377,7 +13525,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-angola", "_id" : "worldVertices/country-angola", - "_rev" : "_e4y3o4----", + "_rev" : "_e9T2BDG--C", "name" : "Angola", "type" : "country", "code" : "AGO" @@ -13385,7 +13533,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-antigua-and-barbuda", "_id" : "worldVertices/country-antigua-and-barbuda", - "_rev" : "_e4y3o4C---", + "_rev" : "_e9T2BDG--D", "name" : "Antigua and Barbuda", "type" : "country", "code" : "ATG" @@ -13393,7 +13541,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-argentina", "_id" : "worldVertices/country-argentina", - "_rev" : "_e4y3o4C--_", + "_rev" : "_e9T2BDG--E", "name" : "Argentina", "type" : "country", "code" : "ARG" @@ -13401,7 +13549,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-australia", "_id" : "worldVertices/country-australia", - "_rev" : "_e4y3o4G---", + "_rev" : "_e9T2BDG--F", "name" : "Australia", "type" : "country", "code" : "AUS" @@ -13409,7 +13557,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-austria", "_id" : "worldVertices/country-austria", - "_rev" : "_e4y3o4G--_", + "_rev" : "_e9T2BDG--G", "name" : "Austria", "type" : "country", "code" : "AUT" @@ -13417,7 +13565,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-bahamas", "_id" : "worldVertices/country-bahamas", - "_rev" : "_e4y3o4K---", + "_rev" : "_e9T2BDG--H", "name" : "Bahamas", "type" : "country", "code" : "BHS" @@ -13425,7 +13573,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-bahrain", "_id" : "worldVertices/country-bahrain", - "_rev" : "_e4y3o4K--_", + "_rev" : "_e9T2BDG--I", "name" : "Bahrain", "type" : "country", "code" : "BHR" @@ -13433,7 +13581,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-bangladesh", "_id" : "worldVertices/country-bangladesh", - "_rev" : "_e4y3o4O---", + "_rev" : "_e9T2BDG--J", "name" : "Bangladesh", "type" : "country", "code" : "BGD" @@ -13441,7 +13589,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-barbados", "_id" : "worldVertices/country-barbados", - "_rev" : "_e4y3o4O--_", + "_rev" : "_e9T2BDK---", "name" : "Barbados", "type" : "country", "code" : "BRB" @@ -13449,7 +13597,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-belgium", "_id" : "worldVertices/country-belgium", - "_rev" : "_e4y3o4S---", + "_rev" : "_e9T2BDK--_", "name" : "Belgium", "type" : "country", "code" : "BEL" @@ -13457,7 +13605,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-bhutan", "_id" : "worldVertices/country-bhutan", - "_rev" : "_e4y3o4S--_", + "_rev" : "_e9T2BDK--A", "name" : "Bhutan", "type" : "country", "code" : "BTN" @@ -13465,7 +13613,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-bolivia", "_id" : "worldVertices/country-bolivia", - "_rev" : "_e4y3o4W---", + "_rev" : "_e9T2BDK--B", "name" : "Bolivia", "type" : "country", "code" : "BOL" @@ -13473,7 +13621,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-bosnia-and-herzegovina", "_id" : "worldVertices/country-bosnia-and-herzegovina", - "_rev" : "_e4y3o4W--_", + "_rev" : "_e9T2BDK--C", "name" : "Bosnia and Herzegovina", "type" : "country", "code" : "BIH" @@ -13481,7 +13629,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-botswana", "_id" : "worldVertices/country-botswana", - "_rev" : "_e4y3o4W--A", + "_rev" : "_e9T2BDK--D", "name" : "Botswana", "type" : "country", "code" : "BWA" @@ -13489,7 +13637,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-brazil", "_id" : "worldVertices/country-brazil", - "_rev" : "_e4y3o4a---", + "_rev" : "_e9T2BDK--E", "name" : "Brazil", "type" : "country", "code" : "BRA" @@ -13497,7 +13645,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-brunei", "_id" : "worldVertices/country-brunei", - "_rev" : "_e4y3o4a--_", + "_rev" : "_e9T2BDK--F", "name" : "Brunei", "type" : "country", "code" : "BRN" @@ -13505,7 +13653,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-bulgaria", "_id" : "worldVertices/country-bulgaria", - "_rev" : "_e4y3o4e---", + "_rev" : "_e9T2BDK--G", "name" : "Bulgaria", "type" : "country", "code" : "BGR" @@ -13513,7 +13661,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-burkina-faso", "_id" : "worldVertices/country-burkina-faso", - "_rev" : "_e4y3o4e--_", + "_rev" : "_e9T2BDK--H", "name" : "Burkina Faso", "type" : "country", "code" : "BFA" @@ -13521,7 +13669,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-burundi", "_id" : "worldVertices/country-burundi", - "_rev" : "_e4y3o4i---", + "_rev" : "_e9T2BDK--I", "name" : "Burundi", "type" : "country", "code" : "BDI" @@ -13529,7 +13677,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-cambodia", "_id" : "worldVertices/country-cambodia", - "_rev" : "_e4y3o4i--_", + "_rev" : "_e9T2BDK--J", "name" : "Cambodia", "type" : "country", "code" : "KHM" @@ -13537,7 +13685,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-cameroon", "_id" : "worldVertices/country-cameroon", - "_rev" : "_e4y3o4m---", + "_rev" : "_e9T2BDO---", "name" : "Cameroon", "type" : "country", "code" : "CMR" @@ -13545,7 +13693,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-canada", "_id" : "worldVertices/country-canada", - "_rev" : "_e4y3o4m--_", + "_rev" : "_e9T2BDO--_", "name" : "Canada", "type" : "country", "code" : "CAN" @@ -13553,7 +13701,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-chad", "_id" : "worldVertices/country-chad", - "_rev" : "_e4y3o4q---", + "_rev" : "_e9T2BDO--A", "name" : "Chad", "type" : "country", "code" : "TCD" @@ -13561,7 +13709,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-chile", "_id" : "worldVertices/country-chile", - "_rev" : "_e4y3o4q--_", + "_rev" : "_e9T2BDO--B", "name" : "Chile", "type" : "country", "code" : "CHL" @@ -13569,7 +13717,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-colombia", "_id" : "worldVertices/country-colombia", - "_rev" : "_e4y3o4u---", + "_rev" : "_e9T2BDO--C", "name" : "Colombia", "type" : "country", "code" : "COL" @@ -13577,7 +13725,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-cote-d-ivoire", "_id" : "worldVertices/country-cote-d-ivoire", - "_rev" : "_e4y3o4u--_", + "_rev" : "_e9T2BDO--D", "name" : "Cote d'Ivoire", "type" : "country", "code" : "CIV" @@ -13585,7 +13733,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-croatia", "_id" : "worldVertices/country-croatia", - "_rev" : "_e4y3o4y---", + "_rev" : "_e9T2BDO--E", "name" : "Croatia", "type" : "country", "code" : "HRV" @@ -13593,7 +13741,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-czech-republic", "_id" : "worldVertices/country-czech-republic", - "_rev" : "_e4y3o4y--_", + "_rev" : "_e9T2BDO--F", "name" : "Czech Republic", "type" : "country", "code" : "CZE" @@ -13601,7 +13749,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-denmark", "_id" : "worldVertices/country-denmark", - "_rev" : "_e4y3o4y--A", + "_rev" : "_e9T2BDO--G", "name" : "Denmark", "type" : "country", "code" : "DNK" @@ -13609,7 +13757,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-ecuador", "_id" : "worldVertices/country-ecuador", - "_rev" : "_e4y3o42---", + "_rev" : "_e9T2BDO--H", "name" : "Ecuador", "type" : "country", "code" : "ECU" @@ -13617,7 +13765,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-egypt", "_id" : "worldVertices/country-egypt", - "_rev" : "_e4y3o42--_", + "_rev" : "_e9T2BDO--I", "name" : "Egypt", "type" : "country", "code" : "EGY" @@ -13625,7 +13773,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-eritrea", "_id" : "worldVertices/country-eritrea", - "_rev" : "_e4y3o46---", + "_rev" : "_e9T2BDO--J", "name" : "Eritrea", "type" : "country", "code" : "ERI" @@ -13633,7 +13781,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-finland", "_id" : "worldVertices/country-finland", - "_rev" : "_e4y3o46--_", + "_rev" : "_e9T2BDS---", "name" : "Finland", "type" : "country", "code" : "FIN" @@ -13641,7 +13789,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-france", "_id" : "worldVertices/country-france", - "_rev" : "_e4y3o46--A", + "_rev" : "_e9T2BDS--_", "name" : "France", "type" : "country", "code" : "FRA" @@ -13649,7 +13797,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-germany", "_id" : "worldVertices/country-germany", - "_rev" : "_e4y3o5----", + "_rev" : "_e9T2BDS--A", "name" : "Germany", "type" : "country", "code" : "DEU" @@ -13657,7 +13805,7 @@ arangosh> db.worldVertices.toArray(); { "_key" : "country-people-s-republic-of-china", "_id" : "worldVertices/country-people-s-republic-of-china", - "_rev" : "_e4y3o5---_", + "_rev" : "_e9T2BDS--B", "name" : "People's Republic of China", "type" : "country", "code" : "CHN" @@ -13665,280 +13813,280 @@ arangosh> db.worldVertices.toArray(); { "_key" : "capital-algiers", "_id" : "worldVertices/capital-algiers", - "_rev" : "_e4y3o5C---", + "_rev" : "_e9T2BDS--C", "name" : "Algiers", "type" : "capital" }, { "_key" : "capital-andorra-la-vella", "_id" : "worldVertices/capital-andorra-la-vella", - "_rev" : "_e4y3o5C--_", + "_rev" : "_e9T2BDS--D", "name" : "Andorra la Vella", "type" : "capital" }, { "_key" : "capital-asmara", "_id" : "worldVertices/capital-asmara", - "_rev" : "_e4y3o5C--A", + "_rev" : "_e9T2BDS--E", "name" : "Asmara", "type" : "capital" }, { "_key" : "capital-bandar-seri-begawan", "_id" : "worldVertices/capital-bandar-seri-begawan", - "_rev" : "_e4y3o5G---", + "_rev" : "_e9T2BDS--F", "name" : "Bandar Seri Begawan", "type" : "capital" }, { "_key" : "capital-beijing", "_id" : "worldVertices/capital-beijing", - "_rev" : "_e4y3o5G--_", + "_rev" : "_e9T2BDS--G", "name" : "Beijing", "type" : "capital" }, { "_key" : "capital-berlin", "_id" : "worldVertices/capital-berlin", - "_rev" : "_e4y3o5K---", + "_rev" : "_e9T2BDS--H", "name" : "Berlin", "type" : "capital" }, { "_key" : "capital-bogota", "_id" : "worldVertices/capital-bogota", - "_rev" : "_e4y3o5K--_", + "_rev" : "_e9T2BDS--I", "name" : "Bogota", "type" : "capital" }, { "_key" : "capital-brasilia", "_id" : "worldVertices/capital-brasilia", - "_rev" : "_e4y3o5K--A", + "_rev" : "_e9T2BDS--J", "name" : "Brasilia", "type" : "capital" }, { "_key" : "capital-bridgetown", "_id" : "worldVertices/capital-bridgetown", - "_rev" : "_e4y3o5O---", + "_rev" : "_e9T2BDS--K", "name" : "Bridgetown", "type" : "capital" }, { "_key" : "capital-brussels", "_id" : "worldVertices/capital-brussels", - "_rev" : "_e4y3o5O--_", + "_rev" : "_e9T2BDW---", "name" : "Brussels", "type" : "capital" }, { "_key" : "capital-buenos-aires", "_id" : "worldVertices/capital-buenos-aires", - "_rev" : "_e4y3o5S---", + "_rev" : "_e9T2BDW--_", "name" : "Buenos Aires", "type" : "capital" }, { "_key" : "capital-bujumbura", "_id" : "worldVertices/capital-bujumbura", - "_rev" : "_e4y3o5S--_", + "_rev" : "_e9T2BDW--A", "name" : "Bujumbura", "type" : "capital" }, { "_key" : "capital-cairo", "_id" : "worldVertices/capital-cairo", - "_rev" : "_e4y3o5S--A", + "_rev" : "_e9T2BDW--B", "name" : "Cairo", "type" : "capital" }, { "_key" : "capital-canberra", "_id" : "worldVertices/capital-canberra", - "_rev" : "_e4y3o5W---", + "_rev" : "_e9T2BDW--C", "name" : "Canberra", "type" : "capital" }, { "_key" : "capital-copenhagen", "_id" : "worldVertices/capital-copenhagen", - "_rev" : "_e4y3o5W--_", + "_rev" : "_e9T2BDW--D", "name" : "Copenhagen", "type" : "capital" }, { "_key" : "capital-dhaka", "_id" : "worldVertices/capital-dhaka", - "_rev" : "_e4y3o5a---", + "_rev" : "_e9T2BDW--E", "name" : "Dhaka", "type" : "capital" }, { "_key" : "capital-gaborone", "_id" : "worldVertices/capital-gaborone", - "_rev" : "_e4y3o5a--_", + "_rev" : "_e9T2BDW--F", "name" : "Gaborone", "type" : "capital" }, { "_key" : "capital-helsinki", "_id" : "worldVertices/capital-helsinki", - "_rev" : "_e4y3o5a--A", + "_rev" : "_e9T2BDW--G", "name" : "Helsinki", "type" : "capital" }, { "_key" : "capital-kabul", "_id" : "worldVertices/capital-kabul", - "_rev" : "_e4y3o5e---", + "_rev" : "_e9T2BDW--H", "name" : "Kabul", "type" : "capital" }, { "_key" : "capital-la-paz", "_id" : "worldVertices/capital-la-paz", - "_rev" : "_e4y3o5e--_", + "_rev" : "_e9T2BDW--I", "name" : "La Paz", "type" : "capital" }, { "_key" : "capital-luanda", "_id" : "worldVertices/capital-luanda", - "_rev" : "_e4y3o5e--A", + "_rev" : "_e9T2BDW--J", "name" : "Luanda", "type" : "capital" }, { "_key" : "capital-manama", "_id" : "worldVertices/capital-manama", - "_rev" : "_e4y3o5i---", + "_rev" : "_e9T2BDa---", "name" : "Manama", "type" : "capital" }, { "_key" : "capital-nassau", "_id" : "worldVertices/capital-nassau", - "_rev" : "_e4y3o5i--_", + "_rev" : "_e9T2BDa--_", "name" : "Nassau", "type" : "capital" }, { "_key" : "capital-n-djamena", "_id" : "worldVertices/capital-n-djamena", - "_rev" : "_e4y3o5m---", + "_rev" : "_e9T2BDa--A", "name" : "N'Djamena", "type" : "capital" }, { "_key" : "capital-ottawa", "_id" : "worldVertices/capital-ottawa", - "_rev" : "_e4y3o5m--_", + "_rev" : "_e9T2BDa--B", "name" : "Ottawa", "type" : "capital" }, { "_key" : "capital-ouagadougou", "_id" : "worldVertices/capital-ouagadougou", - "_rev" : "_e4y3o5m--A", + "_rev" : "_e9T2BDa--C", "name" : "Ouagadougou", "type" : "capital" }, { "_key" : "capital-paris", "_id" : "worldVertices/capital-paris", - "_rev" : "_e4y3o5q---", + "_rev" : "_e9T2BDa--D", "name" : "Paris", "type" : "capital" }, { "_key" : "capital-phnom-penh", "_id" : "worldVertices/capital-phnom-penh", - "_rev" : "_e4y3o5q--_", + "_rev" : "_e9T2BDa--E", "name" : "Phnom Penh", "type" : "capital" }, { "_key" : "capital-prague", "_id" : "worldVertices/capital-prague", - "_rev" : "_e4y3o5q--A", + "_rev" : "_e9T2BDa--F", "name" : "Prague", "type" : "capital" }, { "_key" : "capital-quito", "_id" : "worldVertices/capital-quito", - "_rev" : "_e4y3o5u---", + "_rev" : "_e9T2BDa--G", "name" : "Quito", "type" : "capital" }, { "_key" : "capital-saint-john-s", "_id" : "worldVertices/capital-saint-john-s", - "_rev" : "_e4y3o5u--_", + "_rev" : "_e9T2BDa--H", "name" : "Saint John's", "type" : "capital" }, { "_key" : "capital-santiago", "_id" : "worldVertices/capital-santiago", - "_rev" : "_e4y3o5y---", + "_rev" : "_e9T2BDa--I", "name" : "Santiago", "type" : "capital" }, { "_key" : "capital-sarajevo", "_id" : "worldVertices/capital-sarajevo", - "_rev" : "_e4y3o5y--_", + "_rev" : "_e9T2BDa--J", "name" : "Sarajevo", "type" : "capital" }, { "_key" : "capital-sofia", "_id" : "worldVertices/capital-sofia", - "_rev" : "_e4y3o5y--A", + "_rev" : "_e9T2BDe---", "name" : "Sofia", "type" : "capital" }, { "_key" : "capital-thimphu", "_id" : "worldVertices/capital-thimphu", - "_rev" : "_e4y3o52---", + "_rev" : "_e9T2BDe--_", "name" : "Thimphu", "type" : "capital" }, { "_key" : "capital-tirana", "_id" : "worldVertices/capital-tirana", - "_rev" : "_e4y3o52--_", + "_rev" : "_e9T2BDe--A", "name" : "Tirana", "type" : "capital" }, { "_key" : "capital-vienna", "_id" : "worldVertices/capital-vienna", - "_rev" : "_e4y3o52--A", + "_rev" : "_e9T2BDe--B", "name" : "Vienna", "type" : "capital" }, { "_key" : "capital-yamoussoukro", "_id" : "worldVertices/capital-yamoussoukro", - "_rev" : "_e4y3o56---", + "_rev" : "_e9T2BDe--C", "name" : "Yamoussoukro", "type" : "capital" }, { "_key" : "capital-yaounde", "_id" : "worldVertices/capital-yaounde", - "_rev" : "_e4y3o56--_", + "_rev" : "_e9T2BDe--D", "name" : "Yaounde", "type" : "capital" }, { "_key" : "capital-zagreb", "_id" : "worldVertices/capital-zagreb", - "_rev" : "_e4y3o56--A", + "_rev" : "_e9T2BDe--E", "name" : "Zagreb", "type" : "capital" } @@ -13946,691 +14094,691 @@ arangosh> db.worldVertices.toArray(); arangosh> db.worldEdges.toArray(); [ { - "_key" : "83030", - "_id" : "worldEdges/83030", + "_key" : "83146", + "_id" : "worldEdges/83146", "_from" : "worldVertices/continent-africa", "_to" : "worldVertices/world", - "_rev" : "_e4y3o6----", + "_rev" : "_e9T2BDe--F", "type" : "is-in" }, { - "_key" : "83032", - "_id" : "worldEdges/83032", + "_key" : "83148", + "_id" : "worldEdges/83148", "_from" : "worldVertices/continent-asia", "_to" : "worldVertices/world", - "_rev" : "_e4y3o6---_", + "_rev" : "_e9T2BDe--G", "type" : "is-in" }, { - "_key" : "83034", - "_id" : "worldEdges/83034", + "_key" : "83150", + "_id" : "worldEdges/83150", "_from" : "worldVertices/continent-australia", "_to" : "worldVertices/world", - "_rev" : "_e4y3o6C---", + "_rev" : "_e9T2BDe--H", "type" : "is-in" }, { - "_key" : "83036", - "_id" : "worldEdges/83036", + "_key" : "83152", + "_id" : "worldEdges/83152", "_from" : "worldVertices/continent-europe", "_to" : "worldVertices/world", - "_rev" : "_e4y3o6C--_", + "_rev" : "_e9T2BDe--I", "type" : "is-in" }, { - "_key" : "83038", - "_id" : "worldEdges/83038", + "_key" : "83154", + "_id" : "worldEdges/83154", "_from" : "worldVertices/continent-north-america", "_to" : "worldVertices/world", - "_rev" : "_e4y3o6G---", + "_rev" : "_e9T2BDe--J", "type" : "is-in" }, { - "_key" : "83040", - "_id" : "worldEdges/83040", + "_key" : "83156", + "_id" : "worldEdges/83156", "_from" : "worldVertices/continent-south-america", "_to" : "worldVertices/world", - "_rev" : "_e4y3o6G--_", + "_rev" : "_e9T2BDi---", "type" : "is-in" }, { - "_key" : "83042", - "_id" : "worldEdges/83042", + "_key" : "83158", + "_id" : "worldEdges/83158", "_from" : "worldVertices/country-afghanistan", "_to" : "worldVertices/continent-asia", - "_rev" : "_e4y3o6G--A", + "_rev" : "_e9T2BDi--_", "type" : "is-in" }, { - "_key" : "83044", - "_id" : "worldEdges/83044", + "_key" : "83160", + "_id" : "worldEdges/83160", "_from" : "worldVertices/country-albania", "_to" : "worldVertices/continent-europe", - "_rev" : "_e4y3o6K---", + "_rev" : "_e9T2BDi--A", "type" : "is-in" }, { - "_key" : "83046", - "_id" : "worldEdges/83046", + "_key" : "83162", + "_id" : "worldEdges/83162", "_from" : "worldVertices/country-algeria", "_to" : "worldVertices/continent-africa", - "_rev" : "_e4y3o6K--_", + "_rev" : "_e9T2BDi--B", "type" : "is-in" }, { - "_key" : "83048", - "_id" : "worldEdges/83048", + "_key" : "83164", + "_id" : "worldEdges/83164", "_from" : "worldVertices/country-andorra", "_to" : "worldVertices/continent-europe", - "_rev" : "_e4y3o6O---", + "_rev" : "_e9T2BDi--C", "type" : "is-in" }, { - "_key" : "83050", - "_id" : "worldEdges/83050", + "_key" : "83166", + "_id" : "worldEdges/83166", "_from" : "worldVertices/country-angola", "_to" : "worldVertices/continent-africa", - "_rev" : "_e4y3o6O--_", + "_rev" : "_e9T2BDi--D", "type" : "is-in" }, { - "_key" : "83052", - "_id" : "worldEdges/83052", + "_key" : "83168", + "_id" : "worldEdges/83168", "_from" : "worldVertices/country-antigua-and-barbuda", "_to" : "worldVertices/continent-north-america", - "_rev" : "_e4y3o6O--A", + "_rev" : "_e9T2BDi--E", "type" : "is-in" }, { - "_key" : "83054", - "_id" : "worldEdges/83054", + "_key" : "83170", + "_id" : "worldEdges/83170", "_from" : "worldVertices/country-argentina", "_to" : "worldVertices/continent-south-america", - "_rev" : "_e4y3o6S---", + "_rev" : "_e9T2BDi--F", "type" : "is-in" }, { - "_key" : "83056", - "_id" : "worldEdges/83056", + "_key" : "83172", + "_id" : "worldEdges/83172", "_from" : "worldVertices/country-australia", "_to" : "worldVertices/continent-australia", - "_rev" : "_e4y3o6S--_", + "_rev" : "_e9T2BDi--G", "type" : "is-in" }, { - "_key" : "83058", - "_id" : "worldEdges/83058", + "_key" : "83174", + "_id" : "worldEdges/83174", "_from" : "worldVertices/country-austria", "_to" : "worldVertices/continent-europe", - "_rev" : "_e4y3o6W---", + "_rev" : "_e9T2BDi--H", "type" : "is-in" }, { - "_key" : "83060", - "_id" : "worldEdges/83060", + "_key" : "83176", + "_id" : "worldEdges/83176", "_from" : "worldVertices/country-bahamas", "_to" : "worldVertices/continent-north-america", - "_rev" : "_e4y3o6W--_", + "_rev" : "_e9T2BDi--I", "type" : "is-in" }, { - "_key" : "83062", - "_id" : "worldEdges/83062", + "_key" : "83178", + "_id" : "worldEdges/83178", "_from" : "worldVertices/country-bahrain", "_to" : "worldVertices/continent-asia", - "_rev" : "_e4y3o6W--A", + "_rev" : "_e9T2BDm---", "type" : "is-in" }, { - "_key" : "83064", - "_id" : "worldEdges/83064", + "_key" : "83180", + "_id" : "worldEdges/83180", "_from" : "worldVertices/country-bangladesh", "_to" : "worldVertices/continent-asia", - "_rev" : "_e4y3o6a---", + "_rev" : "_e9T2BDm--_", "type" : "is-in" }, { - "_key" : "83066", - "_id" : "worldEdges/83066", + "_key" : "83182", + "_id" : "worldEdges/83182", "_from" : "worldVertices/country-barbados", "_to" : "worldVertices/continent-north-america", - "_rev" : "_e4y3o6a--_", + "_rev" : "_e9T2BDm--A", "type" : "is-in" }, { - "_key" : "83068", - "_id" : "worldEdges/83068", + "_key" : "83184", + "_id" : "worldEdges/83184", "_from" : "worldVertices/country-belgium", "_to" : "worldVertices/continent-europe", - "_rev" : "_e4y3o6e---", + "_rev" : "_e9T2BDm--B", "type" : "is-in" }, { - "_key" : "83070", - "_id" : "worldEdges/83070", + "_key" : "83186", + "_id" : "worldEdges/83186", "_from" : "worldVertices/country-bhutan", "_to" : "worldVertices/continent-asia", - "_rev" : "_e4y3o6e--_", + "_rev" : "_e9T2BDm--C", "type" : "is-in" }, { - "_key" : "83072", - "_id" : "worldEdges/83072", + "_key" : "83188", + "_id" : "worldEdges/83188", "_from" : "worldVertices/country-bolivia", "_to" : "worldVertices/continent-south-america", - "_rev" : "_e4y3o6i---", + "_rev" : "_e9T2BDm--D", "type" : "is-in" }, { - "_key" : "83074", - "_id" : "worldEdges/83074", + "_key" : "83190", + "_id" : "worldEdges/83190", "_from" : "worldVertices/country-bosnia-and-herzegovina", "_to" : "worldVertices/continent-europe", - "_rev" : "_e4y3o6i--_", + "_rev" : "_e9T2BDm--E", "type" : "is-in" }, { - "_key" : "83076", - "_id" : "worldEdges/83076", + "_key" : "83192", + "_id" : "worldEdges/83192", "_from" : "worldVertices/country-botswana", "_to" : "worldVertices/continent-africa", - "_rev" : "_e4y3o6i--A", + "_rev" : "_e9T2BDm--F", "type" : "is-in" }, { - "_key" : "83078", - "_id" : "worldEdges/83078", + "_key" : "83194", + "_id" : "worldEdges/83194", "_from" : "worldVertices/country-brazil", "_to" : "worldVertices/continent-south-america", - "_rev" : "_e4y3o6m---", + "_rev" : "_e9T2BDm--G", "type" : "is-in" }, { - "_key" : "83080", - "_id" : "worldEdges/83080", + "_key" : "83196", + "_id" : "worldEdges/83196", "_from" : "worldVertices/country-brunei", "_to" : "worldVertices/continent-asia", - "_rev" : "_e4y3o6m--_", + "_rev" : "_e9T2BDm--H", "type" : "is-in" }, { - "_key" : "83082", - "_id" : "worldEdges/83082", + "_key" : "83198", + "_id" : "worldEdges/83198", "_from" : "worldVertices/country-bulgaria", "_to" : "worldVertices/continent-europe", - "_rev" : "_e4y3o6q---", + "_rev" : "_e9T2BDm--I", "type" : "is-in" }, { - "_key" : "83084", - "_id" : "worldEdges/83084", + "_key" : "83200", + "_id" : "worldEdges/83200", "_from" : "worldVertices/country-burkina-faso", "_to" : "worldVertices/continent-africa", - "_rev" : "_e4y3o6q--_", + "_rev" : "_e9T2BDq---", "type" : "is-in" }, { - "_key" : "83086", - "_id" : "worldEdges/83086", + "_key" : "83202", + "_id" : "worldEdges/83202", "_from" : "worldVertices/country-burundi", "_to" : "worldVertices/continent-africa", - "_rev" : "_e4y3o6q--A", + "_rev" : "_e9T2BDq--_", "type" : "is-in" }, { - "_key" : "83088", - "_id" : "worldEdges/83088", + "_key" : "83204", + "_id" : "worldEdges/83204", "_from" : "worldVertices/country-cambodia", "_to" : "worldVertices/continent-asia", - "_rev" : "_e4y3o6u---", + "_rev" : "_e9T2BDq--A", "type" : "is-in" }, { - "_key" : "83090", - "_id" : "worldEdges/83090", + "_key" : "83206", + "_id" : "worldEdges/83206", "_from" : "worldVertices/country-cameroon", "_to" : "worldVertices/continent-africa", - "_rev" : "_e4y3o6u--_", + "_rev" : "_e9T2BDq--B", "type" : "is-in" }, { - "_key" : "83092", - "_id" : "worldEdges/83092", + "_key" : "83208", + "_id" : "worldEdges/83208", "_from" : "worldVertices/country-canada", "_to" : "worldVertices/continent-north-america", - "_rev" : "_e4y3o6y---", + "_rev" : "_e9T2BDq--C", "type" : "is-in" }, { - "_key" : "83094", - "_id" : "worldEdges/83094", + "_key" : "83210", + "_id" : "worldEdges/83210", "_from" : "worldVertices/country-chad", "_to" : "worldVertices/continent-africa", - "_rev" : "_e4y3o6y--_", + "_rev" : "_e9T2BDq--D", "type" : "is-in" }, { - "_key" : "83096", - "_id" : "worldEdges/83096", + "_key" : "83212", + "_id" : "worldEdges/83212", "_from" : "worldVertices/country-chile", "_to" : "worldVertices/continent-south-america", - "_rev" : "_e4y3o62---", + "_rev" : "_e9T2BDq--E", "type" : "is-in" }, { - "_key" : "83098", - "_id" : "worldEdges/83098", + "_key" : "83214", + "_id" : "worldEdges/83214", "_from" : "worldVertices/country-colombia", "_to" : "worldVertices/continent-south-america", - "_rev" : "_e4y3o62--_", + "_rev" : "_e9T2BDq--F", "type" : "is-in" }, { - "_key" : "83100", - "_id" : "worldEdges/83100", + "_key" : "83216", + "_id" : "worldEdges/83216", "_from" : "worldVertices/country-cote-d-ivoire", "_to" : "worldVertices/continent-africa", - "_rev" : "_e4y3o62--A", + "_rev" : "_e9T2BDq--G", "type" : "is-in" }, { - "_key" : "83102", - "_id" : "worldEdges/83102", + "_key" : "83218", + "_id" : "worldEdges/83218", "_from" : "worldVertices/country-croatia", "_to" : "worldVertices/continent-europe", - "_rev" : "_e4y3o66---", + "_rev" : "_e9T2BDq--H", "type" : "is-in" }, { - "_key" : "83104", - "_id" : "worldEdges/83104", + "_key" : "83220", + "_id" : "worldEdges/83220", "_from" : "worldVertices/country-czech-republic", "_to" : "worldVertices/continent-europe", - "_rev" : "_e4y3o66--_", + "_rev" : "_e9T2BDq--I", "type" : "is-in" }, { - "_key" : "83106", - "_id" : "worldEdges/83106", + "_key" : "83222", + "_id" : "worldEdges/83222", "_from" : "worldVertices/country-denmark", "_to" : "worldVertices/continent-europe", - "_rev" : "_e4y3o7----", + "_rev" : "_e9T2BDu---", "type" : "is-in" }, { - "_key" : "83108", - "_id" : "worldEdges/83108", + "_key" : "83224", + "_id" : "worldEdges/83224", "_from" : "worldVertices/country-ecuador", "_to" : "worldVertices/continent-south-america", - "_rev" : "_e4y3o7---_", + "_rev" : "_e9T2BDu--_", "type" : "is-in" }, { - "_key" : "83110", - "_id" : "worldEdges/83110", + "_key" : "83226", + "_id" : "worldEdges/83226", "_from" : "worldVertices/country-egypt", "_to" : "worldVertices/continent-africa", - "_rev" : "_e4y3o7---A", + "_rev" : "_e9T2BDu--A", "type" : "is-in" }, { - "_key" : "83112", - "_id" : "worldEdges/83112", + "_key" : "83228", + "_id" : "worldEdges/83228", "_from" : "worldVertices/country-eritrea", "_to" : "worldVertices/continent-africa", - "_rev" : "_e4y3o7C---", + "_rev" : "_e9T2BDu--B", "type" : "is-in" }, { - "_key" : "83114", - "_id" : "worldEdges/83114", + "_key" : "83230", + "_id" : "worldEdges/83230", "_from" : "worldVertices/country-finland", "_to" : "worldVertices/continent-europe", - "_rev" : "_e4y3o7C--_", + "_rev" : "_e9T2BDu--C", "type" : "is-in" }, { - "_key" : "83116", - "_id" : "worldEdges/83116", + "_key" : "83232", + "_id" : "worldEdges/83232", "_from" : "worldVertices/country-france", "_to" : "worldVertices/continent-europe", - "_rev" : "_e4y3o7G---", + "_rev" : "_e9T2BDu--D", "type" : "is-in" }, { - "_key" : "83118", - "_id" : "worldEdges/83118", + "_key" : "83234", + "_id" : "worldEdges/83234", "_from" : "worldVertices/country-germany", "_to" : "worldVertices/continent-europe", - "_rev" : "_e4y3o7G--_", + "_rev" : "_e9T2BDu--E", "type" : "is-in" }, { - "_key" : "83120", - "_id" : "worldEdges/83120", + "_key" : "83236", + "_id" : "worldEdges/83236", "_from" : "worldVertices/country-people-s-republic-of-china", "_to" : "worldVertices/continent-asia", - "_rev" : "_e4y3o7K---", + "_rev" : "_e9T2BDu--F", "type" : "is-in" }, { - "_key" : "83122", - "_id" : "worldEdges/83122", + "_key" : "83238", + "_id" : "worldEdges/83238", "_from" : "worldVertices/capital-algiers", "_to" : "worldVertices/country-algeria", - "_rev" : "_e4y3o7K--_", + "_rev" : "_e9T2BDu--G", "type" : "is-in" }, { - "_key" : "83124", - "_id" : "worldEdges/83124", + "_key" : "83240", + "_id" : "worldEdges/83240", "_from" : "worldVertices/capital-andorra-la-vella", "_to" : "worldVertices/country-andorra", - "_rev" : "_e4y3o7K--A", + "_rev" : "_e9T2BDu--H", "type" : "is-in" }, { - "_key" : "83126", - "_id" : "worldEdges/83126", + "_key" : "83242", + "_id" : "worldEdges/83242", "_from" : "worldVertices/capital-asmara", "_to" : "worldVertices/country-eritrea", - "_rev" : "_e4y3o7O---", + "_rev" : "_e9T2BDu--I", "type" : "is-in" }, { - "_key" : "83128", - "_id" : "worldEdges/83128", + "_key" : "83244", + "_id" : "worldEdges/83244", "_from" : "worldVertices/capital-bandar-seri-begawan", "_to" : "worldVertices/country-brunei", - "_rev" : "_e4y3o7O--_", + "_rev" : "_e9T2BDy---", "type" : "is-in" }, { - "_key" : "83130", - "_id" : "worldEdges/83130", + "_key" : "83246", + "_id" : "worldEdges/83246", "_from" : "worldVertices/capital-beijing", "_to" : "worldVertices/country-people-s-republic-of-china", - "_rev" : "_e4y3o7S---", + "_rev" : "_e9T2BDy--_", "type" : "is-in" }, { - "_key" : "83132", - "_id" : "worldEdges/83132", + "_key" : "83248", + "_id" : "worldEdges/83248", "_from" : "worldVertices/capital-berlin", "_to" : "worldVertices/country-germany", - "_rev" : "_e4y3o7S--_", + "_rev" : "_e9T2BDy--A", "type" : "is-in" }, { - "_key" : "83134", - "_id" : "worldEdges/83134", + "_key" : "83250", + "_id" : "worldEdges/83250", "_from" : "worldVertices/capital-bogota", "_to" : "worldVertices/country-colombia", - "_rev" : "_e4y3o7S--A", + "_rev" : "_e9T2BDy--B", "type" : "is-in" }, { - "_key" : "83136", - "_id" : "worldEdges/83136", + "_key" : "83252", + "_id" : "worldEdges/83252", "_from" : "worldVertices/capital-brasilia", "_to" : "worldVertices/country-brazil", - "_rev" : "_e4y3o7W---", + "_rev" : "_e9T2BDy--C", "type" : "is-in" }, { - "_key" : "83138", - "_id" : "worldEdges/83138", + "_key" : "83254", + "_id" : "worldEdges/83254", "_from" : "worldVertices/capital-bridgetown", "_to" : "worldVertices/country-barbados", - "_rev" : "_e4y3o7W--_", + "_rev" : "_e9T2BDy--D", "type" : "is-in" }, { - "_key" : "83140", - "_id" : "worldEdges/83140", + "_key" : "83256", + "_id" : "worldEdges/83256", "_from" : "worldVertices/capital-brussels", "_to" : "worldVertices/country-belgium", - "_rev" : "_e4y3o7a---", + "_rev" : "_e9T2BDy--E", "type" : "is-in" }, { - "_key" : "83142", - "_id" : "worldEdges/83142", + "_key" : "83258", + "_id" : "worldEdges/83258", "_from" : "worldVertices/capital-buenos-aires", "_to" : "worldVertices/country-argentina", - "_rev" : "_e4y3o7a--_", + "_rev" : "_e9T2BDy--F", "type" : "is-in" }, { - "_key" : "83144", - "_id" : "worldEdges/83144", + "_key" : "83260", + "_id" : "worldEdges/83260", "_from" : "worldVertices/capital-bujumbura", "_to" : "worldVertices/country-burundi", - "_rev" : "_e4y3o7e---", + "_rev" : "_e9T2BDy--G", "type" : "is-in" }, { - "_key" : "83146", - "_id" : "worldEdges/83146", + "_key" : "83262", + "_id" : "worldEdges/83262", "_from" : "worldVertices/capital-cairo", "_to" : "worldVertices/country-egypt", - "_rev" : "_e4y3o7e--_", + "_rev" : "_e9T2BDy--H", "type" : "is-in" }, { - "_key" : "83148", - "_id" : "worldEdges/83148", + "_key" : "83264", + "_id" : "worldEdges/83264", "_from" : "worldVertices/capital-canberra", "_to" : "worldVertices/country-australia", - "_rev" : "_e4y3o7e--A", + "_rev" : "_e9T2BDy--I", "type" : "is-in" }, { - "_key" : "83150", - "_id" : "worldEdges/83150", + "_key" : "83266", + "_id" : "worldEdges/83266", "_from" : "worldVertices/capital-copenhagen", "_to" : "worldVertices/country-denmark", - "_rev" : "_e4y3o7i---", + "_rev" : "_e9T2BD2---", "type" : "is-in" }, { - "_key" : "83152", - "_id" : "worldEdges/83152", + "_key" : "83268", + "_id" : "worldEdges/83268", "_from" : "worldVertices/capital-dhaka", "_to" : "worldVertices/country-bangladesh", - "_rev" : "_e4y3o7i--_", + "_rev" : "_e9T2BD2--_", "type" : "is-in" }, { - "_key" : "83154", - "_id" : "worldEdges/83154", + "_key" : "83270", + "_id" : "worldEdges/83270", "_from" : "worldVertices/capital-gaborone", "_to" : "worldVertices/country-botswana", - "_rev" : "_e4y3o7m---", + "_rev" : "_e9T2BD2--A", "type" : "is-in" }, { - "_key" : "83156", - "_id" : "worldEdges/83156", + "_key" : "83272", + "_id" : "worldEdges/83272", "_from" : "worldVertices/capital-helsinki", "_to" : "worldVertices/country-finland", - "_rev" : "_e4y3o7m--_", + "_rev" : "_e9T2BD2--B", "type" : "is-in" }, { - "_key" : "83158", - "_id" : "worldEdges/83158", + "_key" : "83274", + "_id" : "worldEdges/83274", "_from" : "worldVertices/capital-kabul", "_to" : "worldVertices/country-afghanistan", - "_rev" : "_e4y3o7m--A", + "_rev" : "_e9T2BD2--C", "type" : "is-in" }, { - "_key" : "83160", - "_id" : "worldEdges/83160", + "_key" : "83276", + "_id" : "worldEdges/83276", "_from" : "worldVertices/capital-la-paz", "_to" : "worldVertices/country-bolivia", - "_rev" : "_e4y3o7q---", + "_rev" : "_e9T2BD2--D", "type" : "is-in" }, { - "_key" : "83162", - "_id" : "worldEdges/83162", + "_key" : "83278", + "_id" : "worldEdges/83278", "_from" : "worldVertices/capital-luanda", "_to" : "worldVertices/country-angola", - "_rev" : "_e4y3o7q--_", + "_rev" : "_e9T2BD2--E", "type" : "is-in" }, { - "_key" : "83164", - "_id" : "worldEdges/83164", + "_key" : "83280", + "_id" : "worldEdges/83280", "_from" : "worldVertices/capital-manama", "_to" : "worldVertices/country-bahrain", - "_rev" : "_e4y3o7u---", + "_rev" : "_e9T2BD2--F", "type" : "is-in" }, { - "_key" : "83166", - "_id" : "worldEdges/83166", + "_key" : "83282", + "_id" : "worldEdges/83282", "_from" : "worldVertices/capital-nassau", "_to" : "worldVertices/country-bahamas", - "_rev" : "_e4y3o7u--_", + "_rev" : "_e9T2BD2--G", "type" : "is-in" }, { - "_key" : "83168", - "_id" : "worldEdges/83168", + "_key" : "83284", + "_id" : "worldEdges/83284", "_from" : "worldVertices/capital-n-djamena", "_to" : "worldVertices/country-chad", - "_rev" : "_e4y3o7u--A", + "_rev" : "_e9T2BD2--H", "type" : "is-in" }, { - "_key" : "83170", - "_id" : "worldEdges/83170", + "_key" : "83286", + "_id" : "worldEdges/83286", "_from" : "worldVertices/capital-ottawa", "_to" : "worldVertices/country-canada", - "_rev" : "_e4y3o7y---", + "_rev" : "_e9T2BD2--I", "type" : "is-in" }, { - "_key" : "83172", - "_id" : "worldEdges/83172", + "_key" : "83288", + "_id" : "worldEdges/83288", "_from" : "worldVertices/capital-ouagadougou", "_to" : "worldVertices/country-burkina-faso", - "_rev" : "_e4y3o7y--_", + "_rev" : "_e9T2BD6---", "type" : "is-in" }, { - "_key" : "83174", - "_id" : "worldEdges/83174", + "_key" : "83290", + "_id" : "worldEdges/83290", "_from" : "worldVertices/capital-paris", "_to" : "worldVertices/country-france", - "_rev" : "_e4y3o72---", + "_rev" : "_e9T2BD6--_", "type" : "is-in" }, { - "_key" : "83176", - "_id" : "worldEdges/83176", + "_key" : "83292", + "_id" : "worldEdges/83292", "_from" : "worldVertices/capital-phnom-penh", "_to" : "worldVertices/country-cambodia", - "_rev" : "_e4y3o72--_", + "_rev" : "_e9T2BD6--A", "type" : "is-in" }, { - "_key" : "83178", - "_id" : "worldEdges/83178", + "_key" : "83294", + "_id" : "worldEdges/83294", "_from" : "worldVertices/capital-prague", "_to" : "worldVertices/country-czech-republic", - "_rev" : "_e4y3o72--A", + "_rev" : "_e9T2BD6--B", "type" : "is-in" }, { - "_key" : "83180", - "_id" : "worldEdges/83180", + "_key" : "83296", + "_id" : "worldEdges/83296", "_from" : "worldVertices/capital-quito", "_to" : "worldVertices/country-ecuador", - "_rev" : "_e4y3o76---", + "_rev" : "_e9T2BD6--C", "type" : "is-in" }, { - "_key" : "83182", - "_id" : "worldEdges/83182", + "_key" : "83298", + "_id" : "worldEdges/83298", "_from" : "worldVertices/capital-saint-john-s", "_to" : "worldVertices/country-antigua-and-barbuda", - "_rev" : "_e4y3o76--_", + "_rev" : "_e9T2BD6--D", "type" : "is-in" }, { - "_key" : "83184", - "_id" : "worldEdges/83184", + "_key" : "83300", + "_id" : "worldEdges/83300", "_from" : "worldVertices/capital-santiago", "_to" : "worldVertices/country-chile", - "_rev" : "_e4y3o8----", + "_rev" : "_e9T2BD6--E", "type" : "is-in" }, { - "_key" : "83186", - "_id" : "worldEdges/83186", + "_key" : "83302", + "_id" : "worldEdges/83302", "_from" : "worldVertices/capital-sarajevo", "_to" : "worldVertices/country-bosnia-and-herzegovina", - "_rev" : "_e4y3o8---_", + "_rev" : "_e9T2BD6--F", "type" : "is-in" }, { - "_key" : "83188", - "_id" : "worldEdges/83188", + "_key" : "83304", + "_id" : "worldEdges/83304", "_from" : "worldVertices/capital-sofia", "_to" : "worldVertices/country-bulgaria", - "_rev" : "_e4y3o8---A", + "_rev" : "_e9T2BD6--G", "type" : "is-in" }, { - "_key" : "83190", - "_id" : "worldEdges/83190", + "_key" : "83306", + "_id" : "worldEdges/83306", "_from" : "worldVertices/capital-thimphu", "_to" : "worldVertices/country-bhutan", - "_rev" : "_e4y3o8C---", + "_rev" : "_e9T2BD6--H", "type" : "is-in" }, { - "_key" : "83192", - "_id" : "worldEdges/83192", + "_key" : "83308", + "_id" : "worldEdges/83308", "_from" : "worldVertices/capital-tirana", "_to" : "worldVertices/country-albania", - "_rev" : "_e4y3o8C--_", + "_rev" : "_e9T2BD6--I", "type" : "is-in" }, { - "_key" : "83194", - "_id" : "worldEdges/83194", + "_key" : "83310", + "_id" : "worldEdges/83310", "_from" : "worldVertices/capital-vienna", "_to" : "worldVertices/country-austria", - "_rev" : "_e4y3o8G---", + "_rev" : "_e9T2BE----", "type" : "is-in" }, { - "_key" : "83196", - "_id" : "worldEdges/83196", + "_key" : "83312", + "_id" : "worldEdges/83312", "_from" : "worldVertices/capital-yamoussoukro", "_to" : "worldVertices/country-cote-d-ivoire", - "_rev" : "_e4y3o8G--_", + "_rev" : "_e9T2BE---_", "type" : "is-in" }, { - "_key" : "83198", - "_id" : "worldEdges/83198", + "_key" : "83314", + "_id" : "worldEdges/83314", "_from" : "worldVertices/capital-yaounde", "_to" : "worldVertices/country-cameroon", - "_rev" : "_e4y3o8G--A", + "_rev" : "_e9T2BE---A", "type" : "is-in" }, { - "_key" : "83200", - "_id" : "worldEdges/83200", + "_key" : "83316", + "_id" : "worldEdges/83316", "_from" : "worldVertices/capital-zagreb", "_to" : "worldVertices/country-croatia", - "_rev" : "_e4y3o8K---", + "_rev" : "_e9T2BE---B", "type" : "is-in" } ] @@ -14669,90 +14817,90 @@ arangosh> db.mps_verts.toArray(); { "_key" : "A", "_id" : "mps_verts/A", - "_rev" : "_e4y3oxi---" + "_rev" : "_e9T2BBy---" }, { "_key" : "B", "_id" : "mps_verts/B", - "_rev" : "_e4y3oxm---" + "_rev" : "_e9T2BBy--_" }, { "_key" : "C", "_id" : "mps_verts/C", - "_rev" : "_e4y3oxq---" + "_rev" : "_e9T2BBy--A" }, { "_key" : "D", "_id" : "mps_verts/D", - "_rev" : "_e4y3oxu---" + "_rev" : "_e9T2BBy--B" }, { "_key" : "E", "_id" : "mps_verts/E", - "_rev" : "_e4y3oxu--_" + "_rev" : "_e9T2BBy--C" }, { "_key" : "F", "_id" : "mps_verts/F", - "_rev" : "_e4y3oxy---" + "_rev" : "_e9T2BBy--D" } ] arangosh> db.mps_edges.toArray(); [ { - "_key" : "82748", - "_id" : "mps_edges/82748", + "_key" : "82864", + "_id" : "mps_edges/82864", "_from" : "mps_verts/A", "_to" : "mps_verts/B", - "_rev" : "_e4y3ox2---", + "_rev" : "_e9T2BBy--E", "vertex" : "A" }, { - "_key" : "82750", - "_id" : "mps_edges/82750", + "_key" : "82866", + "_id" : "mps_edges/82866", "_from" : "mps_verts/A", "_to" : "mps_verts/E", - "_rev" : "_e4y3ox6---", + "_rev" : "_e9T2BBy--F", "vertex" : "A" }, { - "_key" : "82752", - "_id" : "mps_edges/82752", + "_key" : "82868", + "_id" : "mps_edges/82868", "_from" : "mps_verts/A", "_to" : "mps_verts/D", - "_rev" : "_e4y3ox6--_", + "_rev" : "_e9T2BB2---", "vertex" : "A" }, { - "_key" : "82754", - "_id" : "mps_edges/82754", + "_key" : "82870", + "_id" : "mps_edges/82870", "_from" : "mps_verts/B", "_to" : "mps_verts/C", - "_rev" : "_e4y3oy----", + "_rev" : "_e9T2BB2--_", "vertex" : "B" }, { - "_key" : "82756", - "_id" : "mps_edges/82756", + "_key" : "82872", + "_id" : "mps_edges/82872", "_from" : "mps_verts/D", "_to" : "mps_verts/C", - "_rev" : "_e4y3oyC---", + "_rev" : "_e9T2BB2--A", "vertex" : "D" }, { - "_key" : "82758", - "_id" : "mps_edges/82758", + "_key" : "82874", + "_id" : "mps_edges/82874", "_from" : "mps_verts/E", "_to" : "mps_verts/F", - "_rev" : "_e4y3oyC--_", + "_rev" : "_e9T2BB2--B", "vertex" : "E" }, { - "_key" : "82760", - "_id" : "mps_edges/82760", + "_key" : "82876", + "_id" : "mps_edges/82876", "_from" : "mps_verts/F", "_to" : "mps_verts/C", - "_rev" : "_e4y3oyG---", + "_rev" : "_e9T2BB2--C", "vertex" : "F" } ] @@ -14787,437 +14935,437 @@ arangosh> db.components.toArray(); { "_key" : "A1", "_id" : "components/A1", - "_rev" : "_e4y3onq---" + "_rev" : "_e9T2B_e---" }, { "_key" : "A2", "_id" : "components/A2", - "_rev" : "_e4y3onu---" + "_rev" : "_e9T2B_e--_" }, { "_key" : "A3", "_id" : "components/A3", - "_rev" : "_e4y3onu--_" + "_rev" : "_e9T2B_e--A" }, { "_key" : "A4", "_id" : "components/A4", - "_rev" : "_e4y3ony---" + "_rev" : "_e9T2B_e--B" }, { "_key" : "B1", "_id" : "components/B1", - "_rev" : "_e4y3ony--_" + "_rev" : "_e9T2B_e--C" }, { "_key" : "B3", "_id" : "components/B3", - "_rev" : "_e4y3on2---" + "_rev" : "_e9T2B_e--D" }, { "_key" : "B2", "_id" : "components/B2", - "_rev" : "_e4y3on6---" + "_rev" : "_e9T2B_e--E" }, { "_key" : "B4", "_id" : "components/B4", - "_rev" : "_e4y3on6--_" + "_rev" : "_e9T2B_e--F" }, { "_key" : "B6", "_id" : "components/B6", - "_rev" : "_e4y3on6--A" + "_rev" : "_e9T2B_e--G" }, { "_key" : "B5", "_id" : "components/B5", - "_rev" : "_e4y3oo----" + "_rev" : "_e9T2B_i---" }, { "_key" : "B7", "_id" : "components/B7", - "_rev" : "_e4y3oo---_" + "_rev" : "_e9T2B_i--_" }, { "_key" : "B8", "_id" : "components/B8", - "_rev" : "_e4y3ooC---" + "_rev" : "_e9T2B_i--A" }, { "_key" : "B9", "_id" : "components/B9", - "_rev" : "_e4y3ooC--_" + "_rev" : "_e9T2B_i--B" }, { "_key" : "B10", "_id" : "components/B10", - "_rev" : "_e4y3ooG---" + "_rev" : "_e9T2B_i--C" }, { "_key" : "B19", "_id" : "components/B19", - "_rev" : "_e4y3ooG--_" + "_rev" : "_e9T2B_i--D" }, { "_key" : "B11", "_id" : "components/B11", - "_rev" : "_e4y3ooK---" + "_rev" : "_e9T2B_i--E" }, { "_key" : "B12", "_id" : "components/B12", - "_rev" : "_e4y3ooK--_" + "_rev" : "_e9T2B_i--F" }, { "_key" : "B13", "_id" : "components/B13", - "_rev" : "_e4y3ooK--A" + "_rev" : "_e9T2B_i--G" }, { "_key" : "B20", "_id" : "components/B20", - "_rev" : "_e4y3ooO---" + "_rev" : "_e9T2B_i--H" }, { "_key" : "B14", "_id" : "components/B14", - "_rev" : "_e4y3ooO--_" + "_rev" : "_e9T2B_i--I" }, { "_key" : "B15", "_id" : "components/B15", - "_rev" : "_e4y3ooS---" + "_rev" : "_e9T2B_i--J" }, { "_key" : "B16", "_id" : "components/B16", - "_rev" : "_e4y3ooS--_" + "_rev" : "_e9T2B_m---" }, { "_key" : "B17", "_id" : "components/B17", - "_rev" : "_e4y3ooW---" + "_rev" : "_e9T2B_m--_" }, { "_key" : "B18", "_id" : "components/B18", - "_rev" : "_e4y3ooW--_" + "_rev" : "_e9T2B_m--A" }, { "_key" : "B21", "_id" : "components/B21", - "_rev" : "_e4y3ooW--A" + "_rev" : "_e9T2B_m--B" }, { "_key" : "B22", "_id" : "components/B22", - "_rev" : "_e4y3ooa---" + "_rev" : "_e9T2B_m--C" }, { "_key" : "C1", "_id" : "components/C1", - "_rev" : "_e4y3ooa--_" + "_rev" : "_e9T2B_m--D" }, { "_key" : "C2", "_id" : "components/C2", - "_rev" : "_e4y3ooe---" + "_rev" : "_e9T2B_m--E" }, { "_key" : "C3", "_id" : "components/C3", - "_rev" : "_e4y3ooe--_" + "_rev" : "_e9T2B_m--F" }, { "_key" : "C4", "_id" : "components/C4", - "_rev" : "_e4y3ooe--A" + "_rev" : "_e9T2B_m--G" }, { "_key" : "C5", "_id" : "components/C5", - "_rev" : "_e4y3ooi---" + "_rev" : "_e9T2B_m--H" }, { "_key" : "C7", "_id" : "components/C7", - "_rev" : "_e4y3ooi--_" + "_rev" : "_e9T2B_m--I" }, { "_key" : "C6", "_id" : "components/C6", - "_rev" : "_e4y3oom---" + "_rev" : "_e9T2B_m--J" }, { "_key" : "C8", "_id" : "components/C8", - "_rev" : "_e4y3oom--_" + "_rev" : "_e9T2B_q---" }, { "_key" : "C9", "_id" : "components/C9", - "_rev" : "_e4y3oom--A" + "_rev" : "_e9T2B_q--_" }, { "_key" : "C10", "_id" : "components/C10", - "_rev" : "_e4y3ooq---" + "_rev" : "_e9T2B_q--A" } ] arangosh> db.connections.toArray(); [ { - "_key" : "82442", - "_id" : "connections/82442", + "_key" : "82558", + "_id" : "connections/82558", "_from" : "components/A1", "_to" : "components/A2", - "_rev" : "_e4y3ooq--_" + "_rev" : "_e9T2B_q--B" }, { - "_key" : "82444", - "_id" : "connections/82444", + "_key" : "82560", + "_id" : "connections/82560", "_from" : "components/A2", "_to" : "components/A3", - "_rev" : "_e4y3oou---" + "_rev" : "_e9T2B_q--C" }, { - "_key" : "82446", - "_id" : "connections/82446", + "_key" : "82562", + "_id" : "connections/82562", "_from" : "components/A3", "_to" : "components/A4", - "_rev" : "_e4y3oou--_" + "_rev" : "_e9T2B_q--D" }, { - "_key" : "82448", - "_id" : "connections/82448", + "_key" : "82564", + "_id" : "connections/82564", "_from" : "components/A4", "_to" : "components/A1", - "_rev" : "_e4y3oou--A" + "_rev" : "_e9T2B_q--E" }, { - "_key" : "82450", - "_id" : "connections/82450", + "_key" : "82566", + "_id" : "connections/82566", "_from" : "components/B1", "_to" : "components/B3", - "_rev" : "_e4y3ooy---" + "_rev" : "_e9T2B_q--F" }, { - "_key" : "82452", - "_id" : "connections/82452", + "_key" : "82568", + "_id" : "connections/82568", "_from" : "components/B2", "_to" : "components/B4", - "_rev" : "_e4y3ooy--_" + "_rev" : "_e9T2B_q--G" }, { - "_key" : "82454", - "_id" : "connections/82454", + "_key" : "82570", + "_id" : "connections/82570", "_from" : "components/B3", "_to" : "components/B6", - "_rev" : "_e4y3oo2---" + "_rev" : "_e9T2B_q--H" }, { - "_key" : "82456", - "_id" : "connections/82456", + "_key" : "82572", + "_id" : "connections/82572", "_from" : "components/B4", "_to" : "components/B3", - "_rev" : "_e4y3oo2--_" + "_rev" : "_e9T2B_q--I" }, { - "_key" : "82458", - "_id" : "connections/82458", + "_key" : "82574", + "_id" : "connections/82574", "_from" : "components/B4", "_to" : "components/B5", - "_rev" : "_e4y3oo6---" + "_rev" : "_e9T2B_u---" }, { - "_key" : "82460", - "_id" : "connections/82460", + "_key" : "82576", + "_id" : "connections/82576", "_from" : "components/B6", "_to" : "components/B7", - "_rev" : "_e4y3oo6--_" + "_rev" : "_e9T2B_u--_" }, { - "_key" : "82462", - "_id" : "connections/82462", + "_key" : "82578", + "_id" : "connections/82578", "_from" : "components/B7", "_to" : "components/B8", - "_rev" : "_e4y3op----" + "_rev" : "_e9T2B_u--A" }, { - "_key" : "82464", - "_id" : "connections/82464", + "_key" : "82580", + "_id" : "connections/82580", "_from" : "components/B7", "_to" : "components/B9", - "_rev" : "_e4y3op---_" + "_rev" : "_e9T2B_u--B" }, { - "_key" : "82466", - "_id" : "connections/82466", + "_key" : "82582", + "_id" : "connections/82582", "_from" : "components/B7", "_to" : "components/B10", - "_rev" : "_e4y3op---A" + "_rev" : "_e9T2B_u--C" }, { - "_key" : "82468", - "_id" : "connections/82468", + "_key" : "82584", + "_id" : "connections/82584", "_from" : "components/B7", "_to" : "components/B19", - "_rev" : "_e4y3opC---" + "_rev" : "_e9T2B_u--D" }, { - "_key" : "82470", - "_id" : "connections/82470", + "_key" : "82586", + "_id" : "connections/82586", "_from" : "components/B11", "_to" : "components/B10", - "_rev" : "_e4y3opC--_" + "_rev" : "_e9T2B_u--E" }, { - "_key" : "82472", - "_id" : "connections/82472", + "_key" : "82588", + "_id" : "connections/82588", "_from" : "components/B12", "_to" : "components/B11", - "_rev" : "_e4y3opG---" + "_rev" : "_e9T2B_u--F" }, { - "_key" : "82474", - "_id" : "connections/82474", + "_key" : "82590", + "_id" : "connections/82590", "_from" : "components/B13", "_to" : "components/B12", - "_rev" : "_e4y3opG--_" + "_rev" : "_e9T2B_u--G" }, { - "_key" : "82476", - "_id" : "connections/82476", + "_key" : "82592", + "_id" : "connections/82592", "_from" : "components/B13", "_to" : "components/B20", - "_rev" : "_e4y3opK---" + "_rev" : "_e9T2B_u--H" }, { - "_key" : "82478", - "_id" : "connections/82478", + "_key" : "82594", + "_id" : "connections/82594", "_from" : "components/B14", "_to" : "components/B13", - "_rev" : "_e4y3opK--_" + "_rev" : "_e9T2B_u--I" }, { - "_key" : "82480", - "_id" : "connections/82480", + "_key" : "82596", + "_id" : "connections/82596", "_from" : "components/B15", "_to" : "components/B14", - "_rev" : "_e4y3opK--A" + "_rev" : "_e9T2B_y---" }, { - "_key" : "82482", - "_id" : "connections/82482", + "_key" : "82598", + "_id" : "connections/82598", "_from" : "components/B15", "_to" : "components/B16", - "_rev" : "_e4y3opO---" + "_rev" : "_e9T2B_y--_" }, { - "_key" : "82484", - "_id" : "connections/82484", + "_key" : "82600", + "_id" : "connections/82600", "_from" : "components/B17", "_to" : "components/B15", - "_rev" : "_e4y3opO--_" + "_rev" : "_e9T2B_y--A" }, { - "_key" : "82486", - "_id" : "connections/82486", + "_key" : "82602", + "_id" : "connections/82602", "_from" : "components/B17", "_to" : "components/B18", - "_rev" : "_e4y3opS---" + "_rev" : "_e9T2B_y--B" }, { - "_key" : "82488", - "_id" : "connections/82488", + "_key" : "82604", + "_id" : "connections/82604", "_from" : "components/B19", "_to" : "components/B17", - "_rev" : "_e4y3opS--_" + "_rev" : "_e9T2B_y--C" }, { - "_key" : "82490", - "_id" : "connections/82490", + "_key" : "82606", + "_id" : "connections/82606", "_from" : "components/B20", "_to" : "components/B21", - "_rev" : "_e4y3opW---" + "_rev" : "_e9T2B_y--D" }, { - "_key" : "82492", - "_id" : "connections/82492", + "_key" : "82608", + "_id" : "connections/82608", "_from" : "components/B20", "_to" : "components/B22", - "_rev" : "_e4y3opW--_" + "_rev" : "_e9T2B_y--E" }, { - "_key" : "82494", - "_id" : "connections/82494", + "_key" : "82610", + "_id" : "connections/82610", "_from" : "components/C1", "_to" : "components/C2", - "_rev" : "_e4y3opa---" + "_rev" : "_e9T2B_y--F" }, { - "_key" : "82496", - "_id" : "connections/82496", + "_key" : "82612", + "_id" : "connections/82612", "_from" : "components/C2", "_to" : "components/C3", - "_rev" : "_e4y3opa--_" + "_rev" : "_e9T2B_y--G" }, { - "_key" : "82498", - "_id" : "connections/82498", + "_key" : "82614", + "_id" : "connections/82614", "_from" : "components/C3", "_to" : "components/C4", - "_rev" : "_e4y3ope---" + "_rev" : "_e9T2B_y--H" }, { - "_key" : "82500", - "_id" : "connections/82500", + "_key" : "82616", + "_id" : "connections/82616", "_from" : "components/C4", "_to" : "components/C5", - "_rev" : "_e4y3ope--_" + "_rev" : "_e9T2B_y--I" }, { - "_key" : "82502", - "_id" : "connections/82502", + "_key" : "82618", + "_id" : "connections/82618", "_from" : "components/C4", "_to" : "components/C7", - "_rev" : "_e4y3opi---" + "_rev" : "_e9T2B_2---" }, { - "_key" : "82504", - "_id" : "connections/82504", + "_key" : "82620", + "_id" : "connections/82620", "_from" : "components/C5", "_to" : "components/C6", - "_rev" : "_e4y3opi--_" + "_rev" : "_e9T2B_2--_" }, { - "_key" : "82506", - "_id" : "connections/82506", + "_key" : "82622", + "_id" : "connections/82622", "_from" : "components/C5", "_to" : "components/C7", - "_rev" : "_e4y3opm---" + "_rev" : "_e9T2B_2--A" }, { - "_key" : "82508", - "_id" : "connections/82508", + "_key" : "82624", + "_id" : "connections/82624", "_from" : "components/C7", "_to" : "components/C8", - "_rev" : "_e4y3opm--_" + "_rev" : "_e9T2B_2--B" }, { - "_key" : "82510", - "_id" : "connections/82510", + "_key" : "82626", + "_id" : "connections/82626", "_from" : "components/C8", "_to" : "components/C9", - "_rev" : "_e4y3opm--A" + "_rev" : "_e9T2B_2--C" }, { - "_key" : "82512", - "_id" : "connections/82512", + "_key" : "82628", + "_id" : "connections/82628", "_from" : "components/C8", "_to" : "components/C10", - "_rev" : "_e4y3opq---" + "_rev" : "_e9T2B_2--D" } ] arangosh> examples.dropGraph("connectedComponentsGraph"); @@ -15249,10 +15397,10 @@ arangosh> db.example.ensureIndex({ type: "fields" : [ "text" ], - "id" : "example/73667", + "id" : "example/73656", "isNewlyCreated" : true, "minLength" : 3, - "name" : "idx_1745940463679963136", + "name" : "idx_1747211390243831809", "sparse" : true, "type" : "fulltext", "unique" : false, @@ -15260,79 +15408,79 @@ arangosh> db.example.ensureIndex({ type: text : "the quick brown", b : { c : 1 } }); { - "_id" : "example/73671", - "_key" : "73671", - "_rev" : "_e4y3luu---" + "_id" : "example/73660", + "_key" : "73660", + "_rev" : "_e9T2AVC---" } arangosh> db.example.save({ text : "quick brown fox", b : { c : 2 } }); { - "_id" : "example/73673", - "_key" : "73673", - "_rev" : "_e4y3luy---" + "_id" : "example/73662", + "_key" : "73662", + "_rev" : "_e9T2AVC--_" } arangosh> db.example.save({ text : "brown fox jums", b : { c : 3 } }); { - "_id" : "example/73675", - "_key" : "73675", - "_rev" : "_e4y3lu2---" + "_id" : "example/73664", + "_key" : "73664", + "_rev" : "_e9T2AVC--A" } arangosh> db.example.save({ text : "fox jumps over", b : { c : 4 } }); { - "_id" : "example/73677", - "_key" : "73677", - "_rev" : "_e4y3lu2--_" + "_id" : "example/73666", + "_key" : "73666", + "_rev" : "_e9T2AVC--B" } arangosh> db.example.save({ text : "jumps over the", b : { c : 5 } }); { - "_id" : "example/73679", - "_key" : "73679", - "_rev" : "_e4y3lu6---" + "_id" : "example/73668", + "_key" : "73668", + "_rev" : "_e9T2AVC--C" } arangosh> db.example.save({ text : "over the lazy", b : { c : 6 } }); { - "_id" : "example/73681", - "_key" : "73681", - "_rev" : "_e4y3lv----" + "_id" : "example/73670", + "_key" : "73670", + "_rev" : "_e9T2AVC--D" } arangosh> db.example.save({ text : "the lazy dog", b : { c : 7 } }); { - "_id" : "example/73683", - "_key" : "73683", - "_rev" : "_e4y3lvC---" + "_id" : "example/73672", + "_key" : "73672", + "_rev" : "_e9T2AVG---" } arangosh> db._query("FOR document IN FULLTEXT(example, 'text', 'the') RETURN document"); [ { - "_key" : "73671", - "_id" : "example/73671", - "_rev" : "_e4y3luu---", + "_key" : "73660", + "_id" : "example/73660", + "_rev" : "_e9T2AVC---", "text" : "the quick brown", "b" : { "c" : 1 } }, { - "_key" : "73679", - "_id" : "example/73679", - "_rev" : "_e4y3lu6---", + "_key" : "73668", + "_id" : "example/73668", + "_rev" : "_e9T2AVC--C", "text" : "jumps over the", "b" : { "c" : 5 } }, { - "_key" : "73681", - "_id" : "example/73681", - "_rev" : "_e4y3lv----", + "_key" : "73670", + "_id" : "example/73670", + "_rev" : "_e9T2AVC--D", "text" : "over the lazy", "b" : { "c" : 6 } }, { - "_key" : "73683", - "_id" : "example/73683", - "_rev" : "_e4y3lvC---", + "_key" : "73672", + "_id" : "example/73672", + "_rev" : "_e9T2AVG---", "text" : "the lazy dog", "b" : { "c" : 7 @@ -15374,11 +15522,11 @@ arangosh> db.geo.ensureIndex({ type: "loc" ], "geoJson" : false, - "id" : "geo/79417", + "id" : "geo/79533", "isNewlyCreated" : true, "legacyPolygons" : false, "maxNumCoverCells" : 8, - "name" : "idx_1745940466034016256", + "name" : "idx_1747211390801674241", "sparse" : true, "type" : "geo", "unique" : false, @@ -15412,11 +15560,11 @@ arangosh> db.geo2.ensureIndex({ type: "location.longitude" ], "geoJson" : false, - "id" : "geo2/79428", + "id" : "geo2/79544", "isNewlyCreated" : true, "legacyPolygons" : false, "maxNumCoverCells" : 8, - "name" : "idx_1745940466042404864", + "name" : "idx_1747211390803771393", "sparse" : true, "type" : "geo", "unique" : false, @@ -15450,11 +15598,11 @@ arangosh> db.geoSort.ensureIndex({ type: "longitude" ], "geoJson" : false, - "id" : "geoSort/80860", + "id" : "geoSort/80976", "isNewlyCreated" : true, "legacyPolygons" : false, "maxNumCoverCells" : 8, - "name" : "idx_1745940466401017856", + "name" : "idx_1747211390874025985", "sparse" : true, "type" : "geo", "unique" : false, @@ -15480,7 +15628,7 @@ Execution plan: Indexes used: By Name Type Collection Unique Sparse Cache Selectivity Fields Stored values Ranges - 7 idx_1745940466401017856 geo geoSort false true false n/a [ `latitude`, `longitude` ] [ ] (GEO_DISTANCE([ 0, 0 ], [ doc.`longitude`, doc.`latitude` ]) < "unlimited") + 7 idx_1747211390874025985 geo geoSort false true false n/a [ `latitude`, `longitude` ] [ ] (GEO_DISTANCE([ 0, 0 ], [ doc.`longitude`, doc.`latitude` ]) < "unlimited") Optimization rules applied: Id RuleName @@ -15493,41 +15641,41 @@ Optimization rules applied: arangosh> db._query(query); [ { - "_key" : "81566", - "_id" : "geoSort/81566", - "_rev" : "_e4y3oae--A", + "_key" : "81682", + "_id" : "geoSort/81682", + "_rev" : "_e9T2A8e--G", "name" : "Name/0/0", "latitude" : 0, "longitude" : 0 }, { - "_key" : "81640", - "_id" : "geoSort/81640", - "_rev" : "_e4y3obW--A", + "_key" : "81756", + "_id" : "geoSort/81756", + "_rev" : "_e9T2A8q--H", "name" : "Name/10/0", "latitude" : 10, "longitude" : 0 }, { - "_key" : "81568", - "_id" : "geoSort/81568", - "_rev" : "_e4y3oai---", + "_key" : "81684", + "_id" : "geoSort/81684", + "_rev" : "_e9T2A8e--H", "name" : "Name/0/10", "latitude" : 0, "longitude" : 10 }, { - "_key" : "81492", - "_id" : "geoSort/81492", - "_rev" : "_e4y3oZm--_", + "_key" : "81608", + "_id" : "geoSort/81608", + "_rev" : "_e9T2A8S--E", "name" : "Name/-10/0", "latitude" : -10, "longitude" : 0 }, { - "_key" : "81564", - "_id" : "geoSort/81564", - "_rev" : "_e4y3oae--_", + "_key" : "81680", + "_id" : "geoSort/81680", + "_rev" : "_e9T2A8e--F", "name" : "Name/0/-10", "latitude" : 0, "longitude" : -10 @@ -15569,11 +15717,11 @@ arangosh> db.geoFilter.ensureIndex({ type: "longitude"
], "geoJson" : false, - "id" : "geoFilter/79439", + "id" : "geoFilter/79555", "isNewlyCreated" : true, "legacyPolygons" : false, "maxNumCoverCells" : 8, - "name" : "idx_1745940466051842048", + "name" : "idx_1747211390805868545", "sparse" : true, "type" : "geo", "unique" : false, @@ -15598,7 +15746,7 @@ Execution plan: Indexes used: By Name Type Collection Unique Sparse Cache Selectivity Fields Stored values Ranges - 6 idx_1745940466051842048 geo geoFilter false true false n/a [ `latitude`, `longitude` ] [ ] (GEO_DISTANCE([ 0, 0 ], [ doc.`longitude`, doc.`latitude` ]) < 2000) + 6 idx_1747211390805868545 geo geoFilter false true false n/a [ `latitude`, `longitude` ] [ ] (GEO_DISTANCE([ 0, 0 ], [ doc.`longitude`, doc.`latitude` ]) < 2000) Optimization rules applied: Id RuleName @@ -15611,9 +15759,9 @@ Optimization rules applied: arangosh> db._query(query); [ { - "_key" : "80145", - "_id" : "geoFilter/80145", - "_rev" : "_e4y3oFS--A", + "_key" : "80261", + "_id" : "geoFilter/80261", + "_rev" : "_e9T2A4W--E", "name" : "Name/0/0", "latitude" : 0, "longitude" : 0 @@ -15655,9 +15803,9 @@ arangosh> db.ids.ensureIndex({ type: "fields" : [ "myId" ], - "id" : "ids/73945", + "id" : "ids/73934", "isNewlyCreated" : true, - "name" : "idx_1745940463787966464", + "name" : "idx_1747211390278434816", "selectivityEstimate" : 1, "sparse" : false, "type" : "persistent", @@ -15666,24 +15814,24 @@ arangosh> db.ids.ensureIndex({ type: "myId": 123 }); { - "_id" : "ids/73949", - "_key" : "73949", - "_rev" : "_e4y3l1K---" + "_id" : "ids/73938", + "_key" : "73938", + "_rev" : "_e9T2AXC--_" } arangosh> db.ids.save({ "myId": 456 }); { - "_id" : "ids/73951", - "_key" : "73951", - "_rev" : "_e4y3l1K--_" + "_id" : "ids/73940", + "_key" : "73940", + "_rev" : "_e9T2AXC--A" } arangosh> db.ids.save({ "myId": 789 }); { - "_id" : "ids/73953", - "_key" : "73953", - "_rev" : "_e4y3l1O---" + "_id" : "ids/73942", + "_key" : "73942", + "_rev" : "_e9T2AXC--B" } arangosh> db.ids.save({ "myId": 123 }); -[ArangoError 1210: unique constraint violated - in index idx_1745940463787966464 of type persistent over 'myId'; conflicting key: 73949] +[ArangoError 1210: unique constraint violated - in index idx_1747211390278434816 of type persistent over 'myId'; conflicting key: 73938]
Hide execution results
@@ -15716,9 +15864,9 @@ arangosh> db.ids.ensureIndex({ type: "name.first", "name.last" ], - "id" : "ids/73926", + "id" : "ids/73915", "isNewlyCreated" : true, - "name" : "idx_1745940463773286400", + "name" : "idx_1747211390275289088", "selectivityEstimate" : 1, "sparse" : false, "type" : "persistent", @@ -15727,24 +15875,24 @@ arangosh> db.ids.ensureIndex({ type: "name" : { "first" : "hans", "last": "hansen" }}); { - "_id" : "ids/73930", - "_key" : "73930", - "_rev" : "_e4y3l0O---" + "_id" : "ids/73919", + "_key" : "73919", + "_rev" : "_e9T2AW2--_" } arangosh> db.ids.save({ "name" : { "first" : "jens", "last": "jensen" }}); { - "_id" : "ids/73932", - "_key" : "73932", - "_rev" : "_e4y3l0S---" + "_id" : "ids/73921", + "_key" : "73921", + "_rev" : "_e9T2AW2--A" } arangosh> db.ids.save({ "name" : { "first" : "hans", "last": "jensen" }}); { - "_id" : "ids/73934", - "_key" : "73934", - "_rev" : "_e4y3l0W---" + "_id" : "ids/73923", + "_key" : "73923", + "_rev" : "_e9T2AW2--B" } arangosh> db.ids.save({ "name" : { "first" : "hans", "last": "hansen" }}); -[ArangoError 1210: unique constraint violated - in index idx_1745940463773286400 of type persistent over 'name.first, name.last'; conflicting key: 73930] +[ArangoError 1210: unique constraint violated - in index idx_1747211390275289088 of type persistent over 'name.first, name.last'; conflicting key: 73919]
Hide execution results
@@ -15776,9 +15924,9 @@ arangosh> db.names.ensureIndex({ type: "fields" : [ "first" ], - "id" : "names/73694", + "id" : "names/73683", "isNewlyCreated" : true, - "name" : "idx_1745940463701983232", + "name" : "idx_1747211390249074688", "selectivityEstimate" : 1, "sparse" : false, "type" : "persistent", @@ -15787,33 +15935,33 @@ arangosh> db.names.ensureIndex({ type: "first" : "Tim" }); { - "_id" : "names/73698", - "_key" : "73698", - "_rev" : "_e4y3lw----" + "_id" : "names/73687", + "_key" : "73687", + "_rev" : "_e9T2AVS--_" } arangosh> db.names.save({ "first" : "Tom" }); { - "_id" : "names/73700", - "_key" : "73700", - "_rev" : "_e4y3lwC---" + "_id" : "names/73689", + "_key" : "73689", + "_rev" : "_e9T2AVS--A" } arangosh> db.names.save({ "first" : "John" }); { - "_id" : "names/73702", - "_key" : "73702", - "_rev" : "_e4y3lwG---" + "_id" : "names/73691", + "_key" : "73691", + "_rev" : "_e9T2AVS--B" } arangosh> db.names.save({ "first" : "Tim" }); { - "_id" : "names/73704", - "_key" : "73704", - "_rev" : "_e4y3lwG--_" + "_id" : "names/73693", + "_key" : "73693", + "_rev" : "_e9T2AVS--C" } arangosh> db.names.save({ "first" : "Tom" }); { - "_id" : "names/73706", - "_key" : "73706", - "_rev" : "_e4y3lwK---" + "_id" : "names/73695", + "_key" : "73695", + "_rev" : "_e9T2AVS--D" }
Hide execution results
@@ -15846,9 +15994,9 @@ arangosh> db.test.ensureIndex({ type: "fields" : [ "creationDate" ], - "id" : "test/73715", + "id" : "test/73704", "isNewlyCreated" : true, - "name" : "idx_1745940463713517568", + "name" : "idx_1747211390252220416", "sparse" : true, "type" : "ttl", "unique" : false, @@ -15884,9 +16032,9 @@ arangosh> db.collection.ensureIndex({ type: "_from"
, "type" ], - "id" : "collection/73966", + "id" : "collection/73955", "isNewlyCreated" : true, - "name" : "idx_1745940463801597952", + "name" : "idx_1747211390280531969", "selectivityEstimate" : 1, "sparse" : false, "type" : "persistent", @@ -15922,9 +16070,9 @@ arangosh> db.test.ensureIndex({ type: "attribute", "secondAttribute.subAttribute" ], - "id" : "test/73022", + "id" : "test/73011", "isNewlyCreated" : true, - "name" : "idx_1745940463029846016", + "name" : "idx_1747211390065573888", "selectivityEstimate" : 1, "sparse" : false, "type" : "persistent", @@ -15951,8 +16099,8 @@ arangosh> db.test.getIndexes(); "fields" : [ "attribute" ], - "id" : "test/73014", - "name" : "idx_1745940463025651712", + "id" : "test/73003", + "name" : "idx_1747211390064525313", "selectivityEstimate" : 1, "sparse" : false, "type" : "persistent", @@ -15965,8 +16113,8 @@ arangosh> db.test.getIndexes(); "fields" : [ "uniqueAttribute" ], - "id" : "test/73018", - "name" : "idx_1745940463027748864", + "id" : "test/73007", + "name" : "idx_1747211390064525314", "selectivityEstimate" : 1, "sparse" : false, "type" : "persistent", @@ -15980,8 +16128,8 @@ arangosh> db.test.getIndexes(); "attribute", "secondAttribute.subAttribute" ], - "id" : "test/73022", - "name" : "idx_1745940463029846016", + "id" : "test/73011", + "name" : "idx_1747211390065573888", "selectivityEstimate" : 1, "sparse" : false, "type" : "persistent", @@ -16016,7 +16164,7 @@ arangosh> db.coll.indexes(true, "_key" ], "figures" : { - "memory" : 102, + "memory" : 476, "cacheInUse" : false, "cacheSize" : 0, "cacheUsage" : 0 @@ -16057,7 +16205,7 @@ arangosh> db.coll.indexes(true, "numFiles" : 6, "indexSize" : 727 }, - "id" : "coll/73038", + "id" : "coll/73027", "includeAllFields" : false, "name" : "inv-idx", "primarySort" : { @@ -16088,12 +16236,12 @@ arangosh> db.coll.indexes(true, "numFiles" : 6, "indexSize" : 1239 }, - "id" : "coll/73042", + "id" : "coll/73031", "includeAllFields" : true, "storeValues" : "none", "trackListPositions" : false, "type" : "arangosearch", - "view" : "h42EADA9ADBF8/73040" + "view" : "h1A2DF6A6A405/73029" } ] @@ -16123,9 +16271,9 @@ arangosh> db.test.ensureIndex({ type: "fields" : [ "a" ], - "id" : "test/72980", + "id" : "test/72969", "isNewlyCreated" : true, - "name" : "idx_1745940462979514368", + "name" : "idx_1747211390047748097", "selectivityEstimate" : 1, "sparse" : true, "type" : "persistent", @@ -16141,9 +16289,9 @@ arangosh> db.test.ensureIndex({ type: "a", "b" ], - "id" : "test/72984", + "id" : "test/72973", "isNewlyCreated" : true, - "name" : "idx_1745940462982660096", + "name" : "idx_1747211390049845248", "selectivityEstimate" : 1, "sparse" : false, "type" : "persistent", @@ -16179,9 +16327,9 @@ arangosh> db.example.ensureIndex({ type: "a", "b" ], - "id" : "example/72853", + "id" : "example/72842", "isNewlyCreated" : true, - "name" : "idx_1745940462819082240", + "name" : "idx_1747211389994270721", "selectivityEstimate" : 1, "sparse" : false, "type" : "persistent", @@ -16210,8 +16358,8 @@ arangosh> indexInfo; "a", "b" ], - "id" : "example/72853", - "name" : "idx_1745940462819082240", + "id" : "example/72842", + "name" : "idx_1747211389994270721", "selectivityEstimate" : 1, "sparse" : false, "type" : "persistent", @@ -16287,9 +16435,9 @@ arangosh> db.example.ensureIndex({ type: "a", "b" ], - "id" : "example/67648", + "id" : "example/67645", "isNewlyCreated" : true, - "name" : "idx_1745940409702416384", + "name" : "idx_1747211343332638720", "selectivityEstimate" : 1, "sparse" : false, "type" : "persistent", @@ -16300,7 +16448,7 @@ arangosh> var indexInfo = db.example.getInd arangosh> indexInfo; [ "example/0", - "example/67648" + "example/67645" ] arangosh> db._index(indexInfo[0]) { @@ -16323,8 +16471,8 @@ arangosh> db._index(indexInfo[1]) "a", "b" ], - "id" : "example/67648", - "name" : "idx_1745940409702416384", + "id" : "example/67645", + "name" : "idx_1747211343332638720", "sparse" : false, "type" : "persistent", "unique" : false, @@ -16362,9 +16510,9 @@ arangosh> db.example.ensureIndex({ type: "a", "b" ], - "id" : "example/73652", + "id" : "example/73641", "isNewlyCreated" : true, - "name" : "idx_1745940463666331648", + "name" : "idx_1747211390240686081", "selectivityEstimate" : 1, "sparse" : false, "type" : "persistent", @@ -16393,8 +16541,8 @@ arangosh> indexInfo; "a", "b" ], - "id" : "example/73652", - "name" : "idx_1745940463666331648", + "id" : "example/73641", + "name" : "idx_1747211390240686081", "selectivityEstimate" : 1, "sparse" : false, "type" : "persistent", @@ -16453,9 +16601,9 @@ arangosh> db.example.ensureIndex({ type: "a", "b" ], - "id" : "example/67662", + "id" : "example/67659", "isNewlyCreated" : true, - "name" : "idx_1745940409718145024", + "name" : "idx_1747211343335784448", "selectivityEstimate" : 1, "sparse" : false, "type" : "persistent", @@ -16474,7 +16622,7 @@ Execution plan: Indexes used: By Name Type Collection Unique Sparse Cache Selectivity Fields Stored values Ranges - 6 idx_1745940409718145024 persistent example false false false 100.00 % [ `a`, `b` ] [ ] (doc.`a` < 23) + 6 idx_1747211343335784448 persistent example false false false 100.00 % [ `a`, `b` ] [ ] (doc.`a` < 23) Optimization rules applied: Id RuleName @@ -16611,38 +16759,38 @@ arangosh> print({ a:
 arangosh> db._create("test");
-[ArangoCollection 60429, "test" (type document, status loaded)]
+[ArangoCollection 60426, "test" (type document, status loaded)]
 arangosh> for (i = 0; i < 100; ++i) { db.test.save({ value: i }); }
 arangosh> db.test.ensureIndex({ type: "persistent", fields: [ "value" ] });
 { 
@@ -18370,9 +18518,9 @@ arangosh> db.test.ensureIndex({ type: "persistent", fields: [ "
   "fields" : [ 
     "value" 
   ], 
-  "id" : "test/60634", 
+  "id" : "test/60631", 
   "isNewlyCreated" : true, 
-  "name" : "idx_1745940406519988224", 
+  "name" : "idx_1747211342626947073", 
   "selectivityEstimate" : 1, 
   "sparse" : false, 
   "type" : "persistent", 
@@ -18393,7 +18541,7 @@ Execution plan:
 
 Indexes used:
  By   Name                      Type         Collection   Unique   Sparse   Cache   Selectivity   Fields        Stored values   Ranges
-  9   idx_1745940406519988224   persistent   test         false    false    false      100.00 %   [ `value` ]   [  ]            (i.`value` > 97)
+  9   idx_1747211342626947073   persistent   test         false    false    false      100.00 %   [ `value` ]   [  ]            (i.`value` > 97)
 
 Optimization rules applied:
  Id   RuleName
@@ -18480,9 +18628,9 @@ arangosh> stmt.explain();
         "indexCoversProjections" : true, 
         "indexes" : [ 
           { 
-            "id" : "60634", 
+            "id" : "60631", 
             "type" : "persistent", 
-            "name" : "idx_1745940406519988224", 
+            "name" : "idx_1747211342626947073", 
             "fields" : [ 
               "value" 
             ], 
@@ -18794,9 +18942,9 @@ arangosh> stmt.explain({ allPlans: "indexCoversProjections" : true, 
           "indexes" : [ 
             { 
-              "id" : "60634", 
+              "id" : "60631", 
               "type" : "persistent", 
-              "name" : "idx_1745940406519988224", 
+              "name" : "idx_1747211342626947073", 
               "fields" : [ 
                 "value" 
               ], 
@@ -19553,9 +19701,9 @@ arangosh> stmt.explain({ optimizer: { "indexCoversProjections" : true, 
         "indexes" : [ 
           { 
-            "id" : "60634", 
+            "id" : "60631", 
             "type" : "persistent", 
-            "name" : "idx_1745940406519988224", 
+            "name" : "idx_1747211342626947073", 
             "fields" : [ 
               "value" 
             ], 
@@ -19802,9 +19950,9 @@ arangosh> stmt.explain({ maxNumberOfPlans: "indexCoversProjections" : true, 
         "indexes" : [ 
           { 
-            "id" : "60634", 
+            "id" : "60631", 
             "type" : "persistent", 
-            "name" : "idx_1745940406519988224", 
+            "name" : "idx_1747211342626947073", 
             "fields" : [ 
               "value" 
             ], 
@@ -20117,9 +20265,9 @@ Query String (581   SingletonNode                 1       1          0       0.00001   * ROOT
-  2   EnumerateCollectionNode       1      10       9990       0.00556     - FOR doc IN acollection   /* full collection scan  */   FILTER (doc.`value` < 10)   /* early pruning */
-  5   ReturnNode                    1      10          0       0.00001       - RETURN doc
+  1   SingletonNode                 1       1          0       0.00000   * ROOT
+  2   EnumerateCollectionNode       1      10       9990       0.00211     - FOR doc IN acollection   /* full collection scan  */   FILTER (doc.`value` < 10)   /* early pruning */
+  5   ReturnNode                    1      10          0       0.00000       - RETURN doc
 
 Indexes used:
  none
@@ -20130,18 +20278,18 @@ Optimization rules applied:
 
 Query Statistics:
  Writes Exec   Writes Ign   Scan Full   Scan Index   Cache Hits/Misses   Filtered   Peak Mem [b]   Exec Time [s]
-           0            0       10000            0               0 / 0       9990              0         0.00607
+           0            0       10000            0               0 / 0       9990              0         0.00228
 
 Query Profile:
  Query Stage           Duration [s]
- initializing               0.00001
- parsing                    0.00007
- optimizing ast             0.00001
+ initializing               0.00000
+ parsing                    0.00003
+ optimizing ast             0.00000
  loading collections        0.00000
- instantiating plan         0.00004
- optimizing plan            0.00032
- executing                  0.00560
- finalizing                 0.00003
+ instantiating plan         0.00001
+ optimizing plan            0.00010
+ executing                  0.00212
+ finalizing                 0.00001
 
 
 
@@ -20179,13 +20327,13 @@ Query String (58
1 SingletonNode 1 1 0 0.00001 * ROOT - 6 IndexNode 1 10 0 0.00013 - FOR doc IN acollection /* persistent index scan, index scan + document lookup */ - 5 ReturnNode 1 10 0 0.00001 - RETURN doc + 1 SingletonNode 1 1 0 0.00000 * ROOT + 6 IndexNode 1 10 0 0.00005 - FOR doc IN acollection /* persistent index scan, index scan + document lookup */ + 5 ReturnNode 1 10 0 0.00000 - RETURN doc Indexes used: By Name Type Collection Unique Sparse Cache Selectivity Fields Stored values Ranges - 6 idx_1745940398125088768 persistent acollection false false false 100.00 % [ `value` ] [ ] (doc.`value` < 10) + 6 idx_1747211340715393024 persistent acollection false false false 100.00 % [ `value` ] [ ] (doc.`value` < 10) Optimization rules applied: Id RuleName @@ -20195,18 +20343,18 @@ Optimization rules applied: Query Statistics: Writes Exec Writes Ign Scan Full Scan Index Cache Hits/Misses Filtered Peak Mem [b] Exec Time [s] - 0 0 0 10 0 / 0 0 0 0.00062 + 0 0 0 10 0 / 0 0 0 0.00023 Query Profile: Query Stage Duration [s] initializing 0.00001 - parsing 0.00007 - optimizing ast 0.00001 + parsing 0.00003 + optimizing ast 0.00000 loading collections 0.00000 - instantiating plan 0.00003 - optimizing plan 0.00031 - executing 0.00016 - finalizing 0.00006 + instantiating plan 0.00001 + optimizing plan 0.00011 + executing 0.00006 + finalizing 0.00001 @@ -20246,16 +20394,16 @@ Query String (116 chars, cacheable: false): Execution plan: Id NodeType Calls Items Filtered Runtime [s] Comment - 1 SingletonNode 1 1 0 0.00002 * ROOT + 1 SingletonNode 1 1 0 0.00000 * ROOT 12 SubqueryStartNode 1 2 0 0.00001 - LET list = ( /* subquery begin */ - 3 EnumerateCollectionNode 11 10001 0 0.00474 - FOR doc IN acollection /* full collection scan */ - 4 CalculationNode 11 10001 0 0.00335 - LET #5 = (doc.`value` > 90) /* simple expression */ /* collections used: doc : acollection */ - 5 FilterNode 10 9910 91 0.00285 - FILTER #5 - 13 SubqueryEndNode 1 1 0 0.00196 - RETURN doc ) /* subquery end */ - 8 EnumerateListNode 10 9909 0 0.00224 - FOR a IN list /* list iteration */ - 9 CalculationNode 10 9909 0 0.00321 - LET #7 = (a.`value` < 91) /* simple expression */ - 10 FilterNode 1 0 9909 0.00062 - FILTER #7 - 11 ReturnNode 1 0 0 0.00001 - RETURN a + 3 EnumerateCollectionNode 11 10001 0 0.00219 - FOR doc IN acollection /* full collection scan */ + 4 CalculationNode 11 10001 0 0.00164 - LET #5 = (doc.`value` > 90) /* simple expression */ /* collections used: doc : acollection */ + 5 FilterNode 10 9910 91 0.00140 - FILTER #5 + 13 SubqueryEndNode 1 1 0 0.00120 - RETURN doc ) /* subquery end */ + 8 EnumerateListNode 10 9909 0 0.00114 - FOR a IN list /* list iteration */ + 9 CalculationNode 10 9909 0 0.00156 - LET #7 = (a.`value` < 91) /* simple expression */ + 10 FilterNode 1 0 9909 0.00025 - FILTER #7 + 11 ReturnNode 1 0 0 0.00000 - RETURN a Indexes used: none @@ -20266,18 +20414,18 @@ Optimization rules applied: Query Statistics: Writes Exec Writes Ign Scan Full Scan Index Cache Hits/Misses Filtered Peak Mem [b] Exec Time [s] - 0 0 10000 0 0 / 0 10000 720896 0.01948 + 0 0 10000 0 0 / 0 10000 720896 0.00959 Query Profile: Query Stage Duration [s] initializing 0.00001 - parsing 0.00006 - optimizing ast 0.00001 + parsing 0.00003 + optimizing ast 0.00000 loading collections 0.00000 - instantiating plan 0.00007 - optimizing plan 0.00027 - executing 0.01904 - finalizing 0.00004 + instantiating plan 0.00002 + optimizing plan 0.00012 + executing 0.00940 + finalizing 0.00002 @@ -20328,14 +20476,14 @@ Query String (186 chars, cacheable: false): Execution plan: Id NodeType Calls Items Filtered Runtime [s] Comment - 1 SingletonNode 1 1 0 0.00001 * ROOT - 2 EnumerateCollectionNode 1 20 0 0.00007 - FOR u IN myusers /* full collection scan (projections: `age`) */ - 3 CalculationNode 1 20 0 0.00003 - LET #5 = (FLOOR((u.`age` / 10)) * 10) /* simple expression */ /* collections used: u : myusers */ - 4 CalculationNode 1 20 0 0.00001 - LET #7 = u.`age` /* attribute expression */ /* collections used: u : myusers */ - 6 CollectNode 1 8 0 0.00009 - COLLECT ageGroup = #5 AGGREGATE minAge = MIN(#7), maxAge = MAX(#7), len = LENGTH() /* hash */ - 9 SortNode 1 8 0 0.00005 - SORT ageGroup ASC /* sorting strategy: standard */ - 7 CalculationNode 1 8 0 0.00003 - LET #11 = { "ageGroup" : ageGroup, "minAge" : minAge, "maxAge" : maxAge, "len" : len } /* simple expression */ - 8 ReturnNode 1 8 0 0.00002 - RETURN #11 + 1 SingletonNode 1 1 0 0.00000 * ROOT + 2 EnumerateCollectionNode 1 20 0 0.00004 - FOR u IN myusers /* full collection scan (projections: `age`) */ + 3 CalculationNode 1 20 0 0.00001 - LET #5 = (FLOOR((u.`age` / 10)) * 10) /* simple expression */ /* collections used: u : myusers */ + 4 CalculationNode 1 20 0 0.00000 - LET #7 = u.`age` /* attribute expression */ /* collections used: u : myusers */ + 6 CollectNode 1 8 0 0.00001 - COLLECT ageGroup = #5 AGGREGATE minAge = MIN(#7), maxAge = MAX(#7), len = LENGTH() /* hash */ + 9 SortNode 1 8 0 0.00006 - SORT ageGroup ASC /* sorting strategy: standard */ + 7 CalculationNode 1 8 0 0.00001 - LET #11 = { "ageGroup" : ageGroup, "minAge" : minAge, "maxAge" : maxAge, "len" : len } /* simple expression */ + 8 ReturnNode 1 8 0 0.00000 - RETURN #11 Indexes used: none @@ -20351,18 +20499,18 @@ Optimization rules applied: Query Statistics: Writes Exec Writes Ign Scan Full Scan Index Cache Hits/Misses Filtered Peak Mem [b] Exec Time [s] - 0 0 20 0 0 / 0 0 65536 0.00121 + 0 0 20 0 0 / 0 0 65536 0.00042 Query Profile: Query Stage Duration [s] initializing 0.00000 - parsing 0.00014 - optimizing ast 0.00002 - loading collections 0.00001 - instantiating plan 0.00004 - optimizing plan 0.00068 - executing 0.00031 - finalizing 0.00004 + parsing 0.00004 + optimizing ast 0.00001 + loading collections 0.00000 + instantiating plan 0.00002 + optimizing plan 0.00022 + executing 0.00014 + finalizing 0.00001 @@ -20398,9 +20546,9 @@ arangosh> db._query(` ........> FOR i IN 1..@count INSERT ........> { _key: CONCAT('anothertest', TO_STRING(i)) } ........> INTO mycollection`, -........> {count: 100}, +........> { count: 100 }, ........> {}, -........> {fullCount: true} +........> { fullCount: true } ........> ).getExtra(); { "warnings" : [ ], @@ -20416,16 +20564,16 @@ arangosh> db._query(` "filtered" : 0, "httpRequests" : 0, "fullCount" : 0, - "executionTime" : 0.003518403973430395, + "executionTime" : 0.0008572860001549998, "peakMemoryUsage" : 32768 } } arangosh> db._query({ -........> "query": `FOR i IN 200..@count INSERT -........> { _key: CONCAT('anothertest', TO_STRING(i)) } -........> INTO mycollection`, -........> "bindVars": {count: 300}, -........> "options": { fullCount: true} +........> "query": `FOR i IN 200..@count INSERT +........> { _key: CONCAT('anothertest', TO_STRING(i)) } +........> INTO mycollection`, +........> "bindVars": { count: 300 }, +........> "options": { fullCount: true } ........> }).getExtra(); { "warnings" : [ ], @@ -20441,7 +20589,7 @@ arangosh> db._query({ "filtered" : 0, "httpRequests" : 0, "fullCount" : 0, - "executionTime" : 0.003419677959755063, + "executionTime" : 0.0008033569997678569, "peakMemoryUsage" : 32768 } } @@ -20453,16 +20601,16 @@ arangosh> db._query(` ........> FOR i IN 1..@count INSERT ........> { _key: CONCAT('anothertest', TO_STRING(i)) } ........> INTO mycollection`, -........> {count: 100}, +........> { count: 100 }, ........> {}, -........> {fullCount: true} +........> { fullCount: true } ........> ).getExtra(); arangosh> db._query({ -........> "query": `FOR i IN 200..@count INSERT -........> { _key: CONCAT('anothertest', TO_STRING(i)) } -........> INTO mycollection`, -........> "bindVars": {count: 300}, -........> "options": { fullCount: true} +........> "query": `FOR i IN 200..@count INSERT +........> { _key: CONCAT('anothertest', TO_STRING(i)) } +........> INTO mycollection`, +........> "bindVars": { count: 300 }, +........> "options": { fullCount: true } ........> }).getExtra();
Show execution results
@@ -20864,39 +21012,39 @@ RETURN INTERLEAVE(p.vertices[*]._id, p.edges[*]._id) [ [ "places/Toronto", - "connections/72016", + "connections/72005", "places/Winnipeg" ], [ "places/Toronto", - "connections/72016", + "connections/72005", "places/Winnipeg", - "connections/72020", + "connections/72009", "places/Saskatoon" ], [ "places/Toronto", - "connections/72016", + "connections/72005", "places/Winnipeg", - "connections/72020", + "connections/72009", "places/Saskatoon", - "connections/72024", + "connections/72013", "places/Edmonton" ], [ "places/Toronto", - "connections/72016", + "connections/72005", "places/Winnipeg", - "connections/72020", + "connections/72009", "places/Saskatoon", - "connections/72022", + "connections/72011", "places/Winnipeg" ], [ "places/Toronto", - "connections/72016", + "connections/72005", "places/Winnipeg", - "connections/72018", + "connections/72007", "places/Toronto" ] ] @@ -23204,7 +23352,7 @@ RETURN UNSHIFT( [ 1,
 [
   {
-    "local": "2022-10-06T13:16:16.780",
+    "local": "2022-10-20T13:57:07.833",
     "tzdb": "2022a",
     "zoneInfo": {
       "name": "WAT",
@@ -23360,29 +23508,29 @@ RETURN UNSHIFT( [ 1, 
 
@@ -25505,13 +25653,13 @@ RETURN GEO_MULTIPOLYGON([ { "_key": "alice", "_id": "persons/alice", - "_rev": "_e4y2x-W---", + "_rev": "_e9T1UF6---", "name": "Alice" }, { "_key": "bob", "_id": "persons/bob", - "_rev": "_e4y2x-a---", + "_rev": "_e9T1UF6--_", "name": "Bob" } ] @@ -25547,13 +25695,13 @@ RETURN GEO_MULTIPOLYGON([ { "_key": "alice", "_id": "persons/alice", - "_rev": "_e4y2x_m---", + "_rev": "_e9T1UGK---", "name": "Alice" }, { "_key": "bob", "_id": "persons/bob", - "_rev": "_e4y2x_m--_", + "_rev": "_e9T1UGK--_", "name": "Bob" } ] @@ -25594,7 +25742,7 @@ RETURN GEO_MULTIPOLYGON([ { "_key": "alice", "_id": "persons/alice", - "_rev": "_e4y2xA6---", + "_rev": "_e9T1UGa--A", "name": "Alice" } ] @@ -25644,13 +25792,13 @@ RETURN GEO_MULTIPOLYGON([ { "_key": "alice", "_id": "persons/alice", - "_rev": "_e4y2xCG---", + "_rev": "_e9T1UGu---", "name": "Alice" }, { "_key": "bob", "_id": "persons/bob", - "_rev": "_e4y2xCK---", + "_rev": "_e9T1UGu--_", "name": "Bob" } ] @@ -25694,7 +25842,7 @@ RETURN GEO_MULTIPOLYGON([ { "_key": "alice", "_id": "persons/alice", - "_rev": "_e4y2xDS---", + "_rev": "_e9T1UH----", "name": "Alice" } ] @@ -25729,13 +25877,13 @@ RETURN GEO_MULTIPOLYGON([ { "_key": "alice", "_id": "persons/alice", - "_rev": "_e4y2xEa---", + "_rev": "_e9T1UHO---", "name": "Alice" }, { "_key": "bob", "_id": "persons/bob", - "_rev": "_e4y2xEe---", + "_rev": "_e9T1UHO--_", "name": "Bob" } ] @@ -25775,7 +25923,7 @@ RETURN GEO_MULTIPOLYGON([ { "_key": "alice", "_id": "persons/alice", - "_rev": "_e4y2xFi---", + "_rev": "_e9T1UHe--A", "name": "Alice" } ] @@ -25823,13 +25971,13 @@ RETURN GEO_MULTIPOLYGON([ { "_key": "alice", "_id": "persons/alice", - "_rev": "_e4y2w6i---", + "_rev": "_e9T1UFG--A", "name": "Alice" }, { "_key": "bob", "_id": "persons/bob", - "_rev": "_e4y2w6m---", + "_rev": "_e9T1UFK---", "name": "Bob" } ] @@ -25877,7 +26025,7 @@ RETURN GEO_MULTIPOLYGON([ { "_key": "bob", "_id": "persons/bob", - "_rev": "_e4y2w72--_", + "_rev": "_e9T1UFa--_", "name": "Bob" } ] @@ -25962,13 +26110,13 @@ RETURN GEO_MULTIPOLYGON([
Query:
-    RETURN MINHASH_ERROR(0.05)
+    RETURN MINHASH_COUNT(0.05)
 
 
Query results:
 [
-  null
+  400
 ]
@@ -27897,8 +28045,8 @@ RETURN [
 [
   [
-    "mwudI8dP",
-    "7JuCi8CH"
+    "aEkWclgo",
+    "bhbmhec2"
   ]
 ]
Hide query result
@@ -28458,14 +28606,14 @@ RETURN SHA1("foobar") -@startDocuBlockInline aqlSha512 + @startDocuBlockInline aqlSha512
Query:
-RETURN SHA512("foobar")
+    RETURN SHA512("foobar")
 
 
Query results: @@ -28476,7 +28624,7 @@ RETURN SHA512("foobar")
-@endDocuBlock aqlSha512 + @endDocuBlock aqlSha512 @@ -29417,9 +29565,9 @@ FOR i IN 1..3 Query results:
 [
-  "18250a6d-106b-47c7-beac-1e421e24be21",
-  "93ad02b5-5c4b-4908-be62-b43789360272",
-  "1916577a-d250-4314-93f8-a2b8bd2b9aa1"
+  "262c4c53-5ccf-416f-8848-28c3e6d05cec",
+  "61381ee8-e014-4274-b372-425fd2129ab0",
+  "58eb39d0-15e6-454f-849c-4ec6941648db"
 ]
Hide query result
@@ -29449,400 +29597,400 @@ arangosh> db.places.toArray(); { "_key" : "Inverness", "_id" : "places/Inverness", - "_rev" : "_e4y2xJO---", + "_rev" : "_e9T1UIS---", "label" : "Inverness" }, { "_key" : "Aberdeen", "_id" : "places/Aberdeen", - "_rev" : "_e4y2xJS---", + "_rev" : "_e9T1UIS--_", "label" : "Aberdeen" }, { "_key" : "Leuchars", "_id" : "places/Leuchars", - "_rev" : "_e4y2xJS--_", + "_rev" : "_e9T1UIS--A", "label" : "Leuchars" }, { "_key" : "StAndrews", "_id" : "places/StAndrews", - "_rev" : "_e4y2xJW---", + "_rev" : "_e9T1UIS--B", "label" : "StAndrews" }, { "_key" : "Edinburgh", "_id" : "places/Edinburgh", - "_rev" : "_e4y2xJW--_", + "_rev" : "_e9T1UIS--C", "label" : "Edinburgh" }, { "_key" : "Glasgow", "_id" : "places/Glasgow", - "_rev" : "_e4y2xJa---", + "_rev" : "_e9T1UIS--D", "label" : "Glasgow" }, { "_key" : "York", "_id" : "places/York", - "_rev" : "_e4y2xJa--_", + "_rev" : "_e9T1UIW---", "label" : "York" }, { "_key" : "Carlisle", "_id" : "places/Carlisle", - "_rev" : "_e4y2xJe---", + "_rev" : "_e9T1UIW--_", "label" : "Carlisle" }, { "_key" : "Birmingham", "_id" : "places/Birmingham", - "_rev" : "_e4y2xJe--_", + "_rev" : "_e9T1UIW--A", "label" : "Birmingham" }, { "_key" : "London", "_id" : "places/London", - "_rev" : "_e4y2xJi---", + "_rev" : "_e9T1UIW--B", "label" : "London" }, { "_key" : "Brussels", "_id" : "places/Brussels", - "_rev" : "_e4y2xJi--_", + "_rev" : "_e9T1UIW--C", "label" : "Brussels" }, { "_key" : "Cologne", "_id" : "places/Cologne", - "_rev" : "_e4y2xJm---", + "_rev" : "_e9T1UIW--D", "label" : "Cologne" }, { "_key" : "Toronto", "_id" : "places/Toronto", - "_rev" : "_e4y2xJm--_", + "_rev" : "_e9T1UIW--E", "label" : "Toronto" }, { "_key" : "Winnipeg", "_id" : "places/Winnipeg", - "_rev" : "_e4y2xJq---", + "_rev" : "_e9T1UIW--F", "label" : "Winnipeg" }, { "_key" : "Saskatoon", "_id" : "places/Saskatoon", - "_rev" : "_e4y2xJq--_", + "_rev" : "_e9T1UIW--G", "label" : "Saskatoon" }, { "_key" : "Edmonton", "_id" : "places/Edmonton", - "_rev" : "_e4y2xJq--A", + "_rev" : "_e9T1UIW--H", "label" : "Edmonton" }, { "_key" : "Jasper", "_id" : "places/Jasper", - "_rev" : "_e4y2xJu---", + "_rev" : "_e9T1UIW--I", "label" : "Jasper" }, { "_key" : "Vancouver", "_id" : "places/Vancouver", - "_rev" : "_e4y2xJu--_", + "_rev" : "_e9T1UIW--J", "label" : "Vancouver" } ] arangosh> db.connections.toArray(); [ { - "_key" : "62094", - "_id" : "connections/62094", + "_key" : "62091", + "_id" : "connections/62091", "_from" : "places/Inverness", "_to" : "places/Aberdeen", - "_rev" : "_e4y2xJy---", + "_rev" : "_e9T1UIa---", "travelTime" : 3 }, { - "_key" : "62096", - "_id" : "connections/62096", + "_key" : "62093", + "_id" : "connections/62093", "_from" : "places/Aberdeen", "_to" : "places/Inverness", - "_rev" : "_e4y2xJy--_", + "_rev" : "_e9T1UIa--_", "travelTime" : 2.5 }, { - "_key" : "62098", - "_id" : "connections/62098", + "_key" : "62095", + "_id" : "connections/62095", "_from" : "places/Aberdeen", "_to" : "places/Leuchars", - "_rev" : "_e4y2xJ2---", + "_rev" : "_e9T1UIa--A", "travelTime" : 1.5 }, { - "_key" : "62100", - "_id" : "connections/62100", + "_key" : "62097", + "_id" : "connections/62097", "_from" : "places/Leuchars", "_to" : "places/Aberdeen", - "_rev" : "_e4y2xJ2--_", + "_rev" : "_e9T1UIa--B", "travelTime" : 1 }, { - "_key" : "62102", - "_id" : "connections/62102", + "_key" : "62099", + "_id" : "connections/62099", "_from" : "places/Leuchars", "_to" : "places/Edinburgh", - "_rev" : "_e4y2xJ6---", + "_rev" : "_e9T1UIa--C", "travelTime" : 1.5 }, { - "_key" : "62104", - "_id" : "connections/62104", + "_key" : "62101", + "_id" : "connections/62101", "_from" : "places/Edinburgh", "_to" : "places/Leuchars", - "_rev" : "_e4y2xJ6--_", + "_rev" : "_e9T1UIa--D", "travelTime" : 3 }, { - "_key" : "62106", - "_id" : "connections/62106", + "_key" : "62103", + "_id" : "connections/62103", "_from" : "places/Edinburgh", "_to" : "places/Glasgow", - "_rev" : "_e4y2xK----", + "_rev" : "_e9T1UIa--E", "travelTime" : 1 }, { - "_key" : "62108", - "_id" : "connections/62108", + "_key" : "62105", + "_id" : "connections/62105", "_from" : "places/Glasgow", "_to" : "places/Edinburgh", - "_rev" : "_e4y2xK---_", + "_rev" : "_e9T1UIa--F", "travelTime" : 1 }, { - "_key" : "62110", - "_id" : "connections/62110", + "_key" : "62107", + "_id" : "connections/62107", "_from" : "places/Edinburgh", "_to" : "places/York", - "_rev" : "_e4y2xKC---", + "_rev" : "_e9T1UIa--G", "travelTime" : 3.5 }, { - "_key" : "62112", - "_id" : "connections/62112", + "_key" : "62109", + "_id" : "connections/62109", "_from" : "places/York", "_to" : "places/Edinburgh", - "_rev" : "_e4y2xKC--_", + "_rev" : "_e9T1UIa--H", "travelTime" : 4 }, { - "_key" : "62114", - "_id" : "connections/62114", + "_key" : "62111", + "_id" : "connections/62111", "_from" : "places/Glasgow", "_to" : "places/Carlisle", - "_rev" : "_e4y2xKG---", + "_rev" : "_e9T1UIe---", "travelTime" : 1 }, { - "_key" : "62116", - "_id" : "connections/62116", + "_key" : "62113", + "_id" : "connections/62113", "_from" : "places/Carlisle", "_to" : "places/Glasgow", - "_rev" : "_e4y2xKG--_", + "_rev" : "_e9T1UIe--_", "travelTime" : 1 }, { - "_key" : "62118", - "_id" : "connections/62118", + "_key" : "62115", + "_id" : "connections/62115", "_from" : "places/Carlisle", "_to" : "places/York", - "_rev" : "_e4y2xKK---", + "_rev" : "_e9T1UIe--A", "travelTime" : 2.5 }, { - "_key" : "62120", - "_id" : "connections/62120", + "_key" : "62117", + "_id" : "connections/62117", "_from" : "places/York", "_to" : "places/Carlisle", - "_rev" : "_e4y2xKK--_", + "_rev" : "_e9T1UIe--B", "travelTime" : 3.5 }, { - "_key" : "62122", - "_id" : "connections/62122", + "_key" : "62119", + "_id" : "connections/62119", "_from" : "places/Carlisle", "_to" : "places/Birmingham", - "_rev" : "_e4y2xKO---", + "_rev" : "_e9T1UIe--C", "travelTime" : 2 }, { - "_key" : "62124", - "_id" : "connections/62124", + "_key" : "62121", + "_id" : "connections/62121", "_from" : "places/Birmingham", "_to" : "places/Carlisle", - "_rev" : "_e4y2xKO--_", + "_rev" : "_e9T1UIe--D", "travelTime" : 1 }, { - "_key" : "62126", - "_id" : "connections/62126", + "_key" : "62123", + "_id" : "connections/62123", "_from" : "places/Birmingham", "_to" : "places/London", - "_rev" : "_e4y2xKS---", + "_rev" : "_e9T1UIe--E", "travelTime" : 1.5 }, { - "_key" : "62128", - "_id" : "connections/62128", + "_key" : "62125", + "_id" : "connections/62125", "_from" : "places/London", "_to" : "places/Birmingham", - "_rev" : "_e4y2xKS--_", + "_rev" : "_e9T1UIe--F", "travelTime" : 2.5 }, { - "_key" : "62130", - "_id" : "connections/62130", + "_key" : "62127", + "_id" : "connections/62127", "_from" : "places/Leuchars", "_to" : "places/StAndrews", - "_rev" : "_e4y2xKW---", + "_rev" : "_e9T1UIe--G", "travelTime" : 0.2 }, { - "_key" : "62132", - "_id" : "connections/62132", + "_key" : "62129", + "_id" : "connections/62129", "_from" : "places/StAndrews", "_to" : "places/Leuchars", - "_rev" : "_e4y2xKW--_", + "_rev" : "_e9T1UIe--H", "travelTime" : 0.2 }, { - "_key" : "62134", - "_id" : "connections/62134", + "_key" : "62131", + "_id" : "connections/62131", "_from" : "places/York", "_to" : "places/London", - "_rev" : "_e4y2xKa---", + "_rev" : "_e9T1UIe--I", "travelTime" : 1.8 }, { - "_key" : "62136", - "_id" : "connections/62136", + "_key" : "62133", + "_id" : "connections/62133", "_from" : "places/London", "_to" : "places/York", - "_rev" : "_e4y2xKa--_", + "_rev" : "_e9T1UIi---", "travelTime" : 2 }, { - "_key" : "62138", - "_id" : "connections/62138", + "_key" : "62135", + "_id" : "connections/62135", "_from" : "places/London", "_to" : "places/Brussels", - "_rev" : "_e4y2xKe---", + "_rev" : "_e9T1UIi--_", "travelTime" : 2.5 }, { - "_key" : "62140", - "_id" : "connections/62140", + "_key" : "62137", + "_id" : "connections/62137", "_from" : "places/Brussels", "_to" : "places/London", - "_rev" : "_e4y2xKe--_", + "_rev" : "_e9T1UIi--A", "travelTime" : 3.5 }, { - "_key" : "62142", - "_id" : "connections/62142", + "_key" : "62139", + "_id" : "connections/62139", "_from" : "places/Brussels", "_to" : "places/Cologne", - "_rev" : "_e4y2xKi---", + "_rev" : "_e9T1UIi--B", "travelTime" : 2 }, { - "_key" : "62144", - "_id" : "connections/62144", + "_key" : "62141", + "_id" : "connections/62141", "_from" : "places/Cologne", "_to" : "places/Brussels", - "_rev" : "_e4y2xKi--_", + "_rev" : "_e9T1UIi--C", "travelTime" : 1.5 }, { - "_key" : "62146", - "_id" : "connections/62146", + "_key" : "62143", + "_id" : "connections/62143", "_from" : "places/Toronto", "_to" : "places/Winnipeg", - "_rev" : "_e4y2xKm---", + "_rev" : "_e9T1UIi--D", "travelTime" : 36 }, { - "_key" : "62148", - "_id" : "connections/62148", + "_key" : "62145", + "_id" : "connections/62145", "_from" : "places/Winnipeg", "_to" : "places/Toronto", - "_rev" : "_e4y2xKm--_", + "_rev" : "_e9T1UIi--E", "travelTime" : 35 }, { - "_key" : "62150", - "_id" : "connections/62150", + "_key" : "62147", + "_id" : "connections/62147", "_from" : "places/Winnipeg", "_to" : "places/Saskatoon", - "_rev" : "_e4y2xKq---", + "_rev" : "_e9T1UIi--F", "travelTime" : 12 }, { - "_key" : "62152", - "_id" : "connections/62152", + "_key" : "62149", + "_id" : "connections/62149", "_from" : "places/Saskatoon", "_to" : "places/Winnipeg", - "_rev" : "_e4y2xKq--_", + "_rev" : "_e9T1UIi--G", "travelTime" : 5 }, { - "_key" : "62154", - "_id" : "connections/62154", + "_key" : "62151", + "_id" : "connections/62151", "_from" : "places/Saskatoon", "_to" : "places/Edmonton", - "_rev" : "_e4y2xKu---", + "_rev" : "_e9T1UIi--H", "travelTime" : 12 }, { - "_key" : "62156", - "_id" : "connections/62156", + "_key" : "62153", + "_id" : "connections/62153", "_from" : "places/Edmonton", "_to" : "places/Saskatoon", - "_rev" : "_e4y2xKu--_", + "_rev" : "_e9T1UIi--I", "travelTime" : 17 }, { - "_key" : "62158", - "_id" : "connections/62158", + "_key" : "62155", + "_id" : "connections/62155", "_from" : "places/Edmonton", "_to" : "places/Jasper", - "_rev" : "_e4y2xKy---", + "_rev" : "_e9T1UIm---", "travelTime" : 6 }, { - "_key" : "62160", - "_id" : "connections/62160", + "_key" : "62157", + "_id" : "connections/62157", "_from" : "places/Jasper", "_to" : "places/Edmonton", - "_rev" : "_e4y2xKy--_", + "_rev" : "_e9T1UIm--_", "travelTime" : 5 }, { - "_key" : "62162", - "_id" : "connections/62162", + "_key" : "62159", + "_id" : "connections/62159", "_from" : "places/Jasper", "_to" : "places/Vancouver", - "_rev" : "_e4y2xK2---", + "_rev" : "_e9T1UIm--A", "travelTime" : 12 }, { - "_key" : "62164", - "_id" : "connections/62164", + "_key" : "62161", + "_id" : "connections/62161", "_from" : "places/Vancouver", "_to" : "places/Jasper", - "_rev" : "_e4y2xK2--_", + "_rev" : "_e9T1UIm--B", "travelTime" : 13 } ] @@ -30057,400 +30205,400 @@ arangosh> db.places.toArray(); { "_key" : "Inverness", "_id" : "places/Inverness", - "_rev" : "_e4y2xYy---", + "_rev" : "_e9T1ULe---", "label" : "Inverness" }, { "_key" : "Aberdeen", "_id" : "places/Aberdeen", - "_rev" : "_e4y2xY2---", + "_rev" : "_e9T1ULe--_", "label" : "Aberdeen" }, { "_key" : "Leuchars", "_id" : "places/Leuchars", - "_rev" : "_e4y2xY2--_", + "_rev" : "_e9T1ULe--A", "label" : "Leuchars" }, { "_key" : "StAndrews", "_id" : "places/StAndrews", - "_rev" : "_e4y2xY6---", + "_rev" : "_e9T1ULe--B", "label" : "StAndrews" }, { "_key" : "Edinburgh", "_id" : "places/Edinburgh", - "_rev" : "_e4y2xZ----", + "_rev" : "_e9T1ULe--C", "label" : "Edinburgh" }, { "_key" : "Glasgow", "_id" : "places/Glasgow", - "_rev" : "_e4y2xZ---_", + "_rev" : "_e9T1ULe--D", "label" : "Glasgow" }, { "_key" : "York", "_id" : "places/York", - "_rev" : "_e4y2xZC---", + "_rev" : "_e9T1ULe--E", "label" : "York" }, { "_key" : "Carlisle", "_id" : "places/Carlisle", - "_rev" : "_e4y2xZG---", + "_rev" : "_e9T1ULi---", "label" : "Carlisle" }, { "_key" : "Birmingham", "_id" : "places/Birmingham", - "_rev" : "_e4y2xZG--_", + "_rev" : "_e9T1ULi--_", "label" : "Birmingham" }, { "_key" : "London", "_id" : "places/London", - "_rev" : "_e4y2xZK---", + "_rev" : "_e9T1ULi--A", "label" : "London" }, { "_key" : "Brussels", "_id" : "places/Brussels", - "_rev" : "_e4y2xZK--_", + "_rev" : "_e9T1ULi--B", "label" : "Brussels" }, { "_key" : "Cologne", "_id" : "places/Cologne", - "_rev" : "_e4y2xZO---", + "_rev" : "_e9T1ULi--C", "label" : "Cologne" }, { "_key" : "Toronto", "_id" : "places/Toronto", - "_rev" : "_e4y2xZO--_", + "_rev" : "_e9T1ULi--D", "label" : "Toronto" }, { "_key" : "Winnipeg", "_id" : "places/Winnipeg", - "_rev" : "_e4y2xZS---", + "_rev" : "_e9T1ULi--E", "label" : "Winnipeg" }, { "_key" : "Saskatoon", "_id" : "places/Saskatoon", - "_rev" : "_e4y2xZS--_", + "_rev" : "_e9T1ULi--F", "label" : "Saskatoon" }, { "_key" : "Edmonton", "_id" : "places/Edmonton", - "_rev" : "_e4y2xZW---", + "_rev" : "_e9T1ULi--G", "label" : "Edmonton" }, { "_key" : "Jasper", "_id" : "places/Jasper", - "_rev" : "_e4y2xZW--_", + "_rev" : "_e9T1ULi--H", "label" : "Jasper" }, { "_key" : "Vancouver", "_id" : "places/Vancouver", - "_rev" : "_e4y2xZa---", + "_rev" : "_e9T1ULi--I", "label" : "Vancouver" } ] arangosh> db.connections.toArray(); [ { - "_key" : "62742", - "_id" : "connections/62742", + "_key" : "62739", + "_id" : "connections/62739", "_from" : "places/Inverness", "_to" : "places/Aberdeen", - "_rev" : "_e4y2xZa--_", + "_rev" : "_e9T1ULi--J", "travelTime" : 3 }, { - "_key" : "62744", - "_id" : "connections/62744", + "_key" : "62741", + "_id" : "connections/62741", "_from" : "places/Aberdeen", "_to" : "places/Inverness", - "_rev" : "_e4y2xZe---", + "_rev" : "_e9T1ULm---", "travelTime" : 2.5 }, { - "_key" : "62746", - "_id" : "connections/62746", + "_key" : "62743", + "_id" : "connections/62743", "_from" : "places/Aberdeen", "_to" : "places/Leuchars", - "_rev" : "_e4y2xZe--_", + "_rev" : "_e9T1ULm--_", "travelTime" : 1.5 }, { - "_key" : "62748", - "_id" : "connections/62748", + "_key" : "62745", + "_id" : "connections/62745", "_from" : "places/Leuchars", "_to" : "places/Aberdeen", - "_rev" : "_e4y2xZi---", + "_rev" : "_e9T1ULm--A", "travelTime" : 1 }, { - "_key" : "62750", - "_id" : "connections/62750", + "_key" : "62747", + "_id" : "connections/62747", "_from" : "places/Leuchars", "_to" : "places/Edinburgh", - "_rev" : "_e4y2xZi--_", + "_rev" : "_e9T1ULm--B", "travelTime" : 1.5 }, { - "_key" : "62752", - "_id" : "connections/62752", + "_key" : "62749", + "_id" : "connections/62749", "_from" : "places/Edinburgh", "_to" : "places/Leuchars", - "_rev" : "_e4y2xZm---", + "_rev" : "_e9T1ULm--C", "travelTime" : 3 }, { - "_key" : "62754", - "_id" : "connections/62754", + "_key" : "62751", + "_id" : "connections/62751", "_from" : "places/Edinburgh", "_to" : "places/Glasgow", - "_rev" : "_e4y2xZm--_", + "_rev" : "_e9T1ULm--D", "travelTime" : 1 }, { - "_key" : "62756", - "_id" : "connections/62756", + "_key" : "62753", + "_id" : "connections/62753", "_from" : "places/Glasgow", "_to" : "places/Edinburgh", - "_rev" : "_e4y2xZq---", + "_rev" : "_e9T1ULm--E", "travelTime" : 1 }, { - "_key" : "62758", - "_id" : "connections/62758", + "_key" : "62755", + "_id" : "connections/62755", "_from" : "places/Edinburgh", "_to" : "places/York", - "_rev" : "_e4y2xZq--_", + "_rev" : "_e9T1ULm--F", "travelTime" : 3.5 }, { - "_key" : "62760", - "_id" : "connections/62760", + "_key" : "62757", + "_id" : "connections/62757", "_from" : "places/York", "_to" : "places/Edinburgh", - "_rev" : "_e4y2xZu---", + "_rev" : "_e9T1ULm--G", "travelTime" : 4 }, { - "_key" : "62762", - "_id" : "connections/62762", + "_key" : "62759", + "_id" : "connections/62759", "_from" : "places/Glasgow", "_to" : "places/Carlisle", - "_rev" : "_e4y2xZu--_", + "_rev" : "_e9T1ULm--H", "travelTime" : 1 }, { - "_key" : "62764", - "_id" : "connections/62764", + "_key" : "62761", + "_id" : "connections/62761", "_from" : "places/Carlisle", "_to" : "places/Glasgow", - "_rev" : "_e4y2xZy---", + "_rev" : "_e9T1ULq---", "travelTime" : 1 }, { - "_key" : "62766", - "_id" : "connections/62766", + "_key" : "62763", + "_id" : "connections/62763", "_from" : "places/Carlisle", "_to" : "places/York", - "_rev" : "_e4y2xZy--_", + "_rev" : "_e9T1ULq--_", "travelTime" : 2.5 }, { - "_key" : "62768", - "_id" : "connections/62768", + "_key" : "62765", + "_id" : "connections/62765", "_from" : "places/York", "_to" : "places/Carlisle", - "_rev" : "_e4y2xZ2---", + "_rev" : "_e9T1ULq--A", "travelTime" : 3.5 }, { - "_key" : "62770", - "_id" : "connections/62770", + "_key" : "62767", + "_id" : "connections/62767", "_from" : "places/Carlisle", "_to" : "places/Birmingham", - "_rev" : "_e4y2xZ2--_", + "_rev" : "_e9T1ULq--B", "travelTime" : 2 }, { - "_key" : "62772", - "_id" : "connections/62772", + "_key" : "62769", + "_id" : "connections/62769", "_from" : "places/Birmingham", "_to" : "places/Carlisle", - "_rev" : "_e4y2xZ6---", + "_rev" : "_e9T1ULq--C", "travelTime" : 1 }, { - "_key" : "62774", - "_id" : "connections/62774", + "_key" : "62771", + "_id" : "connections/62771", "_from" : "places/Birmingham", "_to" : "places/London", - "_rev" : "_e4y2xZ6--_", + "_rev" : "_e9T1ULq--D", "travelTime" : 1.5 }, { - "_key" : "62776", - "_id" : "connections/62776", + "_key" : "62773", + "_id" : "connections/62773", "_from" : "places/London", "_to" : "places/Birmingham", - "_rev" : "_e4y2xa----", + "_rev" : "_e9T1ULq--E", "travelTime" : 2.5 }, { - "_key" : "62778", - "_id" : "connections/62778", + "_key" : "62775", + "_id" : "connections/62775", "_from" : "places/Leuchars", "_to" : "places/StAndrews", - "_rev" : "_e4y2xa---_", + "_rev" : "_e9T1ULq--F", "travelTime" : 0.2 }, { - "_key" : "62780", - "_id" : "connections/62780", + "_key" : "62777", + "_id" : "connections/62777", "_from" : "places/StAndrews", "_to" : "places/Leuchars", - "_rev" : "_e4y2xaC---", + "_rev" : "_e9T1ULq--G", "travelTime" : 0.2 }, { - "_key" : "62782", - "_id" : "connections/62782", + "_key" : "62779", + "_id" : "connections/62779", "_from" : "places/York", "_to" : "places/London", - "_rev" : "_e4y2xaC--_", + "_rev" : "_e9T1ULq--H", "travelTime" : 1.8 }, { - "_key" : "62784", - "_id" : "connections/62784", + "_key" : "62781", + "_id" : "connections/62781", "_from" : "places/London", "_to" : "places/York", - "_rev" : "_e4y2xaG---", + "_rev" : "_e9T1ULq--I", "travelTime" : 2 }, { - "_key" : "62786", - "_id" : "connections/62786", + "_key" : "62783", + "_id" : "connections/62783", "_from" : "places/London", "_to" : "places/Brussels", - "_rev" : "_e4y2xaG--_", + "_rev" : "_e9T1ULu---", "travelTime" : 2.5 }, { - "_key" : "62788", - "_id" : "connections/62788", + "_key" : "62785", + "_id" : "connections/62785", "_from" : "places/Brussels", "_to" : "places/London", - "_rev" : "_e4y2xaK---", + "_rev" : "_e9T1ULu--_", "travelTime" : 3.5 }, { - "_key" : "62790", - "_id" : "connections/62790", + "_key" : "62787", + "_id" : "connections/62787", "_from" : "places/Brussels", "_to" : "places/Cologne", - "_rev" : "_e4y2xaK--_", + "_rev" : "_e9T1ULu--A", "travelTime" : 2 }, { - "_key" : "62792", - "_id" : "connections/62792", + "_key" : "62789", + "_id" : "connections/62789", "_from" : "places/Cologne", "_to" : "places/Brussels", - "_rev" : "_e4y2xaO---", + "_rev" : "_e9T1ULu--B", "travelTime" : 1.5 }, { - "_key" : "62794", - "_id" : "connections/62794", + "_key" : "62791", + "_id" : "connections/62791", "_from" : "places/Toronto", "_to" : "places/Winnipeg", - "_rev" : "_e4y2xaO--_", + "_rev" : "_e9T1ULu--C", "travelTime" : 36 }, { - "_key" : "62796", - "_id" : "connections/62796", + "_key" : "62793", + "_id" : "connections/62793", "_from" : "places/Winnipeg", "_to" : "places/Toronto", - "_rev" : "_e4y2xaS---", + "_rev" : "_e9T1ULu--D", "travelTime" : 35 }, { - "_key" : "62798", - "_id" : "connections/62798", + "_key" : "62795", + "_id" : "connections/62795", "_from" : "places/Winnipeg", "_to" : "places/Saskatoon", - "_rev" : "_e4y2xaS--_", + "_rev" : "_e9T1ULu--E", "travelTime" : 12 }, { - "_key" : "62800", - "_id" : "connections/62800", + "_key" : "62797", + "_id" : "connections/62797", "_from" : "places/Saskatoon", "_to" : "places/Winnipeg", - "_rev" : "_e4y2xaW---", + "_rev" : "_e9T1ULu--F", "travelTime" : 5 }, { - "_key" : "62802", - "_id" : "connections/62802", + "_key" : "62799", + "_id" : "connections/62799", "_from" : "places/Saskatoon", "_to" : "places/Edmonton", - "_rev" : "_e4y2xaW--_", + "_rev" : "_e9T1ULu--G", "travelTime" : 12 }, { - "_key" : "62804", - "_id" : "connections/62804", + "_key" : "62801", + "_id" : "connections/62801", "_from" : "places/Edmonton", "_to" : "places/Saskatoon", - "_rev" : "_e4y2xaa---", + "_rev" : "_e9T1ULu--H", "travelTime" : 17 }, { - "_key" : "62806", - "_id" : "connections/62806", + "_key" : "62803", + "_id" : "connections/62803", "_from" : "places/Edmonton", "_to" : "places/Jasper", - "_rev" : "_e4y2xaa--_", + "_rev" : "_e9T1ULy---", "travelTime" : 6 }, { - "_key" : "62808", - "_id" : "connections/62808", + "_key" : "62805", + "_id" : "connections/62805", "_from" : "places/Jasper", "_to" : "places/Edmonton", - "_rev" : "_e4y2xae---", + "_rev" : "_e9T1ULy--_", "travelTime" : 5 }, { - "_key" : "62810", - "_id" : "connections/62810", + "_key" : "62807", + "_id" : "connections/62807", "_from" : "places/Jasper", "_to" : "places/Vancouver", - "_rev" : "_e4y2xae--_", + "_rev" : "_e9T1ULy--A", "travelTime" : 12 }, { - "_key" : "62812", - "_id" : "connections/62812", + "_key" : "62809", + "_id" : "connections/62809", "_from" : "places/Vancouver", "_to" : "places/Jasper", - "_rev" : "_e4y2xae--A", + "_rev" : "_e9T1ULy--B", "travelTime" : 13 } ] @@ -30625,400 +30773,400 @@ arangosh> db.places.toArray(); { "_key" : "Inverness", "_id" : "places/Inverness", - "_rev" : "_e4y2xiu---", + "_rev" : "_e9T1UNi---", "label" : "Inverness" }, { "_key" : "Aberdeen", "_id" : "places/Aberdeen", - "_rev" : "_e4y2xiy---", + "_rev" : "_e9T1UNi--_", "label" : "Aberdeen" }, { "_key" : "Leuchars", "_id" : "places/Leuchars", - "_rev" : "_e4y2xi2---", + "_rev" : "_e9T1UNi--A", "label" : "Leuchars" }, { "_key" : "StAndrews", "_id" : "places/StAndrews", - "_rev" : "_e4y2xi6---", + "_rev" : "_e9T1UNi--B", "label" : "StAndrews" }, { "_key" : "Edinburgh", "_id" : "places/Edinburgh", - "_rev" : "_e4y2xi6--_", + "_rev" : "_e9T1UNi--C", "label" : "Edinburgh" }, { "_key" : "Glasgow", "_id" : "places/Glasgow", - "_rev" : "_e4y2xj----", + "_rev" : "_e9T1UNi--D", "label" : "Glasgow" }, { "_key" : "York", "_id" : "places/York", - "_rev" : "_e4y2xjC---", + "_rev" : "_e9T1UNi--E", "label" : "York" }, { "_key" : "Carlisle", "_id" : "places/Carlisle", - "_rev" : "_e4y2xjC--_", + "_rev" : "_e9T1UNm---", "label" : "Carlisle" }, { "_key" : "Birmingham", "_id" : "places/Birmingham", - "_rev" : "_e4y2xjG---", + "_rev" : "_e9T1UNm--_", "label" : "Birmingham" }, { "_key" : "London", "_id" : "places/London", - "_rev" : "_e4y2xjG--_", + "_rev" : "_e9T1UNm--A", "label" : "London" }, { "_key" : "Brussels", "_id" : "places/Brussels", - "_rev" : "_e4y2xjK---", + "_rev" : "_e9T1UNm--B", "label" : "Brussels" }, { "_key" : "Cologne", "_id" : "places/Cologne", - "_rev" : "_e4y2xjK--_", + "_rev" : "_e9T1UNm--C", "label" : "Cologne" }, { "_key" : "Toronto", "_id" : "places/Toronto", - "_rev" : "_e4y2xjO---", + "_rev" : "_e9T1UNm--D", "label" : "Toronto" }, { "_key" : "Winnipeg", "_id" : "places/Winnipeg", - "_rev" : "_e4y2xjO--_", + "_rev" : "_e9T1UNm--E", "label" : "Winnipeg" }, { "_key" : "Saskatoon", "_id" : "places/Saskatoon", - "_rev" : "_e4y2xjS---", + "_rev" : "_e9T1UNm--F", "label" : "Saskatoon" }, { "_key" : "Edmonton", "_id" : "places/Edmonton", - "_rev" : "_e4y2xjS--_", + "_rev" : "_e9T1UNm--G", "label" : "Edmonton" }, { "_key" : "Jasper", "_id" : "places/Jasper", - "_rev" : "_e4y2xjW---", + "_rev" : "_e9T1UNm--H", "label" : "Jasper" }, { "_key" : "Vancouver", "_id" : "places/Vancouver", - "_rev" : "_e4y2xjW--_", + "_rev" : "_e9T1UNm--I", "label" : "Vancouver" } ] arangosh> db.connections.toArray(); [ { - "_key" : "63132", - "_id" : "connections/63132", + "_key" : "63129", + "_id" : "connections/63129", "_from" : "places/Inverness", "_to" : "places/Aberdeen", - "_rev" : "_e4y2xja---", + "_rev" : "_e9T1UNm--J", "travelTime" : 3 }, { - "_key" : "63134", - "_id" : "connections/63134", + "_key" : "63131", + "_id" : "connections/63131", "_from" : "places/Aberdeen", "_to" : "places/Inverness", - "_rev" : "_e4y2xje---", + "_rev" : "_e9T1UNq---", "travelTime" : 2.5 }, { - "_key" : "63136", - "_id" : "connections/63136", + "_key" : "63133", + "_id" : "connections/63133", "_from" : "places/Aberdeen", "_to" : "places/Leuchars", - "_rev" : "_e4y2xje--_", + "_rev" : "_e9T1UNq--_", "travelTime" : 1.5 }, { - "_key" : "63138", - "_id" : "connections/63138", + "_key" : "63135", + "_id" : "connections/63135", "_from" : "places/Leuchars", "_to" : "places/Aberdeen", - "_rev" : "_e4y2xji---", + "_rev" : "_e9T1UNq--A", "travelTime" : 1 }, { - "_key" : "63140", - "_id" : "connections/63140", + "_key" : "63137", + "_id" : "connections/63137", "_from" : "places/Leuchars", "_to" : "places/Edinburgh", - "_rev" : "_e4y2xji--_", + "_rev" : "_e9T1UNq--B", "travelTime" : 1.5 }, { - "_key" : "63142", - "_id" : "connections/63142", + "_key" : "63139", + "_id" : "connections/63139", "_from" : "places/Edinburgh", "_to" : "places/Leuchars", - "_rev" : "_e4y2xjm---", + "_rev" : "_e9T1UNq--C", "travelTime" : 3 }, { - "_key" : "63144", - "_id" : "connections/63144", + "_key" : "63141", + "_id" : "connections/63141", "_from" : "places/Edinburgh", "_to" : "places/Glasgow", - "_rev" : "_e4y2xjm--_", + "_rev" : "_e9T1UNq--D", "travelTime" : 1 }, { - "_key" : "63146", - "_id" : "connections/63146", + "_key" : "63143", + "_id" : "connections/63143", "_from" : "places/Glasgow", "_to" : "places/Edinburgh", - "_rev" : "_e4y2xjq---", + "_rev" : "_e9T1UNq--E", "travelTime" : 1 }, { - "_key" : "63148", - "_id" : "connections/63148", + "_key" : "63145", + "_id" : "connections/63145", "_from" : "places/Edinburgh", "_to" : "places/York", - "_rev" : "_e4y2xju---", + "_rev" : "_e9T1UNq--F", "travelTime" : 3.5 }, { - "_key" : "63150", - "_id" : "connections/63150", + "_key" : "63147", + "_id" : "connections/63147", "_from" : "places/York", "_to" : "places/Edinburgh", - "_rev" : "_e4y2xju--_", + "_rev" : "_e9T1UNq--G", "travelTime" : 4 }, { - "_key" : "63152", - "_id" : "connections/63152", + "_key" : "63149", + "_id" : "connections/63149", "_from" : "places/Glasgow", "_to" : "places/Carlisle", - "_rev" : "_e4y2xjy---", + "_rev" : "_e9T1UNq--H", "travelTime" : 1 }, { - "_key" : "63154", - "_id" : "connections/63154", + "_key" : "63151", + "_id" : "connections/63151", "_from" : "places/Carlisle", "_to" : "places/Glasgow", - "_rev" : "_e4y2xjy--_", + "_rev" : "_e9T1UNq--I", "travelTime" : 1 }, { - "_key" : "63156", - "_id" : "connections/63156", + "_key" : "63153", + "_id" : "connections/63153", "_from" : "places/Carlisle", "_to" : "places/York", - "_rev" : "_e4y2xj2---", + "_rev" : "_e9T1UNu---", "travelTime" : 2.5 }, { - "_key" : "63158", - "_id" : "connections/63158", + "_key" : "63155", + "_id" : "connections/63155", "_from" : "places/York", "_to" : "places/Carlisle", - "_rev" : "_e4y2xj2--_", + "_rev" : "_e9T1UNu--_", "travelTime" : 3.5 }, { - "_key" : "63160", - "_id" : "connections/63160", + "_key" : "63157", + "_id" : "connections/63157", "_from" : "places/Carlisle", "_to" : "places/Birmingham", - "_rev" : "_e4y2xj6---", + "_rev" : "_e9T1UNu--A", "travelTime" : 2 }, { - "_key" : "63162", - "_id" : "connections/63162", + "_key" : "63159", + "_id" : "connections/63159", "_from" : "places/Birmingham", "_to" : "places/Carlisle", - "_rev" : "_e4y2xj6--_", + "_rev" : "_e9T1UNu--B", "travelTime" : 1 }, { - "_key" : "63164", - "_id" : "connections/63164", + "_key" : "63161", + "_id" : "connections/63161", "_from" : "places/Birmingham", "_to" : "places/London", - "_rev" : "_e4y2xk----", + "_rev" : "_e9T1UNu--C", "travelTime" : 1.5 }, { - "_key" : "63166", - "_id" : "connections/63166", + "_key" : "63163", + "_id" : "connections/63163", "_from" : "places/London", "_to" : "places/Birmingham", - "_rev" : "_e4y2xk---_", + "_rev" : "_e9T1UNu--D", "travelTime" : 2.5 }, { - "_key" : "63168", - "_id" : "connections/63168", + "_key" : "63165", + "_id" : "connections/63165", "_from" : "places/Leuchars", "_to" : "places/StAndrews", - "_rev" : "_e4y2xkC---", + "_rev" : "_e9T1UNu--E", "travelTime" : 0.2 }, { - "_key" : "63170", - "_id" : "connections/63170", + "_key" : "63167", + "_id" : "connections/63167", "_from" : "places/StAndrews", "_to" : "places/Leuchars", - "_rev" : "_e4y2xkC--_", + "_rev" : "_e9T1UNu--F", "travelTime" : 0.2 }, { - "_key" : "63172", - "_id" : "connections/63172", + "_key" : "63169", + "_id" : "connections/63169", "_from" : "places/York", "_to" : "places/London", - "_rev" : "_e4y2xkG---", + "_rev" : "_e9T1UNu--G", "travelTime" : 1.8 }, { - "_key" : "63174", - "_id" : "connections/63174", + "_key" : "63171", + "_id" : "connections/63171", "_from" : "places/London", "_to" : "places/York", - "_rev" : "_e4y2xkG--_", + "_rev" : "_e9T1UNu--H", "travelTime" : 2 }, { - "_key" : "63176", - "_id" : "connections/63176", + "_key" : "63173", + "_id" : "connections/63173", "_from" : "places/London", "_to" : "places/Brussels", - "_rev" : "_e4y2xkK---", + "_rev" : "_e9T1UNy---", "travelTime" : 2.5 }, { - "_key" : "63178", - "_id" : "connections/63178", + "_key" : "63175", + "_id" : "connections/63175", "_from" : "places/Brussels", "_to" : "places/London", - "_rev" : "_e4y2xkK--_", + "_rev" : "_e9T1UNy--_", "travelTime" : 3.5 }, { - "_key" : "63180", - "_id" : "connections/63180", + "_key" : "63177", + "_id" : "connections/63177", "_from" : "places/Brussels", "_to" : "places/Cologne", - "_rev" : "_e4y2xkO---", + "_rev" : "_e9T1UNy--A", "travelTime" : 2 }, { - "_key" : "63182", - "_id" : "connections/63182", + "_key" : "63179", + "_id" : "connections/63179", "_from" : "places/Cologne", "_to" : "places/Brussels", - "_rev" : "_e4y2xkO--_", + "_rev" : "_e9T1UNy--B", "travelTime" : 1.5 }, { - "_key" : "63184", - "_id" : "connections/63184", + "_key" : "63181", + "_id" : "connections/63181", "_from" : "places/Toronto", "_to" : "places/Winnipeg", - "_rev" : "_e4y2xkS---", + "_rev" : "_e9T1UNy--C", "travelTime" : 36 }, { - "_key" : "63186", - "_id" : "connections/63186", + "_key" : "63183", + "_id" : "connections/63183", "_from" : "places/Winnipeg", "_to" : "places/Toronto", - "_rev" : "_e4y2xkS--_", + "_rev" : "_e9T1UNy--D", "travelTime" : 35 }, { - "_key" : "63188", - "_id" : "connections/63188", + "_key" : "63185", + "_id" : "connections/63185", "_from" : "places/Winnipeg", "_to" : "places/Saskatoon", - "_rev" : "_e4y2xkW---", + "_rev" : "_e9T1UNy--E", "travelTime" : 12 }, { - "_key" : "63190", - "_id" : "connections/63190", + "_key" : "63187", + "_id" : "connections/63187", "_from" : "places/Saskatoon", "_to" : "places/Winnipeg", - "_rev" : "_e4y2xkW--_", + "_rev" : "_e9T1UNy--F", "travelTime" : 5 }, { - "_key" : "63192", - "_id" : "connections/63192", + "_key" : "63189", + "_id" : "connections/63189", "_from" : "places/Saskatoon", "_to" : "places/Edmonton", - "_rev" : "_e4y2xka---", + "_rev" : "_e9T1UNy--G", "travelTime" : 12 }, { - "_key" : "63194", - "_id" : "connections/63194", + "_key" : "63191", + "_id" : "connections/63191", "_from" : "places/Edmonton", "_to" : "places/Saskatoon", - "_rev" : "_e4y2xka--_", + "_rev" : "_e9T1UNy--H", "travelTime" : 17 }, { - "_key" : "63196", - "_id" : "connections/63196", + "_key" : "63193", + "_id" : "connections/63193", "_from" : "places/Edmonton", "_to" : "places/Jasper", - "_rev" : "_e4y2xke---", + "_rev" : "_e9T1UNy--I", "travelTime" : 6 }, { - "_key" : "63198", - "_id" : "connections/63198", + "_key" : "63195", + "_id" : "connections/63195", "_from" : "places/Jasper", "_to" : "places/Edmonton", - "_rev" : "_e4y2xki---", + "_rev" : "_e9T1UN2---", "travelTime" : 5 }, { - "_key" : "63200", - "_id" : "connections/63200", + "_key" : "63197", + "_id" : "connections/63197", "_from" : "places/Jasper", "_to" : "places/Vancouver", - "_rev" : "_e4y2xki--_", + "_rev" : "_e9T1UN2--_", "travelTime" : 12 }, { - "_key" : "63202", - "_id" : "connections/63202", + "_key" : "63199", + "_id" : "connections/63199", "_from" : "places/Vancouver", "_to" : "places/Jasper", - "_rev" : "_e4y2xkm---", + "_rev" : "_e9T1UN2--A", "travelTime" : 13 } ] @@ -31411,168 +31559,168 @@ arangosh> db.circles.toArray(); { "_key" : "A", "_id" : "circles/A", - "_rev" : "_e4y2x1G---", + "_rev" : "_e9T1UQ2---", "label" : "1" }, { "_key" : "B", "_id" : "circles/B", - "_rev" : "_e4y2x1G--_", + "_rev" : "_e9T1UQ2--_", "label" : "2" }, { "_key" : "C", "_id" : "circles/C", - "_rev" : "_e4y2x1K---", + "_rev" : "_e9T1UQ2--A", "label" : "3" }, { "_key" : "D", "_id" : "circles/D", - "_rev" : "_e4y2x1O---", + "_rev" : "_e9T1UQ2--B", "label" : "4" }, { "_key" : "E", "_id" : "circles/E", - "_rev" : "_e4y2x1S---", + "_rev" : "_e9T1UQ2--C", "label" : "5" }, { "_key" : "F", "_id" : "circles/F", - "_rev" : "_e4y2x1W---", + "_rev" : "_e9T1UQ2--D", "label" : "6" }, { "_key" : "G", "_id" : "circles/G", - "_rev" : "_e4y2x1W--_", + "_rev" : "_e9T1UQ2--E", "label" : "7" }, { "_key" : "H", "_id" : "circles/H", - "_rev" : "_e4y2x1a---", + "_rev" : "_e9T1UQ2--F", "label" : "8" }, { "_key" : "I", "_id" : "circles/I", - "_rev" : "_e4y2x1e---", + "_rev" : "_e9T1UQ2--G", "label" : "9" }, { "_key" : "J", "_id" : "circles/J", - "_rev" : "_e4y2x1e--_", + "_rev" : "_e9T1UQ2--H", "label" : "10" }, { "_key" : "K", "_id" : "circles/K", - "_rev" : "_e4y2x1i---", + "_rev" : "_e9T1UQ6---", "label" : "11" } ] arangosh> db.edges.toArray(); [ { - "_key" : "63773", - "_id" : "edges/63773", + "_key" : "63770", + "_id" : "edges/63770", "_from" : "circles/A", "_to" : "circles/B", - "_rev" : "_e4y2x1m---", + "_rev" : "_e9T1UQ6--_", "theFalse" : false, "theTruth" : true, "label" : "left_bar" }, { - "_key" : "63775", - "_id" : "edges/63775", + "_key" : "63772", + "_id" : "edges/63772", "_from" : "circles/B", "_to" : "circles/C", - "_rev" : "_e4y2x1q---", + "_rev" : "_e9T1UQ6--A", "theFalse" : false, "theTruth" : true, "label" : "left_blarg" }, { - "_key" : "63777", - "_id" : "edges/63777", + "_key" : "63774", + "_id" : "edges/63774", "_from" : "circles/C", "_to" : "circles/D", - "_rev" : "_e4y2x1q--_", + "_rev" : "_e9T1UQ6--B", "theFalse" : false, "theTruth" : true, "label" : "left_blorg" }, { - "_key" : "63779", - "_id" : "edges/63779", + "_key" : "63776", + "_id" : "edges/63776", "_from" : "circles/B", "_to" : "circles/E", - "_rev" : "_e4y2x1u---", + "_rev" : "_e9T1UQ6--C", "theFalse" : false, "theTruth" : true, "label" : "left_blub" }, { - "_key" : "63781", - "_id" : "edges/63781", + "_key" : "63778", + "_id" : "edges/63778", "_from" : "circles/E", "_to" : "circles/F", - "_rev" : "_e4y2x1y---", + "_rev" : "_e9T1UQ6--D", "theFalse" : false, "theTruth" : true, "label" : "left_schubi" }, { - "_key" : "63783", - "_id" : "edges/63783", + "_key" : "63780", + "_id" : "edges/63780", "_from" : "circles/A", "_to" : "circles/G", - "_rev" : "_e4y2x1y--_", + "_rev" : "_e9T1UQ6--E", "theFalse" : false, "theTruth" : true, "label" : "right_foo" }, { - "_key" : "63785", - "_id" : "edges/63785", + "_key" : "63782", + "_id" : "edges/63782", "_from" : "circles/G", "_to" : "circles/H", - "_rev" : "_e4y2x12---", + "_rev" : "_e9T1UQ6--F", "theFalse" : false, "theTruth" : true, "label" : "right_blob" }, { - "_key" : "63787", - "_id" : "edges/63787", + "_key" : "63784", + "_id" : "edges/63784", "_from" : "circles/H", "_to" : "circles/I", - "_rev" : "_e4y2x16---", + "_rev" : "_e9T1UQ6--G", "theFalse" : false, "theTruth" : true, "label" : "right_blub" }, { - "_key" : "63789", - "_id" : "edges/63789", + "_key" : "63786", + "_id" : "edges/63786", "_from" : "circles/G", "_to" : "circles/J", - "_rev" : "_e4y2x16--_", + "_rev" : "_e9T1UQ6--H", "theFalse" : false, "theTruth" : true, "label" : "right_zip" }, { - "_key" : "63791", - "_id" : "edges/63791", + "_key" : "63788", + "_id" : "edges/63788", "_from" : "circles/J", "_to" : "circles/K", - "_rev" : "_e4y2x2----", + "_rev" : "_e9T1UQ6--I", "theFalse" : false, "theTruth" : true, "label" : "right_zup" @@ -31608,15 +31756,15 @@ arangosh> db._query("FOR v, e IN OUTBOUND SHOR ], [ "B", - "63773" + "63770" ], [ "C", - "63775" + "63772" ], [ "D", - "63777" + "63774" ] ] [object ArangoQueryCursor, count: 4, cached: false, hasMore: false] @@ -31628,15 +31776,15 @@ arangosh> db._query("FOR v, e IN OUTBOUND SHOR ], [ "B", - "63773" + "63770" ], [ "C", - "63775" + "63772" ], [ "D", - "63777" + "63774" ] ] [object ArangoQueryCursor, count: 4, cached: false, hasMore: false] @@ -31668,15 +31816,15 @@ arangosh> db._query("FOR a IN circles FILTER a ], [ "B", - "63773" + "63770" ], [ "C", - "63775" + "63772" ], [ "D", - "63777" + "63774" ] ] [object ArangoQueryCursor, count: 4, cached: false, hasMore: false] @@ -31688,15 +31836,15 @@ arangosh> db._query("FOR a IN circles FILTER a ], [ "B", - "63773" + "63770" ], [ "C", - "63775" + "63772" ], [ "D", - "63777" + "63774" ] ] [object ArangoQueryCursor, count: 4, cached: false, hasMore: false] @@ -32534,168 +32682,168 @@ arangosh> db.circles.toArray(); { "_key" : "A", "_id" : "circles/A", - "_rev" : "_e4y2x4y---", + "_rev" : "_e9T1URm---", "label" : "1" }, { "_key" : "B", "_id" : "circles/B", - "_rev" : "_e4y2x42---", + "_rev" : "_e9T1URm--_", "label" : "2" }, { "_key" : "C", "_id" : "circles/C", - "_rev" : "_e4y2x46---", + "_rev" : "_e9T1URm--A", "label" : "3" }, { "_key" : "D", "_id" : "circles/D", - "_rev" : "_e4y2x5----", + "_rev" : "_e9T1URm--B", "label" : "4" }, { "_key" : "E", "_id" : "circles/E", - "_rev" : "_e4y2x5C---", + "_rev" : "_e9T1URm--C", "label" : "5" }, { "_key" : "F", "_id" : "circles/F", - "_rev" : "_e4y2x5G---", + "_rev" : "_e9T1URm--D", "label" : "6" }, { "_key" : "G", "_id" : "circles/G", - "_rev" : "_e4y2x5G--_", + "_rev" : "_e9T1URq---", "label" : "7" }, { "_key" : "H", "_id" : "circles/H", - "_rev" : "_e4y2x5K---", + "_rev" : "_e9T1URq--_", "label" : "8" }, { "_key" : "I", "_id" : "circles/I", - "_rev" : "_e4y2x5O---", + "_rev" : "_e9T1URq--A", "label" : "9" }, { "_key" : "J", "_id" : "circles/J", - "_rev" : "_e4y2x5S---", + "_rev" : "_e9T1URq--B", "label" : "10" }, { "_key" : "K", "_id" : "circles/K", - "_rev" : "_e4y2x5S--_", + "_rev" : "_e9T1URq--C", "label" : "11" } ] arangosh> db.edges.toArray(); [ { - "_key" : "63858", - "_id" : "edges/63858", + "_key" : "63855", + "_id" : "edges/63855", "_from" : "circles/A", "_to" : "circles/B", - "_rev" : "_e4y2x5W---", + "_rev" : "_e9T1URq--D", "theFalse" : false, "theTruth" : true, "label" : "left_bar" }, { - "_key" : "63860", - "_id" : "edges/63860", + "_key" : "63857", + "_id" : "edges/63857", "_from" : "circles/B", "_to" : "circles/C", - "_rev" : "_e4y2x5a---", + "_rev" : "_e9T1URq--E", "theFalse" : false, "theTruth" : true, "label" : "left_blarg" }, { - "_key" : "63862", - "_id" : "edges/63862", + "_key" : "63859", + "_id" : "edges/63859", "_from" : "circles/C", "_to" : "circles/D", - "_rev" : "_e4y2x5a--_", + "_rev" : "_e9T1URq--F", "theFalse" : false, "theTruth" : true, "label" : "left_blorg" }, { - "_key" : "63864", - "_id" : "edges/63864", + "_key" : "63861", + "_id" : "edges/63861", "_from" : "circles/B", "_to" : "circles/E", - "_rev" : "_e4y2x5e---", + "_rev" : "_e9T1URq--G", "theFalse" : false, "theTruth" : true, "label" : "left_blub" }, { - "_key" : "63866", - "_id" : "edges/63866", + "_key" : "63863", + "_id" : "edges/63863", "_from" : "circles/E", "_to" : "circles/F", - "_rev" : "_e4y2x5i---", + "_rev" : "_e9T1URq--H", "theFalse" : false, "theTruth" : true, "label" : "left_schubi" }, { - "_key" : "63868", - "_id" : "edges/63868", + "_key" : "63865", + "_id" : "edges/63865", "_from" : "circles/A", "_to" : "circles/G", - "_rev" : "_e4y2x5i--_", + "_rev" : "_e9T1URq--I", "theFalse" : false, "theTruth" : true, "label" : "right_foo" }, { - "_key" : "63870", - "_id" : "edges/63870", + "_key" : "63867", + "_id" : "edges/63867", "_from" : "circles/G", "_to" : "circles/H", - "_rev" : "_e4y2x5m---", + "_rev" : "_e9T1URu---", "theFalse" : false, "theTruth" : true, "label" : "right_blob" }, { - "_key" : "63872", - "_id" : "edges/63872", + "_key" : "63869", + "_id" : "edges/63869", "_from" : "circles/H", "_to" : "circles/I", - "_rev" : "_e4y2x5q---", + "_rev" : "_e9T1URu--_", "theFalse" : false, "theTruth" : true, "label" : "right_blub" }, { - "_key" : "63874", - "_id" : "edges/63874", + "_key" : "63871", + "_id" : "edges/63871", "_from" : "circles/G", "_to" : "circles/J", - "_rev" : "_e4y2x5q--_", + "_rev" : "_e9T1URu--A", "theFalse" : false, "theTruth" : true, "label" : "right_zip" }, { - "_key" : "63876", - "_id" : "edges/63876", + "_key" : "63873", + "_id" : "edges/63873", "_from" : "circles/J", "_to" : "circles/K", - "_rev" : "_e4y2x5u---", + "_rev" : "_e9T1URu--B", "theFalse" : false, "theTruth" : true, "label" : "right_zup" @@ -33257,12 +33405,12 @@ arangosh> examples.dropGraph("traversalGraph&q