Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion definitions/output/reports/tech_report_technologies.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,16 @@ technologies AS (
SELECT
name AS technology,
description,
icon,
STRING_AGG(DISTINCT category, ', ' ORDER BY category ASC) AS category,
categories AS category_obj
FROM ${ctx.ref('wappalyzer', 'technologies')} AS technologies
INNER JOIN technologies.categories AS category
GROUP BY
technology,
description,
categories
categories,
icon
),

total_pages AS (
Expand All @@ -63,6 +65,7 @@ total_pages AS (
SELECT
technology,
description,
icon,
category,
category_obj,
origins
Expand All @@ -75,6 +78,7 @@ UNION ALL
SELECT
'ALL' AS technology,
NULL AS description,
NULL AS icon,
NULL AS category,
NULL AS category_obj,
STRUCT(
Expand Down