-
Notifications
You must be signed in to change notification settings - Fork 2
Add feature to Add to an existing Row #12
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
Conversation
|
This is neat, thanks so much! I left just a couple of comments for improvements. |
Changed from fetching all columns (A:ZZ) to: 1. First fetch only column A to find the key 2. Then fetch only the specific row to get its length This reduces data transfer while maintaining full functionality of appending values to existing rows. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One last tiny thing, could you remove this file? It's not a big deal but we just like to keep our repo so only necesary files are included.
|
Thanks so much for this feature @guigro! ⚙️ |
|
This feature has been released in v0.3.0 |
Summary
How it works
Performance optimization
Instead of fetching all columns upfront, the code now:
This reduces data transfer significantly while maintaining full functionality.