So in the BigQuery console you can see the queries that have been run by your users. Data Studio supplies a parameter called @DS_USER_EMAIL that contains the email of the user that made the query.
We need that email for billing reasons: We need to bill/notify people based on their usage.
An example query of this, logged in BQ:
select @DS_USER_EMAIL as user_email from test_table;
So I can only see the variable, not the resolved value. Was hoping the logged query would be actual query run like so:
select 'test@test.com' as user_email from test_table;
Any way around this? If not, what are our options for getting the email?