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