This repository has been archived by the owner on Oct 17, 2022. It is now read-only.
forked from llooker/intercom_by_blendo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conversations.view.lkml
85 lines (74 loc) · 1.68 KB
/
conversations.view.lkml
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
view: conversations {
sql_table_name: intercom.conversations ;;
dimension: id {
description: "Conversation unique identifier"
primary_key: yes
type: string
sql: ${TABLE}.id ;;
}
dimension: user_id {
description: "User identifier"
type: string
sql: ${TABLE}.user_id ;;
}
measure: tickets_cnt {
description: "Total Number of conversation"
type: count_distinct
sql: ${id} ;;
}
dimension: close{
description: "Checks if a conversation is closed"
type: yesno
sql: NOT ${TABLE}._open ;;
}
dimension: read{
description: "Check if a conversation is read"
type: yesno
sql: NOT ${TABLE}.read ;;
}
dimension: tags {
description: "Tags attached to the conversation"
type: string
sql: ${TABLE}.tags ;;
}
measure: percent_of_tickets{
description: "Calculates a cell’s portion of the column total. The percentage is being calculated against the total of the displayed rows"
type: percent_of_total
sql: ${tickets_cnt} ;;
drill_fields: [tickets_cnt]
}
dimension: assignee_id {
description: "Unique identifier of the agent to whom the ticket is assigned"
type: string
sql: ${TABLE}.assignee_id ;;
}
dimension_group: created_at {
description: "Ticket's creation time"
type: time
timeframes: [
raw,
time,
date,
week,
month,
quarter,
day_of_week,
year
]
sql: ${TABLE}.created_at ;;
}
dimension_group: updated {
description: "Ticket's last update"
type: time
timeframes: [
raw,
time,
date,
week,
month,
quarter,
year
]
sql: ${TABLE}.updated_at ;;
}
}