getStream
Was this helpful?
Was this helpful?
Arrow data is returned in the binary Arrow IPC Stream format// e.g.: ...table_ref/rows?selectedVariables=id,date,decimal,text
{"id":1, "date":"2012-01-01", "decimal":4.2, "text":"Some text"]
{"id":2, "date":"2012-01-01", "decimal":3.14, "text":"More text"]
...// e.g.: table_ref/rows?format=csv&selectedVariables=id,date,decimal,text
"1","2012-01-01","4.2","Some text"
"2","2012-02-02","3.14","Some other text"
"3", ...