Hi everyone,
I'm having doubts about whether I can use field filtering after FROM statements in metabase.
As an example, here is a simple request, and I'm already using field filtering to chose time intervals :
SELECT
date_trunc('day', signed_at) AS date,
AVG("value" / 10 ^ 18) AS mean_volume
FROM chain_ethereum_mainnet.block_transactions
[[WHERE {{signed_at}}]]
GROUP BY date
but there are different "chains" in our database and I was to be able to use filtering to easily replace
chain_ethereum_mainnet to chain_arbitrum_mainnet across entire dashboards. If someone can help it would be awesome !