1
0
Fork 0

Merge branch 'devel' of https://github.com/arangodb/arangodb into devel

This commit is contained in:
jsteemann 2017-02-27 17:24:37 +01:00
commit 41b21968ed
1 changed files with 10 additions and 0 deletions

View File

@ -50,6 +50,16 @@ Export JSONL
This exports the collection *test* into the output directory *export* as [jsonl](http://jsonlines.org). Every line in the export is one document from the collection *test* as json.
Export CSV
----------
unix> arangoexport --type CSV --collection test --fields _key,_id,_rev
This exports the collection *test* into the output directory *export* as CSV. The first
line contains the header with all field names. Each line is one document represented as
CSV and separated with a comma. Objects and Arrays are represented as a JSON string.
Export XML
----------