Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Append Row #105

Open
gusarov opened this issue Jan 2, 2018 · 1 comment
Open

Append Row #105

gusarov opened this issue Jan 2, 2018 · 1 comment

Comments

@gusarov
Copy link

gusarov commented Jan 2, 2018

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...

@jpillora
Copy link
Owner

jpillora commented Jan 2, 2018 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants