/export
GET {{endpoint}}/export
Checks the status of the database server and storage engine.
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Accept | string | Sets the desired content-type of the response | |
NS | string | Sets the selected Namespace for queries | |
DB | string | Sets the selected Database for queries |
RESPONSES
status: OK
"-- ------------------------------\n-- OPTION\n-- ------------------------------\n\nOPTION IMPORT;\n\n-- ------------------------------\n-- TABLE: person\n-- ------------------------------\n\nDEFINE TABLE person SCHEMALESS PERMISSIONS NONE;\n\n-- ------------------------------\n-- TRANSACTION\n-- ------------------------------\n\nBEGIN TRANSACTION;\n\n-- ------------------------------\n-- TABLE DATA: person\n-- ------------------------------\n\nUPDATE person:one CONTENT { id: person:one, name: 'Joe Bloggs' };\nUPDATE person:test CONTENT { account: account:test, id: person:test, tester: true };\nUPDATE person:two CONTENT { id: person:two, name: 'Elizabeth Hurdle' };\n\n-- ------------------------------\n-- TRANSACTION\n-- ------------------------------\n\nCOMMIT TRANSACTION;\n\n"