1
0
Fork 0
arangodb/js/apps/system/_admin/aardvark/APP
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-docs release version 2.5.0-beta1 2015-02-23 10:47:30 +01:00
build Added sharedlib 2015-03-10 11:39:23 +01:00
clusterFrontend added query management view, kill running queries and show slow queries 2015-03-12 16:42:20 +01:00
frontend changed behavior of `db._query()` in the ArangoShell: 2015-04-04 19:42:55 +02:00
lib
models
repositories
test Proved Document view and its tests. Adapted router along-side. This shall catch the bug that it is not possible to store valid json containing colons 2015-03-16 15:01:26 +01:00
GruntFile.js added missing files for web interface 2015-04-03 15:01:12 +02:00
aardvark.js Removed unused code 2015-03-13 09:44:02 +01:00
api-docs.json release version 2.5.0-beta1 2015-02-23 10:47:30 +01:00
cluster.js
favicon.ico
foxxTemplates.js
foxxes.js Allow running arbitrary Foxx scripts. 2015-04-02 00:16:23 +02:00
index.html
manifest.json Changed default document of Aardvark app 2015-03-10 10:38:27 +01:00
package.json Added grunt script to aardvark package.json. 2015-03-03 18:01:31 +01:00
statistics.js