Created
April 14, 2021 15:21
-
-
Save vlucas/d61a73099c1b9af8dfa4e0d65e270deb to your computer and use it in GitHub Desktop.
SheetQuery-InsertRows
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sheetQuery() | |
.from('Transactions') | |
.insertRows([ | |
{ | |
Amount: -554.23, | |
Name: 'BigBox, inc.' | |
}, | |
{ | |
Amount: -29.74, | |
Name: 'Fast-n-greasy Food Spot' | |
}, | |
]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment