-
I have a query with a join and array_agg like this one:
When I run it it returns results like:
How do I resolve that? Feels like this should be super obvious, but I couldn't find the right docs for this anywhere. |
Beta Was this translation helpful? Give feedback.
Answered by
carlopi
May 13, 2025
Replies: 1 comment 3 replies
-
Thanks for raising, I think https://arrow.apache.org/docs/js/#vectors-look-like-js-arrays might be of help? Basically after |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
csenio
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for raising, I think https://arrow.apache.org/docs/js/#vectors-look-like-js-arrays might be of help?
Basically after
toArray()
you have an arrow-js object in hands, does that help move forward?