forked from turbot/steampipe-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtasks_and_subtasks.sp
77 lines (68 loc) · 1.36 KB
/
tasks_and_subtasks.sp
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
dashboard "TasksAndSubtasks" {
graph {
node {
category = category.task
sql = <<EOQ
select
title as id,
title,
json_build_object(
'summary', summary,
'url', '${local.server}/jira/core/projects/IDD/board?selectedIssue=' || title
) as properties
from
jira_issue
where
type = 'Task'
EOQ
}
node {
category = category.subtask
sql = <<EOQ
select
title as id,
title,
json_build_object(
'summary', summary,
'url', '${local.server}/jira/core/projects/IDD/board?selectedIssue=' || title
) as properties
from
jira_issue
where
type = 'Sub-task'
EOQ
}
edge {
sql = <<EOQ
select
fields->'parent'->>'key' as from_id,
title as to_id
from
jira_issue
where
fields->'parent' is not null
EOQ
}
}
table {
sql = <<EOQ
select
title,
type,
summary,
fields->'parent'->>'key' as parent
from
jira_issue
EOQ
}
}
category "task" {
icon = "task"
color = "black"
href = "{{.properties.'url'}}"
}
category "subtask" {
icon = "task"
color = "gray"
href = "{{.properties.'url'}}"
}