Hi, I’ve created an API and backend in Golang that accesses our database, and I’ve built a frontend in NextJS with Typescript. I would like to send data from my backend to my frontend in the form of API requests, using Apache Arrow’s standardised format.
The trouble I’m having is that I can’t find any way to send this data. I’ve tried creating a record batch and turning it into a byte-array (which seems to be the recommended method for Go), but from what I can see the Javascript package on frontend only supports converting JSON to a table? And from what I can tell, Go doesn’t support serialising table into JSON at all? I’m certain that I’m missing something big here, but could someone point me in the direction of the documentation I should read to figure this out, or tell me what format is best for transferring data between a frontend and backend? Thanks, Tom.
