Following my previous post where I was trying to export my JSON data to a Google Sheet, I now have an issue with my output being truncated. Basically my Google sheet will only displays 100 rows at a time.
When I enter console.log(jsonData);
, The console gives me the following message: Logging output too large. Truncating output.
I believe I need the output to be put inside a loop in order to load all the elements.
If anyone knows how to do this in Apps Script, I would be very grateful.
Edit: The message I receive from the console is not an error, it's just a notice from Google Apps script. I need to find how can I log the entire output of my response in my script, so all my data can be exported and not only the first 100 rows.