We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently you need to to use the object syntax to call dimensions in a saved query:
saved_queries: - name: new_customer_orders description: New customer orders by name and time query_params: metrics: - orders group_by: - Dimension('customer__customer_name') - TimeDimension('metric_time', 'day') where: - "{{ Dimension('customer__customer_type') }} = 'new'" exports: - name: new_customer_orders config: export_as: table
You should be able to add call dimensions without needing jinja brackets. This is consistent with how you call dimensions in the CLI.
saved_queries: - name: new_customer_orders description: New customer orders by name and time query_params: metrics: - orders group_by: - customer__customer_name - metric_time__day where: - "{{ Dimension('customer__customer_type') }} = 'new'" exports: - name: new_customer_orders config: export_as: table
No response
The text was updated successfully, but these errors were encountered:
I vaguely recall that we specifically did not want to have the dundered syntax in the configs?
Sorry, something went wrong.
No branches or pull requests
Is this your first time submitting a feature request?
Describe the feature
Currently you need to to use the object syntax to call dimensions in a saved query:
You should be able to add call dimensions without needing jinja brackets. This is consistent with how you call dimensions in the CLI.
Describe alternatives you've considered
No response
Who will this benefit?
No response
Are you interested in contributing this feature?
No response
Anything else?
No response
The text was updated successfully, but these errors were encountered: