You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
On Tue, 2 Jan 2018 at 11:11 pm Dmitry Gusarov ***@***.***> wrote:
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...
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#105>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AAmr8-RZnCbJG2ozL_N2fvN5AF5MlzP0ks5tGh0AgaJpZM4RQjMe>
.
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...
The text was updated successfully, but these errors were encountered: