Hi,
if i am using a URL datasource, can redash support this kind of response?
{“columns”: [{“name”: “x”, “type”: dict}],
“rows”: [{“x”: {“1”: 1, “2”: 3}}]
}
Meaning, a nested dict type.
and if so, what is the type of column?
Hi,
if i am using a URL datasource, can redash support this kind of response?
{“columns”: [{“name”: “x”, “type”: dict}],
“rows”: [{“x”: {“1”: 1, “2”: 3}}]
}
Meaning, a nested dict type.
and if so, what is the type of column?
No. You need to flatten the data.
Does re-dash support non-list values ? like so
{“columns”: {“name”: “x”},
“rows”: {“x”:1},
}