mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-19 07:30:54 +00:00

Co-authored-by: MohdSiddiqueBagwan <mohdsiddique.bagwan@gslab.com> Co-authored-by: Harshal Sheth <hsheth2@gmail.com>
39 lines
734 B
Plaintext
39 lines
734 B
Plaintext
connection: "my_connection"
|
|
|
|
include: "foo.view.lkml"
|
|
include: "bar.view.lkml"
|
|
include: "nested/*"
|
|
include: "liquid.view.lkml"
|
|
include: "ability.view.lkml"
|
|
include: "dataset_owners.explore.lkml"
|
|
include: "native_derived_table.view.lkml"
|
|
include: "owners_refinement.view.lkml"
|
|
include: "flights.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"
|
|
}
|
|
}
|
|
}
|