问题
We extract event report with param name action & label by querying below in Bigquery
#standardSQL
select
event_name,
param1.value.string_value as action,
param2.value.string_value as label,
count(1) as eventcount
From `<table>`,
UNNEST(event_params) as param1,
UNNEST(event_params) as param2
where event_name = 'BotNav'
and param1.key='action'
and param2.key='label'
group by 1, 2, 3
order by eventcount desc
**But, How to fetch this report via data studio. How to UNNEST Param in google data studio. I am able to filter event param name contains action & label in google datastudio. But i am unable to unnest the action & label in data studio. Due to this I am unable to correlate action & label elements. Pls help
Pls find below the google data studio report screenshot for your kind reference**
datastudio report screenshot
来源:https://stackoverflow.com/questions/54956102/how-to-use-unnest-params-in-google-data-studio-how-to-create-firebase-event-re