diff --git a/Documentation/Examples/02_workWithAQL_aqlQuery.generated b/Documentation/Examples/02_workWithAQL_aqlQuery.generated new file mode 100644 index 0000000000..2a776db765 --- /dev/null +++ b/Documentation/Examples/02_workWithAQL_aqlQuery.generated @@ -0,0 +1,5 @@ +arangosh> var key = 'testKey'; +arangosh> db._query(aqlQuery`FOR c IN mycollection FILTER c._key == ${key} RETURN c._key`).toArray(); +[ + "testKey" +] diff --git a/Documentation/Examples/RestReplicationLoggerFirstTick.generated b/Documentation/Examples/RestReplicationLoggerFirstTick.generated new file mode 100644 index 0000000000..83e46eafa5 --- /dev/null +++ b/Documentation/Examples/RestReplicationLoggerFirstTick.generated @@ -0,0 +1,6 @@ +shell> curl --dump - http://localhost:8529/_api/replication/logger-first-tick + +HTTP/1.1 200 OK +content-type: application/json; charset=utf-8 + +"{\"firstTick\":\"334645\"}" diff --git a/Documentation/Examples/RestReplicationLoggerTickRanges.generated b/Documentation/Examples/RestReplicationLoggerTickRanges.generated new file mode 100644 index 0000000000..eaaaffe0a4 --- /dev/null +++ b/Documentation/Examples/RestReplicationLoggerTickRanges.generated @@ -0,0 +1,37 @@ +shell> curl --dump - http://localhost:8529/_api/replication/logger-tick-ranges + +HTTP/1.1 200 OK +content-type: application/json; charset=utf-8 + +[ + { + "datafile" : "/tmp/vocdir.11821/journals/logfile-138037.db", + "status" : "collected", + "tickMin" : "334645", + "tickMax" : "645077813" + }, + { + "datafile" : "/tmp/vocdir.11821/journals/logfile-645208885.db", + "status" : "collected", + "tickMin" : "645471029", + "tickMax" : "647830325" + }, + { + "datafile" : "/tmp/vocdir.11821/journals/logfile-647961397.db", + "status" : "collected", + "tickMin" : "648092469", + "tickMax" : "832641845" + }, + { + "datafile" : "/tmp/vocdir.11821/journals/logfile-832772917.db", + "status" : "collected", + "tickMin" : "832903989", + "tickMax" : "833035061" + }, + { + "datafile" : "/tmp/vocdir.11821/journals/logfile-833166133.db", + "status" : "open", + "tickMin" : "833493813", + "tickMax" : "838277941" + } +]