You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -222,7 +226,7 @@ Regardless of the [Request](#request) there is a single response. The response i
222
226
[
223
227
{
224
228
"cursor": {chain_id: max_block_height},
225
-
"columns": {column_name: column_pg_type},
229
+
"columns": [{name: string, type: string}],
226
230
"rows": [
227
231
[col1, col2, colN],
228
232
[col1, col2, colN],
@@ -233,7 +237,9 @@ Regardless of the [Request](#request) there is a single response. The response i
233
237
234
238
The `cursor` object can be copied verbaitum into a subsequent request to query for new data. See [Cursor](#cursor) for more detail.
235
239
236
-
The `columns` field contains an object mapping the name of the column (derived from the query) to its postgres type (ie `bytea`, `numeric`, `json`, etc.).
240
+
The `columns` field contains an array of objects mapping the name of the column (derived from the query) to its postgres type (ie `bytea`, `numeric`, `json`, etc.).
241
+
242
+
The order of the `columns` array matches the order of the column data in `rows`.
0 commit comments