I am using the package bigQueryR, and in particular the function bqr_list_tables to get a list of all tables in a dataset in Google Big Query.
My issue is I only get 50 tables when I would ideally like to get them all so I can regex out the ones I want programmatically.
bqr_list_tables only takes two arguments, the datasetId and projectId. Is there any way to accomplish this restricting myself to this package?
I'm using version ‘0.2.0’ of bigQueryR
Edit:
maxResults
, which defaults to 50. I'm not sure if it's exposed in thebigQueryR
lib though. cloud.google.com/bigquery/docs/reference/rest/v2/tables/list. Do you know @MarkeD? – Graham Polley