mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-31 13:27:58 +00:00
33 lines
555 B
Plaintext
33 lines
555 B
Plaintext
![]() |
connection: "my_connection"
|
||
|
|
||
|
include: "foo.view.lkml"
|
||
|
include: "bar.view.lkml"
|
||
|
include: "nested/*"
|
||
|
include: "liquid.view.lkml"
|
||
|
|
||
|
explore: aliased_explore {
|
||
|
from: my_view
|
||
|
}
|
||
|
|
||
|
explore: dataset_owners{
|
||
|
join: all_entities {
|
||
|
relationship: many_to_one
|
||
|
sql_on: ${all_entities.urn} = ${dataset_owners.urn};;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
explore: data_model {
|
||
|
label: "Data model!"
|
||
|
description: "Lorem ipsum"
|
||
|
|
||
|
always_filter: {
|
||
|
filters: {
|
||
|
field: is_latest_forecast
|
||
|
value: "TRUE"
|
||
|
}
|
||
|
filters: {
|
||
|
field: granularity
|
||
|
value: "day"
|
||
|
}
|
||
|
}
|
||
|
}
|