2021-05-13 21:42:53 +03:00
|
|
|
connection: "my_connection"
|
|
|
|
|
|
|
|
include: "foo.view.lkml"
|
2021-09-18 09:43:15 -07:00
|
|
|
include: "bar.view.lkml"
|
2021-10-14 01:16:35 -07:00
|
|
|
include: "nested/*"
|
2021-10-03 20:04:26 -07:00
|
|
|
include: "liquid.view.lkml"
|
2022-10-23 23:31:48 -07:00
|
|
|
include: "ability.view.lkml"
|
2023-02-24 12:05:21 -08:00
|
|
|
include: "dataset_owners.explore.lkml"
|
2023-04-04 04:48:39 +05:30
|
|
|
include: "native_derived_table.view.lkml"
|
2023-04-21 23:25:31 +05:30
|
|
|
include: "owners_refinement.view.lkml"
|
|
|
|
include: "flights.view.lkml"
|
2021-05-13 21:42:53 +03:00
|
|
|
|
2021-09-16 23:09:45 -07:00
|
|
|
explore: aliased_explore {
|
|
|
|
from: my_view
|
|
|
|
}
|
|
|
|
|
|
|
|
explore: dataset_owners{
|
|
|
|
join: all_entities {
|
|
|
|
relationship: many_to_one
|
|
|
|
sql_on: ${all_entities.urn} = ${dataset_owners.urn};;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-13 21:42:53 +03:00
|
|
|
explore: data_model {
|
|
|
|
label: "Data model!"
|
|
|
|
description: "Lorem ipsum"
|
|
|
|
|
|
|
|
always_filter: {
|
|
|
|
filters: {
|
|
|
|
field: is_latest_forecast
|
|
|
|
value: "TRUE"
|
|
|
|
}
|
|
|
|
filters: {
|
|
|
|
field: granularity
|
|
|
|
value: "day"
|
|
|
|
}
|
|
|
|
}
|
2023-02-24 12:05:21 -08:00
|
|
|
}
|