From a54653e7e6da0865ac372cd6c95fed3ce5482463 Mon Sep 17 00:00:00 2001 From: Philip O'Toole Date: Sun, 13 Nov 2022 23:02:43 -0500 Subject: [PATCH] More doc tweaks --- DOC/DATA_API.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DOC/DATA_API.md b/DOC/DATA_API.md index 20c28db7..ada794be 100644 --- a/DOC/DATA_API.md +++ b/DOC/DATA_API.md @@ -83,7 +83,7 @@ curl -XPOST 'localhost:4001/db/query?pretty&timings' -H "Content-Type: applicati ``` The response will be in the same form as when the query is made via HTTP GET. -### Associative response +### Associative response form A second form of response can also be requested, by adding `associative` as a query parameter: ```bash curl -G 'localhost:4001/db/query?pretty&timings&associative' --data-urlencode 'q=SELECT * FROM foo'