I'm currently trying to create my own analytics panel with the data I get off of BigQuery. I have all my data coming in correctly and am able to query each table individually or every table in a specific dataset but not query every dataset within a project.
To put it simply, I want to query every single table I have within BigQuery at once. The tables within BigQuery are being populated by Firebase Analytics and are likely to change without notice, add or remove one.
I'm aware of the method where you JOIN
each table within a query but the values are hard coded. I need a way where I can provide a wildcard and automatically query every table.
Any help at all would be great, thanks!