Skip to content

Commit

Permalink
icon name
Browse files Browse the repository at this point in the history
  • Loading branch information
max-ostapenko committed Feb 21, 2025
1 parent 1caf76d commit 7b4b2f0
Showing 1 changed file with 5 additions and 1 deletion.
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

0 comments on commit 7b4b2f0

Please sign in to comment.