We can query BigQuery with queries containing parameters, such as the one:
SELECT
T1.product AS product_0,
T1.date AS date_1,
SUM(COALESCE(T1.quantity, @default_value_0)) AS Quantity_QE_SUM_2
FROM `project.dataset.table` AS T1
GROUP BY T1.product, T1.date
Looking at the query history, I can find this SQL. But I have not found a way to find the provided values for default_value_0 - or any other parameters for more complex queries?
This is blocking me for investigating wrong results.

