I\'m using createReadStream to read rows from Bigtable. I want to do some pagination with the results so limit and offset are necessary. There\'s a limit option so that\'s great
Using https://cloud.google.com/nodejs/docs/reference/bigtable/0.13.x/Table#createReadStream
start is an option.
As you retrieve the first page. you can use the last row key to set the start for the next page
(will need to exclude the first result for all page counts > 1)