mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-10 08:05:14 +02:00
10 lines
180 B
Text
10 lines
180 B
Text
connection: "my_bq"
|
|
|
|
include: "views/*.view.lkml"
|
|
|
|
explore: orders {
|
|
join: customers {
|
|
relationship: many_to_one
|
|
sql_on: ${orders.customer_id} = ${customers.id} ;;
|
|
}
|
|
}
|