-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproperty_issues.view.lookml
59 lines (46 loc) · 1.12 KB
/
property_issues.view.lookml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
- view: property_issues
fields:
- dimension: id
primary_key: true
type: number
sql: ${TABLE}.id
- dimension: closed
type: yesno
sql: ${TABLE}.closed
- dimension_group: created
type: time
timeframes: [time, date, week, month]
sql: ${TABLE}.created_at
- dimension: description
type: string
sql: ${TABLE}.description
- dimension_group: end
type: time
timeframes: [date, week, month]
convert_tz: false
sql: ${TABLE}.end_date
- dimension: fellow_id_created_by
type: number
value_format_name: id
sql: ${TABLE}.fellow_id_created_by
- dimension: hide_from_owner
type: yesno
sql: ${TABLE}.hide_from_owner
- dimension: issue_type
type: number
sql: ${TABLE}.issue_type
- dimension: property_id
type: number
sql: ${TABLE}.property_id
- dimension_group: start
type: time
timeframes: [date, week, month]
convert_tz: false
sql: ${TABLE}.start_date
- dimension_group: updated
type: time
timeframes: [time, date, week, month]
sql: ${TABLE}.updated_at
- measure: count
type: count
drill_fields: [id]