How to add json data to an infotable
I'm currently using the following lines to create an infotable from json:
var json = {
rows: jsonData.run_history, //an array of objects
dataShape: DataShapes["SomeDataShape"].GetDataShapeMetadataAsJSON()
};
///////////////////
//Loads json data to an infotable
var data = Resources["InfoTableFunctions"].FromJSON({
json: json
});
I'd like to add more data from jsons to the infotable, but the FromJSON service replaces the previous data. Is there a service that adds JSON data to the infotable? Kind of like .AddRow? I'd like to avoid using a for loop to add each row one-by-one as there are many rows. Also, is there a limit to the size (MBs) of the infotable?

