forked from pipeline-looker-blocks/stripe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstripe.model.lookml
76 lines (41 loc) · 1.85 KB
/
stripe.model.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
- connection: vandelay_looker_connection
- include: "*.view.lookml" # include all the views
- include: "*.dashboard.lookml" # include all the dashboards
- explore: stripe_balance_history
- explore: stripe_balance_history__fee_details
- explore: stripe_charges
joins:
- join: stripe_customers
type: left_outer
sql_on: ${stripe_charges.customer} = ${stripe_customers.id}
relationship: many_to_one
- explore: stripe_charges__fee_details
- explore: stripe_charges__refunds
- explore: stripe_charges__refunds__data
- explore: stripe_customers
- explore: stripe_customers__cards__data
- explore: stripe_customers__sources__data
- explore: stripe_customers__subscriptions__data
- explore: stripe_events
- explore: stripe_events__data__object__available
- explore: stripe_events__data__object__cards__data
- explore: stripe_events__data__object__fee_details
- explore: stripe_events__data__object__lines__data
- explore: stripe_events__data__object__other_transfers
- explore: stripe_events__data__object__pending
- explore: stripe_events__data__object__refunds
- explore: stripe_events__data__object__sources__data
- explore: stripe_events__data__object__subscriptions__data
- explore: stripe_events__data__object__summary__charge_fee_details
- explore: stripe_events__data__object__summary__refund_fee_details
- explore: stripe_events__data__object__transactions__data
- explore: stripe_events__data__object__transactions__data__fee_details
- explore: stripe_invoices
- explore: stripe_invoices__lines__data
- explore: stripe_subscriptions
- explore: stripe_transfers
- explore: stripe_transfers__other_transfers
- explore: stripe_transfers__summary__charge_fee_details
- explore: stripe_transfers__summary__refund_fee_details
- explore: stripe_transfers__transactions__data
- explore: stripe_transfers__transactions__data__fee_details