1
0
Fork 0
arangodb/js/client/modules/org/arangodb
Jan Steemann 748107b291 changed behavior of `db._query()` in the ArangoShell:
if the command's result is printed in the shell, the first 10 results will be printed. Previously
only a basic description of the underlying query result cursor was printed. Additionally, if the
cursor result contains more than 10 results, the cursor is assigned to a global variable `more`,
which can be used to iterate over the cursor result.

Example:

    arangosh [_system]> db._query("FOR i IN 1..15 RETURN i")
    [object ArangoQueryCursor, count: 15, hasMore: true]

    [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9,
      10
    ]

    type 'more' to show more documents

    arangosh [_system]> more
    [object ArangoQueryCursor, count: 15, hasMore: false]

    [
      11,
      12,
      13,
      14,
      15
    ]
2015-04-04 19:42:55 +02:00
..
api
aql kill AQL queries 2015-03-12 15:00:14 +01:00
foxx Fixed a bug where an app installed from zip file is deleted by foxx manager. 2015-03-17 17:02:17 +01:00
actions.js
arango-collection.js adjusted geo index API 2015-02-18 14:59:46 +01:00
arango-database.js Renamed mergeArrays->mergeObjects to make API less confusing. 2014-12-02 17:03:03 +01:00
arango-query-cursor.js changed behavior of `db._query()` in the ArangoShell: 2015-04-04 19:42:55 +02:00
arango-statement.js pass query parameters 2014-12-09 17:16:03 +01:00
arangosh.js
cluster.js
configuration.js
graph-blueprint.js removed old-style Doxygen sections 2014-10-30 01:16:07 +01:00
replication.js removed deprecated methods 2014-12-19 14:00:58 +01:00
simple-query.js fixed WITHIN_RECTANGLE for cluster 2014-11-17 12:32:43 +01:00
tasks.js Implement tastks REST api 2014-11-11 12:39:09 +01:00
tutorial.js fixed end-of-tutorial 2015-01-04 22:04:46 +01:00
users.js