How can I append next row without downloading entire table?
AFAIK google api allows this via spreadsheets.values.append
But with this module the only thing that works for me now is
const [rows, info] = await sheet.receive();
sheet.add({
[info.nextRow]: [['data']],
});
await sheet.send();
This downloads entire table and becoming slower and slower...
How can I append next row without downloading entire table?
AFAIK google api allows this via spreadsheets.values.append
But with this module the only thing that works for me now is
This downloads entire table and becoming slower and slower...