Skip to content

Append Row #105

@gusarov

Description

@gusarov

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions