You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In dbt-labs/metricflow#765 new functionality for saved queries will be introduced in MetricFlow. To support this we need to extend the SemanticManifest protocol to have a new top level attribtue saved_queries which will be a sequence of SavedQuery protocols.
The SavedQuery protocol will need to have the following attributes
name a string
description an optional string
query a sub protocol Query
The Query protocol will need to have the following attributes
metrics an (optional?) list of metrics
group_bys an (optional?) list of ?
where an (optional?) ?
limit an (optional?) integer
order an (optional?) ?
The text was updated successfully, but these errors were encountered:
In dbt-labs/metricflow#765 new functionality for saved queries will be introduced in MetricFlow. To support this we need to extend the SemanticManifest protocol to have a new top level attribtue
saved_queries
which will be a sequence ofSavedQuery
protocols.The
SavedQuery
protocol will need to have the following attributesname
a stringdescription
an optional stringquery
a sub protocolQuery
The
Query
protocol will need to have the following attributesmetrics
an (optional?) list of metricsgroup_bys
an (optional?) list of ?where
an (optional?) ?limit
an (optional?) integerorder
an (optional?) ?The text was updated successfully, but these errors were encountered: