$dump-sql operation takes the sql query and responds with the Chunked Encoded stream in CSV format or in NDJSON format. Useful to export data for analytics.
1
POST[base]/$dump-sql
Copied!
Headers
Parameter
Required?
Type
Description
content-type
true
String
Content-type of the query body
Query parameters
Parameter
Required?
Type
Description
_format
false
String
json/ndjson: return output as ndjosn
otherwise: return output as TSV
Body parameters
Parameter
Required?
Type
Description
query
true
String
Sql query to execute
Example
Get id and name of each patient
Request
Response
REST Console
1
POST /$dump-sql
2
Content-Type: text/yaml
3
4
query: select id, resource#>>'{name,0,given,0}' from patient