ktx/packages/context/test/fixtures/lookml/single-model/views/customers.view.lkml

13 lines
209 B
Text
Raw Permalink Normal View History

2026-05-10 23:12:26 +02:00
view: customers {
sql_table_name: public.customers ;;
dimension: id {
type: number
primary_key: yes
sql: ${TABLE}.id ;;
}
dimension: name {
type: string
sql: ${TABLE}.name ;;
}
}