Ok well… Here’s another issue.
That export works great as long as the field names are unique in the output of the JSON.
But if they are the same it fails and there is no way I can think of to remedy that issue.
so this is really weird but in the API we are calling from it returns subtables inside the output of the parent table example.
select ,child. from parent
- gives all the fields of the parent and child.* gives all from the child.
There is no way that I can think of with that splitter method to name the columns uniquely since I really do need to give them unique names.
I wouldn’t mind if I was able to get the columns ordinally or have it append some kind of index to the field. say id,id_1,id_2.
Put I haven’t been able to figure that out.