gert
02/05/2022, 7:26 AMSimone
02/05/2022, 2:06 PMi
and see the structure of the data, but as i said i am building it manually so i need every row to be a struct of array, maybe i missed any specific part of the code where i did not generated array of structs but a weird way of generating the structsSimone
02/05/2022, 7:04 PMzackster
02/05/2022, 8:34 PMSimone
02/06/2022, 1:04 AMvar aData = [];
for(i in myquery) {
tmpStruct = {};
tmpStruct['ID'] = i.id;
arrayAppend(aData, tmpStruct);
}
st['QueryData'] = aData;