mohdsiddique f21eeed6e7
feat(ingestion): lookml refinement support (#7781)
Co-authored-by: MohdSiddiqueBagwan <mohdsiddique.bagwan@gslab.com>
Co-authored-by: Harshal Sheth <hsheth2@gmail.com>
2023-04-21 10:55:31 -07:00

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"
}
}
}