google-cloud-cpp icon indicating copy to clipboard operation
google-cloud-cpp copied to clipboard

Support "BigQuery" type pagination

Open alevenberg opened this issue 1 year ago • 0 comments

ListJobs or other List* endpoints (look for page size, page token etc.)

ex. in the ListJobsRequest

  google.protobuf.Int32Value max_results = 3;

Should be

  int32 page_size = 2;

https://google.aip.dev/158

  • [ ] We need to recognize BQ pagination in the generator, so it knows to use our pagination internals
  • [ ] Our pagination internals might need to be generalized to handle this case

alevenberg avatar May 23 '24 18:05 alevenberg