/export

GET {{endpoint}}/export

Checks the status of the database server and storage engine.

HEADERS

KeyDatatypeRequiredDescription
AcceptstringSets the desired content-type of the response
NSstringSets the selected Namespace for queries
DBstringSets 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"