i have 3 cells:
A: gets data from an IndexDB via its JS API query = flux => QueryAPI.collectRows(flux)
B: provides a flux Query to execute via A and assigns the result to a variable data = query('from(… <query>')
The cell Return value is an Array
C: Transforms data via array.map
I wanted to combine Cells B and C so data = query(…).map(…)
and i get the error undefined is not a function
i cant fathom why moving code from within a cell to a separate cell would yield such an error. Maybe some async/promise magic? but adding an await before function calls only puts out more errors.