So I get this error when there is query parameter inside the query

let’s say I create one query call transaction
select date, product_name, quantity, price from transaction
where product_name = ‘{{product_name}}’

and this query is queries/13
after that I create new query
select * from query_13
and got that Error running query: Failed loading results for query id

my hypothesis is because I cant passing query paramater so the query error
or is there any way that I could passing query paramater inside query results

Thanks

Hi,

This is correct: querying from queries with parameters is currently not supported (as there is no method for passing the parameter value).

Hi arik,
is this still open? or there is a way of passing param value to sub query?