I have a sheet where data is updated every day. I am using Java Sheets API v4 to load the data in my java application, I need to do incremental loads on my sheet. Is there a way to do this efficiently?
This is my call, but this loads all data every-time, is it possible to add a filter to get rows updated after a certain date? (considering table doesn't have a timestamp column, can I use insertion/modification date of the row?)
ValueRange response = service.spreadsheets().values()
.get(spreadsheetId, range)
.execute();
Also in case there is a timestamp column, is there a way to filter data before loading?