mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-12-27 15:38:43 +00:00
* Organise calls * Prepare skeleton * Add looker model handling * Parse files as sql * Handle labels * Linting * Format * Fix version * Also check the API for explore lineage
12 lines
207 B
Plaintext
12 lines
207 B
Plaintext
include: "views/kittens.view.lkml"
|
|
include: "views/dogs.view.lkml"
|
|
|
|
explore: kittens {
|
|
label: "Kittens"
|
|
join: dogs {
|
|
relationship: many_to_one
|
|
sql_on: ${kittens.name} = ${kittens.name} ;;
|
|
}
|
|
}
|
|
|